@seamapi/http 1.25.1 → 1.26.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 +139 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +130 -88
- package/lib/seam/connect/resolve-action-attempt.d.ts +116 -116
- package/lib/seam/connect/routes/index.d.ts +1 -0
- package/lib/seam/connect/routes/index.js +1 -0
- package/lib/seam/connect/routes/index.js.map +1 -1
- package/lib/seam/connect/routes/unstable-locations.d.ts +47 -0
- package/lib/seam/connect/routes/unstable-locations.js +140 -0
- package/lib/seam/connect/routes/unstable-locations.js.map +1 -0
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/package.json +3 -3
- package/src/lib/seam/connect/routes/index.ts +1 -0
- package/src/lib/seam/connect/routes/unstable-locations.ts +303 -0
- package/src/lib/version.ts +1 -1
package/dist/connect.d.cts
CHANGED
|
@@ -1113,6 +1113,48 @@ type ThermostatsUpdateClimatePresetBody = RouteRequestBody<'/thermostats/update_
|
|
|
1113
1113
|
type ThermostatsUpdateClimatePresetResponse = SetNonNullable<Required<RouteResponse<'/thermostats/update_climate_preset'>>>;
|
|
1114
1114
|
type ThermostatsUpdateClimatePresetOptions = never;
|
|
1115
1115
|
|
|
1116
|
+
declare class SeamHttpUnstableLocations {
|
|
1117
|
+
client: Client;
|
|
1118
|
+
readonly defaults: Required<SeamHttpRequestOptions>;
|
|
1119
|
+
constructor(apiKeyOrOptions?: string | SeamHttpOptions);
|
|
1120
|
+
static fromClient(client: SeamHttpOptionsWithClient['client'], options?: Omit<SeamHttpOptionsWithClient, 'client'>): SeamHttpUnstableLocations;
|
|
1121
|
+
static fromApiKey(apiKey: SeamHttpOptionsWithApiKey['apiKey'], options?: Omit<SeamHttpOptionsWithApiKey, 'apiKey'>): SeamHttpUnstableLocations;
|
|
1122
|
+
static fromClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken'], options?: Omit<SeamHttpOptionsWithClientSessionToken, 'clientSessionToken'>): SeamHttpUnstableLocations;
|
|
1123
|
+
static fromPublishableKey(publishableKey: string, userIdentifierKey: string, options?: SeamHttpFromPublishableKeyOptions): Promise<SeamHttpUnstableLocations>;
|
|
1124
|
+
static fromConsoleSessionToken(consoleSessionToken: SeamHttpOptionsWithConsoleSessionToken['consoleSessionToken'], workspaceId: SeamHttpOptionsWithConsoleSessionToken['workspaceId'], options?: Omit<SeamHttpOptionsWithConsoleSessionToken, 'consoleSessionToken' | 'workspaceId'>): SeamHttpUnstableLocations;
|
|
1125
|
+
static fromPersonalAccessToken(personalAccessToken: SeamHttpOptionsWithPersonalAccessToken['personalAccessToken'], workspaceId: SeamHttpOptionsWithPersonalAccessToken['workspaceId'], options?: Omit<SeamHttpOptionsWithPersonalAccessToken, 'personalAccessToken' | 'workspaceId'>): SeamHttpUnstableLocations;
|
|
1126
|
+
createPaginator<const TResponse, const TResponseKey extends keyof TResponse>(request: SeamHttpRequest<TResponse, TResponseKey>): SeamPaginator<TResponse, TResponseKey>;
|
|
1127
|
+
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
1128
|
+
addDevices(body?: UnstableLocationsAddDevicesBody): SeamHttpRequest<void, undefined>;
|
|
1129
|
+
create(body?: UnstableLocationsCreateBody): SeamHttpRequest<UnstableLocationsCreateResponse, 'location'>;
|
|
1130
|
+
delete(body?: UnstableLocationsDeleteParams): SeamHttpRequest<void, undefined>;
|
|
1131
|
+
get(body?: UnstableLocationsGetParams): SeamHttpRequest<UnstableLocationsGetResponse, 'location'>;
|
|
1132
|
+
list(body?: UnstableLocationsListParams): SeamHttpRequest<UnstableLocationsListResponse, 'locations'>;
|
|
1133
|
+
removeDevices(body?: UnstableLocationsRemoveDevicesParams): SeamHttpRequest<void, undefined>;
|
|
1134
|
+
update(body?: UnstableLocationsUpdateBody): SeamHttpRequest<UnstableLocationsUpdateResponse, 'location'>;
|
|
1135
|
+
}
|
|
1136
|
+
type UnstableLocationsAddDevicesBody = RouteRequestBody<'/unstable_locations/add_devices'>;
|
|
1137
|
+
type UnstableLocationsAddDevicesResponse = SetNonNullable<Required<RouteResponse<'/unstable_locations/add_devices'>>>;
|
|
1138
|
+
type UnstableLocationsAddDevicesOptions = never;
|
|
1139
|
+
type UnstableLocationsCreateBody = RouteRequestBody<'/unstable_locations/create'>;
|
|
1140
|
+
type UnstableLocationsCreateResponse = SetNonNullable<Required<RouteResponse<'/unstable_locations/create'>>>;
|
|
1141
|
+
type UnstableLocationsCreateOptions = never;
|
|
1142
|
+
type UnstableLocationsDeleteParams = RouteRequestBody<'/unstable_locations/delete'>;
|
|
1143
|
+
type UnstableLocationsDeleteResponse = SetNonNullable<Required<RouteResponse<'/unstable_locations/delete'>>>;
|
|
1144
|
+
type UnstableLocationsDeleteOptions = never;
|
|
1145
|
+
type UnstableLocationsGetParams = RouteRequestBody<'/unstable_locations/get'>;
|
|
1146
|
+
type UnstableLocationsGetResponse = SetNonNullable<Required<RouteResponse<'/unstable_locations/get'>>>;
|
|
1147
|
+
type UnstableLocationsGetOptions = never;
|
|
1148
|
+
type UnstableLocationsListParams = RouteRequestBody<'/unstable_locations/list'>;
|
|
1149
|
+
type UnstableLocationsListResponse = SetNonNullable<Required<RouteResponse<'/unstable_locations/list'>>>;
|
|
1150
|
+
type UnstableLocationsListOptions = never;
|
|
1151
|
+
type UnstableLocationsRemoveDevicesParams = RouteRequestBody<'/unstable_locations/remove_devices'>;
|
|
1152
|
+
type UnstableLocationsRemoveDevicesResponse = SetNonNullable<Required<RouteResponse<'/unstable_locations/remove_devices'>>>;
|
|
1153
|
+
type UnstableLocationsRemoveDevicesOptions = never;
|
|
1154
|
+
type UnstableLocationsUpdateBody = RouteRequestBody<'/unstable_locations/update'>;
|
|
1155
|
+
type UnstableLocationsUpdateResponse = SetNonNullable<Required<RouteResponse<'/unstable_locations/update'>>>;
|
|
1156
|
+
type UnstableLocationsUpdateOptions = never;
|
|
1157
|
+
|
|
1116
1158
|
declare class SeamHttpUserIdentitiesEnrollmentAutomations {
|
|
1117
1159
|
client: Client;
|
|
1118
1160
|
readonly defaults: Required<SeamHttpRequestOptions>;
|
|
@@ -1332,9 +1374,9 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1332
1374
|
warning_message: string;
|
|
1333
1375
|
}[];
|
|
1334
1376
|
acs_credential_on_encoder: {
|
|
1335
|
-
created_at: string | null;
|
|
1336
1377
|
starts_at: string | null;
|
|
1337
1378
|
ends_at: string | null;
|
|
1379
|
+
created_at: string | null;
|
|
1338
1380
|
card_number: string | null;
|
|
1339
1381
|
is_issued: boolean | null;
|
|
1340
1382
|
visionline_metadata?: {
|
|
@@ -1353,6 +1395,7 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1353
1395
|
} | undefined;
|
|
1354
1396
|
} | null;
|
|
1355
1397
|
acs_credential_on_seam: {
|
|
1398
|
+
display_name: string;
|
|
1356
1399
|
created_at: string;
|
|
1357
1400
|
errors: {
|
|
1358
1401
|
message: string;
|
|
@@ -1360,30 +1403,29 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1360
1403
|
}[];
|
|
1361
1404
|
warnings: ({
|
|
1362
1405
|
message: string;
|
|
1363
|
-
warning_code: "waiting_to_be_issued";
|
|
1364
1406
|
created_at: string;
|
|
1407
|
+
warning_code: "waiting_to_be_issued";
|
|
1365
1408
|
} | {
|
|
1366
1409
|
message: string;
|
|
1367
|
-
warning_code: "schedule_externally_modified";
|
|
1368
1410
|
created_at: string;
|
|
1411
|
+
warning_code: "schedule_externally_modified";
|
|
1369
1412
|
} | {
|
|
1370
1413
|
message: string;
|
|
1371
|
-
warning_code: "schedule_modified";
|
|
1372
1414
|
created_at: string;
|
|
1415
|
+
warning_code: "schedule_modified";
|
|
1373
1416
|
} | {
|
|
1374
1417
|
message: string;
|
|
1375
|
-
warning_code: "being_deleted";
|
|
1376
1418
|
created_at: string;
|
|
1419
|
+
warning_code: "being_deleted";
|
|
1377
1420
|
} | {
|
|
1378
1421
|
message: string;
|
|
1379
|
-
warning_code: "unknown_issue_with_acs_credential";
|
|
1380
1422
|
created_at: string;
|
|
1423
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
1381
1424
|
} | {
|
|
1382
1425
|
message: string;
|
|
1383
|
-
warning_code: "needs_to_be_reissued";
|
|
1384
1426
|
created_at: string;
|
|
1427
|
+
warning_code: "needs_to_be_reissued";
|
|
1385
1428
|
})[];
|
|
1386
|
-
display_name: string;
|
|
1387
1429
|
workspace_id: string;
|
|
1388
1430
|
is_managed: true;
|
|
1389
1431
|
acs_system_id: string;
|
|
@@ -1422,6 +1464,7 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1422
1464
|
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
1423
1465
|
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
1424
1466
|
} | {
|
|
1467
|
+
display_name: string;
|
|
1425
1468
|
created_at: string;
|
|
1426
1469
|
errors: {
|
|
1427
1470
|
message: string;
|
|
@@ -1429,30 +1472,29 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1429
1472
|
}[];
|
|
1430
1473
|
warnings: ({
|
|
1431
1474
|
message: string;
|
|
1432
|
-
warning_code: "waiting_to_be_issued";
|
|
1433
1475
|
created_at: string;
|
|
1476
|
+
warning_code: "waiting_to_be_issued";
|
|
1434
1477
|
} | {
|
|
1435
1478
|
message: string;
|
|
1436
|
-
warning_code: "schedule_externally_modified";
|
|
1437
1479
|
created_at: string;
|
|
1480
|
+
warning_code: "schedule_externally_modified";
|
|
1438
1481
|
} | {
|
|
1439
1482
|
message: string;
|
|
1440
|
-
warning_code: "schedule_modified";
|
|
1441
1483
|
created_at: string;
|
|
1484
|
+
warning_code: "schedule_modified";
|
|
1442
1485
|
} | {
|
|
1443
1486
|
message: string;
|
|
1444
|
-
warning_code: "being_deleted";
|
|
1445
1487
|
created_at: string;
|
|
1488
|
+
warning_code: "being_deleted";
|
|
1446
1489
|
} | {
|
|
1447
1490
|
message: string;
|
|
1448
|
-
warning_code: "unknown_issue_with_acs_credential";
|
|
1449
1491
|
created_at: string;
|
|
1492
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
1450
1493
|
} | {
|
|
1451
1494
|
message: string;
|
|
1452
|
-
warning_code: "needs_to_be_reissued";
|
|
1453
1495
|
created_at: string;
|
|
1496
|
+
warning_code: "needs_to_be_reissued";
|
|
1454
1497
|
})[];
|
|
1455
|
-
display_name: string;
|
|
1456
1498
|
workspace_id: string;
|
|
1457
1499
|
is_managed: false;
|
|
1458
1500
|
acs_system_id: string;
|
|
@@ -1519,6 +1561,7 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1519
1561
|
status: "success";
|
|
1520
1562
|
action_attempt_id: string;
|
|
1521
1563
|
result: {
|
|
1564
|
+
display_name: string;
|
|
1522
1565
|
created_at: string;
|
|
1523
1566
|
errors: {
|
|
1524
1567
|
message: string;
|
|
@@ -1526,30 +1569,29 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1526
1569
|
}[];
|
|
1527
1570
|
warnings: ({
|
|
1528
1571
|
message: string;
|
|
1529
|
-
warning_code: "waiting_to_be_issued";
|
|
1530
1572
|
created_at: string;
|
|
1573
|
+
warning_code: "waiting_to_be_issued";
|
|
1531
1574
|
} | {
|
|
1532
1575
|
message: string;
|
|
1533
|
-
warning_code: "schedule_externally_modified";
|
|
1534
1576
|
created_at: string;
|
|
1577
|
+
warning_code: "schedule_externally_modified";
|
|
1535
1578
|
} | {
|
|
1536
1579
|
message: string;
|
|
1537
|
-
warning_code: "schedule_modified";
|
|
1538
1580
|
created_at: string;
|
|
1581
|
+
warning_code: "schedule_modified";
|
|
1539
1582
|
} | {
|
|
1540
1583
|
message: string;
|
|
1541
|
-
warning_code: "being_deleted";
|
|
1542
1584
|
created_at: string;
|
|
1585
|
+
warning_code: "being_deleted";
|
|
1543
1586
|
} | {
|
|
1544
1587
|
message: string;
|
|
1545
|
-
warning_code: "unknown_issue_with_acs_credential";
|
|
1546
1588
|
created_at: string;
|
|
1589
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
1547
1590
|
} | {
|
|
1548
1591
|
message: string;
|
|
1549
|
-
warning_code: "needs_to_be_reissued";
|
|
1550
1592
|
created_at: string;
|
|
1593
|
+
warning_code: "needs_to_be_reissued";
|
|
1551
1594
|
})[];
|
|
1552
|
-
display_name: string;
|
|
1553
1595
|
workspace_id: string;
|
|
1554
1596
|
is_managed: true;
|
|
1555
1597
|
acs_system_id: string;
|
|
@@ -1588,6 +1630,7 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1588
1630
|
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
1589
1631
|
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
1590
1632
|
} | {
|
|
1633
|
+
display_name: string;
|
|
1591
1634
|
created_at: string;
|
|
1592
1635
|
errors: {
|
|
1593
1636
|
message: string;
|
|
@@ -1595,30 +1638,29 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1595
1638
|
}[];
|
|
1596
1639
|
warnings: ({
|
|
1597
1640
|
message: string;
|
|
1598
|
-
warning_code: "waiting_to_be_issued";
|
|
1599
1641
|
created_at: string;
|
|
1642
|
+
warning_code: "waiting_to_be_issued";
|
|
1600
1643
|
} | {
|
|
1601
1644
|
message: string;
|
|
1602
|
-
warning_code: "schedule_externally_modified";
|
|
1603
1645
|
created_at: string;
|
|
1646
|
+
warning_code: "schedule_externally_modified";
|
|
1604
1647
|
} | {
|
|
1605
1648
|
message: string;
|
|
1606
|
-
warning_code: "schedule_modified";
|
|
1607
1649
|
created_at: string;
|
|
1650
|
+
warning_code: "schedule_modified";
|
|
1608
1651
|
} | {
|
|
1609
1652
|
message: string;
|
|
1610
|
-
warning_code: "being_deleted";
|
|
1611
1653
|
created_at: string;
|
|
1654
|
+
warning_code: "being_deleted";
|
|
1612
1655
|
} | {
|
|
1613
1656
|
message: string;
|
|
1614
|
-
warning_code: "unknown_issue_with_acs_credential";
|
|
1615
1657
|
created_at: string;
|
|
1658
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
1616
1659
|
} | {
|
|
1617
1660
|
message: string;
|
|
1618
|
-
warning_code: "needs_to_be_reissued";
|
|
1619
1661
|
created_at: string;
|
|
1662
|
+
warning_code: "needs_to_be_reissued";
|
|
1620
1663
|
})[];
|
|
1621
|
-
display_name: string;
|
|
1622
1664
|
workspace_id: string;
|
|
1623
1665
|
is_managed: false;
|
|
1624
1666
|
acs_system_id: string;
|
|
@@ -1981,9 +2023,9 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
1981
2023
|
warning_message: string;
|
|
1982
2024
|
}[];
|
|
1983
2025
|
acs_credential_on_encoder: {
|
|
1984
|
-
created_at: string | null;
|
|
1985
2026
|
starts_at: string | null;
|
|
1986
2027
|
ends_at: string | null;
|
|
2028
|
+
created_at: string | null;
|
|
1987
2029
|
card_number: string | null;
|
|
1988
2030
|
is_issued: boolean | null;
|
|
1989
2031
|
visionline_metadata?: {
|
|
@@ -2002,6 +2044,7 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
2002
2044
|
} | undefined;
|
|
2003
2045
|
} | null;
|
|
2004
2046
|
acs_credential_on_seam: {
|
|
2047
|
+
display_name: string;
|
|
2005
2048
|
created_at: string;
|
|
2006
2049
|
errors: {
|
|
2007
2050
|
message: string;
|
|
@@ -2009,30 +2052,29 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
2009
2052
|
}[];
|
|
2010
2053
|
warnings: ({
|
|
2011
2054
|
message: string;
|
|
2012
|
-
warning_code: "waiting_to_be_issued";
|
|
2013
2055
|
created_at: string;
|
|
2056
|
+
warning_code: "waiting_to_be_issued";
|
|
2014
2057
|
} | {
|
|
2015
2058
|
message: string;
|
|
2016
|
-
warning_code: "schedule_externally_modified";
|
|
2017
2059
|
created_at: string;
|
|
2060
|
+
warning_code: "schedule_externally_modified";
|
|
2018
2061
|
} | {
|
|
2019
2062
|
message: string;
|
|
2020
|
-
warning_code: "schedule_modified";
|
|
2021
2063
|
created_at: string;
|
|
2064
|
+
warning_code: "schedule_modified";
|
|
2022
2065
|
} | {
|
|
2023
2066
|
message: string;
|
|
2024
|
-
warning_code: "being_deleted";
|
|
2025
2067
|
created_at: string;
|
|
2068
|
+
warning_code: "being_deleted";
|
|
2026
2069
|
} | {
|
|
2027
2070
|
message: string;
|
|
2028
|
-
warning_code: "unknown_issue_with_acs_credential";
|
|
2029
2071
|
created_at: string;
|
|
2072
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
2030
2073
|
} | {
|
|
2031
2074
|
message: string;
|
|
2032
|
-
warning_code: "needs_to_be_reissued";
|
|
2033
2075
|
created_at: string;
|
|
2076
|
+
warning_code: "needs_to_be_reissued";
|
|
2034
2077
|
})[];
|
|
2035
|
-
display_name: string;
|
|
2036
2078
|
workspace_id: string;
|
|
2037
2079
|
is_managed: true;
|
|
2038
2080
|
acs_system_id: string;
|
|
@@ -2071,6 +2113,7 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
2071
2113
|
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
2072
2114
|
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
2073
2115
|
} | {
|
|
2116
|
+
display_name: string;
|
|
2074
2117
|
created_at: string;
|
|
2075
2118
|
errors: {
|
|
2076
2119
|
message: string;
|
|
@@ -2078,30 +2121,29 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
2078
2121
|
}[];
|
|
2079
2122
|
warnings: ({
|
|
2080
2123
|
message: string;
|
|
2081
|
-
warning_code: "waiting_to_be_issued";
|
|
2082
2124
|
created_at: string;
|
|
2125
|
+
warning_code: "waiting_to_be_issued";
|
|
2083
2126
|
} | {
|
|
2084
2127
|
message: string;
|
|
2085
|
-
warning_code: "schedule_externally_modified";
|
|
2086
2128
|
created_at: string;
|
|
2129
|
+
warning_code: "schedule_externally_modified";
|
|
2087
2130
|
} | {
|
|
2088
2131
|
message: string;
|
|
2089
|
-
warning_code: "schedule_modified";
|
|
2090
2132
|
created_at: string;
|
|
2133
|
+
warning_code: "schedule_modified";
|
|
2091
2134
|
} | {
|
|
2092
2135
|
message: string;
|
|
2093
|
-
warning_code: "being_deleted";
|
|
2094
2136
|
created_at: string;
|
|
2137
|
+
warning_code: "being_deleted";
|
|
2095
2138
|
} | {
|
|
2096
2139
|
message: string;
|
|
2097
|
-
warning_code: "unknown_issue_with_acs_credential";
|
|
2098
2140
|
created_at: string;
|
|
2141
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
2099
2142
|
} | {
|
|
2100
2143
|
message: string;
|
|
2101
|
-
warning_code: "needs_to_be_reissued";
|
|
2102
2144
|
created_at: string;
|
|
2145
|
+
warning_code: "needs_to_be_reissued";
|
|
2103
2146
|
})[];
|
|
2104
|
-
display_name: string;
|
|
2105
2147
|
workspace_id: string;
|
|
2106
2148
|
is_managed: false;
|
|
2107
2149
|
acs_system_id: string;
|
|
@@ -2168,6 +2210,7 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
2168
2210
|
status: "success";
|
|
2169
2211
|
action_attempt_id: string;
|
|
2170
2212
|
result: {
|
|
2213
|
+
display_name: string;
|
|
2171
2214
|
created_at: string;
|
|
2172
2215
|
errors: {
|
|
2173
2216
|
message: string;
|
|
@@ -2175,30 +2218,29 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
2175
2218
|
}[];
|
|
2176
2219
|
warnings: ({
|
|
2177
2220
|
message: string;
|
|
2178
|
-
warning_code: "waiting_to_be_issued";
|
|
2179
2221
|
created_at: string;
|
|
2222
|
+
warning_code: "waiting_to_be_issued";
|
|
2180
2223
|
} | {
|
|
2181
2224
|
message: string;
|
|
2182
|
-
warning_code: "schedule_externally_modified";
|
|
2183
2225
|
created_at: string;
|
|
2226
|
+
warning_code: "schedule_externally_modified";
|
|
2184
2227
|
} | {
|
|
2185
2228
|
message: string;
|
|
2186
|
-
warning_code: "schedule_modified";
|
|
2187
2229
|
created_at: string;
|
|
2230
|
+
warning_code: "schedule_modified";
|
|
2188
2231
|
} | {
|
|
2189
2232
|
message: string;
|
|
2190
|
-
warning_code: "being_deleted";
|
|
2191
2233
|
created_at: string;
|
|
2234
|
+
warning_code: "being_deleted";
|
|
2192
2235
|
} | {
|
|
2193
2236
|
message: string;
|
|
2194
|
-
warning_code: "unknown_issue_with_acs_credential";
|
|
2195
2237
|
created_at: string;
|
|
2238
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
2196
2239
|
} | {
|
|
2197
2240
|
message: string;
|
|
2198
|
-
warning_code: "needs_to_be_reissued";
|
|
2199
2241
|
created_at: string;
|
|
2242
|
+
warning_code: "needs_to_be_reissued";
|
|
2200
2243
|
})[];
|
|
2201
|
-
display_name: string;
|
|
2202
2244
|
workspace_id: string;
|
|
2203
2245
|
is_managed: true;
|
|
2204
2246
|
acs_system_id: string;
|
|
@@ -2237,6 +2279,7 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
2237
2279
|
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
2238
2280
|
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
2239
2281
|
} | {
|
|
2282
|
+
display_name: string;
|
|
2240
2283
|
created_at: string;
|
|
2241
2284
|
errors: {
|
|
2242
2285
|
message: string;
|
|
@@ -2244,30 +2287,29 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
2244
2287
|
}[];
|
|
2245
2288
|
warnings: ({
|
|
2246
2289
|
message: string;
|
|
2247
|
-
warning_code: "waiting_to_be_issued";
|
|
2248
2290
|
created_at: string;
|
|
2291
|
+
warning_code: "waiting_to_be_issued";
|
|
2249
2292
|
} | {
|
|
2250
2293
|
message: string;
|
|
2251
|
-
warning_code: "schedule_externally_modified";
|
|
2252
2294
|
created_at: string;
|
|
2295
|
+
warning_code: "schedule_externally_modified";
|
|
2253
2296
|
} | {
|
|
2254
2297
|
message: string;
|
|
2255
|
-
warning_code: "schedule_modified";
|
|
2256
2298
|
created_at: string;
|
|
2299
|
+
warning_code: "schedule_modified";
|
|
2257
2300
|
} | {
|
|
2258
2301
|
message: string;
|
|
2259
|
-
warning_code: "being_deleted";
|
|
2260
2302
|
created_at: string;
|
|
2303
|
+
warning_code: "being_deleted";
|
|
2261
2304
|
} | {
|
|
2262
2305
|
message: string;
|
|
2263
|
-
warning_code: "unknown_issue_with_acs_credential";
|
|
2264
2306
|
created_at: string;
|
|
2307
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
2265
2308
|
} | {
|
|
2266
2309
|
message: string;
|
|
2267
|
-
warning_code: "needs_to_be_reissued";
|
|
2268
2310
|
created_at: string;
|
|
2311
|
+
warning_code: "needs_to_be_reissued";
|
|
2269
2312
|
})[];
|
|
2270
|
-
display_name: string;
|
|
2271
2313
|
workspace_id: string;
|
|
2272
2314
|
is_managed: false;
|
|
2273
2315
|
acs_system_id: string;
|
|
@@ -2630,9 +2672,9 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2630
2672
|
warning_message: string;
|
|
2631
2673
|
}[];
|
|
2632
2674
|
acs_credential_on_encoder: {
|
|
2633
|
-
created_at: string | null;
|
|
2634
2675
|
starts_at: string | null;
|
|
2635
2676
|
ends_at: string | null;
|
|
2677
|
+
created_at: string | null;
|
|
2636
2678
|
card_number: string | null;
|
|
2637
2679
|
is_issued: boolean | null;
|
|
2638
2680
|
visionline_metadata?: {
|
|
@@ -2651,6 +2693,7 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2651
2693
|
} | undefined;
|
|
2652
2694
|
} | null;
|
|
2653
2695
|
acs_credential_on_seam: {
|
|
2696
|
+
display_name: string;
|
|
2654
2697
|
created_at: string;
|
|
2655
2698
|
errors: {
|
|
2656
2699
|
message: string;
|
|
@@ -2658,30 +2701,29 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2658
2701
|
}[];
|
|
2659
2702
|
warnings: ({
|
|
2660
2703
|
message: string;
|
|
2661
|
-
warning_code: "waiting_to_be_issued";
|
|
2662
2704
|
created_at: string;
|
|
2705
|
+
warning_code: "waiting_to_be_issued";
|
|
2663
2706
|
} | {
|
|
2664
2707
|
message: string;
|
|
2665
|
-
warning_code: "schedule_externally_modified";
|
|
2666
2708
|
created_at: string;
|
|
2709
|
+
warning_code: "schedule_externally_modified";
|
|
2667
2710
|
} | {
|
|
2668
2711
|
message: string;
|
|
2669
|
-
warning_code: "schedule_modified";
|
|
2670
2712
|
created_at: string;
|
|
2713
|
+
warning_code: "schedule_modified";
|
|
2671
2714
|
} | {
|
|
2672
2715
|
message: string;
|
|
2673
|
-
warning_code: "being_deleted";
|
|
2674
2716
|
created_at: string;
|
|
2717
|
+
warning_code: "being_deleted";
|
|
2675
2718
|
} | {
|
|
2676
2719
|
message: string;
|
|
2677
|
-
warning_code: "unknown_issue_with_acs_credential";
|
|
2678
2720
|
created_at: string;
|
|
2721
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
2679
2722
|
} | {
|
|
2680
2723
|
message: string;
|
|
2681
|
-
warning_code: "needs_to_be_reissued";
|
|
2682
2724
|
created_at: string;
|
|
2725
|
+
warning_code: "needs_to_be_reissued";
|
|
2683
2726
|
})[];
|
|
2684
|
-
display_name: string;
|
|
2685
2727
|
workspace_id: string;
|
|
2686
2728
|
is_managed: true;
|
|
2687
2729
|
acs_system_id: string;
|
|
@@ -2720,6 +2762,7 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2720
2762
|
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
2721
2763
|
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
2722
2764
|
} | {
|
|
2765
|
+
display_name: string;
|
|
2723
2766
|
created_at: string;
|
|
2724
2767
|
errors: {
|
|
2725
2768
|
message: string;
|
|
@@ -2727,30 +2770,29 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2727
2770
|
}[];
|
|
2728
2771
|
warnings: ({
|
|
2729
2772
|
message: string;
|
|
2730
|
-
warning_code: "waiting_to_be_issued";
|
|
2731
2773
|
created_at: string;
|
|
2774
|
+
warning_code: "waiting_to_be_issued";
|
|
2732
2775
|
} | {
|
|
2733
2776
|
message: string;
|
|
2734
|
-
warning_code: "schedule_externally_modified";
|
|
2735
2777
|
created_at: string;
|
|
2778
|
+
warning_code: "schedule_externally_modified";
|
|
2736
2779
|
} | {
|
|
2737
2780
|
message: string;
|
|
2738
|
-
warning_code: "schedule_modified";
|
|
2739
2781
|
created_at: string;
|
|
2782
|
+
warning_code: "schedule_modified";
|
|
2740
2783
|
} | {
|
|
2741
2784
|
message: string;
|
|
2742
|
-
warning_code: "being_deleted";
|
|
2743
2785
|
created_at: string;
|
|
2786
|
+
warning_code: "being_deleted";
|
|
2744
2787
|
} | {
|
|
2745
2788
|
message: string;
|
|
2746
|
-
warning_code: "unknown_issue_with_acs_credential";
|
|
2747
2789
|
created_at: string;
|
|
2790
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
2748
2791
|
} | {
|
|
2749
2792
|
message: string;
|
|
2750
|
-
warning_code: "needs_to_be_reissued";
|
|
2751
2793
|
created_at: string;
|
|
2794
|
+
warning_code: "needs_to_be_reissued";
|
|
2752
2795
|
})[];
|
|
2753
|
-
display_name: string;
|
|
2754
2796
|
workspace_id: string;
|
|
2755
2797
|
is_managed: false;
|
|
2756
2798
|
acs_system_id: string;
|
|
@@ -2817,6 +2859,7 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2817
2859
|
status: "success";
|
|
2818
2860
|
action_attempt_id: string;
|
|
2819
2861
|
result: {
|
|
2862
|
+
display_name: string;
|
|
2820
2863
|
created_at: string;
|
|
2821
2864
|
errors: {
|
|
2822
2865
|
message: string;
|
|
@@ -2824,30 +2867,29 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2824
2867
|
}[];
|
|
2825
2868
|
warnings: ({
|
|
2826
2869
|
message: string;
|
|
2827
|
-
warning_code: "waiting_to_be_issued";
|
|
2828
2870
|
created_at: string;
|
|
2871
|
+
warning_code: "waiting_to_be_issued";
|
|
2829
2872
|
} | {
|
|
2830
2873
|
message: string;
|
|
2831
|
-
warning_code: "schedule_externally_modified";
|
|
2832
2874
|
created_at: string;
|
|
2875
|
+
warning_code: "schedule_externally_modified";
|
|
2833
2876
|
} | {
|
|
2834
2877
|
message: string;
|
|
2835
|
-
warning_code: "schedule_modified";
|
|
2836
2878
|
created_at: string;
|
|
2879
|
+
warning_code: "schedule_modified";
|
|
2837
2880
|
} | {
|
|
2838
2881
|
message: string;
|
|
2839
|
-
warning_code: "being_deleted";
|
|
2840
2882
|
created_at: string;
|
|
2883
|
+
warning_code: "being_deleted";
|
|
2841
2884
|
} | {
|
|
2842
2885
|
message: string;
|
|
2843
|
-
warning_code: "unknown_issue_with_acs_credential";
|
|
2844
2886
|
created_at: string;
|
|
2887
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
2845
2888
|
} | {
|
|
2846
2889
|
message: string;
|
|
2847
|
-
warning_code: "needs_to_be_reissued";
|
|
2848
2890
|
created_at: string;
|
|
2891
|
+
warning_code: "needs_to_be_reissued";
|
|
2849
2892
|
})[];
|
|
2850
|
-
display_name: string;
|
|
2851
2893
|
workspace_id: string;
|
|
2852
2894
|
is_managed: true;
|
|
2853
2895
|
acs_system_id: string;
|
|
@@ -2886,6 +2928,7 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2886
2928
|
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
2887
2929
|
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
2888
2930
|
} | {
|
|
2931
|
+
display_name: string;
|
|
2889
2932
|
created_at: string;
|
|
2890
2933
|
errors: {
|
|
2891
2934
|
message: string;
|
|
@@ -2893,30 +2936,29 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2893
2936
|
}[];
|
|
2894
2937
|
warnings: ({
|
|
2895
2938
|
message: string;
|
|
2896
|
-
warning_code: "waiting_to_be_issued";
|
|
2897
2939
|
created_at: string;
|
|
2940
|
+
warning_code: "waiting_to_be_issued";
|
|
2898
2941
|
} | {
|
|
2899
2942
|
message: string;
|
|
2900
|
-
warning_code: "schedule_externally_modified";
|
|
2901
2943
|
created_at: string;
|
|
2944
|
+
warning_code: "schedule_externally_modified";
|
|
2902
2945
|
} | {
|
|
2903
2946
|
message: string;
|
|
2904
|
-
warning_code: "schedule_modified";
|
|
2905
2947
|
created_at: string;
|
|
2948
|
+
warning_code: "schedule_modified";
|
|
2906
2949
|
} | {
|
|
2907
2950
|
message: string;
|
|
2908
|
-
warning_code: "being_deleted";
|
|
2909
2951
|
created_at: string;
|
|
2952
|
+
warning_code: "being_deleted";
|
|
2910
2953
|
} | {
|
|
2911
2954
|
message: string;
|
|
2912
|
-
warning_code: "unknown_issue_with_acs_credential";
|
|
2913
2955
|
created_at: string;
|
|
2956
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
2914
2957
|
} | {
|
|
2915
2958
|
message: string;
|
|
2916
|
-
warning_code: "needs_to_be_reissued";
|
|
2917
2959
|
created_at: string;
|
|
2960
|
+
warning_code: "needs_to_be_reissued";
|
|
2918
2961
|
})[];
|
|
2919
|
-
display_name: string;
|
|
2920
2962
|
workspace_id: string;
|
|
2921
2963
|
is_managed: false;
|
|
2922
2964
|
acs_system_id: string;
|
|
@@ -3364,4 +3406,4 @@ declare const isPublishableKey: (token: string) => boolean;
|
|
|
3364
3406
|
declare const isConsoleSessionToken: (token: string) => boolean;
|
|
3365
3407
|
declare const isPersonalAccessToken: (token: string) => boolean;
|
|
3366
3408
|
|
|
3367
|
-
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 BridgesGetOptions, type BridgesGetParams, type BridgesGetResponse, type BridgesListOptions, type BridgesListParams, type BridgesListResponse, 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 PhonesGetOptions, type PhonesGetParams, type PhonesGetResponse, 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, SeamHttpBridges, SeamHttpClientSessions, SeamHttpConnectWebviews, SeamHttpConnectedAccounts, SeamHttpDevices, SeamHttpDevicesSimulate, SeamHttpDevicesUnmanaged, SeamHttpEvents, type SeamHttpFromPublishableKeyOptions, SeamHttpInvalidInputError, SeamHttpInvalidOptionsError, SeamHttpInvalidTokenError, SeamHttpLocks, SeamHttpMultiWorkspace, SeamHttpMultiWorkspaceInvalidOptionsError, type SeamHttpMultiWorkspaceOptions, type SeamHttpMultiWorkspaceOptionsWithClient, type SeamHttpMultiWorkspaceOptionsWithConsoleSessionToken, type SeamHttpMultiWorkspaceOptionsWithPersonalAccessToken, SeamHttpNetworks, SeamHttpNoiseSensors, SeamHttpNoiseSensorsNoiseThresholds, SeamHttpNoiseSensorsSimulate, type SeamHttpOptions, type SeamHttpOptionsFromEnv, type SeamHttpOptionsWithApiKey, type SeamHttpOptionsWithClient, type SeamHttpOptionsWithClientSessionToken, type SeamHttpOptionsWithConsoleSessionToken, type SeamHttpOptionsWithPersonalAccessToken, SeamHttpPhones, SeamHttpPhonesSimulate, SeamHttpRequest, type SeamHttpRequestOptions, SeamHttpThermostats, SeamHttpThermostatsSchedules, SeamHttpThermostatsSimulate, SeamHttpUnauthorizedError, SeamHttpUserIdentities, SeamHttpUserIdentitiesEnrollmentAutomations, SeamHttpWebhooks, SeamHttpWorkspaces, SeamPaginator, type ThermostatsActivateClimatePresetBody, type ThermostatsActivateClimatePresetOptions, type ThermostatsActivateClimatePresetResponse, type ThermostatsCoolBody, type ThermostatsCoolOptions, type ThermostatsCoolResponse, type ThermostatsCreateClimatePresetBody, type ThermostatsCreateClimatePresetOptions, type ThermostatsCreateClimatePresetResponse, type ThermostatsDeleteClimatePresetBody, type ThermostatsDeleteClimatePresetOptions, type ThermostatsDeleteClimatePresetResponse, type ThermostatsGetOptions, type ThermostatsGetParams, type ThermostatsGetResponse, type ThermostatsHeatBody, type ThermostatsHeatCoolBody, type ThermostatsHeatCoolOptions, type ThermostatsHeatCoolResponse, type ThermostatsHeatOptions, type ThermostatsHeatResponse, type ThermostatsListOptions, type ThermostatsListParams, type ThermostatsListResponse, type ThermostatsOffBody, type ThermostatsOffOptions, type ThermostatsOffResponse, type ThermostatsSchedulesCreateBody, type ThermostatsSchedulesCreateOptions, type ThermostatsSchedulesCreateResponse, type ThermostatsSchedulesDeleteOptions, type ThermostatsSchedulesDeleteParams, type ThermostatsSchedulesDeleteResponse, type ThermostatsSchedulesGetOptions, type ThermostatsSchedulesGetParams, type ThermostatsSchedulesGetResponse, type ThermostatsSchedulesListOptions, type ThermostatsSchedulesListParams, type ThermostatsSchedulesListResponse, type ThermostatsSchedulesUpdateBody, type ThermostatsSchedulesUpdateOptions, type ThermostatsSchedulesUpdateResponse, type ThermostatsSetFallbackClimatePresetBody, type ThermostatsSetFallbackClimatePresetOptions, type ThermostatsSetFallbackClimatePresetResponse, type ThermostatsSetFanModeBody, type ThermostatsSetFanModeOptions, type ThermostatsSetFanModeResponse, type ThermostatsSetHvacModeBody, type ThermostatsSetHvacModeOptions, type ThermostatsSetHvacModeResponse, type ThermostatsSetTemperatureThresholdBody, type ThermostatsSetTemperatureThresholdOptions, type ThermostatsSetTemperatureThresholdResponse, type ThermostatsSimulateHvacModeAdjustedBody, type ThermostatsSimulateHvacModeAdjustedOptions, type ThermostatsSimulateHvacModeAdjustedResponse, type ThermostatsSimulateTemperatureReachedBody, type ThermostatsSimulateTemperatureReachedOptions, type ThermostatsSimulateTemperatureReachedResponse, type ThermostatsUpdateClimatePresetBody, type ThermostatsUpdateClimatePresetOptions, type ThermostatsUpdateClimatePresetResponse, type UserIdentitiesAddAcsUserBody, type UserIdentitiesAddAcsUserOptions, type UserIdentitiesAddAcsUserResponse, type UserIdentitiesCreateBody, type UserIdentitiesCreateOptions, type UserIdentitiesCreateResponse, type UserIdentitiesDeleteOptions, type UserIdentitiesDeleteParams, type UserIdentitiesDeleteResponse, type UserIdentitiesEnrollmentAutomationsDeleteOptions, type UserIdentitiesEnrollmentAutomationsDeleteParams, type UserIdentitiesEnrollmentAutomationsDeleteResponse, type UserIdentitiesEnrollmentAutomationsGetOptions, type UserIdentitiesEnrollmentAutomationsGetParams, type UserIdentitiesEnrollmentAutomationsGetResponse, type UserIdentitiesEnrollmentAutomationsLaunchBody, type UserIdentitiesEnrollmentAutomationsLaunchOptions, type UserIdentitiesEnrollmentAutomationsLaunchResponse, type UserIdentitiesEnrollmentAutomationsListOptions, type UserIdentitiesEnrollmentAutomationsListParams, type UserIdentitiesEnrollmentAutomationsListResponse, type UserIdentitiesGetOptions, type UserIdentitiesGetParams, type UserIdentitiesGetResponse, type UserIdentitiesGrantAccessToDeviceBody, type UserIdentitiesGrantAccessToDeviceOptions, type UserIdentitiesGrantAccessToDeviceResponse, type UserIdentitiesListAccessibleDevicesOptions, type UserIdentitiesListAccessibleDevicesParams, type UserIdentitiesListAccessibleDevicesResponse, type UserIdentitiesListAcsSystemsOptions, type UserIdentitiesListAcsSystemsParams, type UserIdentitiesListAcsSystemsResponse, type UserIdentitiesListAcsUsersOptions, type UserIdentitiesListAcsUsersParams, type UserIdentitiesListAcsUsersResponse, type UserIdentitiesListOptions, type UserIdentitiesListParams, type UserIdentitiesListResponse, type UserIdentitiesRemoveAcsUserOptions, type UserIdentitiesRemoveAcsUserParams, type UserIdentitiesRemoveAcsUserResponse, type UserIdentitiesRevokeAccessToDeviceOptions, type UserIdentitiesRevokeAccessToDeviceParams, type UserIdentitiesRevokeAccessToDeviceResponse, type UserIdentitiesUpdateBody, type UserIdentitiesUpdateOptions, type UserIdentitiesUpdateResponse, type WebhooksCreateBody, type WebhooksCreateOptions, type WebhooksCreateResponse, type WebhooksDeleteOptions, type WebhooksDeleteParams, type WebhooksDeleteResponse, type WebhooksGetOptions, type WebhooksGetParams, type WebhooksGetResponse, type WebhooksListOptions, type WebhooksListParams, type WebhooksListResponse, type WebhooksUpdateBody, type WebhooksUpdateOptions, type WebhooksUpdateResponse, type WorkspacesCreateBody, type WorkspacesCreateOptions, type WorkspacesCreateResponse, type WorkspacesGetOptions, type WorkspacesGetParams, type WorkspacesGetResponse, type WorkspacesListOptions, type WorkspacesListParams, type WorkspacesListResponse, type WorkspacesResetSandboxBody, type WorkspacesResetSandboxOptions, type WorkspacesResetSandboxResponse, errorInterceptor, getOpenapiSchema, isApiKey, isClientSessionToken, isConsoleSessionToken, isPersonalAccessToken, isPublishableKey, isSeamActionAttemptError, isSeamActionAttemptFailedError, isSeamActionAttemptTimeoutError, isSeamHttpApiError, isSeamHttpInvalidInputError, isSeamHttpMultiWorkspaceOptionsWithClient, isSeamHttpMultiWorkspaceOptionsWithConsoleSessionToken, isSeamHttpMultiWorkspaceOptionsWithPersonalAccessToken, isSeamHttpOptionsWithApiKey, isSeamHttpOptionsWithClient, isSeamHttpOptionsWithClientSessionToken, isSeamHttpOptionsWithConsoleSessionToken, isSeamHttpOptionsWithPersonalAccessToken, isSeamHttpUnauthorizedError };
|
|
3409
|
+
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 BridgesGetOptions, type BridgesGetParams, type BridgesGetResponse, type BridgesListOptions, type BridgesListParams, type BridgesListResponse, 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 PhonesGetOptions, type PhonesGetParams, type PhonesGetResponse, 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, SeamHttpBridges, SeamHttpClientSessions, SeamHttpConnectWebviews, SeamHttpConnectedAccounts, SeamHttpDevices, SeamHttpDevicesSimulate, SeamHttpDevicesUnmanaged, SeamHttpEvents, type SeamHttpFromPublishableKeyOptions, SeamHttpInvalidInputError, SeamHttpInvalidOptionsError, SeamHttpInvalidTokenError, SeamHttpLocks, SeamHttpMultiWorkspace, SeamHttpMultiWorkspaceInvalidOptionsError, type SeamHttpMultiWorkspaceOptions, type SeamHttpMultiWorkspaceOptionsWithClient, type SeamHttpMultiWorkspaceOptionsWithConsoleSessionToken, type SeamHttpMultiWorkspaceOptionsWithPersonalAccessToken, SeamHttpNetworks, SeamHttpNoiseSensors, SeamHttpNoiseSensorsNoiseThresholds, SeamHttpNoiseSensorsSimulate, type SeamHttpOptions, type SeamHttpOptionsFromEnv, type SeamHttpOptionsWithApiKey, type SeamHttpOptionsWithClient, type SeamHttpOptionsWithClientSessionToken, type SeamHttpOptionsWithConsoleSessionToken, type SeamHttpOptionsWithPersonalAccessToken, SeamHttpPhones, SeamHttpPhonesSimulate, SeamHttpRequest, type SeamHttpRequestOptions, SeamHttpThermostats, SeamHttpThermostatsSchedules, SeamHttpThermostatsSimulate, SeamHttpUnauthorizedError, SeamHttpUnstableLocations, SeamHttpUserIdentities, SeamHttpUserIdentitiesEnrollmentAutomations, SeamHttpWebhooks, SeamHttpWorkspaces, SeamPaginator, type ThermostatsActivateClimatePresetBody, type ThermostatsActivateClimatePresetOptions, type ThermostatsActivateClimatePresetResponse, type ThermostatsCoolBody, type ThermostatsCoolOptions, type ThermostatsCoolResponse, type ThermostatsCreateClimatePresetBody, type ThermostatsCreateClimatePresetOptions, type ThermostatsCreateClimatePresetResponse, type ThermostatsDeleteClimatePresetBody, type ThermostatsDeleteClimatePresetOptions, type ThermostatsDeleteClimatePresetResponse, type ThermostatsGetOptions, type ThermostatsGetParams, type ThermostatsGetResponse, type ThermostatsHeatBody, type ThermostatsHeatCoolBody, type ThermostatsHeatCoolOptions, type ThermostatsHeatCoolResponse, type ThermostatsHeatOptions, type ThermostatsHeatResponse, type ThermostatsListOptions, type ThermostatsListParams, type ThermostatsListResponse, type ThermostatsOffBody, type ThermostatsOffOptions, type ThermostatsOffResponse, type ThermostatsSchedulesCreateBody, type ThermostatsSchedulesCreateOptions, type ThermostatsSchedulesCreateResponse, type ThermostatsSchedulesDeleteOptions, type ThermostatsSchedulesDeleteParams, type ThermostatsSchedulesDeleteResponse, type ThermostatsSchedulesGetOptions, type ThermostatsSchedulesGetParams, type ThermostatsSchedulesGetResponse, type ThermostatsSchedulesListOptions, type ThermostatsSchedulesListParams, type ThermostatsSchedulesListResponse, type ThermostatsSchedulesUpdateBody, type ThermostatsSchedulesUpdateOptions, type ThermostatsSchedulesUpdateResponse, type ThermostatsSetFallbackClimatePresetBody, type ThermostatsSetFallbackClimatePresetOptions, type ThermostatsSetFallbackClimatePresetResponse, type ThermostatsSetFanModeBody, type ThermostatsSetFanModeOptions, type ThermostatsSetFanModeResponse, type ThermostatsSetHvacModeBody, type ThermostatsSetHvacModeOptions, type ThermostatsSetHvacModeResponse, type ThermostatsSetTemperatureThresholdBody, type ThermostatsSetTemperatureThresholdOptions, type ThermostatsSetTemperatureThresholdResponse, type ThermostatsSimulateHvacModeAdjustedBody, type ThermostatsSimulateHvacModeAdjustedOptions, type ThermostatsSimulateHvacModeAdjustedResponse, type ThermostatsSimulateTemperatureReachedBody, type ThermostatsSimulateTemperatureReachedOptions, type ThermostatsSimulateTemperatureReachedResponse, type ThermostatsUpdateClimatePresetBody, type ThermostatsUpdateClimatePresetOptions, type ThermostatsUpdateClimatePresetResponse, type UnstableLocationsAddDevicesBody, type UnstableLocationsAddDevicesOptions, type UnstableLocationsAddDevicesResponse, type UnstableLocationsCreateBody, type UnstableLocationsCreateOptions, type UnstableLocationsCreateResponse, type UnstableLocationsDeleteOptions, type UnstableLocationsDeleteParams, type UnstableLocationsDeleteResponse, type UnstableLocationsGetOptions, type UnstableLocationsGetParams, type UnstableLocationsGetResponse, type UnstableLocationsListOptions, type UnstableLocationsListParams, type UnstableLocationsListResponse, type UnstableLocationsRemoveDevicesOptions, type UnstableLocationsRemoveDevicesParams, type UnstableLocationsRemoveDevicesResponse, type UnstableLocationsUpdateBody, type UnstableLocationsUpdateOptions, type UnstableLocationsUpdateResponse, 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 };
|