@seamapi/http 1.17.1 → 1.19.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 +223 -105
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +315 -272
- package/lib/seam/connect/resolve-action-attempt.d.ts +344 -328
- package/lib/seam/connect/routes/acs-encoders-simulate.d.ts +33 -0
- package/lib/seam/connect/routes/acs-encoders-simulate.js +112 -0
- package/lib/seam/connect/routes/acs-encoders-simulate.js.map +1 -0
- package/lib/seam/connect/routes/acs-encoders.d.ts +2 -0
- package/lib/seam/connect/routes/acs-encoders.js +4 -0
- package/lib/seam/connect/routes/acs-encoders.js.map +1 -1
- 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/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/package.json +3 -3
- package/src/lib/seam/connect/routes/acs-encoders-simulate.ts +248 -0
- package/src/lib/seam/connect/routes/acs-encoders.ts +5 -0
- package/src/lib/seam/connect/routes/acs.ts +5 -0
- package/src/lib/seam/connect/routes/index.ts +1 -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,35 +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 SeamHttpAcsEncoders {
|
|
462
|
-
client: Client;
|
|
463
|
-
readonly defaults: Required<SeamHttpRequestOptions>;
|
|
464
|
-
constructor(apiKeyOrOptions?: string | SeamHttpOptions);
|
|
465
|
-
static fromClient(client: SeamHttpOptionsWithClient['client'], options?: Omit<SeamHttpOptionsWithClient, 'client'>): SeamHttpAcsEncoders;
|
|
466
|
-
static fromApiKey(apiKey: SeamHttpOptionsWithApiKey['apiKey'], options?: Omit<SeamHttpOptionsWithApiKey, 'apiKey'>): SeamHttpAcsEncoders;
|
|
467
|
-
static fromClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken'], options?: Omit<SeamHttpOptionsWithClientSessionToken, 'clientSessionToken'>): SeamHttpAcsEncoders;
|
|
468
|
-
static fromPublishableKey(publishableKey: string, userIdentifierKey: string, options?: SeamHttpFromPublishableKeyOptions): Promise<SeamHttpAcsEncoders>;
|
|
469
|
-
static fromConsoleSessionToken(consoleSessionToken: SeamHttpOptionsWithConsoleSessionToken['consoleSessionToken'], workspaceId: SeamHttpOptionsWithConsoleSessionToken['workspaceId'], options?: Omit<SeamHttpOptionsWithConsoleSessionToken, 'consoleSessionToken' | 'workspaceId'>): SeamHttpAcsEncoders;
|
|
470
|
-
static fromPersonalAccessToken(personalAccessToken: SeamHttpOptionsWithPersonalAccessToken['personalAccessToken'], workspaceId: SeamHttpOptionsWithPersonalAccessToken['workspaceId'], options?: Omit<SeamHttpOptionsWithPersonalAccessToken, 'personalAccessToken' | 'workspaceId'>): SeamHttpAcsEncoders;
|
|
471
|
-
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
472
|
-
encodeCredential(body?: AcsEncodersEncodeCredentialBody, options?: Pick<SeamHttpRequestOptions, 'waitForActionAttempt'>): SeamHttpRequest<AcsEncodersEncodeCredentialResponse, 'action_attempt'>;
|
|
473
|
-
list(body?: AcsEncodersListParams): SeamHttpRequest<AcsEncodersListResponse, 'acs_encoders'>;
|
|
474
|
-
scanCredential(body?: AcsEncodersScanCredentialBody, options?: Pick<SeamHttpRequestOptions, 'waitForActionAttempt'>): SeamHttpRequest<AcsEncodersScanCredentialResponse, 'action_attempt'>;
|
|
475
|
-
}
|
|
476
|
-
type AcsEncodersEncodeCredentialBody = RouteRequestBody<'/acs/encoders/encode_credential'>;
|
|
477
|
-
type AcsEncodersEncodeCredentialResponse = SetNonNullable<Required<RouteResponse<'/acs/encoders/encode_credential'>>>;
|
|
478
|
-
type AcsEncodersEncodeCredentialOptions = Pick<SeamHttpRequestOptions, 'waitForActionAttempt'>;
|
|
479
|
-
type AcsEncodersListParams = RouteRequestBody<'/acs/encoders/list'>;
|
|
480
|
-
type AcsEncodersListResponse = SetNonNullable<Required<RouteResponse<'/acs/encoders/list'>>>;
|
|
481
|
-
type AcsEncodersListOptions = never;
|
|
482
|
-
type AcsEncodersScanCredentialBody = RouteRequestBody<'/acs/encoders/scan_credential'>;
|
|
483
|
-
type AcsEncodersScanCredentialResponse = SetNonNullable<Required<RouteResponse<'/acs/encoders/scan_credential'>>>;
|
|
484
|
-
type AcsEncodersScanCredentialOptions = Pick<SeamHttpRequestOptions, 'waitForActionAttempt'>;
|
|
485
|
-
|
|
486
517
|
declare class SeamHttpActionAttempts {
|
|
487
518
|
client: Client;
|
|
488
519
|
readonly defaults: Required<SeamHttpRequestOptions>;
|
|
@@ -1181,7 +1212,7 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1181
1212
|
action_attempt_id: string;
|
|
1182
1213
|
result: {
|
|
1183
1214
|
warnings: {
|
|
1184
|
-
warning_code: "acs_credential_on_encoder_out_of_sync";
|
|
1215
|
+
warning_code: "acs_credential_on_encoder_out_of_sync" | "acs_credential_on_seam_not_found";
|
|
1185
1216
|
warning_message: string;
|
|
1186
1217
|
}[];
|
|
1187
1218
|
acs_credential_on_encoder: {
|
|
@@ -1204,7 +1235,7 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1204
1235
|
overridden?: boolean | undefined;
|
|
1205
1236
|
card_holder?: string | undefined;
|
|
1206
1237
|
} | undefined;
|
|
1207
|
-
};
|
|
1238
|
+
} | null;
|
|
1208
1239
|
acs_credential_on_seam: {
|
|
1209
1240
|
created_at: string;
|
|
1210
1241
|
errors: {
|
|
@@ -1227,6 +1258,14 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1227
1258
|
message: string;
|
|
1228
1259
|
warning_code: "being_deleted";
|
|
1229
1260
|
created_at: string;
|
|
1261
|
+
} | {
|
|
1262
|
+
message: string;
|
|
1263
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
1264
|
+
created_at: string;
|
|
1265
|
+
} | {
|
|
1266
|
+
message: string;
|
|
1267
|
+
warning_code: "needs_to_be_reissued";
|
|
1268
|
+
created_at: string;
|
|
1230
1269
|
})[];
|
|
1231
1270
|
display_name: string;
|
|
1232
1271
|
workspace_id: string;
|
|
@@ -1247,7 +1286,15 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1247
1286
|
card_id?: string | undefined;
|
|
1248
1287
|
credential_id?: string | undefined;
|
|
1249
1288
|
} | undefined;
|
|
1250
|
-
|
|
1289
|
+
assa_abloy_vostio_metadata?: {
|
|
1290
|
+
endpoint_id?: string | undefined;
|
|
1291
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
1292
|
+
key_id?: string | undefined;
|
|
1293
|
+
key_issuing_request_id?: string | undefined;
|
|
1294
|
+
door_names?: string[] | undefined;
|
|
1295
|
+
} | undefined;
|
|
1296
|
+
is_one_time_use?: boolean | undefined;
|
|
1297
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
|
|
1251
1298
|
external_type_display_name?: string | undefined;
|
|
1252
1299
|
acs_user_id?: string | undefined;
|
|
1253
1300
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1256,8 +1303,8 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1256
1303
|
is_issued?: boolean | undefined;
|
|
1257
1304
|
issued_at?: string | null | undefined;
|
|
1258
1305
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
1259
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
1260
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
1306
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
1307
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
1261
1308
|
} | {
|
|
1262
1309
|
created_at: string;
|
|
1263
1310
|
errors: {
|
|
@@ -1280,6 +1327,14 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1280
1327
|
message: string;
|
|
1281
1328
|
warning_code: "being_deleted";
|
|
1282
1329
|
created_at: string;
|
|
1330
|
+
} | {
|
|
1331
|
+
message: string;
|
|
1332
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
1333
|
+
created_at: string;
|
|
1334
|
+
} | {
|
|
1335
|
+
message: string;
|
|
1336
|
+
warning_code: "needs_to_be_reissued";
|
|
1337
|
+
created_at: string;
|
|
1283
1338
|
})[];
|
|
1284
1339
|
display_name: string;
|
|
1285
1340
|
workspace_id: string;
|
|
@@ -1300,7 +1355,15 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1300
1355
|
card_id?: string | undefined;
|
|
1301
1356
|
credential_id?: string | undefined;
|
|
1302
1357
|
} | undefined;
|
|
1303
|
-
|
|
1358
|
+
assa_abloy_vostio_metadata?: {
|
|
1359
|
+
endpoint_id?: string | undefined;
|
|
1360
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
1361
|
+
key_id?: string | undefined;
|
|
1362
|
+
key_issuing_request_id?: string | undefined;
|
|
1363
|
+
door_names?: string[] | undefined;
|
|
1364
|
+
} | undefined;
|
|
1365
|
+
is_one_time_use?: boolean | undefined;
|
|
1366
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
|
|
1304
1367
|
external_type_display_name?: string | undefined;
|
|
1305
1368
|
acs_user_id?: string | undefined;
|
|
1306
1369
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1309,8 +1372,8 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1309
1372
|
is_issued?: boolean | undefined;
|
|
1310
1373
|
issued_at?: string | null | undefined;
|
|
1311
1374
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
1312
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
1313
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
1375
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
1376
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
1314
1377
|
} | null;
|
|
1315
1378
|
};
|
|
1316
1379
|
action_type: "SCAN_CREDENTIAL";
|
|
@@ -1322,7 +1385,7 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1322
1385
|
type: "action_attempt_expired";
|
|
1323
1386
|
message: string;
|
|
1324
1387
|
} | {
|
|
1325
|
-
type: "
|
|
1388
|
+
type: "no_credential_on_encoder";
|
|
1326
1389
|
message: string;
|
|
1327
1390
|
};
|
|
1328
1391
|
status: "error";
|
|
@@ -1361,6 +1424,14 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1361
1424
|
message: string;
|
|
1362
1425
|
warning_code: "being_deleted";
|
|
1363
1426
|
created_at: string;
|
|
1427
|
+
} | {
|
|
1428
|
+
message: string;
|
|
1429
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
1430
|
+
created_at: string;
|
|
1431
|
+
} | {
|
|
1432
|
+
message: string;
|
|
1433
|
+
warning_code: "needs_to_be_reissued";
|
|
1434
|
+
created_at: string;
|
|
1364
1435
|
})[];
|
|
1365
1436
|
display_name: string;
|
|
1366
1437
|
workspace_id: string;
|
|
@@ -1381,7 +1452,15 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1381
1452
|
card_id?: string | undefined;
|
|
1382
1453
|
credential_id?: string | undefined;
|
|
1383
1454
|
} | undefined;
|
|
1384
|
-
|
|
1455
|
+
assa_abloy_vostio_metadata?: {
|
|
1456
|
+
endpoint_id?: string | undefined;
|
|
1457
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
1458
|
+
key_id?: string | undefined;
|
|
1459
|
+
key_issuing_request_id?: string | undefined;
|
|
1460
|
+
door_names?: string[] | undefined;
|
|
1461
|
+
} | undefined;
|
|
1462
|
+
is_one_time_use?: boolean | undefined;
|
|
1463
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
|
|
1385
1464
|
external_type_display_name?: string | undefined;
|
|
1386
1465
|
acs_user_id?: string | undefined;
|
|
1387
1466
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1390,8 +1469,8 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1390
1469
|
is_issued?: boolean | undefined;
|
|
1391
1470
|
issued_at?: string | null | undefined;
|
|
1392
1471
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
1393
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
1394
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
1472
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
1473
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
1395
1474
|
} | {
|
|
1396
1475
|
created_at: string;
|
|
1397
1476
|
errors: {
|
|
@@ -1414,6 +1493,14 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1414
1493
|
message: string;
|
|
1415
1494
|
warning_code: "being_deleted";
|
|
1416
1495
|
created_at: string;
|
|
1496
|
+
} | {
|
|
1497
|
+
message: string;
|
|
1498
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
1499
|
+
created_at: string;
|
|
1500
|
+
} | {
|
|
1501
|
+
message: string;
|
|
1502
|
+
warning_code: "needs_to_be_reissued";
|
|
1503
|
+
created_at: string;
|
|
1417
1504
|
})[];
|
|
1418
1505
|
display_name: string;
|
|
1419
1506
|
workspace_id: string;
|
|
@@ -1434,7 +1521,15 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1434
1521
|
card_id?: string | undefined;
|
|
1435
1522
|
credential_id?: string | undefined;
|
|
1436
1523
|
} | undefined;
|
|
1437
|
-
|
|
1524
|
+
assa_abloy_vostio_metadata?: {
|
|
1525
|
+
endpoint_id?: string | undefined;
|
|
1526
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
1527
|
+
key_id?: string | undefined;
|
|
1528
|
+
key_issuing_request_id?: string | undefined;
|
|
1529
|
+
door_names?: string[] | undefined;
|
|
1530
|
+
} | undefined;
|
|
1531
|
+
is_one_time_use?: boolean | undefined;
|
|
1532
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
|
|
1438
1533
|
external_type_display_name?: string | undefined;
|
|
1439
1534
|
acs_user_id?: string | undefined;
|
|
1440
1535
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1443,8 +1538,8 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1443
1538
|
is_issued?: boolean | undefined;
|
|
1444
1539
|
issued_at?: string | null | undefined;
|
|
1445
1540
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
1446
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
1447
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
1541
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
1542
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
1448
1543
|
};
|
|
1449
1544
|
action_type: "ENCODE_CREDENTIAL";
|
|
1450
1545
|
} | {
|
|
@@ -1455,11 +1550,14 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1455
1550
|
type: "action_attempt_expired";
|
|
1456
1551
|
message: string;
|
|
1457
1552
|
} | {
|
|
1458
|
-
type: "
|
|
1553
|
+
type: "no_credential_on_encoder";
|
|
1459
1554
|
message: string;
|
|
1460
1555
|
} | {
|
|
1461
1556
|
type: "incompatible_card_format";
|
|
1462
1557
|
message: string;
|
|
1558
|
+
} | {
|
|
1559
|
+
type: "credential_cannot_be_reissued";
|
|
1560
|
+
message: string;
|
|
1463
1561
|
};
|
|
1464
1562
|
status: "error";
|
|
1465
1563
|
action_attempt_id: string;
|
|
@@ -1486,69 +1584,6 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1486
1584
|
action_attempt_id: string;
|
|
1487
1585
|
result: null;
|
|
1488
1586
|
action_type: "RESET_SANDBOX_WORKSPACE";
|
|
1489
|
-
} | {
|
|
1490
|
-
error: null;
|
|
1491
|
-
status: "pending";
|
|
1492
|
-
action_attempt_id: string;
|
|
1493
|
-
result: null;
|
|
1494
|
-
action_type: "SET_COOL";
|
|
1495
|
-
} | {
|
|
1496
|
-
error: null;
|
|
1497
|
-
status: "success";
|
|
1498
|
-
action_attempt_id: string;
|
|
1499
|
-
result: {};
|
|
1500
|
-
action_type: "SET_COOL";
|
|
1501
|
-
} | {
|
|
1502
|
-
error: {
|
|
1503
|
-
type: string;
|
|
1504
|
-
message: string;
|
|
1505
|
-
};
|
|
1506
|
-
status: "error";
|
|
1507
|
-
action_attempt_id: string;
|
|
1508
|
-
result: null;
|
|
1509
|
-
action_type: "SET_COOL";
|
|
1510
|
-
} | {
|
|
1511
|
-
error: null;
|
|
1512
|
-
status: "pending";
|
|
1513
|
-
action_attempt_id: string;
|
|
1514
|
-
result: null;
|
|
1515
|
-
action_type: "SET_HEAT";
|
|
1516
|
-
} | {
|
|
1517
|
-
error: null;
|
|
1518
|
-
status: "success";
|
|
1519
|
-
action_attempt_id: string;
|
|
1520
|
-
result: {};
|
|
1521
|
-
action_type: "SET_HEAT";
|
|
1522
|
-
} | {
|
|
1523
|
-
error: {
|
|
1524
|
-
type: string;
|
|
1525
|
-
message: string;
|
|
1526
|
-
};
|
|
1527
|
-
status: "error";
|
|
1528
|
-
action_attempt_id: string;
|
|
1529
|
-
result: null;
|
|
1530
|
-
action_type: "SET_HEAT";
|
|
1531
|
-
} | {
|
|
1532
|
-
error: null;
|
|
1533
|
-
status: "pending";
|
|
1534
|
-
action_attempt_id: string;
|
|
1535
|
-
result: null;
|
|
1536
|
-
action_type: "SET_HEAT_COOL";
|
|
1537
|
-
} | {
|
|
1538
|
-
error: null;
|
|
1539
|
-
status: "success";
|
|
1540
|
-
action_attempt_id: string;
|
|
1541
|
-
result: {};
|
|
1542
|
-
action_type: "SET_HEAT_COOL";
|
|
1543
|
-
} | {
|
|
1544
|
-
error: {
|
|
1545
|
-
type: string;
|
|
1546
|
-
message: string;
|
|
1547
|
-
};
|
|
1548
|
-
status: "error";
|
|
1549
|
-
action_attempt_id: string;
|
|
1550
|
-
result: null;
|
|
1551
|
-
action_type: "SET_HEAT_COOL";
|
|
1552
1587
|
} | {
|
|
1553
1588
|
error: null;
|
|
1554
1589
|
status: "pending";
|
|
@@ -1575,13 +1610,13 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1575
1610
|
status: "pending";
|
|
1576
1611
|
action_attempt_id: string;
|
|
1577
1612
|
result: null;
|
|
1578
|
-
action_type: "
|
|
1613
|
+
action_type: "SET_HVAC_MODE";
|
|
1579
1614
|
} | {
|
|
1580
1615
|
error: null;
|
|
1581
1616
|
status: "success";
|
|
1582
1617
|
action_attempt_id: string;
|
|
1583
1618
|
result: {};
|
|
1584
|
-
action_type: "
|
|
1619
|
+
action_type: "SET_HVAC_MODE";
|
|
1585
1620
|
} | {
|
|
1586
1621
|
error: {
|
|
1587
1622
|
type: string;
|
|
@@ -1590,7 +1625,7 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1590
1625
|
status: "error";
|
|
1591
1626
|
action_attempt_id: string;
|
|
1592
1627
|
result: null;
|
|
1593
|
-
action_type: "
|
|
1628
|
+
action_type: "SET_HVAC_MODE";
|
|
1594
1629
|
} | {
|
|
1595
1630
|
error: null;
|
|
1596
1631
|
status: "pending";
|
|
@@ -1826,7 +1861,7 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
1826
1861
|
action_attempt_id: string;
|
|
1827
1862
|
result: {
|
|
1828
1863
|
warnings: {
|
|
1829
|
-
warning_code: "acs_credential_on_encoder_out_of_sync";
|
|
1864
|
+
warning_code: "acs_credential_on_encoder_out_of_sync" | "acs_credential_on_seam_not_found";
|
|
1830
1865
|
warning_message: string;
|
|
1831
1866
|
}[];
|
|
1832
1867
|
acs_credential_on_encoder: {
|
|
@@ -1849,7 +1884,7 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
1849
1884
|
overridden?: boolean | undefined;
|
|
1850
1885
|
card_holder?: string | undefined;
|
|
1851
1886
|
} | undefined;
|
|
1852
|
-
};
|
|
1887
|
+
} | null;
|
|
1853
1888
|
acs_credential_on_seam: {
|
|
1854
1889
|
created_at: string;
|
|
1855
1890
|
errors: {
|
|
@@ -1872,6 +1907,14 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
1872
1907
|
message: string;
|
|
1873
1908
|
warning_code: "being_deleted";
|
|
1874
1909
|
created_at: string;
|
|
1910
|
+
} | {
|
|
1911
|
+
message: string;
|
|
1912
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
1913
|
+
created_at: string;
|
|
1914
|
+
} | {
|
|
1915
|
+
message: string;
|
|
1916
|
+
warning_code: "needs_to_be_reissued";
|
|
1917
|
+
created_at: string;
|
|
1875
1918
|
})[];
|
|
1876
1919
|
display_name: string;
|
|
1877
1920
|
workspace_id: string;
|
|
@@ -1892,7 +1935,15 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
1892
1935
|
card_id?: string | undefined;
|
|
1893
1936
|
credential_id?: string | undefined;
|
|
1894
1937
|
} | undefined;
|
|
1895
|
-
|
|
1938
|
+
assa_abloy_vostio_metadata?: {
|
|
1939
|
+
endpoint_id?: string | undefined;
|
|
1940
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
1941
|
+
key_id?: string | undefined;
|
|
1942
|
+
key_issuing_request_id?: string | undefined;
|
|
1943
|
+
door_names?: string[] | undefined;
|
|
1944
|
+
} | undefined;
|
|
1945
|
+
is_one_time_use?: boolean | undefined;
|
|
1946
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
|
|
1896
1947
|
external_type_display_name?: string | undefined;
|
|
1897
1948
|
acs_user_id?: string | undefined;
|
|
1898
1949
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1901,8 +1952,8 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
1901
1952
|
is_issued?: boolean | undefined;
|
|
1902
1953
|
issued_at?: string | null | undefined;
|
|
1903
1954
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
1904
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
1905
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
1955
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
1956
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
1906
1957
|
} | {
|
|
1907
1958
|
created_at: string;
|
|
1908
1959
|
errors: {
|
|
@@ -1925,6 +1976,14 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
1925
1976
|
message: string;
|
|
1926
1977
|
warning_code: "being_deleted";
|
|
1927
1978
|
created_at: string;
|
|
1979
|
+
} | {
|
|
1980
|
+
message: string;
|
|
1981
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
1982
|
+
created_at: string;
|
|
1983
|
+
} | {
|
|
1984
|
+
message: string;
|
|
1985
|
+
warning_code: "needs_to_be_reissued";
|
|
1986
|
+
created_at: string;
|
|
1928
1987
|
})[];
|
|
1929
1988
|
display_name: string;
|
|
1930
1989
|
workspace_id: string;
|
|
@@ -1945,7 +2004,15 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
1945
2004
|
card_id?: string | undefined;
|
|
1946
2005
|
credential_id?: string | undefined;
|
|
1947
2006
|
} | undefined;
|
|
1948
|
-
|
|
2007
|
+
assa_abloy_vostio_metadata?: {
|
|
2008
|
+
endpoint_id?: string | undefined;
|
|
2009
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
2010
|
+
key_id?: string | undefined;
|
|
2011
|
+
key_issuing_request_id?: string | undefined;
|
|
2012
|
+
door_names?: string[] | undefined;
|
|
2013
|
+
} | undefined;
|
|
2014
|
+
is_one_time_use?: boolean | undefined;
|
|
2015
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
|
|
1949
2016
|
external_type_display_name?: string | undefined;
|
|
1950
2017
|
acs_user_id?: string | undefined;
|
|
1951
2018
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1954,8 +2021,8 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
1954
2021
|
is_issued?: boolean | undefined;
|
|
1955
2022
|
issued_at?: string | null | undefined;
|
|
1956
2023
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
1957
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
1958
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
2024
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
2025
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
1959
2026
|
} | null;
|
|
1960
2027
|
};
|
|
1961
2028
|
action_type: "SCAN_CREDENTIAL";
|
|
@@ -1967,7 +2034,7 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
1967
2034
|
type: "action_attempt_expired";
|
|
1968
2035
|
message: string;
|
|
1969
2036
|
} | {
|
|
1970
|
-
type: "
|
|
2037
|
+
type: "no_credential_on_encoder";
|
|
1971
2038
|
message: string;
|
|
1972
2039
|
};
|
|
1973
2040
|
status: "error";
|
|
@@ -2006,6 +2073,14 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
2006
2073
|
message: string;
|
|
2007
2074
|
warning_code: "being_deleted";
|
|
2008
2075
|
created_at: string;
|
|
2076
|
+
} | {
|
|
2077
|
+
message: string;
|
|
2078
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
2079
|
+
created_at: string;
|
|
2080
|
+
} | {
|
|
2081
|
+
message: string;
|
|
2082
|
+
warning_code: "needs_to_be_reissued";
|
|
2083
|
+
created_at: string;
|
|
2009
2084
|
})[];
|
|
2010
2085
|
display_name: string;
|
|
2011
2086
|
workspace_id: string;
|
|
@@ -2026,7 +2101,15 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
2026
2101
|
card_id?: string | undefined;
|
|
2027
2102
|
credential_id?: string | undefined;
|
|
2028
2103
|
} | undefined;
|
|
2029
|
-
|
|
2104
|
+
assa_abloy_vostio_metadata?: {
|
|
2105
|
+
endpoint_id?: string | undefined;
|
|
2106
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
2107
|
+
key_id?: string | undefined;
|
|
2108
|
+
key_issuing_request_id?: string | undefined;
|
|
2109
|
+
door_names?: string[] | undefined;
|
|
2110
|
+
} | undefined;
|
|
2111
|
+
is_one_time_use?: boolean | undefined;
|
|
2112
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
|
|
2030
2113
|
external_type_display_name?: string | undefined;
|
|
2031
2114
|
acs_user_id?: string | undefined;
|
|
2032
2115
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -2035,8 +2118,8 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
2035
2118
|
is_issued?: boolean | undefined;
|
|
2036
2119
|
issued_at?: string | null | undefined;
|
|
2037
2120
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
2038
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
2039
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
2121
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
2122
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
2040
2123
|
} | {
|
|
2041
2124
|
created_at: string;
|
|
2042
2125
|
errors: {
|
|
@@ -2059,6 +2142,14 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
2059
2142
|
message: string;
|
|
2060
2143
|
warning_code: "being_deleted";
|
|
2061
2144
|
created_at: string;
|
|
2145
|
+
} | {
|
|
2146
|
+
message: string;
|
|
2147
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
2148
|
+
created_at: string;
|
|
2149
|
+
} | {
|
|
2150
|
+
message: string;
|
|
2151
|
+
warning_code: "needs_to_be_reissued";
|
|
2152
|
+
created_at: string;
|
|
2062
2153
|
})[];
|
|
2063
2154
|
display_name: string;
|
|
2064
2155
|
workspace_id: string;
|
|
@@ -2079,7 +2170,15 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
2079
2170
|
card_id?: string | undefined;
|
|
2080
2171
|
credential_id?: string | undefined;
|
|
2081
2172
|
} | undefined;
|
|
2082
|
-
|
|
2173
|
+
assa_abloy_vostio_metadata?: {
|
|
2174
|
+
endpoint_id?: string | undefined;
|
|
2175
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
2176
|
+
key_id?: string | undefined;
|
|
2177
|
+
key_issuing_request_id?: string | undefined;
|
|
2178
|
+
door_names?: string[] | undefined;
|
|
2179
|
+
} | undefined;
|
|
2180
|
+
is_one_time_use?: boolean | undefined;
|
|
2181
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
|
|
2083
2182
|
external_type_display_name?: string | undefined;
|
|
2084
2183
|
acs_user_id?: string | undefined;
|
|
2085
2184
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -2088,8 +2187,8 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
2088
2187
|
is_issued?: boolean | undefined;
|
|
2089
2188
|
issued_at?: string | null | undefined;
|
|
2090
2189
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
2091
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
2092
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
2190
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
2191
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
2093
2192
|
};
|
|
2094
2193
|
action_type: "ENCODE_CREDENTIAL";
|
|
2095
2194
|
} | {
|
|
@@ -2100,11 +2199,14 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
2100
2199
|
type: "action_attempt_expired";
|
|
2101
2200
|
message: string;
|
|
2102
2201
|
} | {
|
|
2103
|
-
type: "
|
|
2202
|
+
type: "no_credential_on_encoder";
|
|
2104
2203
|
message: string;
|
|
2105
2204
|
} | {
|
|
2106
2205
|
type: "incompatible_card_format";
|
|
2107
2206
|
message: string;
|
|
2207
|
+
} | {
|
|
2208
|
+
type: "credential_cannot_be_reissued";
|
|
2209
|
+
message: string;
|
|
2108
2210
|
};
|
|
2109
2211
|
status: "error";
|
|
2110
2212
|
action_attempt_id: string;
|
|
@@ -2131,69 +2233,6 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
2131
2233
|
action_attempt_id: string;
|
|
2132
2234
|
result: null;
|
|
2133
2235
|
action_type: "RESET_SANDBOX_WORKSPACE";
|
|
2134
|
-
} | {
|
|
2135
|
-
error: null;
|
|
2136
|
-
status: "pending";
|
|
2137
|
-
action_attempt_id: string;
|
|
2138
|
-
result: null;
|
|
2139
|
-
action_type: "SET_COOL";
|
|
2140
|
-
} | {
|
|
2141
|
-
error: null;
|
|
2142
|
-
status: "success";
|
|
2143
|
-
action_attempt_id: string;
|
|
2144
|
-
result: {};
|
|
2145
|
-
action_type: "SET_COOL";
|
|
2146
|
-
} | {
|
|
2147
|
-
error: {
|
|
2148
|
-
type: string;
|
|
2149
|
-
message: string;
|
|
2150
|
-
};
|
|
2151
|
-
status: "error";
|
|
2152
|
-
action_attempt_id: string;
|
|
2153
|
-
result: null;
|
|
2154
|
-
action_type: "SET_COOL";
|
|
2155
|
-
} | {
|
|
2156
|
-
error: null;
|
|
2157
|
-
status: "pending";
|
|
2158
|
-
action_attempt_id: string;
|
|
2159
|
-
result: null;
|
|
2160
|
-
action_type: "SET_HEAT";
|
|
2161
|
-
} | {
|
|
2162
|
-
error: null;
|
|
2163
|
-
status: "success";
|
|
2164
|
-
action_attempt_id: string;
|
|
2165
|
-
result: {};
|
|
2166
|
-
action_type: "SET_HEAT";
|
|
2167
|
-
} | {
|
|
2168
|
-
error: {
|
|
2169
|
-
type: string;
|
|
2170
|
-
message: string;
|
|
2171
|
-
};
|
|
2172
|
-
status: "error";
|
|
2173
|
-
action_attempt_id: string;
|
|
2174
|
-
result: null;
|
|
2175
|
-
action_type: "SET_HEAT";
|
|
2176
|
-
} | {
|
|
2177
|
-
error: null;
|
|
2178
|
-
status: "pending";
|
|
2179
|
-
action_attempt_id: string;
|
|
2180
|
-
result: null;
|
|
2181
|
-
action_type: "SET_HEAT_COOL";
|
|
2182
|
-
} | {
|
|
2183
|
-
error: null;
|
|
2184
|
-
status: "success";
|
|
2185
|
-
action_attempt_id: string;
|
|
2186
|
-
result: {};
|
|
2187
|
-
action_type: "SET_HEAT_COOL";
|
|
2188
|
-
} | {
|
|
2189
|
-
error: {
|
|
2190
|
-
type: string;
|
|
2191
|
-
message: string;
|
|
2192
|
-
};
|
|
2193
|
-
status: "error";
|
|
2194
|
-
action_attempt_id: string;
|
|
2195
|
-
result: null;
|
|
2196
|
-
action_type: "SET_HEAT_COOL";
|
|
2197
2236
|
} | {
|
|
2198
2237
|
error: null;
|
|
2199
2238
|
status: "pending";
|
|
@@ -2220,13 +2259,13 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
2220
2259
|
status: "pending";
|
|
2221
2260
|
action_attempt_id: string;
|
|
2222
2261
|
result: null;
|
|
2223
|
-
action_type: "
|
|
2262
|
+
action_type: "SET_HVAC_MODE";
|
|
2224
2263
|
} | {
|
|
2225
2264
|
error: null;
|
|
2226
2265
|
status: "success";
|
|
2227
2266
|
action_attempt_id: string;
|
|
2228
2267
|
result: {};
|
|
2229
|
-
action_type: "
|
|
2268
|
+
action_type: "SET_HVAC_MODE";
|
|
2230
2269
|
} | {
|
|
2231
2270
|
error: {
|
|
2232
2271
|
type: string;
|
|
@@ -2235,7 +2274,7 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
2235
2274
|
status: "error";
|
|
2236
2275
|
action_attempt_id: string;
|
|
2237
2276
|
result: null;
|
|
2238
|
-
action_type: "
|
|
2277
|
+
action_type: "SET_HVAC_MODE";
|
|
2239
2278
|
} | {
|
|
2240
2279
|
error: null;
|
|
2241
2280
|
status: "pending";
|
|
@@ -2471,7 +2510,7 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2471
2510
|
action_attempt_id: string;
|
|
2472
2511
|
result: {
|
|
2473
2512
|
warnings: {
|
|
2474
|
-
warning_code: "acs_credential_on_encoder_out_of_sync";
|
|
2513
|
+
warning_code: "acs_credential_on_encoder_out_of_sync" | "acs_credential_on_seam_not_found";
|
|
2475
2514
|
warning_message: string;
|
|
2476
2515
|
}[];
|
|
2477
2516
|
acs_credential_on_encoder: {
|
|
@@ -2494,7 +2533,7 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2494
2533
|
overridden?: boolean | undefined;
|
|
2495
2534
|
card_holder?: string | undefined;
|
|
2496
2535
|
} | undefined;
|
|
2497
|
-
};
|
|
2536
|
+
} | null;
|
|
2498
2537
|
acs_credential_on_seam: {
|
|
2499
2538
|
created_at: string;
|
|
2500
2539
|
errors: {
|
|
@@ -2517,6 +2556,14 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2517
2556
|
message: string;
|
|
2518
2557
|
warning_code: "being_deleted";
|
|
2519
2558
|
created_at: string;
|
|
2559
|
+
} | {
|
|
2560
|
+
message: string;
|
|
2561
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
2562
|
+
created_at: string;
|
|
2563
|
+
} | {
|
|
2564
|
+
message: string;
|
|
2565
|
+
warning_code: "needs_to_be_reissued";
|
|
2566
|
+
created_at: string;
|
|
2520
2567
|
})[];
|
|
2521
2568
|
display_name: string;
|
|
2522
2569
|
workspace_id: string;
|
|
@@ -2537,7 +2584,15 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2537
2584
|
card_id?: string | undefined;
|
|
2538
2585
|
credential_id?: string | undefined;
|
|
2539
2586
|
} | undefined;
|
|
2540
|
-
|
|
2587
|
+
assa_abloy_vostio_metadata?: {
|
|
2588
|
+
endpoint_id?: string | undefined;
|
|
2589
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
2590
|
+
key_id?: string | undefined;
|
|
2591
|
+
key_issuing_request_id?: string | undefined;
|
|
2592
|
+
door_names?: string[] | undefined;
|
|
2593
|
+
} | undefined;
|
|
2594
|
+
is_one_time_use?: boolean | undefined;
|
|
2595
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
|
|
2541
2596
|
external_type_display_name?: string | undefined;
|
|
2542
2597
|
acs_user_id?: string | undefined;
|
|
2543
2598
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -2546,8 +2601,8 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2546
2601
|
is_issued?: boolean | undefined;
|
|
2547
2602
|
issued_at?: string | null | undefined;
|
|
2548
2603
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
2549
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
2550
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
2604
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
2605
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
2551
2606
|
} | {
|
|
2552
2607
|
created_at: string;
|
|
2553
2608
|
errors: {
|
|
@@ -2570,6 +2625,14 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2570
2625
|
message: string;
|
|
2571
2626
|
warning_code: "being_deleted";
|
|
2572
2627
|
created_at: string;
|
|
2628
|
+
} | {
|
|
2629
|
+
message: string;
|
|
2630
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
2631
|
+
created_at: string;
|
|
2632
|
+
} | {
|
|
2633
|
+
message: string;
|
|
2634
|
+
warning_code: "needs_to_be_reissued";
|
|
2635
|
+
created_at: string;
|
|
2573
2636
|
})[];
|
|
2574
2637
|
display_name: string;
|
|
2575
2638
|
workspace_id: string;
|
|
@@ -2590,7 +2653,15 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2590
2653
|
card_id?: string | undefined;
|
|
2591
2654
|
credential_id?: string | undefined;
|
|
2592
2655
|
} | undefined;
|
|
2593
|
-
|
|
2656
|
+
assa_abloy_vostio_metadata?: {
|
|
2657
|
+
endpoint_id?: string | undefined;
|
|
2658
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
2659
|
+
key_id?: string | undefined;
|
|
2660
|
+
key_issuing_request_id?: string | undefined;
|
|
2661
|
+
door_names?: string[] | undefined;
|
|
2662
|
+
} | undefined;
|
|
2663
|
+
is_one_time_use?: boolean | undefined;
|
|
2664
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
|
|
2594
2665
|
external_type_display_name?: string | undefined;
|
|
2595
2666
|
acs_user_id?: string | undefined;
|
|
2596
2667
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -2599,8 +2670,8 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2599
2670
|
is_issued?: boolean | undefined;
|
|
2600
2671
|
issued_at?: string | null | undefined;
|
|
2601
2672
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
2602
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
2603
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
2673
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
2674
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
2604
2675
|
} | null;
|
|
2605
2676
|
};
|
|
2606
2677
|
action_type: "SCAN_CREDENTIAL";
|
|
@@ -2612,7 +2683,7 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2612
2683
|
type: "action_attempt_expired";
|
|
2613
2684
|
message: string;
|
|
2614
2685
|
} | {
|
|
2615
|
-
type: "
|
|
2686
|
+
type: "no_credential_on_encoder";
|
|
2616
2687
|
message: string;
|
|
2617
2688
|
};
|
|
2618
2689
|
status: "error";
|
|
@@ -2651,6 +2722,14 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2651
2722
|
message: string;
|
|
2652
2723
|
warning_code: "being_deleted";
|
|
2653
2724
|
created_at: string;
|
|
2725
|
+
} | {
|
|
2726
|
+
message: string;
|
|
2727
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
2728
|
+
created_at: string;
|
|
2729
|
+
} | {
|
|
2730
|
+
message: string;
|
|
2731
|
+
warning_code: "needs_to_be_reissued";
|
|
2732
|
+
created_at: string;
|
|
2654
2733
|
})[];
|
|
2655
2734
|
display_name: string;
|
|
2656
2735
|
workspace_id: string;
|
|
@@ -2671,7 +2750,15 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2671
2750
|
card_id?: string | undefined;
|
|
2672
2751
|
credential_id?: string | undefined;
|
|
2673
2752
|
} | undefined;
|
|
2674
|
-
|
|
2753
|
+
assa_abloy_vostio_metadata?: {
|
|
2754
|
+
endpoint_id?: string | undefined;
|
|
2755
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
2756
|
+
key_id?: string | undefined;
|
|
2757
|
+
key_issuing_request_id?: string | undefined;
|
|
2758
|
+
door_names?: string[] | undefined;
|
|
2759
|
+
} | undefined;
|
|
2760
|
+
is_one_time_use?: boolean | undefined;
|
|
2761
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
|
|
2675
2762
|
external_type_display_name?: string | undefined;
|
|
2676
2763
|
acs_user_id?: string | undefined;
|
|
2677
2764
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -2680,8 +2767,8 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2680
2767
|
is_issued?: boolean | undefined;
|
|
2681
2768
|
issued_at?: string | null | undefined;
|
|
2682
2769
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
2683
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
2684
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
2770
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
2771
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
2685
2772
|
} | {
|
|
2686
2773
|
created_at: string;
|
|
2687
2774
|
errors: {
|
|
@@ -2704,6 +2791,14 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2704
2791
|
message: string;
|
|
2705
2792
|
warning_code: "being_deleted";
|
|
2706
2793
|
created_at: string;
|
|
2794
|
+
} | {
|
|
2795
|
+
message: string;
|
|
2796
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
2797
|
+
created_at: string;
|
|
2798
|
+
} | {
|
|
2799
|
+
message: string;
|
|
2800
|
+
warning_code: "needs_to_be_reissued";
|
|
2801
|
+
created_at: string;
|
|
2707
2802
|
})[];
|
|
2708
2803
|
display_name: string;
|
|
2709
2804
|
workspace_id: string;
|
|
@@ -2724,7 +2819,15 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2724
2819
|
card_id?: string | undefined;
|
|
2725
2820
|
credential_id?: string | undefined;
|
|
2726
2821
|
} | undefined;
|
|
2727
|
-
|
|
2822
|
+
assa_abloy_vostio_metadata?: {
|
|
2823
|
+
endpoint_id?: string | undefined;
|
|
2824
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
2825
|
+
key_id?: string | undefined;
|
|
2826
|
+
key_issuing_request_id?: string | undefined;
|
|
2827
|
+
door_names?: string[] | undefined;
|
|
2828
|
+
} | undefined;
|
|
2829
|
+
is_one_time_use?: boolean | undefined;
|
|
2830
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
|
|
2728
2831
|
external_type_display_name?: string | undefined;
|
|
2729
2832
|
acs_user_id?: string | undefined;
|
|
2730
2833
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -2733,8 +2836,8 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2733
2836
|
is_issued?: boolean | undefined;
|
|
2734
2837
|
issued_at?: string | null | undefined;
|
|
2735
2838
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
2736
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
2737
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
2839
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
2840
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
2738
2841
|
};
|
|
2739
2842
|
action_type: "ENCODE_CREDENTIAL";
|
|
2740
2843
|
} | {
|
|
@@ -2745,11 +2848,14 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2745
2848
|
type: "action_attempt_expired";
|
|
2746
2849
|
message: string;
|
|
2747
2850
|
} | {
|
|
2748
|
-
type: "
|
|
2851
|
+
type: "no_credential_on_encoder";
|
|
2749
2852
|
message: string;
|
|
2750
2853
|
} | {
|
|
2751
2854
|
type: "incompatible_card_format";
|
|
2752
2855
|
message: string;
|
|
2856
|
+
} | {
|
|
2857
|
+
type: "credential_cannot_be_reissued";
|
|
2858
|
+
message: string;
|
|
2753
2859
|
};
|
|
2754
2860
|
status: "error";
|
|
2755
2861
|
action_attempt_id: string;
|
|
@@ -2776,69 +2882,6 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2776
2882
|
action_attempt_id: string;
|
|
2777
2883
|
result: null;
|
|
2778
2884
|
action_type: "RESET_SANDBOX_WORKSPACE";
|
|
2779
|
-
} | {
|
|
2780
|
-
error: null;
|
|
2781
|
-
status: "pending";
|
|
2782
|
-
action_attempt_id: string;
|
|
2783
|
-
result: null;
|
|
2784
|
-
action_type: "SET_COOL";
|
|
2785
|
-
} | {
|
|
2786
|
-
error: null;
|
|
2787
|
-
status: "success";
|
|
2788
|
-
action_attempt_id: string;
|
|
2789
|
-
result: {};
|
|
2790
|
-
action_type: "SET_COOL";
|
|
2791
|
-
} | {
|
|
2792
|
-
error: {
|
|
2793
|
-
type: string;
|
|
2794
|
-
message: string;
|
|
2795
|
-
};
|
|
2796
|
-
status: "error";
|
|
2797
|
-
action_attempt_id: string;
|
|
2798
|
-
result: null;
|
|
2799
|
-
action_type: "SET_COOL";
|
|
2800
|
-
} | {
|
|
2801
|
-
error: null;
|
|
2802
|
-
status: "pending";
|
|
2803
|
-
action_attempt_id: string;
|
|
2804
|
-
result: null;
|
|
2805
|
-
action_type: "SET_HEAT";
|
|
2806
|
-
} | {
|
|
2807
|
-
error: null;
|
|
2808
|
-
status: "success";
|
|
2809
|
-
action_attempt_id: string;
|
|
2810
|
-
result: {};
|
|
2811
|
-
action_type: "SET_HEAT";
|
|
2812
|
-
} | {
|
|
2813
|
-
error: {
|
|
2814
|
-
type: string;
|
|
2815
|
-
message: string;
|
|
2816
|
-
};
|
|
2817
|
-
status: "error";
|
|
2818
|
-
action_attempt_id: string;
|
|
2819
|
-
result: null;
|
|
2820
|
-
action_type: "SET_HEAT";
|
|
2821
|
-
} | {
|
|
2822
|
-
error: null;
|
|
2823
|
-
status: "pending";
|
|
2824
|
-
action_attempt_id: string;
|
|
2825
|
-
result: null;
|
|
2826
|
-
action_type: "SET_HEAT_COOL";
|
|
2827
|
-
} | {
|
|
2828
|
-
error: null;
|
|
2829
|
-
status: "success";
|
|
2830
|
-
action_attempt_id: string;
|
|
2831
|
-
result: {};
|
|
2832
|
-
action_type: "SET_HEAT_COOL";
|
|
2833
|
-
} | {
|
|
2834
|
-
error: {
|
|
2835
|
-
type: string;
|
|
2836
|
-
message: string;
|
|
2837
|
-
};
|
|
2838
|
-
status: "error";
|
|
2839
|
-
action_attempt_id: string;
|
|
2840
|
-
result: null;
|
|
2841
|
-
action_type: "SET_HEAT_COOL";
|
|
2842
2885
|
} | {
|
|
2843
2886
|
error: null;
|
|
2844
2887
|
status: "pending";
|
|
@@ -2865,13 +2908,13 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2865
2908
|
status: "pending";
|
|
2866
2909
|
action_attempt_id: string;
|
|
2867
2910
|
result: null;
|
|
2868
|
-
action_type: "
|
|
2911
|
+
action_type: "SET_HVAC_MODE";
|
|
2869
2912
|
} | {
|
|
2870
2913
|
error: null;
|
|
2871
2914
|
status: "success";
|
|
2872
2915
|
action_attempt_id: string;
|
|
2873
2916
|
result: {};
|
|
2874
|
-
action_type: "
|
|
2917
|
+
action_type: "SET_HVAC_MODE";
|
|
2875
2918
|
} | {
|
|
2876
2919
|
error: {
|
|
2877
2920
|
type: string;
|
|
@@ -2880,7 +2923,7 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2880
2923
|
status: "error";
|
|
2881
2924
|
action_attempt_id: string;
|
|
2882
2925
|
result: null;
|
|
2883
|
-
action_type: "
|
|
2926
|
+
action_type: "SET_HVAC_MODE";
|
|
2884
2927
|
} | {
|
|
2885
2928
|
error: null;
|
|
2886
2929
|
status: "pending";
|
|
@@ -3204,4 +3247,4 @@ declare const isPublishableKey: (token: string) => boolean;
|
|
|
3204
3247
|
declare const isConsoleSessionToken: (token: string) => boolean;
|
|
3205
3248
|
declare const isPersonalAccessToken: (token: string) => boolean;
|
|
3206
3249
|
|
|
3207
|
-
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 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, 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 };
|
|
3250
|
+
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 };
|