@seamapi/http 1.18.0 → 1.20.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/connect.cjs +310 -208
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +268 -104
- package/lib/seam/connect/resolve-action-attempt.d.ts +252 -64
- package/lib/seam/connect/routes/acs.d.ts +2 -0
- package/lib/seam/connect/routes/acs.js +4 -0
- package/lib/seam/connect/routes/acs.js.map +1 -1
- package/lib/seam/connect/routes/index.d.ts +1 -0
- package/lib/seam/connect/routes/index.js +1 -0
- package/lib/seam/connect/routes/index.js.map +1 -1
- package/lib/seam/connect/routes/thermostats-simulate.d.ts +25 -0
- package/lib/seam/connect/routes/thermostats-simulate.js +96 -0
- package/lib/seam/connect/routes/thermostats-simulate.js.map +1 -0
- package/lib/seam/connect/routes/thermostats.d.ts +2 -0
- package/lib/seam/connect/routes/thermostats.js +4 -0
- package/lib/seam/connect/routes/thermostats.js.map +1 -1
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/package.json +3 -3
- package/src/lib/seam/connect/routes/acs.ts +5 -0
- package/src/lib/seam/connect/routes/index.ts +1 -0
- package/src/lib/seam/connect/routes/thermostats-simulate.ts +196 -0
- package/src/lib/seam/connect/routes/thermostats.ts +5 -0
- package/src/lib/version.ts +1 -1
package/dist/connect.d.cts
CHANGED
|
@@ -305,6 +305,61 @@ type AcsCredentialsUpdateBody = RouteRequestBody<'/acs/credentials/update'>;
|
|
|
305
305
|
type AcsCredentialsUpdateResponse = SetNonNullable<Required<RouteResponse<'/acs/credentials/update'>>>;
|
|
306
306
|
type AcsCredentialsUpdateOptions = never;
|
|
307
307
|
|
|
308
|
+
declare class SeamHttpAcsEncodersSimulate {
|
|
309
|
+
client: Client;
|
|
310
|
+
readonly defaults: Required<SeamHttpRequestOptions>;
|
|
311
|
+
constructor(apiKeyOrOptions?: string | SeamHttpOptions);
|
|
312
|
+
static fromClient(client: SeamHttpOptionsWithClient['client'], options?: Omit<SeamHttpOptionsWithClient, 'client'>): SeamHttpAcsEncodersSimulate;
|
|
313
|
+
static fromApiKey(apiKey: SeamHttpOptionsWithApiKey['apiKey'], options?: Omit<SeamHttpOptionsWithApiKey, 'apiKey'>): SeamHttpAcsEncodersSimulate;
|
|
314
|
+
static fromClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken'], options?: Omit<SeamHttpOptionsWithClientSessionToken, 'clientSessionToken'>): SeamHttpAcsEncodersSimulate;
|
|
315
|
+
static fromPublishableKey(publishableKey: string, userIdentifierKey: string, options?: SeamHttpFromPublishableKeyOptions): Promise<SeamHttpAcsEncodersSimulate>;
|
|
316
|
+
static fromConsoleSessionToken(consoleSessionToken: SeamHttpOptionsWithConsoleSessionToken['consoleSessionToken'], workspaceId: SeamHttpOptionsWithConsoleSessionToken['workspaceId'], options?: Omit<SeamHttpOptionsWithConsoleSessionToken, 'consoleSessionToken' | 'workspaceId'>): SeamHttpAcsEncodersSimulate;
|
|
317
|
+
static fromPersonalAccessToken(personalAccessToken: SeamHttpOptionsWithPersonalAccessToken['personalAccessToken'], workspaceId: SeamHttpOptionsWithPersonalAccessToken['workspaceId'], options?: Omit<SeamHttpOptionsWithPersonalAccessToken, 'personalAccessToken' | 'workspaceId'>): SeamHttpAcsEncodersSimulate;
|
|
318
|
+
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
319
|
+
nextCredentialEncodeWillFail(body?: AcsEncodersSimulateNextCredentialEncodeWillFailBody): SeamHttpRequest<void, undefined>;
|
|
320
|
+
nextCredentialEncodeWillSucceed(body?: AcsEncodersSimulateNextCredentialEncodeWillSucceedBody): SeamHttpRequest<void, undefined>;
|
|
321
|
+
nextCredentialScanWillFail(body?: AcsEncodersSimulateNextCredentialScanWillFailBody): SeamHttpRequest<void, undefined>;
|
|
322
|
+
nextCredentialScanWillSucceed(body?: AcsEncodersSimulateNextCredentialScanWillSucceedBody): SeamHttpRequest<void, undefined>;
|
|
323
|
+
}
|
|
324
|
+
type AcsEncodersSimulateNextCredentialEncodeWillFailBody = RouteRequestBody<'/acs/encoders/simulate/next_credential_encode_will_fail'>;
|
|
325
|
+
type AcsEncodersSimulateNextCredentialEncodeWillFailResponse = SetNonNullable<Required<RouteResponse<'/acs/encoders/simulate/next_credential_encode_will_fail'>>>;
|
|
326
|
+
type AcsEncodersSimulateNextCredentialEncodeWillFailOptions = never;
|
|
327
|
+
type AcsEncodersSimulateNextCredentialEncodeWillSucceedBody = RouteRequestBody<'/acs/encoders/simulate/next_credential_encode_will_succeed'>;
|
|
328
|
+
type AcsEncodersSimulateNextCredentialEncodeWillSucceedResponse = SetNonNullable<Required<RouteResponse<'/acs/encoders/simulate/next_credential_encode_will_succeed'>>>;
|
|
329
|
+
type AcsEncodersSimulateNextCredentialEncodeWillSucceedOptions = never;
|
|
330
|
+
type AcsEncodersSimulateNextCredentialScanWillFailBody = RouteRequestBody<'/acs/encoders/simulate/next_credential_scan_will_fail'>;
|
|
331
|
+
type AcsEncodersSimulateNextCredentialScanWillFailResponse = SetNonNullable<Required<RouteResponse<'/acs/encoders/simulate/next_credential_scan_will_fail'>>>;
|
|
332
|
+
type AcsEncodersSimulateNextCredentialScanWillFailOptions = never;
|
|
333
|
+
type AcsEncodersSimulateNextCredentialScanWillSucceedBody = RouteRequestBody<'/acs/encoders/simulate/next_credential_scan_will_succeed'>;
|
|
334
|
+
type AcsEncodersSimulateNextCredentialScanWillSucceedResponse = SetNonNullable<Required<RouteResponse<'/acs/encoders/simulate/next_credential_scan_will_succeed'>>>;
|
|
335
|
+
type AcsEncodersSimulateNextCredentialScanWillSucceedOptions = never;
|
|
336
|
+
|
|
337
|
+
declare class SeamHttpAcsEncoders {
|
|
338
|
+
client: Client;
|
|
339
|
+
readonly defaults: Required<SeamHttpRequestOptions>;
|
|
340
|
+
constructor(apiKeyOrOptions?: string | SeamHttpOptions);
|
|
341
|
+
static fromClient(client: SeamHttpOptionsWithClient['client'], options?: Omit<SeamHttpOptionsWithClient, 'client'>): SeamHttpAcsEncoders;
|
|
342
|
+
static fromApiKey(apiKey: SeamHttpOptionsWithApiKey['apiKey'], options?: Omit<SeamHttpOptionsWithApiKey, 'apiKey'>): SeamHttpAcsEncoders;
|
|
343
|
+
static fromClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken'], options?: Omit<SeamHttpOptionsWithClientSessionToken, 'clientSessionToken'>): SeamHttpAcsEncoders;
|
|
344
|
+
static fromPublishableKey(publishableKey: string, userIdentifierKey: string, options?: SeamHttpFromPublishableKeyOptions): Promise<SeamHttpAcsEncoders>;
|
|
345
|
+
static fromConsoleSessionToken(consoleSessionToken: SeamHttpOptionsWithConsoleSessionToken['consoleSessionToken'], workspaceId: SeamHttpOptionsWithConsoleSessionToken['workspaceId'], options?: Omit<SeamHttpOptionsWithConsoleSessionToken, 'consoleSessionToken' | 'workspaceId'>): SeamHttpAcsEncoders;
|
|
346
|
+
static fromPersonalAccessToken(personalAccessToken: SeamHttpOptionsWithPersonalAccessToken['personalAccessToken'], workspaceId: SeamHttpOptionsWithPersonalAccessToken['workspaceId'], options?: Omit<SeamHttpOptionsWithPersonalAccessToken, 'personalAccessToken' | 'workspaceId'>): SeamHttpAcsEncoders;
|
|
347
|
+
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
348
|
+
get simulate(): SeamHttpAcsEncodersSimulate;
|
|
349
|
+
encodeCredential(body?: AcsEncodersEncodeCredentialBody, options?: Pick<SeamHttpRequestOptions, 'waitForActionAttempt'>): SeamHttpRequest<AcsEncodersEncodeCredentialResponse, 'action_attempt'>;
|
|
350
|
+
list(body?: AcsEncodersListParams): SeamHttpRequest<AcsEncodersListResponse, 'acs_encoders'>;
|
|
351
|
+
scanCredential(body?: AcsEncodersScanCredentialBody, options?: Pick<SeamHttpRequestOptions, 'waitForActionAttempt'>): SeamHttpRequest<AcsEncodersScanCredentialResponse, 'action_attempt'>;
|
|
352
|
+
}
|
|
353
|
+
type AcsEncodersEncodeCredentialBody = RouteRequestBody<'/acs/encoders/encode_credential'>;
|
|
354
|
+
type AcsEncodersEncodeCredentialResponse = SetNonNullable<Required<RouteResponse<'/acs/encoders/encode_credential'>>>;
|
|
355
|
+
type AcsEncodersEncodeCredentialOptions = Pick<SeamHttpRequestOptions, 'waitForActionAttempt'>;
|
|
356
|
+
type AcsEncodersListParams = RouteRequestBody<'/acs/encoders/list'>;
|
|
357
|
+
type AcsEncodersListResponse = SetNonNullable<Required<RouteResponse<'/acs/encoders/list'>>>;
|
|
358
|
+
type AcsEncodersListOptions = never;
|
|
359
|
+
type AcsEncodersScanCredentialBody = RouteRequestBody<'/acs/encoders/scan_credential'>;
|
|
360
|
+
type AcsEncodersScanCredentialResponse = SetNonNullable<Required<RouteResponse<'/acs/encoders/scan_credential'>>>;
|
|
361
|
+
type AcsEncodersScanCredentialOptions = Pick<SeamHttpRequestOptions, 'waitForActionAttempt'>;
|
|
362
|
+
|
|
308
363
|
declare class SeamHttpAcsEntrances {
|
|
309
364
|
client: Client;
|
|
310
365
|
readonly defaults: Required<SeamHttpRequestOptions>;
|
|
@@ -454,65 +509,11 @@ declare class SeamHttpAcs {
|
|
|
454
509
|
get credentialProvisioningAutomations(): SeamHttpAcsCredentialProvisioningAutomations;
|
|
455
510
|
get credentials(): SeamHttpAcsCredentials;
|
|
456
511
|
get entrances(): SeamHttpAcsEntrances;
|
|
512
|
+
get encoders(): SeamHttpAcsEncoders;
|
|
457
513
|
get systems(): SeamHttpAcsSystems;
|
|
458
514
|
get users(): SeamHttpAcsUsers;
|
|
459
515
|
}
|
|
460
516
|
|
|
461
|
-
declare class SeamHttpAcsEncodersSimulate {
|
|
462
|
-
client: Client;
|
|
463
|
-
readonly defaults: Required<SeamHttpRequestOptions>;
|
|
464
|
-
constructor(apiKeyOrOptions?: string | SeamHttpOptions);
|
|
465
|
-
static fromClient(client: SeamHttpOptionsWithClient['client'], options?: Omit<SeamHttpOptionsWithClient, 'client'>): SeamHttpAcsEncodersSimulate;
|
|
466
|
-
static fromApiKey(apiKey: SeamHttpOptionsWithApiKey['apiKey'], options?: Omit<SeamHttpOptionsWithApiKey, 'apiKey'>): SeamHttpAcsEncodersSimulate;
|
|
467
|
-
static fromClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken'], options?: Omit<SeamHttpOptionsWithClientSessionToken, 'clientSessionToken'>): SeamHttpAcsEncodersSimulate;
|
|
468
|
-
static fromPublishableKey(publishableKey: string, userIdentifierKey: string, options?: SeamHttpFromPublishableKeyOptions): Promise<SeamHttpAcsEncodersSimulate>;
|
|
469
|
-
static fromConsoleSessionToken(consoleSessionToken: SeamHttpOptionsWithConsoleSessionToken['consoleSessionToken'], workspaceId: SeamHttpOptionsWithConsoleSessionToken['workspaceId'], options?: Omit<SeamHttpOptionsWithConsoleSessionToken, 'consoleSessionToken' | 'workspaceId'>): SeamHttpAcsEncodersSimulate;
|
|
470
|
-
static fromPersonalAccessToken(personalAccessToken: SeamHttpOptionsWithPersonalAccessToken['personalAccessToken'], workspaceId: SeamHttpOptionsWithPersonalAccessToken['workspaceId'], options?: Omit<SeamHttpOptionsWithPersonalAccessToken, 'personalAccessToken' | 'workspaceId'>): SeamHttpAcsEncodersSimulate;
|
|
471
|
-
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
472
|
-
nextCredentialEncodeWillFail(body?: AcsEncodersSimulateNextCredentialEncodeWillFailBody): SeamHttpRequest<void, undefined>;
|
|
473
|
-
nextCredentialEncodeWillSucceed(body?: AcsEncodersSimulateNextCredentialEncodeWillSucceedBody): SeamHttpRequest<void, undefined>;
|
|
474
|
-
nextCredentialScanWillFail(body?: AcsEncodersSimulateNextCredentialScanWillFailBody): SeamHttpRequest<void, undefined>;
|
|
475
|
-
nextCredentialScanWillSucceed(body?: AcsEncodersSimulateNextCredentialScanWillSucceedBody): SeamHttpRequest<void, undefined>;
|
|
476
|
-
}
|
|
477
|
-
type AcsEncodersSimulateNextCredentialEncodeWillFailBody = RouteRequestBody<'/acs/encoders/simulate/next_credential_encode_will_fail'>;
|
|
478
|
-
type AcsEncodersSimulateNextCredentialEncodeWillFailResponse = SetNonNullable<Required<RouteResponse<'/acs/encoders/simulate/next_credential_encode_will_fail'>>>;
|
|
479
|
-
type AcsEncodersSimulateNextCredentialEncodeWillFailOptions = never;
|
|
480
|
-
type AcsEncodersSimulateNextCredentialEncodeWillSucceedBody = RouteRequestBody<'/acs/encoders/simulate/next_credential_encode_will_succeed'>;
|
|
481
|
-
type AcsEncodersSimulateNextCredentialEncodeWillSucceedResponse = SetNonNullable<Required<RouteResponse<'/acs/encoders/simulate/next_credential_encode_will_succeed'>>>;
|
|
482
|
-
type AcsEncodersSimulateNextCredentialEncodeWillSucceedOptions = never;
|
|
483
|
-
type AcsEncodersSimulateNextCredentialScanWillFailBody = RouteRequestBody<'/acs/encoders/simulate/next_credential_scan_will_fail'>;
|
|
484
|
-
type AcsEncodersSimulateNextCredentialScanWillFailResponse = SetNonNullable<Required<RouteResponse<'/acs/encoders/simulate/next_credential_scan_will_fail'>>>;
|
|
485
|
-
type AcsEncodersSimulateNextCredentialScanWillFailOptions = never;
|
|
486
|
-
type AcsEncodersSimulateNextCredentialScanWillSucceedBody = RouteRequestBody<'/acs/encoders/simulate/next_credential_scan_will_succeed'>;
|
|
487
|
-
type AcsEncodersSimulateNextCredentialScanWillSucceedResponse = SetNonNullable<Required<RouteResponse<'/acs/encoders/simulate/next_credential_scan_will_succeed'>>>;
|
|
488
|
-
type AcsEncodersSimulateNextCredentialScanWillSucceedOptions = never;
|
|
489
|
-
|
|
490
|
-
declare class SeamHttpAcsEncoders {
|
|
491
|
-
client: Client;
|
|
492
|
-
readonly defaults: Required<SeamHttpRequestOptions>;
|
|
493
|
-
constructor(apiKeyOrOptions?: string | SeamHttpOptions);
|
|
494
|
-
static fromClient(client: SeamHttpOptionsWithClient['client'], options?: Omit<SeamHttpOptionsWithClient, 'client'>): SeamHttpAcsEncoders;
|
|
495
|
-
static fromApiKey(apiKey: SeamHttpOptionsWithApiKey['apiKey'], options?: Omit<SeamHttpOptionsWithApiKey, 'apiKey'>): SeamHttpAcsEncoders;
|
|
496
|
-
static fromClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken'], options?: Omit<SeamHttpOptionsWithClientSessionToken, 'clientSessionToken'>): SeamHttpAcsEncoders;
|
|
497
|
-
static fromPublishableKey(publishableKey: string, userIdentifierKey: string, options?: SeamHttpFromPublishableKeyOptions): Promise<SeamHttpAcsEncoders>;
|
|
498
|
-
static fromConsoleSessionToken(consoleSessionToken: SeamHttpOptionsWithConsoleSessionToken['consoleSessionToken'], workspaceId: SeamHttpOptionsWithConsoleSessionToken['workspaceId'], options?: Omit<SeamHttpOptionsWithConsoleSessionToken, 'consoleSessionToken' | 'workspaceId'>): SeamHttpAcsEncoders;
|
|
499
|
-
static fromPersonalAccessToken(personalAccessToken: SeamHttpOptionsWithPersonalAccessToken['personalAccessToken'], workspaceId: SeamHttpOptionsWithPersonalAccessToken['workspaceId'], options?: Omit<SeamHttpOptionsWithPersonalAccessToken, 'personalAccessToken' | 'workspaceId'>): SeamHttpAcsEncoders;
|
|
500
|
-
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
501
|
-
get simulate(): SeamHttpAcsEncodersSimulate;
|
|
502
|
-
encodeCredential(body?: AcsEncodersEncodeCredentialBody, options?: Pick<SeamHttpRequestOptions, 'waitForActionAttempt'>): SeamHttpRequest<AcsEncodersEncodeCredentialResponse, 'action_attempt'>;
|
|
503
|
-
list(body?: AcsEncodersListParams): SeamHttpRequest<AcsEncodersListResponse, 'acs_encoders'>;
|
|
504
|
-
scanCredential(body?: AcsEncodersScanCredentialBody, options?: Pick<SeamHttpRequestOptions, 'waitForActionAttempt'>): SeamHttpRequest<AcsEncodersScanCredentialResponse, 'action_attempt'>;
|
|
505
|
-
}
|
|
506
|
-
type AcsEncodersEncodeCredentialBody = RouteRequestBody<'/acs/encoders/encode_credential'>;
|
|
507
|
-
type AcsEncodersEncodeCredentialResponse = SetNonNullable<Required<RouteResponse<'/acs/encoders/encode_credential'>>>;
|
|
508
|
-
type AcsEncodersEncodeCredentialOptions = Pick<SeamHttpRequestOptions, 'waitForActionAttempt'>;
|
|
509
|
-
type AcsEncodersListParams = RouteRequestBody<'/acs/encoders/list'>;
|
|
510
|
-
type AcsEncodersListResponse = SetNonNullable<Required<RouteResponse<'/acs/encoders/list'>>>;
|
|
511
|
-
type AcsEncodersListOptions = never;
|
|
512
|
-
type AcsEncodersScanCredentialBody = RouteRequestBody<'/acs/encoders/scan_credential'>;
|
|
513
|
-
type AcsEncodersScanCredentialResponse = SetNonNullable<Required<RouteResponse<'/acs/encoders/scan_credential'>>>;
|
|
514
|
-
type AcsEncodersScanCredentialOptions = Pick<SeamHttpRequestOptions, 'waitForActionAttempt'>;
|
|
515
|
-
|
|
516
517
|
declare class SeamHttpActionAttempts {
|
|
517
518
|
client: Client;
|
|
518
519
|
readonly defaults: Required<SeamHttpRequestOptions>;
|
|
@@ -930,6 +931,27 @@ type ThermostatsSchedulesUpdateBody = RouteRequestBody<'/thermostats/schedules/u
|
|
|
930
931
|
type ThermostatsSchedulesUpdateResponse = SetNonNullable<Required<RouteResponse<'/thermostats/schedules/update'>>>;
|
|
931
932
|
type ThermostatsSchedulesUpdateOptions = never;
|
|
932
933
|
|
|
934
|
+
declare class SeamHttpThermostatsSimulate {
|
|
935
|
+
client: Client;
|
|
936
|
+
readonly defaults: Required<SeamHttpRequestOptions>;
|
|
937
|
+
constructor(apiKeyOrOptions?: string | SeamHttpOptions);
|
|
938
|
+
static fromClient(client: SeamHttpOptionsWithClient['client'], options?: Omit<SeamHttpOptionsWithClient, 'client'>): SeamHttpThermostatsSimulate;
|
|
939
|
+
static fromApiKey(apiKey: SeamHttpOptionsWithApiKey['apiKey'], options?: Omit<SeamHttpOptionsWithApiKey, 'apiKey'>): SeamHttpThermostatsSimulate;
|
|
940
|
+
static fromClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken'], options?: Omit<SeamHttpOptionsWithClientSessionToken, 'clientSessionToken'>): SeamHttpThermostatsSimulate;
|
|
941
|
+
static fromPublishableKey(publishableKey: string, userIdentifierKey: string, options?: SeamHttpFromPublishableKeyOptions): Promise<SeamHttpThermostatsSimulate>;
|
|
942
|
+
static fromConsoleSessionToken(consoleSessionToken: SeamHttpOptionsWithConsoleSessionToken['consoleSessionToken'], workspaceId: SeamHttpOptionsWithConsoleSessionToken['workspaceId'], options?: Omit<SeamHttpOptionsWithConsoleSessionToken, 'consoleSessionToken' | 'workspaceId'>): SeamHttpThermostatsSimulate;
|
|
943
|
+
static fromPersonalAccessToken(personalAccessToken: SeamHttpOptionsWithPersonalAccessToken['personalAccessToken'], workspaceId: SeamHttpOptionsWithPersonalAccessToken['workspaceId'], options?: Omit<SeamHttpOptionsWithPersonalAccessToken, 'personalAccessToken' | 'workspaceId'>): SeamHttpThermostatsSimulate;
|
|
944
|
+
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
945
|
+
hvacModeAdjusted(body?: ThermostatsSimulateHvacModeAdjustedBody): SeamHttpRequest<void, undefined>;
|
|
946
|
+
temperatureReached(body?: ThermostatsSimulateTemperatureReachedBody): SeamHttpRequest<void, undefined>;
|
|
947
|
+
}
|
|
948
|
+
type ThermostatsSimulateHvacModeAdjustedBody = RouteRequestBody<'/thermostats/simulate/hvac_mode_adjusted'>;
|
|
949
|
+
type ThermostatsSimulateHvacModeAdjustedResponse = SetNonNullable<Required<RouteResponse<'/thermostats/simulate/hvac_mode_adjusted'>>>;
|
|
950
|
+
type ThermostatsSimulateHvacModeAdjustedOptions = never;
|
|
951
|
+
type ThermostatsSimulateTemperatureReachedBody = RouteRequestBody<'/thermostats/simulate/temperature_reached'>;
|
|
952
|
+
type ThermostatsSimulateTemperatureReachedResponse = SetNonNullable<Required<RouteResponse<'/thermostats/simulate/temperature_reached'>>>;
|
|
953
|
+
type ThermostatsSimulateTemperatureReachedOptions = never;
|
|
954
|
+
|
|
933
955
|
declare class SeamHttpThermostats {
|
|
934
956
|
client: Client;
|
|
935
957
|
readonly defaults: Required<SeamHttpRequestOptions>;
|
|
@@ -942,6 +964,7 @@ declare class SeamHttpThermostats {
|
|
|
942
964
|
static fromPersonalAccessToken(personalAccessToken: SeamHttpOptionsWithPersonalAccessToken['personalAccessToken'], workspaceId: SeamHttpOptionsWithPersonalAccessToken['workspaceId'], options?: Omit<SeamHttpOptionsWithPersonalAccessToken, 'personalAccessToken' | 'workspaceId'>): SeamHttpThermostats;
|
|
943
965
|
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
944
966
|
get schedules(): SeamHttpThermostatsSchedules;
|
|
967
|
+
get simulate(): SeamHttpThermostatsSimulate;
|
|
945
968
|
activateClimatePreset(body?: ThermostatsActivateClimatePresetBody, options?: Pick<SeamHttpRequestOptions, 'waitForActionAttempt'>): SeamHttpRequest<ThermostatsActivateClimatePresetResponse, 'action_attempt'>;
|
|
946
969
|
cool(body?: ThermostatsCoolBody, options?: Pick<SeamHttpRequestOptions, 'waitForActionAttempt'>): SeamHttpRequest<ThermostatsCoolResponse, 'action_attempt'>;
|
|
947
970
|
createClimatePreset(body?: ThermostatsCreateClimatePresetBody): SeamHttpRequest<void, undefined>;
|
|
@@ -1259,7 +1282,11 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1259
1282
|
created_at: string;
|
|
1260
1283
|
} | {
|
|
1261
1284
|
message: string;
|
|
1262
|
-
warning_code: "
|
|
1285
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
1286
|
+
created_at: string;
|
|
1287
|
+
} | {
|
|
1288
|
+
message: string;
|
|
1289
|
+
warning_code: "needs_to_be_reissued";
|
|
1263
1290
|
created_at: string;
|
|
1264
1291
|
})[];
|
|
1265
1292
|
display_name: string;
|
|
@@ -1281,8 +1308,15 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1281
1308
|
card_id?: string | undefined;
|
|
1282
1309
|
credential_id?: string | undefined;
|
|
1283
1310
|
} | undefined;
|
|
1311
|
+
assa_abloy_vostio_metadata?: {
|
|
1312
|
+
endpoint_id?: string | undefined;
|
|
1313
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
1314
|
+
key_id?: string | undefined;
|
|
1315
|
+
key_issuing_request_id?: string | undefined;
|
|
1316
|
+
door_names?: string[] | undefined;
|
|
1317
|
+
} | undefined;
|
|
1284
1318
|
is_one_time_use?: boolean | undefined;
|
|
1285
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
1319
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
|
|
1286
1320
|
external_type_display_name?: string | undefined;
|
|
1287
1321
|
acs_user_id?: string | undefined;
|
|
1288
1322
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1291,8 +1325,8 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1291
1325
|
is_issued?: boolean | undefined;
|
|
1292
1326
|
issued_at?: string | null | undefined;
|
|
1293
1327
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
1294
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
1295
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
1328
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
1329
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
1296
1330
|
} | {
|
|
1297
1331
|
created_at: string;
|
|
1298
1332
|
errors: {
|
|
@@ -1317,7 +1351,11 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1317
1351
|
created_at: string;
|
|
1318
1352
|
} | {
|
|
1319
1353
|
message: string;
|
|
1320
|
-
warning_code: "
|
|
1354
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
1355
|
+
created_at: string;
|
|
1356
|
+
} | {
|
|
1357
|
+
message: string;
|
|
1358
|
+
warning_code: "needs_to_be_reissued";
|
|
1321
1359
|
created_at: string;
|
|
1322
1360
|
})[];
|
|
1323
1361
|
display_name: string;
|
|
@@ -1339,8 +1377,15 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1339
1377
|
card_id?: string | undefined;
|
|
1340
1378
|
credential_id?: string | undefined;
|
|
1341
1379
|
} | undefined;
|
|
1380
|
+
assa_abloy_vostio_metadata?: {
|
|
1381
|
+
endpoint_id?: string | undefined;
|
|
1382
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
1383
|
+
key_id?: string | undefined;
|
|
1384
|
+
key_issuing_request_id?: string | undefined;
|
|
1385
|
+
door_names?: string[] | undefined;
|
|
1386
|
+
} | undefined;
|
|
1342
1387
|
is_one_time_use?: boolean | undefined;
|
|
1343
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
1388
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
|
|
1344
1389
|
external_type_display_name?: string | undefined;
|
|
1345
1390
|
acs_user_id?: string | undefined;
|
|
1346
1391
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1349,8 +1394,8 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1349
1394
|
is_issued?: boolean | undefined;
|
|
1350
1395
|
issued_at?: string | null | undefined;
|
|
1351
1396
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
1352
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
1353
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
1397
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
1398
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
1354
1399
|
} | null;
|
|
1355
1400
|
};
|
|
1356
1401
|
action_type: "SCAN_CREDENTIAL";
|
|
@@ -1403,7 +1448,11 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1403
1448
|
created_at: string;
|
|
1404
1449
|
} | {
|
|
1405
1450
|
message: string;
|
|
1406
|
-
warning_code: "
|
|
1451
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
1452
|
+
created_at: string;
|
|
1453
|
+
} | {
|
|
1454
|
+
message: string;
|
|
1455
|
+
warning_code: "needs_to_be_reissued";
|
|
1407
1456
|
created_at: string;
|
|
1408
1457
|
})[];
|
|
1409
1458
|
display_name: string;
|
|
@@ -1425,8 +1474,15 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1425
1474
|
card_id?: string | undefined;
|
|
1426
1475
|
credential_id?: string | undefined;
|
|
1427
1476
|
} | undefined;
|
|
1477
|
+
assa_abloy_vostio_metadata?: {
|
|
1478
|
+
endpoint_id?: string | undefined;
|
|
1479
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
1480
|
+
key_id?: string | undefined;
|
|
1481
|
+
key_issuing_request_id?: string | undefined;
|
|
1482
|
+
door_names?: string[] | undefined;
|
|
1483
|
+
} | undefined;
|
|
1428
1484
|
is_one_time_use?: boolean | undefined;
|
|
1429
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
1485
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
|
|
1430
1486
|
external_type_display_name?: string | undefined;
|
|
1431
1487
|
acs_user_id?: string | undefined;
|
|
1432
1488
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1435,8 +1491,8 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1435
1491
|
is_issued?: boolean | undefined;
|
|
1436
1492
|
issued_at?: string | null | undefined;
|
|
1437
1493
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
1438
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
1439
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
1494
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
1495
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
1440
1496
|
} | {
|
|
1441
1497
|
created_at: string;
|
|
1442
1498
|
errors: {
|
|
@@ -1461,7 +1517,11 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1461
1517
|
created_at: string;
|
|
1462
1518
|
} | {
|
|
1463
1519
|
message: string;
|
|
1464
|
-
warning_code: "
|
|
1520
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
1521
|
+
created_at: string;
|
|
1522
|
+
} | {
|
|
1523
|
+
message: string;
|
|
1524
|
+
warning_code: "needs_to_be_reissued";
|
|
1465
1525
|
created_at: string;
|
|
1466
1526
|
})[];
|
|
1467
1527
|
display_name: string;
|
|
@@ -1483,8 +1543,15 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1483
1543
|
card_id?: string | undefined;
|
|
1484
1544
|
credential_id?: string | undefined;
|
|
1485
1545
|
} | undefined;
|
|
1546
|
+
assa_abloy_vostio_metadata?: {
|
|
1547
|
+
endpoint_id?: string | undefined;
|
|
1548
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
1549
|
+
key_id?: string | undefined;
|
|
1550
|
+
key_issuing_request_id?: string | undefined;
|
|
1551
|
+
door_names?: string[] | undefined;
|
|
1552
|
+
} | undefined;
|
|
1486
1553
|
is_one_time_use?: boolean | undefined;
|
|
1487
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
1554
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
|
|
1488
1555
|
external_type_display_name?: string | undefined;
|
|
1489
1556
|
acs_user_id?: string | undefined;
|
|
1490
1557
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1493,8 +1560,8 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1493
1560
|
is_issued?: boolean | undefined;
|
|
1494
1561
|
issued_at?: string | null | undefined;
|
|
1495
1562
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
1496
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
1497
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
1563
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
1564
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
1498
1565
|
};
|
|
1499
1566
|
action_type: "ENCODE_CREDENTIAL";
|
|
1500
1567
|
} | {
|
|
@@ -1510,6 +1577,9 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1510
1577
|
} | {
|
|
1511
1578
|
type: "incompatible_card_format";
|
|
1512
1579
|
message: string;
|
|
1580
|
+
} | {
|
|
1581
|
+
type: "credential_cannot_be_reissued";
|
|
1582
|
+
message: string;
|
|
1513
1583
|
};
|
|
1514
1584
|
status: "error";
|
|
1515
1585
|
action_attempt_id: string;
|
|
@@ -1861,7 +1931,11 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
1861
1931
|
created_at: string;
|
|
1862
1932
|
} | {
|
|
1863
1933
|
message: string;
|
|
1864
|
-
warning_code: "
|
|
1934
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
1935
|
+
created_at: string;
|
|
1936
|
+
} | {
|
|
1937
|
+
message: string;
|
|
1938
|
+
warning_code: "needs_to_be_reissued";
|
|
1865
1939
|
created_at: string;
|
|
1866
1940
|
})[];
|
|
1867
1941
|
display_name: string;
|
|
@@ -1883,8 +1957,15 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
1883
1957
|
card_id?: string | undefined;
|
|
1884
1958
|
credential_id?: string | undefined;
|
|
1885
1959
|
} | undefined;
|
|
1960
|
+
assa_abloy_vostio_metadata?: {
|
|
1961
|
+
endpoint_id?: string | undefined;
|
|
1962
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
1963
|
+
key_id?: string | undefined;
|
|
1964
|
+
key_issuing_request_id?: string | undefined;
|
|
1965
|
+
door_names?: string[] | undefined;
|
|
1966
|
+
} | undefined;
|
|
1886
1967
|
is_one_time_use?: boolean | undefined;
|
|
1887
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
1968
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
|
|
1888
1969
|
external_type_display_name?: string | undefined;
|
|
1889
1970
|
acs_user_id?: string | undefined;
|
|
1890
1971
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1893,8 +1974,8 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
1893
1974
|
is_issued?: boolean | undefined;
|
|
1894
1975
|
issued_at?: string | null | undefined;
|
|
1895
1976
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
1896
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
1897
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
1977
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
1978
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
1898
1979
|
} | {
|
|
1899
1980
|
created_at: string;
|
|
1900
1981
|
errors: {
|
|
@@ -1919,7 +2000,11 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
1919
2000
|
created_at: string;
|
|
1920
2001
|
} | {
|
|
1921
2002
|
message: string;
|
|
1922
|
-
warning_code: "
|
|
2003
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
2004
|
+
created_at: string;
|
|
2005
|
+
} | {
|
|
2006
|
+
message: string;
|
|
2007
|
+
warning_code: "needs_to_be_reissued";
|
|
1923
2008
|
created_at: string;
|
|
1924
2009
|
})[];
|
|
1925
2010
|
display_name: string;
|
|
@@ -1941,8 +2026,15 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
1941
2026
|
card_id?: string | undefined;
|
|
1942
2027
|
credential_id?: string | undefined;
|
|
1943
2028
|
} | undefined;
|
|
2029
|
+
assa_abloy_vostio_metadata?: {
|
|
2030
|
+
endpoint_id?: string | undefined;
|
|
2031
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
2032
|
+
key_id?: string | undefined;
|
|
2033
|
+
key_issuing_request_id?: string | undefined;
|
|
2034
|
+
door_names?: string[] | undefined;
|
|
2035
|
+
} | undefined;
|
|
1944
2036
|
is_one_time_use?: boolean | undefined;
|
|
1945
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
2037
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
|
|
1946
2038
|
external_type_display_name?: string | undefined;
|
|
1947
2039
|
acs_user_id?: string | undefined;
|
|
1948
2040
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1951,8 +2043,8 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
1951
2043
|
is_issued?: boolean | undefined;
|
|
1952
2044
|
issued_at?: string | null | undefined;
|
|
1953
2045
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
1954
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
1955
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
2046
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
2047
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
1956
2048
|
} | null;
|
|
1957
2049
|
};
|
|
1958
2050
|
action_type: "SCAN_CREDENTIAL";
|
|
@@ -2005,7 +2097,11 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
2005
2097
|
created_at: string;
|
|
2006
2098
|
} | {
|
|
2007
2099
|
message: string;
|
|
2008
|
-
warning_code: "
|
|
2100
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
2101
|
+
created_at: string;
|
|
2102
|
+
} | {
|
|
2103
|
+
message: string;
|
|
2104
|
+
warning_code: "needs_to_be_reissued";
|
|
2009
2105
|
created_at: string;
|
|
2010
2106
|
})[];
|
|
2011
2107
|
display_name: string;
|
|
@@ -2027,8 +2123,15 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
2027
2123
|
card_id?: string | undefined;
|
|
2028
2124
|
credential_id?: string | undefined;
|
|
2029
2125
|
} | undefined;
|
|
2126
|
+
assa_abloy_vostio_metadata?: {
|
|
2127
|
+
endpoint_id?: string | undefined;
|
|
2128
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
2129
|
+
key_id?: string | undefined;
|
|
2130
|
+
key_issuing_request_id?: string | undefined;
|
|
2131
|
+
door_names?: string[] | undefined;
|
|
2132
|
+
} | undefined;
|
|
2030
2133
|
is_one_time_use?: boolean | undefined;
|
|
2031
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
2134
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
|
|
2032
2135
|
external_type_display_name?: string | undefined;
|
|
2033
2136
|
acs_user_id?: string | undefined;
|
|
2034
2137
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -2037,8 +2140,8 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
2037
2140
|
is_issued?: boolean | undefined;
|
|
2038
2141
|
issued_at?: string | null | undefined;
|
|
2039
2142
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
2040
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
2041
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
2143
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
2144
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
2042
2145
|
} | {
|
|
2043
2146
|
created_at: string;
|
|
2044
2147
|
errors: {
|
|
@@ -2063,7 +2166,11 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
2063
2166
|
created_at: string;
|
|
2064
2167
|
} | {
|
|
2065
2168
|
message: string;
|
|
2066
|
-
warning_code: "
|
|
2169
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
2170
|
+
created_at: string;
|
|
2171
|
+
} | {
|
|
2172
|
+
message: string;
|
|
2173
|
+
warning_code: "needs_to_be_reissued";
|
|
2067
2174
|
created_at: string;
|
|
2068
2175
|
})[];
|
|
2069
2176
|
display_name: string;
|
|
@@ -2085,8 +2192,15 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
2085
2192
|
card_id?: string | undefined;
|
|
2086
2193
|
credential_id?: string | undefined;
|
|
2087
2194
|
} | undefined;
|
|
2195
|
+
assa_abloy_vostio_metadata?: {
|
|
2196
|
+
endpoint_id?: string | undefined;
|
|
2197
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
2198
|
+
key_id?: string | undefined;
|
|
2199
|
+
key_issuing_request_id?: string | undefined;
|
|
2200
|
+
door_names?: string[] | undefined;
|
|
2201
|
+
} | undefined;
|
|
2088
2202
|
is_one_time_use?: boolean | undefined;
|
|
2089
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
2203
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
|
|
2090
2204
|
external_type_display_name?: string | undefined;
|
|
2091
2205
|
acs_user_id?: string | undefined;
|
|
2092
2206
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -2095,8 +2209,8 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
2095
2209
|
is_issued?: boolean | undefined;
|
|
2096
2210
|
issued_at?: string | null | undefined;
|
|
2097
2211
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
2098
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
2099
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
2212
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
2213
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
2100
2214
|
};
|
|
2101
2215
|
action_type: "ENCODE_CREDENTIAL";
|
|
2102
2216
|
} | {
|
|
@@ -2112,6 +2226,9 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
2112
2226
|
} | {
|
|
2113
2227
|
type: "incompatible_card_format";
|
|
2114
2228
|
message: string;
|
|
2229
|
+
} | {
|
|
2230
|
+
type: "credential_cannot_be_reissued";
|
|
2231
|
+
message: string;
|
|
2115
2232
|
};
|
|
2116
2233
|
status: "error";
|
|
2117
2234
|
action_attempt_id: string;
|
|
@@ -2463,7 +2580,11 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2463
2580
|
created_at: string;
|
|
2464
2581
|
} | {
|
|
2465
2582
|
message: string;
|
|
2466
|
-
warning_code: "
|
|
2583
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
2584
|
+
created_at: string;
|
|
2585
|
+
} | {
|
|
2586
|
+
message: string;
|
|
2587
|
+
warning_code: "needs_to_be_reissued";
|
|
2467
2588
|
created_at: string;
|
|
2468
2589
|
})[];
|
|
2469
2590
|
display_name: string;
|
|
@@ -2485,8 +2606,15 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2485
2606
|
card_id?: string | undefined;
|
|
2486
2607
|
credential_id?: string | undefined;
|
|
2487
2608
|
} | undefined;
|
|
2609
|
+
assa_abloy_vostio_metadata?: {
|
|
2610
|
+
endpoint_id?: string | undefined;
|
|
2611
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
2612
|
+
key_id?: string | undefined;
|
|
2613
|
+
key_issuing_request_id?: string | undefined;
|
|
2614
|
+
door_names?: string[] | undefined;
|
|
2615
|
+
} | undefined;
|
|
2488
2616
|
is_one_time_use?: boolean | undefined;
|
|
2489
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
2617
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
|
|
2490
2618
|
external_type_display_name?: string | undefined;
|
|
2491
2619
|
acs_user_id?: string | undefined;
|
|
2492
2620
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -2495,8 +2623,8 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2495
2623
|
is_issued?: boolean | undefined;
|
|
2496
2624
|
issued_at?: string | null | undefined;
|
|
2497
2625
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
2498
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
2499
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
2626
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
2627
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
2500
2628
|
} | {
|
|
2501
2629
|
created_at: string;
|
|
2502
2630
|
errors: {
|
|
@@ -2521,7 +2649,11 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2521
2649
|
created_at: string;
|
|
2522
2650
|
} | {
|
|
2523
2651
|
message: string;
|
|
2524
|
-
warning_code: "
|
|
2652
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
2653
|
+
created_at: string;
|
|
2654
|
+
} | {
|
|
2655
|
+
message: string;
|
|
2656
|
+
warning_code: "needs_to_be_reissued";
|
|
2525
2657
|
created_at: string;
|
|
2526
2658
|
})[];
|
|
2527
2659
|
display_name: string;
|
|
@@ -2543,8 +2675,15 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2543
2675
|
card_id?: string | undefined;
|
|
2544
2676
|
credential_id?: string | undefined;
|
|
2545
2677
|
} | undefined;
|
|
2678
|
+
assa_abloy_vostio_metadata?: {
|
|
2679
|
+
endpoint_id?: string | undefined;
|
|
2680
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
2681
|
+
key_id?: string | undefined;
|
|
2682
|
+
key_issuing_request_id?: string | undefined;
|
|
2683
|
+
door_names?: string[] | undefined;
|
|
2684
|
+
} | undefined;
|
|
2546
2685
|
is_one_time_use?: boolean | undefined;
|
|
2547
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
2686
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
|
|
2548
2687
|
external_type_display_name?: string | undefined;
|
|
2549
2688
|
acs_user_id?: string | undefined;
|
|
2550
2689
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -2553,8 +2692,8 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2553
2692
|
is_issued?: boolean | undefined;
|
|
2554
2693
|
issued_at?: string | null | undefined;
|
|
2555
2694
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
2556
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
2557
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
2695
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
2696
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
2558
2697
|
} | null;
|
|
2559
2698
|
};
|
|
2560
2699
|
action_type: "SCAN_CREDENTIAL";
|
|
@@ -2607,7 +2746,11 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2607
2746
|
created_at: string;
|
|
2608
2747
|
} | {
|
|
2609
2748
|
message: string;
|
|
2610
|
-
warning_code: "
|
|
2749
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
2750
|
+
created_at: string;
|
|
2751
|
+
} | {
|
|
2752
|
+
message: string;
|
|
2753
|
+
warning_code: "needs_to_be_reissued";
|
|
2611
2754
|
created_at: string;
|
|
2612
2755
|
})[];
|
|
2613
2756
|
display_name: string;
|
|
@@ -2629,8 +2772,15 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2629
2772
|
card_id?: string | undefined;
|
|
2630
2773
|
credential_id?: string | undefined;
|
|
2631
2774
|
} | undefined;
|
|
2775
|
+
assa_abloy_vostio_metadata?: {
|
|
2776
|
+
endpoint_id?: string | undefined;
|
|
2777
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
2778
|
+
key_id?: string | undefined;
|
|
2779
|
+
key_issuing_request_id?: string | undefined;
|
|
2780
|
+
door_names?: string[] | undefined;
|
|
2781
|
+
} | undefined;
|
|
2632
2782
|
is_one_time_use?: boolean | undefined;
|
|
2633
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
2783
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
|
|
2634
2784
|
external_type_display_name?: string | undefined;
|
|
2635
2785
|
acs_user_id?: string | undefined;
|
|
2636
2786
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -2639,8 +2789,8 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2639
2789
|
is_issued?: boolean | undefined;
|
|
2640
2790
|
issued_at?: string | null | undefined;
|
|
2641
2791
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
2642
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
2643
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
2792
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
2793
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
2644
2794
|
} | {
|
|
2645
2795
|
created_at: string;
|
|
2646
2796
|
errors: {
|
|
@@ -2665,7 +2815,11 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2665
2815
|
created_at: string;
|
|
2666
2816
|
} | {
|
|
2667
2817
|
message: string;
|
|
2668
|
-
warning_code: "
|
|
2818
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
2819
|
+
created_at: string;
|
|
2820
|
+
} | {
|
|
2821
|
+
message: string;
|
|
2822
|
+
warning_code: "needs_to_be_reissued";
|
|
2669
2823
|
created_at: string;
|
|
2670
2824
|
})[];
|
|
2671
2825
|
display_name: string;
|
|
@@ -2687,8 +2841,15 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2687
2841
|
card_id?: string | undefined;
|
|
2688
2842
|
credential_id?: string | undefined;
|
|
2689
2843
|
} | undefined;
|
|
2844
|
+
assa_abloy_vostio_metadata?: {
|
|
2845
|
+
endpoint_id?: string | undefined;
|
|
2846
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
2847
|
+
key_id?: string | undefined;
|
|
2848
|
+
key_issuing_request_id?: string | undefined;
|
|
2849
|
+
door_names?: string[] | undefined;
|
|
2850
|
+
} | undefined;
|
|
2690
2851
|
is_one_time_use?: boolean | undefined;
|
|
2691
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
2852
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
|
|
2692
2853
|
external_type_display_name?: string | undefined;
|
|
2693
2854
|
acs_user_id?: string | undefined;
|
|
2694
2855
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -2697,8 +2858,8 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2697
2858
|
is_issued?: boolean | undefined;
|
|
2698
2859
|
issued_at?: string | null | undefined;
|
|
2699
2860
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
2700
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
2701
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
2861
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
2862
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
2702
2863
|
};
|
|
2703
2864
|
action_type: "ENCODE_CREDENTIAL";
|
|
2704
2865
|
} | {
|
|
@@ -2714,6 +2875,9 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2714
2875
|
} | {
|
|
2715
2876
|
type: "incompatible_card_format";
|
|
2716
2877
|
message: string;
|
|
2878
|
+
} | {
|
|
2879
|
+
type: "credential_cannot_be_reissued";
|
|
2880
|
+
message: string;
|
|
2717
2881
|
};
|
|
2718
2882
|
status: "error";
|
|
2719
2883
|
action_attempt_id: string;
|
|
@@ -3105,4 +3269,4 @@ declare const isPublishableKey: (token: string) => boolean;
|
|
|
3105
3269
|
declare const isConsoleSessionToken: (token: string) => boolean;
|
|
3106
3270
|
declare const isPersonalAccessToken: (token: string) => boolean;
|
|
3107
3271
|
|
|
3108
|
-
export { type AccessCodesCreateBody, type AccessCodesCreateMultipleBody, type AccessCodesCreateMultipleOptions, type AccessCodesCreateMultipleResponse, type AccessCodesCreateOptions, type AccessCodesCreateResponse, type AccessCodesDeleteOptions, type AccessCodesDeleteParams, type AccessCodesDeleteResponse, type AccessCodesGenerateCodeBody, type AccessCodesGenerateCodeOptions, type AccessCodesGenerateCodeResponse, type AccessCodesGetOptions, type AccessCodesGetParams, type AccessCodesGetResponse, type AccessCodesListOptions, type AccessCodesListParams, type AccessCodesListResponse, type AccessCodesPullBackupAccessCodeBody, type AccessCodesPullBackupAccessCodeOptions, type AccessCodesPullBackupAccessCodeResponse, type AccessCodesSimulateCreateUnmanagedAccessCodeBody, type AccessCodesSimulateCreateUnmanagedAccessCodeOptions, type AccessCodesSimulateCreateUnmanagedAccessCodeResponse, type AccessCodesUnmanagedConvertToManagedBody, type AccessCodesUnmanagedConvertToManagedOptions, type AccessCodesUnmanagedConvertToManagedResponse, type AccessCodesUnmanagedDeleteOptions, type AccessCodesUnmanagedDeleteParams, type AccessCodesUnmanagedDeleteResponse, type AccessCodesUnmanagedGetOptions, type AccessCodesUnmanagedGetParams, type AccessCodesUnmanagedGetResponse, type AccessCodesUnmanagedListOptions, type AccessCodesUnmanagedListParams, type AccessCodesUnmanagedListResponse, type AccessCodesUnmanagedUpdateBody, type AccessCodesUnmanagedUpdateOptions, type AccessCodesUnmanagedUpdateResponse, type AccessCodesUpdateBody, type AccessCodesUpdateMultipleBody, type AccessCodesUpdateMultipleOptions, type AccessCodesUpdateMultipleResponse, type AccessCodesUpdateOptions, type AccessCodesUpdateResponse, type AcsAccessGroupsAddUserBody, type AcsAccessGroupsAddUserOptions, type AcsAccessGroupsAddUserResponse, type AcsAccessGroupsGetOptions, type AcsAccessGroupsGetParams, type AcsAccessGroupsGetResponse, type AcsAccessGroupsListAccessibleEntrancesOptions, type AcsAccessGroupsListAccessibleEntrancesParams, type AcsAccessGroupsListAccessibleEntrancesResponse, type AcsAccessGroupsListOptions, type AcsAccessGroupsListParams, type AcsAccessGroupsListResponse, type AcsAccessGroupsListUsersOptions, type AcsAccessGroupsListUsersParams, type AcsAccessGroupsListUsersResponse, type AcsAccessGroupsRemoveUserOptions, type AcsAccessGroupsRemoveUserParams, type AcsAccessGroupsRemoveUserResponse, type AcsAccessGroupsUnmanagedGetOptions, type AcsAccessGroupsUnmanagedGetParams, type AcsAccessGroupsUnmanagedGetResponse, type AcsAccessGroupsUnmanagedListOptions, type AcsAccessGroupsUnmanagedListParams, type AcsAccessGroupsUnmanagedListResponse, type AcsCredentialPoolsListOptions, type AcsCredentialPoolsListParams, type AcsCredentialPoolsListResponse, type AcsCredentialProvisioningAutomationsLaunchBody, type AcsCredentialProvisioningAutomationsLaunchOptions, type AcsCredentialProvisioningAutomationsLaunchResponse, type AcsCredentialsAssignBody, type AcsCredentialsAssignOptions, type AcsCredentialsAssignResponse, type AcsCredentialsCreateBody, type AcsCredentialsCreateOfflineCodeBody, type AcsCredentialsCreateOfflineCodeOptions, type AcsCredentialsCreateOfflineCodeResponse, type AcsCredentialsCreateOptions, type AcsCredentialsCreateResponse, type AcsCredentialsDeleteOptions, type AcsCredentialsDeleteParams, type AcsCredentialsDeleteResponse, type AcsCredentialsGetOptions, type AcsCredentialsGetParams, type AcsCredentialsGetResponse, type AcsCredentialsListAccessibleEntrancesOptions, type AcsCredentialsListAccessibleEntrancesParams, type AcsCredentialsListAccessibleEntrancesResponse, type AcsCredentialsListOptions, type AcsCredentialsListParams, type AcsCredentialsListResponse, type AcsCredentialsUnassignBody, type AcsCredentialsUnassignOptions, type AcsCredentialsUnassignResponse, type AcsCredentialsUnmanagedGetOptions, type AcsCredentialsUnmanagedGetParams, type AcsCredentialsUnmanagedGetResponse, type AcsCredentialsUnmanagedListOptions, type AcsCredentialsUnmanagedListParams, type AcsCredentialsUnmanagedListResponse, type AcsCredentialsUpdateBody, type AcsCredentialsUpdateOptions, type AcsCredentialsUpdateResponse, type AcsEncodersEncodeCredentialBody, type AcsEncodersEncodeCredentialOptions, type AcsEncodersEncodeCredentialResponse, type AcsEncodersListOptions, type AcsEncodersListParams, type AcsEncodersListResponse, type AcsEncodersScanCredentialBody, type AcsEncodersScanCredentialOptions, type AcsEncodersScanCredentialResponse, type AcsEncodersSimulateNextCredentialEncodeWillFailBody, type AcsEncodersSimulateNextCredentialEncodeWillFailOptions, type AcsEncodersSimulateNextCredentialEncodeWillFailResponse, type AcsEncodersSimulateNextCredentialEncodeWillSucceedBody, type AcsEncodersSimulateNextCredentialEncodeWillSucceedOptions, type AcsEncodersSimulateNextCredentialEncodeWillSucceedResponse, type AcsEncodersSimulateNextCredentialScanWillFailBody, type AcsEncodersSimulateNextCredentialScanWillFailOptions, type AcsEncodersSimulateNextCredentialScanWillFailResponse, type AcsEncodersSimulateNextCredentialScanWillSucceedBody, type AcsEncodersSimulateNextCredentialScanWillSucceedOptions, type AcsEncodersSimulateNextCredentialScanWillSucceedResponse, type AcsEntrancesGetOptions, type AcsEntrancesGetParams, type AcsEntrancesGetResponse, type AcsEntrancesGrantAccessBody, type AcsEntrancesGrantAccessOptions, type AcsEntrancesGrantAccessResponse, type AcsEntrancesListCredentialsWithAccessOptions, type AcsEntrancesListCredentialsWithAccessParams, type AcsEntrancesListCredentialsWithAccessResponse, type AcsEntrancesListOptions, type AcsEntrancesListParams, type AcsEntrancesListResponse, type AcsSystemsGetOptions, type AcsSystemsGetParams, type AcsSystemsGetResponse, type AcsSystemsListCompatibleCredentialManagerAcsSystemsOptions, type AcsSystemsListCompatibleCredentialManagerAcsSystemsParams, type AcsSystemsListCompatibleCredentialManagerAcsSystemsResponse, type AcsSystemsListOptions, type AcsSystemsListParams, type AcsSystemsListResponse, type AcsUsersAddToAccessGroupBody, type AcsUsersAddToAccessGroupOptions, type AcsUsersAddToAccessGroupResponse, type AcsUsersCreateBody, type AcsUsersCreateOptions, type AcsUsersCreateResponse, type AcsUsersDeleteOptions, type AcsUsersDeleteParams, type AcsUsersDeleteResponse, type AcsUsersGetOptions, type AcsUsersGetParams, type AcsUsersGetResponse, type AcsUsersListAccessibleEntrancesOptions, type AcsUsersListAccessibleEntrancesParams, type AcsUsersListAccessibleEntrancesResponse, type AcsUsersListOptions, type AcsUsersListParams, type AcsUsersListResponse, type AcsUsersRemoveFromAccessGroupOptions, type AcsUsersRemoveFromAccessGroupParams, type AcsUsersRemoveFromAccessGroupResponse, type AcsUsersRevokeAccessToAllEntrancesOptions, type AcsUsersRevokeAccessToAllEntrancesParams, type AcsUsersRevokeAccessToAllEntrancesResponse, type AcsUsersSuspendBody, type AcsUsersSuspendOptions, type AcsUsersSuspendResponse, type AcsUsersUnmanagedGetOptions, type AcsUsersUnmanagedGetParams, type AcsUsersUnmanagedGetResponse, type AcsUsersUnmanagedListOptions, type AcsUsersUnmanagedListParams, type AcsUsersUnmanagedListResponse, type AcsUsersUnsuspendBody, type AcsUsersUnsuspendOptions, type AcsUsersUnsuspendResponse, type AcsUsersUpdateBody, type AcsUsersUpdateOptions, type AcsUsersUpdateResponse, type ActionAttemptsGetOptions, type ActionAttemptsGetParams, type ActionAttemptsGetResponse, type ActionAttemptsListOptions, type ActionAttemptsListParams, type ActionAttemptsListResponse, type ClientSessionsCreateBody, type ClientSessionsCreateOptions, type ClientSessionsCreateResponse, type ClientSessionsDeleteOptions, type ClientSessionsDeleteParams, type ClientSessionsDeleteResponse, type ClientSessionsGetOptions, type ClientSessionsGetOrCreateBody, type ClientSessionsGetOrCreateOptions, type ClientSessionsGetOrCreateResponse, type ClientSessionsGetParams, type ClientSessionsGetResponse, type ClientSessionsGrantAccessBody, type ClientSessionsGrantAccessOptions, type ClientSessionsGrantAccessResponse, type ClientSessionsListOptions, type ClientSessionsListParams, type ClientSessionsListResponse, type ClientSessionsRevokeOptions, type ClientSessionsRevokeParams, type ClientSessionsRevokeResponse, type ConnectWebviewsCreateBody, type ConnectWebviewsCreateOptions, type ConnectWebviewsCreateResponse, type ConnectWebviewsDeleteOptions, type ConnectWebviewsDeleteParams, type ConnectWebviewsDeleteResponse, type ConnectWebviewsGetOptions, type ConnectWebviewsGetParams, type ConnectWebviewsGetResponse, type ConnectWebviewsListOptions, type ConnectWebviewsListParams, type ConnectWebviewsListResponse, type ConnectedAccountsDeleteOptions, type ConnectedAccountsDeleteParams, type ConnectedAccountsDeleteResponse, type ConnectedAccountsGetOptions, type ConnectedAccountsGetParams, type ConnectedAccountsGetResponse, type ConnectedAccountsListOptions, type ConnectedAccountsListParams, type ConnectedAccountsListResponse, type ConnectedAccountsUpdateBody, type ConnectedAccountsUpdateOptions, type ConnectedAccountsUpdateResponse, type DevicesDeleteOptions, type DevicesDeleteParams, type DevicesDeleteResponse, type DevicesGetOptions, type DevicesGetParams, type DevicesGetResponse, type DevicesListDeviceProvidersOptions, type DevicesListDeviceProvidersParams, type DevicesListDeviceProvidersResponse, type DevicesListOptions, type DevicesListParams, type DevicesListResponse, type DevicesSimulateConnectBody, type DevicesSimulateConnectOptions, type DevicesSimulateConnectResponse, type DevicesSimulateDisconnectBody, type DevicesSimulateDisconnectOptions, type DevicesSimulateDisconnectResponse, type DevicesSimulateRemoveBody, type DevicesSimulateRemoveOptions, type DevicesSimulateRemoveResponse, type DevicesUnmanagedGetOptions, type DevicesUnmanagedGetParams, type DevicesUnmanagedGetResponse, type DevicesUnmanagedListOptions, type DevicesUnmanagedListParams, type DevicesUnmanagedListResponse, type DevicesUnmanagedUpdateBody, type DevicesUnmanagedUpdateOptions, type DevicesUnmanagedUpdateResponse, type DevicesUpdateBody, type DevicesUpdateOptions, type DevicesUpdateResponse, type EventsGetOptions, type EventsGetParams, type EventsGetResponse, type EventsListOptions, type EventsListParams, type EventsListResponse, type LocksGetOptions, type LocksGetParams, type LocksGetResponse, type LocksListOptions, type LocksListParams, type LocksListResponse, type LocksLockDoorBody, type LocksLockDoorOptions, type LocksLockDoorResponse, type LocksUnlockDoorBody, type LocksUnlockDoorOptions, type LocksUnlockDoorResponse, type NetworksGetOptions, type NetworksGetParams, type NetworksGetResponse, type NetworksListOptions, type NetworksListParams, type NetworksListResponse, type NoiseSensorsListOptions, type NoiseSensorsListParams, type NoiseSensorsListResponse, type NoiseSensorsNoiseThresholdsCreateBody, type NoiseSensorsNoiseThresholdsCreateOptions, type NoiseSensorsNoiseThresholdsCreateResponse, type NoiseSensorsNoiseThresholdsDeleteOptions, type NoiseSensorsNoiseThresholdsDeleteParams, type NoiseSensorsNoiseThresholdsDeleteResponse, type NoiseSensorsNoiseThresholdsGetOptions, type NoiseSensorsNoiseThresholdsGetParams, type NoiseSensorsNoiseThresholdsGetResponse, type NoiseSensorsNoiseThresholdsListOptions, type NoiseSensorsNoiseThresholdsListParams, type NoiseSensorsNoiseThresholdsListResponse, type NoiseSensorsNoiseThresholdsUpdateBody, type NoiseSensorsNoiseThresholdsUpdateOptions, type NoiseSensorsNoiseThresholdsUpdateResponse, type NoiseSensorsSimulateTriggerNoiseThresholdBody, type NoiseSensorsSimulateTriggerNoiseThresholdOptions, type NoiseSensorsSimulateTriggerNoiseThresholdResponse, type PhonesDeactivateOptions, type PhonesDeactivateParams, type PhonesDeactivateResponse, type PhonesListOptions, type PhonesListParams, type PhonesListResponse, type PhonesSimulateCreateSandboxPhoneBody, type PhonesSimulateCreateSandboxPhoneOptions, type PhonesSimulateCreateSandboxPhoneResponse, SeamActionAttemptError, SeamActionAttemptFailedError, SeamActionAttemptTimeoutError, SeamHttp, SeamHttpAccessCodes, SeamHttpAccessCodesSimulate, SeamHttpAccessCodesUnmanaged, SeamHttpAcs, SeamHttpAcsAccessGroups, SeamHttpAcsAccessGroupsUnmanaged, SeamHttpAcsCredentialPools, SeamHttpAcsCredentialProvisioningAutomations, SeamHttpAcsCredentials, SeamHttpAcsCredentialsUnmanaged, SeamHttpAcsEncoders, SeamHttpAcsEncodersSimulate, SeamHttpAcsEntrances, SeamHttpAcsSystems, SeamHttpAcsUsers, SeamHttpAcsUsersUnmanaged, SeamHttpActionAttempts, SeamHttpApiError, SeamHttpClientSessions, SeamHttpConnectWebviews, SeamHttpConnectedAccounts, SeamHttpDevices, SeamHttpDevicesSimulate, SeamHttpDevicesUnmanaged, SeamHttpEvents, type SeamHttpFromPublishableKeyOptions, SeamHttpInvalidInputError, SeamHttpInvalidOptionsError, SeamHttpInvalidTokenError, SeamHttpLocks, SeamHttpMultiWorkspace, SeamHttpMultiWorkspaceInvalidOptionsError, type SeamHttpMultiWorkspaceOptions, type SeamHttpMultiWorkspaceOptionsWithClient, type SeamHttpMultiWorkspaceOptionsWithConsoleSessionToken, type SeamHttpMultiWorkspaceOptionsWithPersonalAccessToken, SeamHttpNetworks, SeamHttpNoiseSensors, SeamHttpNoiseSensorsNoiseThresholds, SeamHttpNoiseSensorsSimulate, type SeamHttpOptions, type SeamHttpOptionsFromEnv, type SeamHttpOptionsWithApiKey, type SeamHttpOptionsWithClient, type SeamHttpOptionsWithClientSessionToken, type SeamHttpOptionsWithConsoleSessionToken, type SeamHttpOptionsWithPersonalAccessToken, SeamHttpPhones, SeamHttpPhonesSimulate, SeamHttpRequest, type SeamHttpRequestOptions, SeamHttpThermostats, SeamHttpThermostatsSchedules, SeamHttpUnauthorizedError, SeamHttpUserIdentities, SeamHttpUserIdentitiesEnrollmentAutomations, SeamHttpWebhooks, SeamHttpWorkspaces, type ThermostatsActivateClimatePresetBody, type ThermostatsActivateClimatePresetOptions, type ThermostatsActivateClimatePresetResponse, type ThermostatsCoolBody, type ThermostatsCoolOptions, type ThermostatsCoolResponse, type ThermostatsCreateClimatePresetBody, type ThermostatsCreateClimatePresetOptions, type ThermostatsCreateClimatePresetResponse, type ThermostatsDeleteClimatePresetBody, type ThermostatsDeleteClimatePresetOptions, type ThermostatsDeleteClimatePresetResponse, type ThermostatsGetOptions, type ThermostatsGetParams, type ThermostatsGetResponse, type ThermostatsHeatBody, type ThermostatsHeatCoolBody, type ThermostatsHeatCoolOptions, type ThermostatsHeatCoolResponse, type ThermostatsHeatOptions, type ThermostatsHeatResponse, type ThermostatsListOptions, type ThermostatsListParams, type ThermostatsListResponse, type ThermostatsOffBody, type ThermostatsOffOptions, type ThermostatsOffResponse, type ThermostatsSchedulesCreateBody, type ThermostatsSchedulesCreateOptions, type ThermostatsSchedulesCreateResponse, type ThermostatsSchedulesDeleteOptions, type ThermostatsSchedulesDeleteParams, type ThermostatsSchedulesDeleteResponse, type ThermostatsSchedulesGetOptions, type ThermostatsSchedulesGetParams, type ThermostatsSchedulesGetResponse, type ThermostatsSchedulesListOptions, type ThermostatsSchedulesListParams, type ThermostatsSchedulesListResponse, type ThermostatsSchedulesUpdateBody, type ThermostatsSchedulesUpdateOptions, type ThermostatsSchedulesUpdateResponse, type ThermostatsSetFallbackClimatePresetBody, type ThermostatsSetFallbackClimatePresetOptions, type ThermostatsSetFallbackClimatePresetResponse, type ThermostatsSetFanModeBody, type ThermostatsSetFanModeOptions, type ThermostatsSetFanModeResponse, type ThermostatsSetHvacModeBody, type ThermostatsSetHvacModeOptions, type ThermostatsSetHvacModeResponse, type ThermostatsSetTemperatureThresholdBody, type ThermostatsSetTemperatureThresholdOptions, type ThermostatsSetTemperatureThresholdResponse, type ThermostatsUpdateClimatePresetBody, type ThermostatsUpdateClimatePresetOptions, type ThermostatsUpdateClimatePresetResponse, type UserIdentitiesAddAcsUserBody, type UserIdentitiesAddAcsUserOptions, type UserIdentitiesAddAcsUserResponse, type UserIdentitiesCreateBody, type UserIdentitiesCreateOptions, type UserIdentitiesCreateResponse, type UserIdentitiesDeleteOptions, type UserIdentitiesDeleteParams, type UserIdentitiesDeleteResponse, type UserIdentitiesEnrollmentAutomationsDeleteOptions, type UserIdentitiesEnrollmentAutomationsDeleteParams, type UserIdentitiesEnrollmentAutomationsDeleteResponse, type UserIdentitiesEnrollmentAutomationsGetOptions, type UserIdentitiesEnrollmentAutomationsGetParams, type UserIdentitiesEnrollmentAutomationsGetResponse, type UserIdentitiesEnrollmentAutomationsLaunchBody, type UserIdentitiesEnrollmentAutomationsLaunchOptions, type UserIdentitiesEnrollmentAutomationsLaunchResponse, type UserIdentitiesEnrollmentAutomationsListOptions, type UserIdentitiesEnrollmentAutomationsListParams, type UserIdentitiesEnrollmentAutomationsListResponse, type UserIdentitiesGetOptions, type UserIdentitiesGetParams, type UserIdentitiesGetResponse, type UserIdentitiesGrantAccessToDeviceBody, type UserIdentitiesGrantAccessToDeviceOptions, type UserIdentitiesGrantAccessToDeviceResponse, type UserIdentitiesListAccessibleDevicesOptions, type UserIdentitiesListAccessibleDevicesParams, type UserIdentitiesListAccessibleDevicesResponse, type UserIdentitiesListAcsSystemsOptions, type UserIdentitiesListAcsSystemsParams, type UserIdentitiesListAcsSystemsResponse, type UserIdentitiesListAcsUsersOptions, type UserIdentitiesListAcsUsersParams, type UserIdentitiesListAcsUsersResponse, type UserIdentitiesListOptions, type UserIdentitiesListParams, type UserIdentitiesListResponse, type UserIdentitiesRemoveAcsUserOptions, type UserIdentitiesRemoveAcsUserParams, type UserIdentitiesRemoveAcsUserResponse, type UserIdentitiesRevokeAccessToDeviceOptions, type UserIdentitiesRevokeAccessToDeviceParams, type UserIdentitiesRevokeAccessToDeviceResponse, type UserIdentitiesUpdateBody, type UserIdentitiesUpdateOptions, type UserIdentitiesUpdateResponse, type WebhooksCreateBody, type WebhooksCreateOptions, type WebhooksCreateResponse, type WebhooksDeleteOptions, type WebhooksDeleteParams, type WebhooksDeleteResponse, type WebhooksGetOptions, type WebhooksGetParams, type WebhooksGetResponse, type WebhooksListOptions, type WebhooksListParams, type WebhooksListResponse, type WebhooksUpdateBody, type WebhooksUpdateOptions, type WebhooksUpdateResponse, type WorkspacesCreateBody, type WorkspacesCreateOptions, type WorkspacesCreateResponse, type WorkspacesGetOptions, type WorkspacesGetParams, type WorkspacesGetResponse, type WorkspacesListOptions, type WorkspacesListParams, type WorkspacesListResponse, type WorkspacesResetSandboxBody, type WorkspacesResetSandboxOptions, type WorkspacesResetSandboxResponse, errorInterceptor, getOpenapiSchema, isApiKey, isClientSessionToken, isConsoleSessionToken, isPersonalAccessToken, isPublishableKey, isSeamActionAttemptError, isSeamActionAttemptFailedError, isSeamActionAttemptTimeoutError, isSeamHttpApiError, isSeamHttpInvalidInputError, isSeamHttpMultiWorkspaceOptionsWithClient, isSeamHttpMultiWorkspaceOptionsWithConsoleSessionToken, isSeamHttpMultiWorkspaceOptionsWithPersonalAccessToken, isSeamHttpOptionsWithApiKey, isSeamHttpOptionsWithClient, isSeamHttpOptionsWithClientSessionToken, isSeamHttpOptionsWithConsoleSessionToken, isSeamHttpOptionsWithPersonalAccessToken, isSeamHttpUnauthorizedError };
|
|
3272
|
+
export { type AccessCodesCreateBody, type AccessCodesCreateMultipleBody, type AccessCodesCreateMultipleOptions, type AccessCodesCreateMultipleResponse, type AccessCodesCreateOptions, type AccessCodesCreateResponse, type AccessCodesDeleteOptions, type AccessCodesDeleteParams, type AccessCodesDeleteResponse, type AccessCodesGenerateCodeBody, type AccessCodesGenerateCodeOptions, type AccessCodesGenerateCodeResponse, type AccessCodesGetOptions, type AccessCodesGetParams, type AccessCodesGetResponse, type AccessCodesListOptions, type AccessCodesListParams, type AccessCodesListResponse, type AccessCodesPullBackupAccessCodeBody, type AccessCodesPullBackupAccessCodeOptions, type AccessCodesPullBackupAccessCodeResponse, type AccessCodesSimulateCreateUnmanagedAccessCodeBody, type AccessCodesSimulateCreateUnmanagedAccessCodeOptions, type AccessCodesSimulateCreateUnmanagedAccessCodeResponse, type AccessCodesUnmanagedConvertToManagedBody, type AccessCodesUnmanagedConvertToManagedOptions, type AccessCodesUnmanagedConvertToManagedResponse, type AccessCodesUnmanagedDeleteOptions, type AccessCodesUnmanagedDeleteParams, type AccessCodesUnmanagedDeleteResponse, type AccessCodesUnmanagedGetOptions, type AccessCodesUnmanagedGetParams, type AccessCodesUnmanagedGetResponse, type AccessCodesUnmanagedListOptions, type AccessCodesUnmanagedListParams, type AccessCodesUnmanagedListResponse, type AccessCodesUnmanagedUpdateBody, type AccessCodesUnmanagedUpdateOptions, type AccessCodesUnmanagedUpdateResponse, type AccessCodesUpdateBody, type AccessCodesUpdateMultipleBody, type AccessCodesUpdateMultipleOptions, type AccessCodesUpdateMultipleResponse, type AccessCodesUpdateOptions, type AccessCodesUpdateResponse, type AcsAccessGroupsAddUserBody, type AcsAccessGroupsAddUserOptions, type AcsAccessGroupsAddUserResponse, type AcsAccessGroupsGetOptions, type AcsAccessGroupsGetParams, type AcsAccessGroupsGetResponse, type AcsAccessGroupsListAccessibleEntrancesOptions, type AcsAccessGroupsListAccessibleEntrancesParams, type AcsAccessGroupsListAccessibleEntrancesResponse, type AcsAccessGroupsListOptions, type AcsAccessGroupsListParams, type AcsAccessGroupsListResponse, type AcsAccessGroupsListUsersOptions, type AcsAccessGroupsListUsersParams, type AcsAccessGroupsListUsersResponse, type AcsAccessGroupsRemoveUserOptions, type AcsAccessGroupsRemoveUserParams, type AcsAccessGroupsRemoveUserResponse, type AcsAccessGroupsUnmanagedGetOptions, type AcsAccessGroupsUnmanagedGetParams, type AcsAccessGroupsUnmanagedGetResponse, type AcsAccessGroupsUnmanagedListOptions, type AcsAccessGroupsUnmanagedListParams, type AcsAccessGroupsUnmanagedListResponse, type AcsCredentialPoolsListOptions, type AcsCredentialPoolsListParams, type AcsCredentialPoolsListResponse, type AcsCredentialProvisioningAutomationsLaunchBody, type AcsCredentialProvisioningAutomationsLaunchOptions, type AcsCredentialProvisioningAutomationsLaunchResponse, type AcsCredentialsAssignBody, type AcsCredentialsAssignOptions, type AcsCredentialsAssignResponse, type AcsCredentialsCreateBody, type AcsCredentialsCreateOfflineCodeBody, type AcsCredentialsCreateOfflineCodeOptions, type AcsCredentialsCreateOfflineCodeResponse, type AcsCredentialsCreateOptions, type AcsCredentialsCreateResponse, type AcsCredentialsDeleteOptions, type AcsCredentialsDeleteParams, type AcsCredentialsDeleteResponse, type AcsCredentialsGetOptions, type AcsCredentialsGetParams, type AcsCredentialsGetResponse, type AcsCredentialsListAccessibleEntrancesOptions, type AcsCredentialsListAccessibleEntrancesParams, type AcsCredentialsListAccessibleEntrancesResponse, type AcsCredentialsListOptions, type AcsCredentialsListParams, type AcsCredentialsListResponse, type AcsCredentialsUnassignBody, type AcsCredentialsUnassignOptions, type AcsCredentialsUnassignResponse, type AcsCredentialsUnmanagedGetOptions, type AcsCredentialsUnmanagedGetParams, type AcsCredentialsUnmanagedGetResponse, type AcsCredentialsUnmanagedListOptions, type AcsCredentialsUnmanagedListParams, type AcsCredentialsUnmanagedListResponse, type AcsCredentialsUpdateBody, type AcsCredentialsUpdateOptions, type AcsCredentialsUpdateResponse, type AcsEncodersEncodeCredentialBody, type AcsEncodersEncodeCredentialOptions, type AcsEncodersEncodeCredentialResponse, type AcsEncodersListOptions, type AcsEncodersListParams, type AcsEncodersListResponse, type AcsEncodersScanCredentialBody, type AcsEncodersScanCredentialOptions, type AcsEncodersScanCredentialResponse, type AcsEncodersSimulateNextCredentialEncodeWillFailBody, type AcsEncodersSimulateNextCredentialEncodeWillFailOptions, type AcsEncodersSimulateNextCredentialEncodeWillFailResponse, type AcsEncodersSimulateNextCredentialEncodeWillSucceedBody, type AcsEncodersSimulateNextCredentialEncodeWillSucceedOptions, type AcsEncodersSimulateNextCredentialEncodeWillSucceedResponse, type AcsEncodersSimulateNextCredentialScanWillFailBody, type AcsEncodersSimulateNextCredentialScanWillFailOptions, type AcsEncodersSimulateNextCredentialScanWillFailResponse, type AcsEncodersSimulateNextCredentialScanWillSucceedBody, type AcsEncodersSimulateNextCredentialScanWillSucceedOptions, type AcsEncodersSimulateNextCredentialScanWillSucceedResponse, type AcsEntrancesGetOptions, type AcsEntrancesGetParams, type AcsEntrancesGetResponse, type AcsEntrancesGrantAccessBody, type AcsEntrancesGrantAccessOptions, type AcsEntrancesGrantAccessResponse, type AcsEntrancesListCredentialsWithAccessOptions, type AcsEntrancesListCredentialsWithAccessParams, type AcsEntrancesListCredentialsWithAccessResponse, type AcsEntrancesListOptions, type AcsEntrancesListParams, type AcsEntrancesListResponse, type AcsSystemsGetOptions, type AcsSystemsGetParams, type AcsSystemsGetResponse, type AcsSystemsListCompatibleCredentialManagerAcsSystemsOptions, type AcsSystemsListCompatibleCredentialManagerAcsSystemsParams, type AcsSystemsListCompatibleCredentialManagerAcsSystemsResponse, type AcsSystemsListOptions, type AcsSystemsListParams, type AcsSystemsListResponse, type AcsUsersAddToAccessGroupBody, type AcsUsersAddToAccessGroupOptions, type AcsUsersAddToAccessGroupResponse, type AcsUsersCreateBody, type AcsUsersCreateOptions, type AcsUsersCreateResponse, type AcsUsersDeleteOptions, type AcsUsersDeleteParams, type AcsUsersDeleteResponse, type AcsUsersGetOptions, type AcsUsersGetParams, type AcsUsersGetResponse, type AcsUsersListAccessibleEntrancesOptions, type AcsUsersListAccessibleEntrancesParams, type AcsUsersListAccessibleEntrancesResponse, type AcsUsersListOptions, type AcsUsersListParams, type AcsUsersListResponse, type AcsUsersRemoveFromAccessGroupOptions, type AcsUsersRemoveFromAccessGroupParams, type AcsUsersRemoveFromAccessGroupResponse, type AcsUsersRevokeAccessToAllEntrancesOptions, type AcsUsersRevokeAccessToAllEntrancesParams, type AcsUsersRevokeAccessToAllEntrancesResponse, type AcsUsersSuspendBody, type AcsUsersSuspendOptions, type AcsUsersSuspendResponse, type AcsUsersUnmanagedGetOptions, type AcsUsersUnmanagedGetParams, type AcsUsersUnmanagedGetResponse, type AcsUsersUnmanagedListOptions, type AcsUsersUnmanagedListParams, type AcsUsersUnmanagedListResponse, type AcsUsersUnsuspendBody, type AcsUsersUnsuspendOptions, type AcsUsersUnsuspendResponse, type AcsUsersUpdateBody, type AcsUsersUpdateOptions, type AcsUsersUpdateResponse, type ActionAttemptsGetOptions, type ActionAttemptsGetParams, type ActionAttemptsGetResponse, type ActionAttemptsListOptions, type ActionAttemptsListParams, type ActionAttemptsListResponse, type ClientSessionsCreateBody, type ClientSessionsCreateOptions, type ClientSessionsCreateResponse, type ClientSessionsDeleteOptions, type ClientSessionsDeleteParams, type ClientSessionsDeleteResponse, type ClientSessionsGetOptions, type ClientSessionsGetOrCreateBody, type ClientSessionsGetOrCreateOptions, type ClientSessionsGetOrCreateResponse, type ClientSessionsGetParams, type ClientSessionsGetResponse, type ClientSessionsGrantAccessBody, type ClientSessionsGrantAccessOptions, type ClientSessionsGrantAccessResponse, type ClientSessionsListOptions, type ClientSessionsListParams, type ClientSessionsListResponse, type ClientSessionsRevokeOptions, type ClientSessionsRevokeParams, type ClientSessionsRevokeResponse, type ConnectWebviewsCreateBody, type ConnectWebviewsCreateOptions, type ConnectWebviewsCreateResponse, type ConnectWebviewsDeleteOptions, type ConnectWebviewsDeleteParams, type ConnectWebviewsDeleteResponse, type ConnectWebviewsGetOptions, type ConnectWebviewsGetParams, type ConnectWebviewsGetResponse, type ConnectWebviewsListOptions, type ConnectWebviewsListParams, type ConnectWebviewsListResponse, type ConnectedAccountsDeleteOptions, type ConnectedAccountsDeleteParams, type ConnectedAccountsDeleteResponse, type ConnectedAccountsGetOptions, type ConnectedAccountsGetParams, type ConnectedAccountsGetResponse, type ConnectedAccountsListOptions, type ConnectedAccountsListParams, type ConnectedAccountsListResponse, type ConnectedAccountsUpdateBody, type ConnectedAccountsUpdateOptions, type ConnectedAccountsUpdateResponse, type DevicesDeleteOptions, type DevicesDeleteParams, type DevicesDeleteResponse, type DevicesGetOptions, type DevicesGetParams, type DevicesGetResponse, type DevicesListDeviceProvidersOptions, type DevicesListDeviceProvidersParams, type DevicesListDeviceProvidersResponse, type DevicesListOptions, type DevicesListParams, type DevicesListResponse, type DevicesSimulateConnectBody, type DevicesSimulateConnectOptions, type DevicesSimulateConnectResponse, type DevicesSimulateDisconnectBody, type DevicesSimulateDisconnectOptions, type DevicesSimulateDisconnectResponse, type DevicesSimulateRemoveBody, type DevicesSimulateRemoveOptions, type DevicesSimulateRemoveResponse, type DevicesUnmanagedGetOptions, type DevicesUnmanagedGetParams, type DevicesUnmanagedGetResponse, type DevicesUnmanagedListOptions, type DevicesUnmanagedListParams, type DevicesUnmanagedListResponse, type DevicesUnmanagedUpdateBody, type DevicesUnmanagedUpdateOptions, type DevicesUnmanagedUpdateResponse, type DevicesUpdateBody, type DevicesUpdateOptions, type DevicesUpdateResponse, type EventsGetOptions, type EventsGetParams, type EventsGetResponse, type EventsListOptions, type EventsListParams, type EventsListResponse, type LocksGetOptions, type LocksGetParams, type LocksGetResponse, type LocksListOptions, type LocksListParams, type LocksListResponse, type LocksLockDoorBody, type LocksLockDoorOptions, type LocksLockDoorResponse, type LocksUnlockDoorBody, type LocksUnlockDoorOptions, type LocksUnlockDoorResponse, type NetworksGetOptions, type NetworksGetParams, type NetworksGetResponse, type NetworksListOptions, type NetworksListParams, type NetworksListResponse, type NoiseSensorsListOptions, type NoiseSensorsListParams, type NoiseSensorsListResponse, type NoiseSensorsNoiseThresholdsCreateBody, type NoiseSensorsNoiseThresholdsCreateOptions, type NoiseSensorsNoiseThresholdsCreateResponse, type NoiseSensorsNoiseThresholdsDeleteOptions, type NoiseSensorsNoiseThresholdsDeleteParams, type NoiseSensorsNoiseThresholdsDeleteResponse, type NoiseSensorsNoiseThresholdsGetOptions, type NoiseSensorsNoiseThresholdsGetParams, type NoiseSensorsNoiseThresholdsGetResponse, type NoiseSensorsNoiseThresholdsListOptions, type NoiseSensorsNoiseThresholdsListParams, type NoiseSensorsNoiseThresholdsListResponse, type NoiseSensorsNoiseThresholdsUpdateBody, type NoiseSensorsNoiseThresholdsUpdateOptions, type NoiseSensorsNoiseThresholdsUpdateResponse, type NoiseSensorsSimulateTriggerNoiseThresholdBody, type NoiseSensorsSimulateTriggerNoiseThresholdOptions, type NoiseSensorsSimulateTriggerNoiseThresholdResponse, type PhonesDeactivateOptions, type PhonesDeactivateParams, type PhonesDeactivateResponse, type PhonesListOptions, type PhonesListParams, type PhonesListResponse, type PhonesSimulateCreateSandboxPhoneBody, type PhonesSimulateCreateSandboxPhoneOptions, type PhonesSimulateCreateSandboxPhoneResponse, SeamActionAttemptError, SeamActionAttemptFailedError, SeamActionAttemptTimeoutError, SeamHttp, SeamHttpAccessCodes, SeamHttpAccessCodesSimulate, SeamHttpAccessCodesUnmanaged, SeamHttpAcs, SeamHttpAcsAccessGroups, SeamHttpAcsAccessGroupsUnmanaged, SeamHttpAcsCredentialPools, SeamHttpAcsCredentialProvisioningAutomations, SeamHttpAcsCredentials, SeamHttpAcsCredentialsUnmanaged, SeamHttpAcsEncoders, SeamHttpAcsEncodersSimulate, SeamHttpAcsEntrances, SeamHttpAcsSystems, SeamHttpAcsUsers, SeamHttpAcsUsersUnmanaged, SeamHttpActionAttempts, SeamHttpApiError, SeamHttpClientSessions, SeamHttpConnectWebviews, SeamHttpConnectedAccounts, SeamHttpDevices, SeamHttpDevicesSimulate, SeamHttpDevicesUnmanaged, SeamHttpEvents, type SeamHttpFromPublishableKeyOptions, SeamHttpInvalidInputError, SeamHttpInvalidOptionsError, SeamHttpInvalidTokenError, SeamHttpLocks, SeamHttpMultiWorkspace, SeamHttpMultiWorkspaceInvalidOptionsError, type SeamHttpMultiWorkspaceOptions, type SeamHttpMultiWorkspaceOptionsWithClient, type SeamHttpMultiWorkspaceOptionsWithConsoleSessionToken, type SeamHttpMultiWorkspaceOptionsWithPersonalAccessToken, SeamHttpNetworks, SeamHttpNoiseSensors, SeamHttpNoiseSensorsNoiseThresholds, SeamHttpNoiseSensorsSimulate, type SeamHttpOptions, type SeamHttpOptionsFromEnv, type SeamHttpOptionsWithApiKey, type SeamHttpOptionsWithClient, type SeamHttpOptionsWithClientSessionToken, type SeamHttpOptionsWithConsoleSessionToken, type SeamHttpOptionsWithPersonalAccessToken, SeamHttpPhones, SeamHttpPhonesSimulate, SeamHttpRequest, type SeamHttpRequestOptions, SeamHttpThermostats, SeamHttpThermostatsSchedules, SeamHttpThermostatsSimulate, SeamHttpUnauthorizedError, SeamHttpUserIdentities, SeamHttpUserIdentitiesEnrollmentAutomations, SeamHttpWebhooks, SeamHttpWorkspaces, type ThermostatsActivateClimatePresetBody, type ThermostatsActivateClimatePresetOptions, type ThermostatsActivateClimatePresetResponse, type ThermostatsCoolBody, type ThermostatsCoolOptions, type ThermostatsCoolResponse, type ThermostatsCreateClimatePresetBody, type ThermostatsCreateClimatePresetOptions, type ThermostatsCreateClimatePresetResponse, type ThermostatsDeleteClimatePresetBody, type ThermostatsDeleteClimatePresetOptions, type ThermostatsDeleteClimatePresetResponse, type ThermostatsGetOptions, type ThermostatsGetParams, type ThermostatsGetResponse, type ThermostatsHeatBody, type ThermostatsHeatCoolBody, type ThermostatsHeatCoolOptions, type ThermostatsHeatCoolResponse, type ThermostatsHeatOptions, type ThermostatsHeatResponse, type ThermostatsListOptions, type ThermostatsListParams, type ThermostatsListResponse, type ThermostatsOffBody, type ThermostatsOffOptions, type ThermostatsOffResponse, type ThermostatsSchedulesCreateBody, type ThermostatsSchedulesCreateOptions, type ThermostatsSchedulesCreateResponse, type ThermostatsSchedulesDeleteOptions, type ThermostatsSchedulesDeleteParams, type ThermostatsSchedulesDeleteResponse, type ThermostatsSchedulesGetOptions, type ThermostatsSchedulesGetParams, type ThermostatsSchedulesGetResponse, type ThermostatsSchedulesListOptions, type ThermostatsSchedulesListParams, type ThermostatsSchedulesListResponse, type ThermostatsSchedulesUpdateBody, type ThermostatsSchedulesUpdateOptions, type ThermostatsSchedulesUpdateResponse, type ThermostatsSetFallbackClimatePresetBody, type ThermostatsSetFallbackClimatePresetOptions, type ThermostatsSetFallbackClimatePresetResponse, type ThermostatsSetFanModeBody, type ThermostatsSetFanModeOptions, type ThermostatsSetFanModeResponse, type ThermostatsSetHvacModeBody, type ThermostatsSetHvacModeOptions, type ThermostatsSetHvacModeResponse, type ThermostatsSetTemperatureThresholdBody, type ThermostatsSetTemperatureThresholdOptions, type ThermostatsSetTemperatureThresholdResponse, type ThermostatsSimulateHvacModeAdjustedBody, type ThermostatsSimulateHvacModeAdjustedOptions, type ThermostatsSimulateHvacModeAdjustedResponse, type ThermostatsSimulateTemperatureReachedBody, type ThermostatsSimulateTemperatureReachedOptions, type ThermostatsSimulateTemperatureReachedResponse, type ThermostatsUpdateClimatePresetBody, type ThermostatsUpdateClimatePresetOptions, type ThermostatsUpdateClimatePresetResponse, type UserIdentitiesAddAcsUserBody, type UserIdentitiesAddAcsUserOptions, type UserIdentitiesAddAcsUserResponse, type UserIdentitiesCreateBody, type UserIdentitiesCreateOptions, type UserIdentitiesCreateResponse, type UserIdentitiesDeleteOptions, type UserIdentitiesDeleteParams, type UserIdentitiesDeleteResponse, type UserIdentitiesEnrollmentAutomationsDeleteOptions, type UserIdentitiesEnrollmentAutomationsDeleteParams, type UserIdentitiesEnrollmentAutomationsDeleteResponse, type UserIdentitiesEnrollmentAutomationsGetOptions, type UserIdentitiesEnrollmentAutomationsGetParams, type UserIdentitiesEnrollmentAutomationsGetResponse, type UserIdentitiesEnrollmentAutomationsLaunchBody, type UserIdentitiesEnrollmentAutomationsLaunchOptions, type UserIdentitiesEnrollmentAutomationsLaunchResponse, type UserIdentitiesEnrollmentAutomationsListOptions, type UserIdentitiesEnrollmentAutomationsListParams, type UserIdentitiesEnrollmentAutomationsListResponse, type UserIdentitiesGetOptions, type UserIdentitiesGetParams, type UserIdentitiesGetResponse, type UserIdentitiesGrantAccessToDeviceBody, type UserIdentitiesGrantAccessToDeviceOptions, type UserIdentitiesGrantAccessToDeviceResponse, type UserIdentitiesListAccessibleDevicesOptions, type UserIdentitiesListAccessibleDevicesParams, type UserIdentitiesListAccessibleDevicesResponse, type UserIdentitiesListAcsSystemsOptions, type UserIdentitiesListAcsSystemsParams, type UserIdentitiesListAcsSystemsResponse, type UserIdentitiesListAcsUsersOptions, type UserIdentitiesListAcsUsersParams, type UserIdentitiesListAcsUsersResponse, type UserIdentitiesListOptions, type UserIdentitiesListParams, type UserIdentitiesListResponse, type UserIdentitiesRemoveAcsUserOptions, type UserIdentitiesRemoveAcsUserParams, type UserIdentitiesRemoveAcsUserResponse, type UserIdentitiesRevokeAccessToDeviceOptions, type UserIdentitiesRevokeAccessToDeviceParams, type UserIdentitiesRevokeAccessToDeviceResponse, type UserIdentitiesUpdateBody, type UserIdentitiesUpdateOptions, type UserIdentitiesUpdateResponse, type WebhooksCreateBody, type WebhooksCreateOptions, type WebhooksCreateResponse, type WebhooksDeleteOptions, type WebhooksDeleteParams, type WebhooksDeleteResponse, type WebhooksGetOptions, type WebhooksGetParams, type WebhooksGetResponse, type WebhooksListOptions, type WebhooksListParams, type WebhooksListResponse, type WebhooksUpdateBody, type WebhooksUpdateOptions, type WebhooksUpdateResponse, type WorkspacesCreateBody, type WorkspacesCreateOptions, type WorkspacesCreateResponse, type WorkspacesGetOptions, type WorkspacesGetParams, type WorkspacesGetResponse, type WorkspacesListOptions, type WorkspacesListParams, type WorkspacesListResponse, type WorkspacesResetSandboxBody, type WorkspacesResetSandboxOptions, type WorkspacesResetSandboxResponse, errorInterceptor, getOpenapiSchema, isApiKey, isClientSessionToken, isConsoleSessionToken, isPersonalAccessToken, isPublishableKey, isSeamActionAttemptError, isSeamActionAttemptFailedError, isSeamActionAttemptTimeoutError, isSeamHttpApiError, isSeamHttpInvalidInputError, isSeamHttpMultiWorkspaceOptionsWithClient, isSeamHttpMultiWorkspaceOptionsWithConsoleSessionToken, isSeamHttpMultiWorkspaceOptionsWithPersonalAccessToken, isSeamHttpOptionsWithApiKey, isSeamHttpOptionsWithClient, isSeamHttpOptionsWithClientSessionToken, isSeamHttpOptionsWithConsoleSessionToken, isSeamHttpOptionsWithPersonalAccessToken, isSeamHttpUnauthorizedError };
|