@seamapi/http 1.17.0 → 1.18.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 +119 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +112 -211
- package/lib/seam/connect/auth.js +6 -1
- package/lib/seam/connect/auth.js.map +1 -1
- package/lib/seam/connect/resolve-action-attempt.d.ts +108 -280
- 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/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 +6 -4
- package/src/lib/seam/connect/auth.ts +5 -2
- 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/index.ts +1 -0
- package/src/lib/version.ts +1 -1
package/dist/connect.d.cts
CHANGED
|
@@ -458,6 +458,35 @@ declare class SeamHttpAcs {
|
|
|
458
458
|
get users(): SeamHttpAcsUsers;
|
|
459
459
|
}
|
|
460
460
|
|
|
461
|
+
declare class SeamHttpAcsEncodersSimulate {
|
|
462
|
+
client: Client;
|
|
463
|
+
readonly defaults: Required<SeamHttpRequestOptions>;
|
|
464
|
+
constructor(apiKeyOrOptions?: string | SeamHttpOptions);
|
|
465
|
+
static fromClient(client: SeamHttpOptionsWithClient['client'], options?: Omit<SeamHttpOptionsWithClient, 'client'>): SeamHttpAcsEncodersSimulate;
|
|
466
|
+
static fromApiKey(apiKey: SeamHttpOptionsWithApiKey['apiKey'], options?: Omit<SeamHttpOptionsWithApiKey, 'apiKey'>): SeamHttpAcsEncodersSimulate;
|
|
467
|
+
static fromClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken'], options?: Omit<SeamHttpOptionsWithClientSessionToken, 'clientSessionToken'>): SeamHttpAcsEncodersSimulate;
|
|
468
|
+
static fromPublishableKey(publishableKey: string, userIdentifierKey: string, options?: SeamHttpFromPublishableKeyOptions): Promise<SeamHttpAcsEncodersSimulate>;
|
|
469
|
+
static fromConsoleSessionToken(consoleSessionToken: SeamHttpOptionsWithConsoleSessionToken['consoleSessionToken'], workspaceId: SeamHttpOptionsWithConsoleSessionToken['workspaceId'], options?: Omit<SeamHttpOptionsWithConsoleSessionToken, 'consoleSessionToken' | 'workspaceId'>): SeamHttpAcsEncodersSimulate;
|
|
470
|
+
static fromPersonalAccessToken(personalAccessToken: SeamHttpOptionsWithPersonalAccessToken['personalAccessToken'], workspaceId: SeamHttpOptionsWithPersonalAccessToken['workspaceId'], options?: Omit<SeamHttpOptionsWithPersonalAccessToken, 'personalAccessToken' | 'workspaceId'>): SeamHttpAcsEncodersSimulate;
|
|
471
|
+
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
472
|
+
nextCredentialEncodeWillFail(body?: AcsEncodersSimulateNextCredentialEncodeWillFailBody): SeamHttpRequest<void, undefined>;
|
|
473
|
+
nextCredentialEncodeWillSucceed(body?: AcsEncodersSimulateNextCredentialEncodeWillSucceedBody): SeamHttpRequest<void, undefined>;
|
|
474
|
+
nextCredentialScanWillFail(body?: AcsEncodersSimulateNextCredentialScanWillFailBody): SeamHttpRequest<void, undefined>;
|
|
475
|
+
nextCredentialScanWillSucceed(body?: AcsEncodersSimulateNextCredentialScanWillSucceedBody): SeamHttpRequest<void, undefined>;
|
|
476
|
+
}
|
|
477
|
+
type AcsEncodersSimulateNextCredentialEncodeWillFailBody = RouteRequestBody<'/acs/encoders/simulate/next_credential_encode_will_fail'>;
|
|
478
|
+
type AcsEncodersSimulateNextCredentialEncodeWillFailResponse = SetNonNullable<Required<RouteResponse<'/acs/encoders/simulate/next_credential_encode_will_fail'>>>;
|
|
479
|
+
type AcsEncodersSimulateNextCredentialEncodeWillFailOptions = never;
|
|
480
|
+
type AcsEncodersSimulateNextCredentialEncodeWillSucceedBody = RouteRequestBody<'/acs/encoders/simulate/next_credential_encode_will_succeed'>;
|
|
481
|
+
type AcsEncodersSimulateNextCredentialEncodeWillSucceedResponse = SetNonNullable<Required<RouteResponse<'/acs/encoders/simulate/next_credential_encode_will_succeed'>>>;
|
|
482
|
+
type AcsEncodersSimulateNextCredentialEncodeWillSucceedOptions = never;
|
|
483
|
+
type AcsEncodersSimulateNextCredentialScanWillFailBody = RouteRequestBody<'/acs/encoders/simulate/next_credential_scan_will_fail'>;
|
|
484
|
+
type AcsEncodersSimulateNextCredentialScanWillFailResponse = SetNonNullable<Required<RouteResponse<'/acs/encoders/simulate/next_credential_scan_will_fail'>>>;
|
|
485
|
+
type AcsEncodersSimulateNextCredentialScanWillFailOptions = never;
|
|
486
|
+
type AcsEncodersSimulateNextCredentialScanWillSucceedBody = RouteRequestBody<'/acs/encoders/simulate/next_credential_scan_will_succeed'>;
|
|
487
|
+
type AcsEncodersSimulateNextCredentialScanWillSucceedResponse = SetNonNullable<Required<RouteResponse<'/acs/encoders/simulate/next_credential_scan_will_succeed'>>>;
|
|
488
|
+
type AcsEncodersSimulateNextCredentialScanWillSucceedOptions = never;
|
|
489
|
+
|
|
461
490
|
declare class SeamHttpAcsEncoders {
|
|
462
491
|
client: Client;
|
|
463
492
|
readonly defaults: Required<SeamHttpRequestOptions>;
|
|
@@ -469,6 +498,7 @@ declare class SeamHttpAcsEncoders {
|
|
|
469
498
|
static fromConsoleSessionToken(consoleSessionToken: SeamHttpOptionsWithConsoleSessionToken['consoleSessionToken'], workspaceId: SeamHttpOptionsWithConsoleSessionToken['workspaceId'], options?: Omit<SeamHttpOptionsWithConsoleSessionToken, 'consoleSessionToken' | 'workspaceId'>): SeamHttpAcsEncoders;
|
|
470
499
|
static fromPersonalAccessToken(personalAccessToken: SeamHttpOptionsWithPersonalAccessToken['personalAccessToken'], workspaceId: SeamHttpOptionsWithPersonalAccessToken['workspaceId'], options?: Omit<SeamHttpOptionsWithPersonalAccessToken, 'personalAccessToken' | 'workspaceId'>): SeamHttpAcsEncoders;
|
|
471
500
|
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
501
|
+
get simulate(): SeamHttpAcsEncodersSimulate;
|
|
472
502
|
encodeCredential(body?: AcsEncodersEncodeCredentialBody, options?: Pick<SeamHttpRequestOptions, 'waitForActionAttempt'>): SeamHttpRequest<AcsEncodersEncodeCredentialResponse, 'action_attempt'>;
|
|
473
503
|
list(body?: AcsEncodersListParams): SeamHttpRequest<AcsEncodersListResponse, 'acs_encoders'>;
|
|
474
504
|
scanCredential(body?: AcsEncodersScanCredentialBody, options?: Pick<SeamHttpRequestOptions, 'waitForActionAttempt'>): SeamHttpRequest<AcsEncodersScanCredentialResponse, 'action_attempt'>;
|
|
@@ -1181,7 +1211,7 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1181
1211
|
action_attempt_id: string;
|
|
1182
1212
|
result: {
|
|
1183
1213
|
warnings: {
|
|
1184
|
-
warning_code: "acs_credential_on_encoder_out_of_sync";
|
|
1214
|
+
warning_code: "acs_credential_on_encoder_out_of_sync" | "acs_credential_on_seam_not_found";
|
|
1185
1215
|
warning_message: string;
|
|
1186
1216
|
}[];
|
|
1187
1217
|
acs_credential_on_encoder: {
|
|
@@ -1204,7 +1234,7 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1204
1234
|
overridden?: boolean | undefined;
|
|
1205
1235
|
card_holder?: string | undefined;
|
|
1206
1236
|
} | undefined;
|
|
1207
|
-
};
|
|
1237
|
+
} | null;
|
|
1208
1238
|
acs_credential_on_seam: {
|
|
1209
1239
|
created_at: string;
|
|
1210
1240
|
errors: {
|
|
@@ -1227,6 +1257,10 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1227
1257
|
message: string;
|
|
1228
1258
|
warning_code: "being_deleted";
|
|
1229
1259
|
created_at: string;
|
|
1260
|
+
} | {
|
|
1261
|
+
message: string;
|
|
1262
|
+
warning_code: "unknown_issue_with_credential";
|
|
1263
|
+
created_at: string;
|
|
1230
1264
|
})[];
|
|
1231
1265
|
display_name: string;
|
|
1232
1266
|
workspace_id: string;
|
|
@@ -1247,6 +1281,7 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1247
1281
|
card_id?: string | undefined;
|
|
1248
1282
|
credential_id?: string | undefined;
|
|
1249
1283
|
} | undefined;
|
|
1284
|
+
is_one_time_use?: boolean | undefined;
|
|
1250
1285
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
1251
1286
|
external_type_display_name?: string | undefined;
|
|
1252
1287
|
acs_user_id?: string | undefined;
|
|
@@ -1280,6 +1315,10 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1280
1315
|
message: string;
|
|
1281
1316
|
warning_code: "being_deleted";
|
|
1282
1317
|
created_at: string;
|
|
1318
|
+
} | {
|
|
1319
|
+
message: string;
|
|
1320
|
+
warning_code: "unknown_issue_with_credential";
|
|
1321
|
+
created_at: string;
|
|
1283
1322
|
})[];
|
|
1284
1323
|
display_name: string;
|
|
1285
1324
|
workspace_id: string;
|
|
@@ -1300,6 +1339,7 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1300
1339
|
card_id?: string | undefined;
|
|
1301
1340
|
credential_id?: string | undefined;
|
|
1302
1341
|
} | undefined;
|
|
1342
|
+
is_one_time_use?: boolean | undefined;
|
|
1303
1343
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
1304
1344
|
external_type_display_name?: string | undefined;
|
|
1305
1345
|
acs_user_id?: string | undefined;
|
|
@@ -1322,7 +1362,7 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1322
1362
|
type: "action_attempt_expired";
|
|
1323
1363
|
message: string;
|
|
1324
1364
|
} | {
|
|
1325
|
-
type: "
|
|
1365
|
+
type: "no_credential_on_encoder";
|
|
1326
1366
|
message: string;
|
|
1327
1367
|
};
|
|
1328
1368
|
status: "error";
|
|
@@ -1361,6 +1401,10 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1361
1401
|
message: string;
|
|
1362
1402
|
warning_code: "being_deleted";
|
|
1363
1403
|
created_at: string;
|
|
1404
|
+
} | {
|
|
1405
|
+
message: string;
|
|
1406
|
+
warning_code: "unknown_issue_with_credential";
|
|
1407
|
+
created_at: string;
|
|
1364
1408
|
})[];
|
|
1365
1409
|
display_name: string;
|
|
1366
1410
|
workspace_id: string;
|
|
@@ -1381,6 +1425,7 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1381
1425
|
card_id?: string | undefined;
|
|
1382
1426
|
credential_id?: string | undefined;
|
|
1383
1427
|
} | undefined;
|
|
1428
|
+
is_one_time_use?: boolean | undefined;
|
|
1384
1429
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
1385
1430
|
external_type_display_name?: string | undefined;
|
|
1386
1431
|
acs_user_id?: string | undefined;
|
|
@@ -1414,6 +1459,10 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1414
1459
|
message: string;
|
|
1415
1460
|
warning_code: "being_deleted";
|
|
1416
1461
|
created_at: string;
|
|
1462
|
+
} | {
|
|
1463
|
+
message: string;
|
|
1464
|
+
warning_code: "unknown_issue_with_credential";
|
|
1465
|
+
created_at: string;
|
|
1417
1466
|
})[];
|
|
1418
1467
|
display_name: string;
|
|
1419
1468
|
workspace_id: string;
|
|
@@ -1434,6 +1483,7 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1434
1483
|
card_id?: string | undefined;
|
|
1435
1484
|
credential_id?: string | undefined;
|
|
1436
1485
|
} | undefined;
|
|
1486
|
+
is_one_time_use?: boolean | undefined;
|
|
1437
1487
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
1438
1488
|
external_type_display_name?: string | undefined;
|
|
1439
1489
|
acs_user_id?: string | undefined;
|
|
@@ -1455,7 +1505,7 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1455
1505
|
type: "action_attempt_expired";
|
|
1456
1506
|
message: string;
|
|
1457
1507
|
} | {
|
|
1458
|
-
type: "
|
|
1508
|
+
type: "no_credential_on_encoder";
|
|
1459
1509
|
message: string;
|
|
1460
1510
|
} | {
|
|
1461
1511
|
type: "incompatible_card_format";
|
|
@@ -1486,69 +1536,6 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1486
1536
|
action_attempt_id: string;
|
|
1487
1537
|
result: null;
|
|
1488
1538
|
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
1539
|
} | {
|
|
1553
1540
|
error: null;
|
|
1554
1541
|
status: "pending";
|
|
@@ -1575,13 +1562,13 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1575
1562
|
status: "pending";
|
|
1576
1563
|
action_attempt_id: string;
|
|
1577
1564
|
result: null;
|
|
1578
|
-
action_type: "
|
|
1565
|
+
action_type: "SET_HVAC_MODE";
|
|
1579
1566
|
} | {
|
|
1580
1567
|
error: null;
|
|
1581
1568
|
status: "success";
|
|
1582
1569
|
action_attempt_id: string;
|
|
1583
1570
|
result: {};
|
|
1584
|
-
action_type: "
|
|
1571
|
+
action_type: "SET_HVAC_MODE";
|
|
1585
1572
|
} | {
|
|
1586
1573
|
error: {
|
|
1587
1574
|
type: string;
|
|
@@ -1590,7 +1577,7 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1590
1577
|
status: "error";
|
|
1591
1578
|
action_attempt_id: string;
|
|
1592
1579
|
result: null;
|
|
1593
|
-
action_type: "
|
|
1580
|
+
action_type: "SET_HVAC_MODE";
|
|
1594
1581
|
} | {
|
|
1595
1582
|
error: null;
|
|
1596
1583
|
status: "pending";
|
|
@@ -1826,7 +1813,7 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
1826
1813
|
action_attempt_id: string;
|
|
1827
1814
|
result: {
|
|
1828
1815
|
warnings: {
|
|
1829
|
-
warning_code: "acs_credential_on_encoder_out_of_sync";
|
|
1816
|
+
warning_code: "acs_credential_on_encoder_out_of_sync" | "acs_credential_on_seam_not_found";
|
|
1830
1817
|
warning_message: string;
|
|
1831
1818
|
}[];
|
|
1832
1819
|
acs_credential_on_encoder: {
|
|
@@ -1849,7 +1836,7 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
1849
1836
|
overridden?: boolean | undefined;
|
|
1850
1837
|
card_holder?: string | undefined;
|
|
1851
1838
|
} | undefined;
|
|
1852
|
-
};
|
|
1839
|
+
} | null;
|
|
1853
1840
|
acs_credential_on_seam: {
|
|
1854
1841
|
created_at: string;
|
|
1855
1842
|
errors: {
|
|
@@ -1872,6 +1859,10 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
1872
1859
|
message: string;
|
|
1873
1860
|
warning_code: "being_deleted";
|
|
1874
1861
|
created_at: string;
|
|
1862
|
+
} | {
|
|
1863
|
+
message: string;
|
|
1864
|
+
warning_code: "unknown_issue_with_credential";
|
|
1865
|
+
created_at: string;
|
|
1875
1866
|
})[];
|
|
1876
1867
|
display_name: string;
|
|
1877
1868
|
workspace_id: string;
|
|
@@ -1892,6 +1883,7 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
1892
1883
|
card_id?: string | undefined;
|
|
1893
1884
|
credential_id?: string | undefined;
|
|
1894
1885
|
} | undefined;
|
|
1886
|
+
is_one_time_use?: boolean | undefined;
|
|
1895
1887
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
1896
1888
|
external_type_display_name?: string | undefined;
|
|
1897
1889
|
acs_user_id?: string | undefined;
|
|
@@ -1925,6 +1917,10 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
1925
1917
|
message: string;
|
|
1926
1918
|
warning_code: "being_deleted";
|
|
1927
1919
|
created_at: string;
|
|
1920
|
+
} | {
|
|
1921
|
+
message: string;
|
|
1922
|
+
warning_code: "unknown_issue_with_credential";
|
|
1923
|
+
created_at: string;
|
|
1928
1924
|
})[];
|
|
1929
1925
|
display_name: string;
|
|
1930
1926
|
workspace_id: string;
|
|
@@ -1945,6 +1941,7 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
1945
1941
|
card_id?: string | undefined;
|
|
1946
1942
|
credential_id?: string | undefined;
|
|
1947
1943
|
} | undefined;
|
|
1944
|
+
is_one_time_use?: boolean | undefined;
|
|
1948
1945
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
1949
1946
|
external_type_display_name?: string | undefined;
|
|
1950
1947
|
acs_user_id?: string | undefined;
|
|
@@ -1967,7 +1964,7 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
1967
1964
|
type: "action_attempt_expired";
|
|
1968
1965
|
message: string;
|
|
1969
1966
|
} | {
|
|
1970
|
-
type: "
|
|
1967
|
+
type: "no_credential_on_encoder";
|
|
1971
1968
|
message: string;
|
|
1972
1969
|
};
|
|
1973
1970
|
status: "error";
|
|
@@ -2006,6 +2003,10 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
2006
2003
|
message: string;
|
|
2007
2004
|
warning_code: "being_deleted";
|
|
2008
2005
|
created_at: string;
|
|
2006
|
+
} | {
|
|
2007
|
+
message: string;
|
|
2008
|
+
warning_code: "unknown_issue_with_credential";
|
|
2009
|
+
created_at: string;
|
|
2009
2010
|
})[];
|
|
2010
2011
|
display_name: string;
|
|
2011
2012
|
workspace_id: string;
|
|
@@ -2026,6 +2027,7 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
2026
2027
|
card_id?: string | undefined;
|
|
2027
2028
|
credential_id?: string | undefined;
|
|
2028
2029
|
} | undefined;
|
|
2030
|
+
is_one_time_use?: boolean | undefined;
|
|
2029
2031
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
2030
2032
|
external_type_display_name?: string | undefined;
|
|
2031
2033
|
acs_user_id?: string | undefined;
|
|
@@ -2059,6 +2061,10 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
2059
2061
|
message: string;
|
|
2060
2062
|
warning_code: "being_deleted";
|
|
2061
2063
|
created_at: string;
|
|
2064
|
+
} | {
|
|
2065
|
+
message: string;
|
|
2066
|
+
warning_code: "unknown_issue_with_credential";
|
|
2067
|
+
created_at: string;
|
|
2062
2068
|
})[];
|
|
2063
2069
|
display_name: string;
|
|
2064
2070
|
workspace_id: string;
|
|
@@ -2079,6 +2085,7 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
2079
2085
|
card_id?: string | undefined;
|
|
2080
2086
|
credential_id?: string | undefined;
|
|
2081
2087
|
} | undefined;
|
|
2088
|
+
is_one_time_use?: boolean | undefined;
|
|
2082
2089
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
2083
2090
|
external_type_display_name?: string | undefined;
|
|
2084
2091
|
acs_user_id?: string | undefined;
|
|
@@ -2100,7 +2107,7 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
2100
2107
|
type: "action_attempt_expired";
|
|
2101
2108
|
message: string;
|
|
2102
2109
|
} | {
|
|
2103
|
-
type: "
|
|
2110
|
+
type: "no_credential_on_encoder";
|
|
2104
2111
|
message: string;
|
|
2105
2112
|
} | {
|
|
2106
2113
|
type: "incompatible_card_format";
|
|
@@ -2131,69 +2138,6 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
2131
2138
|
action_attempt_id: string;
|
|
2132
2139
|
result: null;
|
|
2133
2140
|
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
2141
|
} | {
|
|
2198
2142
|
error: null;
|
|
2199
2143
|
status: "pending";
|
|
@@ -2220,13 +2164,13 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
2220
2164
|
status: "pending";
|
|
2221
2165
|
action_attempt_id: string;
|
|
2222
2166
|
result: null;
|
|
2223
|
-
action_type: "
|
|
2167
|
+
action_type: "SET_HVAC_MODE";
|
|
2224
2168
|
} | {
|
|
2225
2169
|
error: null;
|
|
2226
2170
|
status: "success";
|
|
2227
2171
|
action_attempt_id: string;
|
|
2228
2172
|
result: {};
|
|
2229
|
-
action_type: "
|
|
2173
|
+
action_type: "SET_HVAC_MODE";
|
|
2230
2174
|
} | {
|
|
2231
2175
|
error: {
|
|
2232
2176
|
type: string;
|
|
@@ -2235,7 +2179,7 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
2235
2179
|
status: "error";
|
|
2236
2180
|
action_attempt_id: string;
|
|
2237
2181
|
result: null;
|
|
2238
|
-
action_type: "
|
|
2182
|
+
action_type: "SET_HVAC_MODE";
|
|
2239
2183
|
} | {
|
|
2240
2184
|
error: null;
|
|
2241
2185
|
status: "pending";
|
|
@@ -2471,7 +2415,7 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2471
2415
|
action_attempt_id: string;
|
|
2472
2416
|
result: {
|
|
2473
2417
|
warnings: {
|
|
2474
|
-
warning_code: "acs_credential_on_encoder_out_of_sync";
|
|
2418
|
+
warning_code: "acs_credential_on_encoder_out_of_sync" | "acs_credential_on_seam_not_found";
|
|
2475
2419
|
warning_message: string;
|
|
2476
2420
|
}[];
|
|
2477
2421
|
acs_credential_on_encoder: {
|
|
@@ -2494,7 +2438,7 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2494
2438
|
overridden?: boolean | undefined;
|
|
2495
2439
|
card_holder?: string | undefined;
|
|
2496
2440
|
} | undefined;
|
|
2497
|
-
};
|
|
2441
|
+
} | null;
|
|
2498
2442
|
acs_credential_on_seam: {
|
|
2499
2443
|
created_at: string;
|
|
2500
2444
|
errors: {
|
|
@@ -2517,6 +2461,10 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2517
2461
|
message: string;
|
|
2518
2462
|
warning_code: "being_deleted";
|
|
2519
2463
|
created_at: string;
|
|
2464
|
+
} | {
|
|
2465
|
+
message: string;
|
|
2466
|
+
warning_code: "unknown_issue_with_credential";
|
|
2467
|
+
created_at: string;
|
|
2520
2468
|
})[];
|
|
2521
2469
|
display_name: string;
|
|
2522
2470
|
workspace_id: string;
|
|
@@ -2537,6 +2485,7 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2537
2485
|
card_id?: string | undefined;
|
|
2538
2486
|
credential_id?: string | undefined;
|
|
2539
2487
|
} | undefined;
|
|
2488
|
+
is_one_time_use?: boolean | undefined;
|
|
2540
2489
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
2541
2490
|
external_type_display_name?: string | undefined;
|
|
2542
2491
|
acs_user_id?: string | undefined;
|
|
@@ -2570,6 +2519,10 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2570
2519
|
message: string;
|
|
2571
2520
|
warning_code: "being_deleted";
|
|
2572
2521
|
created_at: string;
|
|
2522
|
+
} | {
|
|
2523
|
+
message: string;
|
|
2524
|
+
warning_code: "unknown_issue_with_credential";
|
|
2525
|
+
created_at: string;
|
|
2573
2526
|
})[];
|
|
2574
2527
|
display_name: string;
|
|
2575
2528
|
workspace_id: string;
|
|
@@ -2590,6 +2543,7 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2590
2543
|
card_id?: string | undefined;
|
|
2591
2544
|
credential_id?: string | undefined;
|
|
2592
2545
|
} | undefined;
|
|
2546
|
+
is_one_time_use?: boolean | undefined;
|
|
2593
2547
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
2594
2548
|
external_type_display_name?: string | undefined;
|
|
2595
2549
|
acs_user_id?: string | undefined;
|
|
@@ -2612,7 +2566,7 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2612
2566
|
type: "action_attempt_expired";
|
|
2613
2567
|
message: string;
|
|
2614
2568
|
} | {
|
|
2615
|
-
type: "
|
|
2569
|
+
type: "no_credential_on_encoder";
|
|
2616
2570
|
message: string;
|
|
2617
2571
|
};
|
|
2618
2572
|
status: "error";
|
|
@@ -2651,6 +2605,10 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2651
2605
|
message: string;
|
|
2652
2606
|
warning_code: "being_deleted";
|
|
2653
2607
|
created_at: string;
|
|
2608
|
+
} | {
|
|
2609
|
+
message: string;
|
|
2610
|
+
warning_code: "unknown_issue_with_credential";
|
|
2611
|
+
created_at: string;
|
|
2654
2612
|
})[];
|
|
2655
2613
|
display_name: string;
|
|
2656
2614
|
workspace_id: string;
|
|
@@ -2671,6 +2629,7 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2671
2629
|
card_id?: string | undefined;
|
|
2672
2630
|
credential_id?: string | undefined;
|
|
2673
2631
|
} | undefined;
|
|
2632
|
+
is_one_time_use?: boolean | undefined;
|
|
2674
2633
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
2675
2634
|
external_type_display_name?: string | undefined;
|
|
2676
2635
|
acs_user_id?: string | undefined;
|
|
@@ -2704,6 +2663,10 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2704
2663
|
message: string;
|
|
2705
2664
|
warning_code: "being_deleted";
|
|
2706
2665
|
created_at: string;
|
|
2666
|
+
} | {
|
|
2667
|
+
message: string;
|
|
2668
|
+
warning_code: "unknown_issue_with_credential";
|
|
2669
|
+
created_at: string;
|
|
2707
2670
|
})[];
|
|
2708
2671
|
display_name: string;
|
|
2709
2672
|
workspace_id: string;
|
|
@@ -2724,6 +2687,7 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2724
2687
|
card_id?: string | undefined;
|
|
2725
2688
|
credential_id?: string | undefined;
|
|
2726
2689
|
} | undefined;
|
|
2690
|
+
is_one_time_use?: boolean | undefined;
|
|
2727
2691
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
2728
2692
|
external_type_display_name?: string | undefined;
|
|
2729
2693
|
acs_user_id?: string | undefined;
|
|
@@ -2745,7 +2709,7 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2745
2709
|
type: "action_attempt_expired";
|
|
2746
2710
|
message: string;
|
|
2747
2711
|
} | {
|
|
2748
|
-
type: "
|
|
2712
|
+
type: "no_credential_on_encoder";
|
|
2749
2713
|
message: string;
|
|
2750
2714
|
} | {
|
|
2751
2715
|
type: "incompatible_card_format";
|
|
@@ -2776,69 +2740,6 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2776
2740
|
action_attempt_id: string;
|
|
2777
2741
|
result: null;
|
|
2778
2742
|
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
2743
|
} | {
|
|
2843
2744
|
error: null;
|
|
2844
2745
|
status: "pending";
|
|
@@ -2865,13 +2766,13 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2865
2766
|
status: "pending";
|
|
2866
2767
|
action_attempt_id: string;
|
|
2867
2768
|
result: null;
|
|
2868
|
-
action_type: "
|
|
2769
|
+
action_type: "SET_HVAC_MODE";
|
|
2869
2770
|
} | {
|
|
2870
2771
|
error: null;
|
|
2871
2772
|
status: "success";
|
|
2872
2773
|
action_attempt_id: string;
|
|
2873
2774
|
result: {};
|
|
2874
|
-
action_type: "
|
|
2775
|
+
action_type: "SET_HVAC_MODE";
|
|
2875
2776
|
} | {
|
|
2876
2777
|
error: {
|
|
2877
2778
|
type: string;
|
|
@@ -2880,7 +2781,7 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2880
2781
|
status: "error";
|
|
2881
2782
|
action_attempt_id: string;
|
|
2882
2783
|
result: null;
|
|
2883
|
-
action_type: "
|
|
2784
|
+
action_type: "SET_HVAC_MODE";
|
|
2884
2785
|
} | {
|
|
2885
2786
|
error: null;
|
|
2886
2787
|
status: "pending";
|
|
@@ -3204,4 +3105,4 @@ declare const isPublishableKey: (token: string) => boolean;
|
|
|
3204
3105
|
declare const isConsoleSessionToken: (token: string) => boolean;
|
|
3205
3106
|
declare const isPersonalAccessToken: (token: string) => boolean;
|
|
3206
3107
|
|
|
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 };
|
|
3108
|
+
export { type AccessCodesCreateBody, type AccessCodesCreateMultipleBody, type AccessCodesCreateMultipleOptions, type AccessCodesCreateMultipleResponse, type AccessCodesCreateOptions, type AccessCodesCreateResponse, type AccessCodesDeleteOptions, type AccessCodesDeleteParams, type AccessCodesDeleteResponse, type AccessCodesGenerateCodeBody, type AccessCodesGenerateCodeOptions, type AccessCodesGenerateCodeResponse, type AccessCodesGetOptions, type AccessCodesGetParams, type AccessCodesGetResponse, type AccessCodesListOptions, type AccessCodesListParams, type AccessCodesListResponse, type AccessCodesPullBackupAccessCodeBody, type AccessCodesPullBackupAccessCodeOptions, type AccessCodesPullBackupAccessCodeResponse, type AccessCodesSimulateCreateUnmanagedAccessCodeBody, type AccessCodesSimulateCreateUnmanagedAccessCodeOptions, type AccessCodesSimulateCreateUnmanagedAccessCodeResponse, type AccessCodesUnmanagedConvertToManagedBody, type AccessCodesUnmanagedConvertToManagedOptions, type AccessCodesUnmanagedConvertToManagedResponse, type AccessCodesUnmanagedDeleteOptions, type AccessCodesUnmanagedDeleteParams, type AccessCodesUnmanagedDeleteResponse, type AccessCodesUnmanagedGetOptions, type AccessCodesUnmanagedGetParams, type AccessCodesUnmanagedGetResponse, type AccessCodesUnmanagedListOptions, type AccessCodesUnmanagedListParams, type AccessCodesUnmanagedListResponse, type AccessCodesUnmanagedUpdateBody, type AccessCodesUnmanagedUpdateOptions, type AccessCodesUnmanagedUpdateResponse, type AccessCodesUpdateBody, type AccessCodesUpdateMultipleBody, type AccessCodesUpdateMultipleOptions, type AccessCodesUpdateMultipleResponse, type AccessCodesUpdateOptions, type AccessCodesUpdateResponse, type AcsAccessGroupsAddUserBody, type AcsAccessGroupsAddUserOptions, type AcsAccessGroupsAddUserResponse, type AcsAccessGroupsGetOptions, type AcsAccessGroupsGetParams, type AcsAccessGroupsGetResponse, type AcsAccessGroupsListAccessibleEntrancesOptions, type AcsAccessGroupsListAccessibleEntrancesParams, type AcsAccessGroupsListAccessibleEntrancesResponse, type AcsAccessGroupsListOptions, type AcsAccessGroupsListParams, type AcsAccessGroupsListResponse, type AcsAccessGroupsListUsersOptions, type AcsAccessGroupsListUsersParams, type AcsAccessGroupsListUsersResponse, type AcsAccessGroupsRemoveUserOptions, type AcsAccessGroupsRemoveUserParams, type AcsAccessGroupsRemoveUserResponse, type AcsAccessGroupsUnmanagedGetOptions, type AcsAccessGroupsUnmanagedGetParams, type AcsAccessGroupsUnmanagedGetResponse, type AcsAccessGroupsUnmanagedListOptions, type AcsAccessGroupsUnmanagedListParams, type AcsAccessGroupsUnmanagedListResponse, type AcsCredentialPoolsListOptions, type AcsCredentialPoolsListParams, type AcsCredentialPoolsListResponse, type AcsCredentialProvisioningAutomationsLaunchBody, type AcsCredentialProvisioningAutomationsLaunchOptions, type AcsCredentialProvisioningAutomationsLaunchResponse, type AcsCredentialsAssignBody, type AcsCredentialsAssignOptions, type AcsCredentialsAssignResponse, type AcsCredentialsCreateBody, type AcsCredentialsCreateOfflineCodeBody, type AcsCredentialsCreateOfflineCodeOptions, type AcsCredentialsCreateOfflineCodeResponse, type AcsCredentialsCreateOptions, type AcsCredentialsCreateResponse, type AcsCredentialsDeleteOptions, type AcsCredentialsDeleteParams, type AcsCredentialsDeleteResponse, type AcsCredentialsGetOptions, type AcsCredentialsGetParams, type AcsCredentialsGetResponse, type AcsCredentialsListAccessibleEntrancesOptions, type AcsCredentialsListAccessibleEntrancesParams, type AcsCredentialsListAccessibleEntrancesResponse, type AcsCredentialsListOptions, type AcsCredentialsListParams, type AcsCredentialsListResponse, type AcsCredentialsUnassignBody, type AcsCredentialsUnassignOptions, type AcsCredentialsUnassignResponse, type AcsCredentialsUnmanagedGetOptions, type AcsCredentialsUnmanagedGetParams, type AcsCredentialsUnmanagedGetResponse, type AcsCredentialsUnmanagedListOptions, type AcsCredentialsUnmanagedListParams, type AcsCredentialsUnmanagedListResponse, type AcsCredentialsUpdateBody, type AcsCredentialsUpdateOptions, type AcsCredentialsUpdateResponse, type AcsEncodersEncodeCredentialBody, type AcsEncodersEncodeCredentialOptions, type AcsEncodersEncodeCredentialResponse, type AcsEncodersListOptions, type AcsEncodersListParams, type AcsEncodersListResponse, type AcsEncodersScanCredentialBody, type AcsEncodersScanCredentialOptions, type AcsEncodersScanCredentialResponse, type AcsEncodersSimulateNextCredentialEncodeWillFailBody, type AcsEncodersSimulateNextCredentialEncodeWillFailOptions, type AcsEncodersSimulateNextCredentialEncodeWillFailResponse, type AcsEncodersSimulateNextCredentialEncodeWillSucceedBody, type AcsEncodersSimulateNextCredentialEncodeWillSucceedOptions, type AcsEncodersSimulateNextCredentialEncodeWillSucceedResponse, type AcsEncodersSimulateNextCredentialScanWillFailBody, type AcsEncodersSimulateNextCredentialScanWillFailOptions, type AcsEncodersSimulateNextCredentialScanWillFailResponse, type AcsEncodersSimulateNextCredentialScanWillSucceedBody, type AcsEncodersSimulateNextCredentialScanWillSucceedOptions, type AcsEncodersSimulateNextCredentialScanWillSucceedResponse, type AcsEntrancesGetOptions, type AcsEntrancesGetParams, type AcsEntrancesGetResponse, type AcsEntrancesGrantAccessBody, type AcsEntrancesGrantAccessOptions, type AcsEntrancesGrantAccessResponse, type AcsEntrancesListCredentialsWithAccessOptions, type AcsEntrancesListCredentialsWithAccessParams, type AcsEntrancesListCredentialsWithAccessResponse, type AcsEntrancesListOptions, type AcsEntrancesListParams, type AcsEntrancesListResponse, type AcsSystemsGetOptions, type AcsSystemsGetParams, type AcsSystemsGetResponse, type AcsSystemsListCompatibleCredentialManagerAcsSystemsOptions, type AcsSystemsListCompatibleCredentialManagerAcsSystemsParams, type AcsSystemsListCompatibleCredentialManagerAcsSystemsResponse, type AcsSystemsListOptions, type AcsSystemsListParams, type AcsSystemsListResponse, type AcsUsersAddToAccessGroupBody, type AcsUsersAddToAccessGroupOptions, type AcsUsersAddToAccessGroupResponse, type AcsUsersCreateBody, type AcsUsersCreateOptions, type AcsUsersCreateResponse, type AcsUsersDeleteOptions, type AcsUsersDeleteParams, type AcsUsersDeleteResponse, type AcsUsersGetOptions, type AcsUsersGetParams, type AcsUsersGetResponse, type AcsUsersListAccessibleEntrancesOptions, type AcsUsersListAccessibleEntrancesParams, type AcsUsersListAccessibleEntrancesResponse, type AcsUsersListOptions, type AcsUsersListParams, type AcsUsersListResponse, type AcsUsersRemoveFromAccessGroupOptions, type AcsUsersRemoveFromAccessGroupParams, type AcsUsersRemoveFromAccessGroupResponse, type AcsUsersRevokeAccessToAllEntrancesOptions, type AcsUsersRevokeAccessToAllEntrancesParams, type AcsUsersRevokeAccessToAllEntrancesResponse, type AcsUsersSuspendBody, type AcsUsersSuspendOptions, type AcsUsersSuspendResponse, type AcsUsersUnmanagedGetOptions, type AcsUsersUnmanagedGetParams, type AcsUsersUnmanagedGetResponse, type AcsUsersUnmanagedListOptions, type AcsUsersUnmanagedListParams, type AcsUsersUnmanagedListResponse, type AcsUsersUnsuspendBody, type AcsUsersUnsuspendOptions, type AcsUsersUnsuspendResponse, type AcsUsersUpdateBody, type AcsUsersUpdateOptions, type AcsUsersUpdateResponse, type ActionAttemptsGetOptions, type ActionAttemptsGetParams, type ActionAttemptsGetResponse, type ActionAttemptsListOptions, type ActionAttemptsListParams, type ActionAttemptsListResponse, type ClientSessionsCreateBody, type ClientSessionsCreateOptions, type ClientSessionsCreateResponse, type ClientSessionsDeleteOptions, type ClientSessionsDeleteParams, type ClientSessionsDeleteResponse, type ClientSessionsGetOptions, type ClientSessionsGetOrCreateBody, type ClientSessionsGetOrCreateOptions, type ClientSessionsGetOrCreateResponse, type ClientSessionsGetParams, type ClientSessionsGetResponse, type ClientSessionsGrantAccessBody, type ClientSessionsGrantAccessOptions, type ClientSessionsGrantAccessResponse, type ClientSessionsListOptions, type ClientSessionsListParams, type ClientSessionsListResponse, type ClientSessionsRevokeOptions, type ClientSessionsRevokeParams, type ClientSessionsRevokeResponse, type ConnectWebviewsCreateBody, type ConnectWebviewsCreateOptions, type ConnectWebviewsCreateResponse, type ConnectWebviewsDeleteOptions, type ConnectWebviewsDeleteParams, type ConnectWebviewsDeleteResponse, type ConnectWebviewsGetOptions, type ConnectWebviewsGetParams, type ConnectWebviewsGetResponse, type ConnectWebviewsListOptions, type ConnectWebviewsListParams, type ConnectWebviewsListResponse, type ConnectedAccountsDeleteOptions, type ConnectedAccountsDeleteParams, type ConnectedAccountsDeleteResponse, type ConnectedAccountsGetOptions, type ConnectedAccountsGetParams, type ConnectedAccountsGetResponse, type ConnectedAccountsListOptions, type ConnectedAccountsListParams, type ConnectedAccountsListResponse, type ConnectedAccountsUpdateBody, type ConnectedAccountsUpdateOptions, type ConnectedAccountsUpdateResponse, type DevicesDeleteOptions, type DevicesDeleteParams, type DevicesDeleteResponse, type DevicesGetOptions, type DevicesGetParams, type DevicesGetResponse, type DevicesListDeviceProvidersOptions, type DevicesListDeviceProvidersParams, type DevicesListDeviceProvidersResponse, type DevicesListOptions, type DevicesListParams, type DevicesListResponse, type DevicesSimulateConnectBody, type DevicesSimulateConnectOptions, type DevicesSimulateConnectResponse, type DevicesSimulateDisconnectBody, type DevicesSimulateDisconnectOptions, type DevicesSimulateDisconnectResponse, type DevicesSimulateRemoveBody, type DevicesSimulateRemoveOptions, type DevicesSimulateRemoveResponse, type DevicesUnmanagedGetOptions, type DevicesUnmanagedGetParams, type DevicesUnmanagedGetResponse, type DevicesUnmanagedListOptions, type DevicesUnmanagedListParams, type DevicesUnmanagedListResponse, type DevicesUnmanagedUpdateBody, type DevicesUnmanagedUpdateOptions, type DevicesUnmanagedUpdateResponse, type DevicesUpdateBody, type DevicesUpdateOptions, type DevicesUpdateResponse, type EventsGetOptions, type EventsGetParams, type EventsGetResponse, type EventsListOptions, type EventsListParams, type EventsListResponse, type LocksGetOptions, type LocksGetParams, type LocksGetResponse, type LocksListOptions, type LocksListParams, type LocksListResponse, type LocksLockDoorBody, type LocksLockDoorOptions, type LocksLockDoorResponse, type LocksUnlockDoorBody, type LocksUnlockDoorOptions, type LocksUnlockDoorResponse, type NetworksGetOptions, type NetworksGetParams, type NetworksGetResponse, type NetworksListOptions, type NetworksListParams, type NetworksListResponse, type NoiseSensorsListOptions, type NoiseSensorsListParams, type NoiseSensorsListResponse, type NoiseSensorsNoiseThresholdsCreateBody, type NoiseSensorsNoiseThresholdsCreateOptions, type NoiseSensorsNoiseThresholdsCreateResponse, type NoiseSensorsNoiseThresholdsDeleteOptions, type NoiseSensorsNoiseThresholdsDeleteParams, type NoiseSensorsNoiseThresholdsDeleteResponse, type NoiseSensorsNoiseThresholdsGetOptions, type NoiseSensorsNoiseThresholdsGetParams, type NoiseSensorsNoiseThresholdsGetResponse, type NoiseSensorsNoiseThresholdsListOptions, type NoiseSensorsNoiseThresholdsListParams, type NoiseSensorsNoiseThresholdsListResponse, type NoiseSensorsNoiseThresholdsUpdateBody, type NoiseSensorsNoiseThresholdsUpdateOptions, type NoiseSensorsNoiseThresholdsUpdateResponse, type NoiseSensorsSimulateTriggerNoiseThresholdBody, type NoiseSensorsSimulateTriggerNoiseThresholdOptions, type NoiseSensorsSimulateTriggerNoiseThresholdResponse, type PhonesDeactivateOptions, type PhonesDeactivateParams, type PhonesDeactivateResponse, type PhonesListOptions, type PhonesListParams, type PhonesListResponse, type PhonesSimulateCreateSandboxPhoneBody, type PhonesSimulateCreateSandboxPhoneOptions, type PhonesSimulateCreateSandboxPhoneResponse, SeamActionAttemptError, SeamActionAttemptFailedError, SeamActionAttemptTimeoutError, SeamHttp, SeamHttpAccessCodes, SeamHttpAccessCodesSimulate, SeamHttpAccessCodesUnmanaged, SeamHttpAcs, SeamHttpAcsAccessGroups, SeamHttpAcsAccessGroupsUnmanaged, SeamHttpAcsCredentialPools, SeamHttpAcsCredentialProvisioningAutomations, SeamHttpAcsCredentials, SeamHttpAcsCredentialsUnmanaged, SeamHttpAcsEncoders, SeamHttpAcsEncodersSimulate, SeamHttpAcsEntrances, SeamHttpAcsSystems, SeamHttpAcsUsers, SeamHttpAcsUsersUnmanaged, SeamHttpActionAttempts, SeamHttpApiError, SeamHttpClientSessions, SeamHttpConnectWebviews, SeamHttpConnectedAccounts, SeamHttpDevices, SeamHttpDevicesSimulate, SeamHttpDevicesUnmanaged, SeamHttpEvents, type SeamHttpFromPublishableKeyOptions, SeamHttpInvalidInputError, SeamHttpInvalidOptionsError, SeamHttpInvalidTokenError, SeamHttpLocks, SeamHttpMultiWorkspace, SeamHttpMultiWorkspaceInvalidOptionsError, type SeamHttpMultiWorkspaceOptions, type SeamHttpMultiWorkspaceOptionsWithClient, type SeamHttpMultiWorkspaceOptionsWithConsoleSessionToken, type SeamHttpMultiWorkspaceOptionsWithPersonalAccessToken, SeamHttpNetworks, SeamHttpNoiseSensors, SeamHttpNoiseSensorsNoiseThresholds, SeamHttpNoiseSensorsSimulate, type SeamHttpOptions, type SeamHttpOptionsFromEnv, type SeamHttpOptionsWithApiKey, type SeamHttpOptionsWithClient, type SeamHttpOptionsWithClientSessionToken, type SeamHttpOptionsWithConsoleSessionToken, type SeamHttpOptionsWithPersonalAccessToken, SeamHttpPhones, SeamHttpPhonesSimulate, SeamHttpRequest, type SeamHttpRequestOptions, SeamHttpThermostats, SeamHttpThermostatsSchedules, SeamHttpUnauthorizedError, SeamHttpUserIdentities, SeamHttpUserIdentitiesEnrollmentAutomations, SeamHttpWebhooks, SeamHttpWorkspaces, type ThermostatsActivateClimatePresetBody, type ThermostatsActivateClimatePresetOptions, type ThermostatsActivateClimatePresetResponse, type ThermostatsCoolBody, type ThermostatsCoolOptions, type ThermostatsCoolResponse, type ThermostatsCreateClimatePresetBody, type ThermostatsCreateClimatePresetOptions, type ThermostatsCreateClimatePresetResponse, type ThermostatsDeleteClimatePresetBody, type ThermostatsDeleteClimatePresetOptions, type ThermostatsDeleteClimatePresetResponse, type ThermostatsGetOptions, type ThermostatsGetParams, type ThermostatsGetResponse, type ThermostatsHeatBody, type ThermostatsHeatCoolBody, type ThermostatsHeatCoolOptions, type ThermostatsHeatCoolResponse, type ThermostatsHeatOptions, type ThermostatsHeatResponse, type ThermostatsListOptions, type ThermostatsListParams, type ThermostatsListResponse, type ThermostatsOffBody, type ThermostatsOffOptions, type ThermostatsOffResponse, type ThermostatsSchedulesCreateBody, type ThermostatsSchedulesCreateOptions, type ThermostatsSchedulesCreateResponse, type ThermostatsSchedulesDeleteOptions, type ThermostatsSchedulesDeleteParams, type ThermostatsSchedulesDeleteResponse, type ThermostatsSchedulesGetOptions, type ThermostatsSchedulesGetParams, type ThermostatsSchedulesGetResponse, type ThermostatsSchedulesListOptions, type ThermostatsSchedulesListParams, type ThermostatsSchedulesListResponse, type ThermostatsSchedulesUpdateBody, type ThermostatsSchedulesUpdateOptions, type ThermostatsSchedulesUpdateResponse, type ThermostatsSetFallbackClimatePresetBody, type ThermostatsSetFallbackClimatePresetOptions, type ThermostatsSetFallbackClimatePresetResponse, type ThermostatsSetFanModeBody, type ThermostatsSetFanModeOptions, type ThermostatsSetFanModeResponse, type ThermostatsSetHvacModeBody, type ThermostatsSetHvacModeOptions, type ThermostatsSetHvacModeResponse, type ThermostatsSetTemperatureThresholdBody, type ThermostatsSetTemperatureThresholdOptions, type ThermostatsSetTemperatureThresholdResponse, type ThermostatsUpdateClimatePresetBody, type ThermostatsUpdateClimatePresetOptions, type ThermostatsUpdateClimatePresetResponse, type UserIdentitiesAddAcsUserBody, type UserIdentitiesAddAcsUserOptions, type UserIdentitiesAddAcsUserResponse, type UserIdentitiesCreateBody, type UserIdentitiesCreateOptions, type UserIdentitiesCreateResponse, type UserIdentitiesDeleteOptions, type UserIdentitiesDeleteParams, type UserIdentitiesDeleteResponse, type UserIdentitiesEnrollmentAutomationsDeleteOptions, type UserIdentitiesEnrollmentAutomationsDeleteParams, type UserIdentitiesEnrollmentAutomationsDeleteResponse, type UserIdentitiesEnrollmentAutomationsGetOptions, type UserIdentitiesEnrollmentAutomationsGetParams, type UserIdentitiesEnrollmentAutomationsGetResponse, type UserIdentitiesEnrollmentAutomationsLaunchBody, type UserIdentitiesEnrollmentAutomationsLaunchOptions, type UserIdentitiesEnrollmentAutomationsLaunchResponse, type UserIdentitiesEnrollmentAutomationsListOptions, type UserIdentitiesEnrollmentAutomationsListParams, type UserIdentitiesEnrollmentAutomationsListResponse, type UserIdentitiesGetOptions, type UserIdentitiesGetParams, type UserIdentitiesGetResponse, type UserIdentitiesGrantAccessToDeviceBody, type UserIdentitiesGrantAccessToDeviceOptions, type UserIdentitiesGrantAccessToDeviceResponse, type UserIdentitiesListAccessibleDevicesOptions, type UserIdentitiesListAccessibleDevicesParams, type UserIdentitiesListAccessibleDevicesResponse, type UserIdentitiesListAcsSystemsOptions, type UserIdentitiesListAcsSystemsParams, type UserIdentitiesListAcsSystemsResponse, type UserIdentitiesListAcsUsersOptions, type UserIdentitiesListAcsUsersParams, type UserIdentitiesListAcsUsersResponse, type UserIdentitiesListOptions, type UserIdentitiesListParams, type UserIdentitiesListResponse, type UserIdentitiesRemoveAcsUserOptions, type UserIdentitiesRemoveAcsUserParams, type UserIdentitiesRemoveAcsUserResponse, type UserIdentitiesRevokeAccessToDeviceOptions, type UserIdentitiesRevokeAccessToDeviceParams, type UserIdentitiesRevokeAccessToDeviceResponse, type UserIdentitiesUpdateBody, type UserIdentitiesUpdateOptions, type UserIdentitiesUpdateResponse, type WebhooksCreateBody, type WebhooksCreateOptions, type WebhooksCreateResponse, type WebhooksDeleteOptions, type WebhooksDeleteParams, type WebhooksDeleteResponse, type WebhooksGetOptions, type WebhooksGetParams, type WebhooksGetResponse, type WebhooksListOptions, type WebhooksListParams, type WebhooksListResponse, type WebhooksUpdateBody, type WebhooksUpdateOptions, type WebhooksUpdateResponse, type WorkspacesCreateBody, type WorkspacesCreateOptions, type WorkspacesCreateResponse, type WorkspacesGetOptions, type WorkspacesGetParams, type WorkspacesGetResponse, type WorkspacesListOptions, type WorkspacesListParams, type WorkspacesListResponse, type WorkspacesResetSandboxBody, type WorkspacesResetSandboxOptions, type WorkspacesResetSandboxResponse, errorInterceptor, getOpenapiSchema, isApiKey, isClientSessionToken, isConsoleSessionToken, isPersonalAccessToken, isPublishableKey, isSeamActionAttemptError, isSeamActionAttemptFailedError, isSeamActionAttemptTimeoutError, isSeamHttpApiError, isSeamHttpInvalidInputError, isSeamHttpMultiWorkspaceOptionsWithClient, isSeamHttpMultiWorkspaceOptionsWithConsoleSessionToken, isSeamHttpMultiWorkspaceOptionsWithPersonalAccessToken, isSeamHttpOptionsWithApiKey, isSeamHttpOptionsWithClient, isSeamHttpOptionsWithClientSessionToken, isSeamHttpOptionsWithConsoleSessionToken, isSeamHttpOptionsWithPersonalAccessToken, isSeamHttpUnauthorizedError };
|