UNPKG

@iotize/tap

Version:

IoTize Device client for Javascript

20 lines (19 loc) 863 B
/** * Generated file. Do not edit */ import { ScramLoginParams } from './models'; import { ScramLoginResponseBody } from './models'; import { EncryptedIVRequest } from './models'; import { EncryptedIVResponse } from './models'; import { ServiceCallType } from '@iotize/tap'; export declare const SERVICE_CALLS: { login: ServiceCallType<ScramLoginParams, ScramLoginResponseBody>; loginProof: ServiceCallType<Uint8Array, Uint8Array>; getHashIteration: ServiceCallType<void, number>; putHashIteration: ServiceCallType<number, void>; initialize: ServiceCallType<void, Uint8Array>; stop: ServiceCallType<void, Uint8Array>; send: ServiceCallType<Uint8Array, Uint8Array>; setInitializationVector: ServiceCallType<Uint8Array, Uint8Array>; sendWithIV: ServiceCallType<EncryptedIVRequest, EncryptedIVResponse>; };