@seamapi/http 1.10.0 → 1.11.1

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.
@@ -467,7 +467,7 @@ declare class SeamHttpAcsEncoders {
467
467
  updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
468
468
  encodeCard(body?: AcsEncodersEncodeCardBody, options?: Pick<SeamHttpRequestOptions, 'waitForActionAttempt'>): SeamHttpRequest<AcsEncodersEncodeCardResponse, 'action_attempt'>;
469
469
  list(body?: AcsEncodersListParams): SeamHttpRequest<AcsEncodersListResponse, 'devices'>;
470
- readCard(body?: AcsEncodersReadCardBody, options?: Pick<SeamHttpRequestOptions, 'waitForActionAttempt'>): SeamHttpRequest<AcsEncodersReadCardResponse, 'action_attempt'>;
470
+ scanCard(body?: AcsEncodersScanCardBody, options?: Pick<SeamHttpRequestOptions, 'waitForActionAttempt'>): SeamHttpRequest<AcsEncodersScanCardResponse, 'action_attempt'>;
471
471
  }
472
472
  type AcsEncodersEncodeCardBody = RouteRequestBody<'/acs/encoders/encode_card'>;
473
473
  type AcsEncodersEncodeCardResponse = SetNonNullable<Required<RouteResponse<'/acs/encoders/encode_card'>>>;
@@ -475,9 +475,9 @@ type AcsEncodersEncodeCardOptions = Pick<SeamHttpRequestOptions, 'waitForActionA
475
475
  type AcsEncodersListParams = RouteRequestBody<'/acs/encoders/list'>;
476
476
  type AcsEncodersListResponse = SetNonNullable<Required<RouteResponse<'/acs/encoders/list'>>>;
477
477
  type AcsEncodersListOptions = never;
478
- type AcsEncodersReadCardBody = RouteRequestBody<'/acs/encoders/read_card'>;
479
- type AcsEncodersReadCardResponse = SetNonNullable<Required<RouteResponse<'/acs/encoders/read_card'>>>;
480
- type AcsEncodersReadCardOptions = Pick<SeamHttpRequestOptions, 'waitForActionAttempt'>;
478
+ type AcsEncodersScanCardBody = RouteRequestBody<'/acs/encoders/scan_card'>;
479
+ type AcsEncodersScanCardResponse = SetNonNullable<Required<RouteResponse<'/acs/encoders/scan_card'>>>;
480
+ type AcsEncodersScanCardOptions = Pick<SeamHttpRequestOptions, 'waitForActionAttempt'>;
481
481
 
482
482
  declare class SeamHttpActionAttempts {
483
483
  client: Client;
@@ -612,7 +612,7 @@ declare class SeamHttpDevicesSimulate {
612
612
  updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
613
613
  connect(body?: DevicesSimulateConnectBody): SeamHttpRequest<void, undefined>;
614
614
  disconnect(body?: DevicesSimulateDisconnectBody): SeamHttpRequest<void, undefined>;
615
- remove(body?: DevicesSimulateRemoveParams): SeamHttpRequest<void, undefined>;
615
+ remove(body?: DevicesSimulateRemoveBody): SeamHttpRequest<void, undefined>;
616
616
  }
617
617
  type DevicesSimulateConnectBody = RouteRequestBody<'/devices/simulate/connect'>;
618
618
  type DevicesSimulateConnectResponse = SetNonNullable<Required<RouteResponse<'/devices/simulate/connect'>>>;
@@ -620,7 +620,7 @@ type DevicesSimulateConnectOptions = never;
620
620
  type DevicesSimulateDisconnectBody = RouteRequestBody<'/devices/simulate/disconnect'>;
621
621
  type DevicesSimulateDisconnectResponse = SetNonNullable<Required<RouteResponse<'/devices/simulate/disconnect'>>>;
622
622
  type DevicesSimulateDisconnectOptions = never;
623
- type DevicesSimulateRemoveParams = RouteRequestBody<'/devices/simulate/remove'>;
623
+ type DevicesSimulateRemoveBody = RouteRequestBody<'/devices/simulate/remove'>;
624
624
  type DevicesSimulateRemoveResponse = SetNonNullable<Required<RouteResponse<'/devices/simulate/remove'>>>;
625
625
  type DevicesSimulateRemoveOptions = never;
626
626
 
@@ -1162,15 +1162,115 @@ declare const isSeamActionAttemptError: <T extends {
1162
1162
  status: "pending";
1163
1163
  action_attempt_id: string;
1164
1164
  result: null;
1165
- action_type: "READ_CARD";
1165
+ action_type: "SCAN_CARD";
1166
1166
  } | {
1167
1167
  error: null;
1168
1168
  status: "success";
1169
1169
  action_attempt_id: string;
1170
1170
  result: {
1171
- card_number: string | null;
1171
+ acs_credential_on_encoder: {
1172
+ created_at: string | null;
1173
+ starts_at: string | null;
1174
+ ends_at: string | null;
1175
+ card_number: string | null;
1176
+ is_issued: boolean | null;
1177
+ visionline_metadata?: {
1178
+ expired: boolean;
1179
+ card_function_type: "guest" | "staff";
1180
+ card_id: string;
1181
+ cancelled: boolean;
1182
+ discarded: boolean;
1183
+ overwritten: boolean;
1184
+ pending_auto_update: boolean;
1185
+ card_format: "TLCode" | "rfid48";
1186
+ number_of_issued_cards: number;
1187
+ overridden?: boolean | undefined;
1188
+ card_holder?: string | undefined;
1189
+ } | undefined;
1190
+ };
1191
+ acs_credential_on_seam: {
1192
+ created_at: string;
1193
+ errors: {
1194
+ message: string;
1195
+ error_code: string;
1196
+ }[];
1197
+ warnings: {
1198
+ message: string;
1199
+ warning_code: string;
1200
+ }[];
1201
+ display_name: string;
1202
+ workspace_id: string;
1203
+ is_managed: true;
1204
+ acs_system_id: string;
1205
+ acs_credential_id: string;
1206
+ access_method: "code" | "card" | "mobile_key";
1207
+ code?: string | null | undefined;
1208
+ starts_at?: string | undefined;
1209
+ ends_at?: string | undefined;
1210
+ visionline_metadata?: {
1211
+ card_function_type: "guest" | "staff";
1212
+ joiner_acs_credential_ids?: string[] | undefined;
1213
+ guest_acs_entrance_ids?: string[] | undefined;
1214
+ common_acs_entrance_ids?: string[] | undefined;
1215
+ is_valid?: boolean | undefined;
1216
+ auto_join?: boolean | undefined;
1217
+ card_id?: string | undefined;
1218
+ credential_id?: string | undefined;
1219
+ } | undefined;
1220
+ external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
1221
+ external_type_display_name?: string | undefined;
1222
+ acs_user_id?: string | undefined;
1223
+ acs_credential_pool_id?: string | undefined;
1224
+ parent_acs_credential_id?: string | undefined;
1225
+ card_number?: string | null | undefined;
1226
+ is_issued?: boolean | undefined;
1227
+ issued_at?: string | null | undefined;
1228
+ is_multi_phone_sync_credential?: boolean | undefined;
1229
+ is_latest_desired_state_synced_with_provider?: boolean | undefined;
1230
+ latest_desired_state_synced_with_provider_at?: string | undefined;
1231
+ } | {
1232
+ created_at: string;
1233
+ errors: {
1234
+ message: string;
1235
+ error_code: string;
1236
+ }[];
1237
+ warnings: {
1238
+ message: string;
1239
+ warning_code: string;
1240
+ }[];
1241
+ display_name: string;
1242
+ workspace_id: string;
1243
+ is_managed: false;
1244
+ acs_system_id: string;
1245
+ acs_credential_id: string;
1246
+ access_method: "code" | "card" | "mobile_key";
1247
+ code?: string | null | undefined;
1248
+ starts_at?: string | undefined;
1249
+ ends_at?: string | undefined;
1250
+ visionline_metadata?: {
1251
+ card_function_type: "guest" | "staff";
1252
+ joiner_acs_credential_ids?: string[] | undefined;
1253
+ guest_acs_entrance_ids?: string[] | undefined;
1254
+ common_acs_entrance_ids?: string[] | undefined;
1255
+ is_valid?: boolean | undefined;
1256
+ auto_join?: boolean | undefined;
1257
+ card_id?: string | undefined;
1258
+ credential_id?: string | undefined;
1259
+ } | undefined;
1260
+ external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
1261
+ external_type_display_name?: string | undefined;
1262
+ acs_user_id?: string | undefined;
1263
+ acs_credential_pool_id?: string | undefined;
1264
+ parent_acs_credential_id?: string | undefined;
1265
+ card_number?: string | null | undefined;
1266
+ is_issued?: boolean | undefined;
1267
+ issued_at?: string | null | undefined;
1268
+ is_multi_phone_sync_credential?: boolean | undefined;
1269
+ is_latest_desired_state_synced_with_provider?: boolean | undefined;
1270
+ latest_desired_state_synced_with_provider_at?: string | undefined;
1271
+ } | null;
1172
1272
  };
1173
- action_type: "READ_CARD";
1273
+ action_type: "SCAN_CARD";
1174
1274
  } | {
1175
1275
  error: {
1176
1276
  type: "no_card_on_encoder";
@@ -1179,7 +1279,7 @@ declare const isSeamActionAttemptError: <T extends {
1179
1279
  status: "error";
1180
1280
  action_attempt_id: string;
1181
1281
  result: null;
1182
- action_type: "READ_CARD";
1282
+ action_type: "SCAN_CARD";
1183
1283
  } | {
1184
1284
  error: null;
1185
1285
  status: "pending";
@@ -1190,10 +1290,7 @@ declare const isSeamActionAttemptError: <T extends {
1190
1290
  error: null;
1191
1291
  status: "success";
1192
1292
  action_attempt_id: string;
1193
- result: {
1194
- acs_credential_id: string | null;
1195
- card_number: string | null;
1196
- };
1293
+ result: {};
1197
1294
  action_type: "ENCODE_CARD";
1198
1295
  } | {
1199
1296
  error: {
@@ -1361,8 +1458,8 @@ declare const isSeamActionAttemptError: <T extends {
1361
1458
  error: null;
1362
1459
  status: "success";
1363
1460
  action_attempt_id: string;
1461
+ result: {};
1364
1462
  action_type: "SYNC_ACCESS_CODES";
1365
- result?: any;
1366
1463
  } | {
1367
1464
  error: {
1368
1465
  type: string;
@@ -1382,8 +1479,10 @@ declare const isSeamActionAttemptError: <T extends {
1382
1479
  error: null;
1383
1480
  status: "success";
1384
1481
  action_attempt_id: string;
1482
+ result: {
1483
+ access_code?: any;
1484
+ };
1385
1485
  action_type: "CREATE_ACCESS_CODE";
1386
- result?: any;
1387
1486
  } | {
1388
1487
  error: {
1389
1488
  type: string;
@@ -1403,8 +1502,8 @@ declare const isSeamActionAttemptError: <T extends {
1403
1502
  error: null;
1404
1503
  status: "success";
1405
1504
  action_attempt_id: string;
1505
+ result: {};
1406
1506
  action_type: "DELETE_ACCESS_CODE";
1407
- result?: any;
1408
1507
  } | {
1409
1508
  error: {
1410
1509
  type: string;
@@ -1424,8 +1523,10 @@ declare const isSeamActionAttemptError: <T extends {
1424
1523
  error: null;
1425
1524
  status: "success";
1426
1525
  action_attempt_id: string;
1526
+ result: {
1527
+ access_code?: any;
1528
+ };
1427
1529
  action_type: "UPDATE_ACCESS_CODE";
1428
- result?: any;
1429
1530
  } | {
1430
1531
  error: {
1431
1532
  type: string;
@@ -1445,8 +1546,10 @@ declare const isSeamActionAttemptError: <T extends {
1445
1546
  error: null;
1446
1547
  status: "success";
1447
1548
  action_attempt_id: string;
1549
+ result: {
1550
+ noise_threshold?: any;
1551
+ };
1448
1552
  action_type: "CREATE_NOISE_THRESHOLD";
1449
- result?: any;
1450
1553
  } | {
1451
1554
  error: {
1452
1555
  type: string;
@@ -1466,8 +1569,8 @@ declare const isSeamActionAttemptError: <T extends {
1466
1569
  error: null;
1467
1570
  status: "success";
1468
1571
  action_attempt_id: string;
1572
+ result: {};
1469
1573
  action_type: "DELETE_NOISE_THRESHOLD";
1470
- result?: any;
1471
1574
  } | {
1472
1575
  error: {
1473
1576
  type: string;
@@ -1487,8 +1590,10 @@ declare const isSeamActionAttemptError: <T extends {
1487
1590
  error: null;
1488
1591
  status: "success";
1489
1592
  action_attempt_id: string;
1593
+ result: {
1594
+ noise_threshold?: any;
1595
+ };
1490
1596
  action_type: "UPDATE_NOISE_THRESHOLD";
1491
- result?: any;
1492
1597
  } | {
1493
1598
  error: {
1494
1599
  type: string;
@@ -1550,15 +1655,115 @@ declare const isSeamActionAttemptFailedError: <T extends {
1550
1655
  status: "pending";
1551
1656
  action_attempt_id: string;
1552
1657
  result: null;
1553
- action_type: "READ_CARD";
1658
+ action_type: "SCAN_CARD";
1554
1659
  } | {
1555
1660
  error: null;
1556
1661
  status: "success";
1557
1662
  action_attempt_id: string;
1558
1663
  result: {
1559
- card_number: string | null;
1664
+ acs_credential_on_encoder: {
1665
+ created_at: string | null;
1666
+ starts_at: string | null;
1667
+ ends_at: string | null;
1668
+ card_number: string | null;
1669
+ is_issued: boolean | null;
1670
+ visionline_metadata?: {
1671
+ expired: boolean;
1672
+ card_function_type: "guest" | "staff";
1673
+ card_id: string;
1674
+ cancelled: boolean;
1675
+ discarded: boolean;
1676
+ overwritten: boolean;
1677
+ pending_auto_update: boolean;
1678
+ card_format: "TLCode" | "rfid48";
1679
+ number_of_issued_cards: number;
1680
+ overridden?: boolean | undefined;
1681
+ card_holder?: string | undefined;
1682
+ } | undefined;
1683
+ };
1684
+ acs_credential_on_seam: {
1685
+ created_at: string;
1686
+ errors: {
1687
+ message: string;
1688
+ error_code: string;
1689
+ }[];
1690
+ warnings: {
1691
+ message: string;
1692
+ warning_code: string;
1693
+ }[];
1694
+ display_name: string;
1695
+ workspace_id: string;
1696
+ is_managed: true;
1697
+ acs_system_id: string;
1698
+ acs_credential_id: string;
1699
+ access_method: "code" | "card" | "mobile_key";
1700
+ code?: string | null | undefined;
1701
+ starts_at?: string | undefined;
1702
+ ends_at?: string | undefined;
1703
+ visionline_metadata?: {
1704
+ card_function_type: "guest" | "staff";
1705
+ joiner_acs_credential_ids?: string[] | undefined;
1706
+ guest_acs_entrance_ids?: string[] | undefined;
1707
+ common_acs_entrance_ids?: string[] | undefined;
1708
+ is_valid?: boolean | undefined;
1709
+ auto_join?: boolean | undefined;
1710
+ card_id?: string | undefined;
1711
+ credential_id?: string | undefined;
1712
+ } | undefined;
1713
+ external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
1714
+ external_type_display_name?: string | undefined;
1715
+ acs_user_id?: string | undefined;
1716
+ acs_credential_pool_id?: string | undefined;
1717
+ parent_acs_credential_id?: string | undefined;
1718
+ card_number?: string | null | undefined;
1719
+ is_issued?: boolean | undefined;
1720
+ issued_at?: string | null | undefined;
1721
+ is_multi_phone_sync_credential?: boolean | undefined;
1722
+ is_latest_desired_state_synced_with_provider?: boolean | undefined;
1723
+ latest_desired_state_synced_with_provider_at?: string | undefined;
1724
+ } | {
1725
+ created_at: string;
1726
+ errors: {
1727
+ message: string;
1728
+ error_code: string;
1729
+ }[];
1730
+ warnings: {
1731
+ message: string;
1732
+ warning_code: string;
1733
+ }[];
1734
+ display_name: string;
1735
+ workspace_id: string;
1736
+ is_managed: false;
1737
+ acs_system_id: string;
1738
+ acs_credential_id: string;
1739
+ access_method: "code" | "card" | "mobile_key";
1740
+ code?: string | null | undefined;
1741
+ starts_at?: string | undefined;
1742
+ ends_at?: string | undefined;
1743
+ visionline_metadata?: {
1744
+ card_function_type: "guest" | "staff";
1745
+ joiner_acs_credential_ids?: string[] | undefined;
1746
+ guest_acs_entrance_ids?: string[] | undefined;
1747
+ common_acs_entrance_ids?: string[] | undefined;
1748
+ is_valid?: boolean | undefined;
1749
+ auto_join?: boolean | undefined;
1750
+ card_id?: string | undefined;
1751
+ credential_id?: string | undefined;
1752
+ } | undefined;
1753
+ external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
1754
+ external_type_display_name?: string | undefined;
1755
+ acs_user_id?: string | undefined;
1756
+ acs_credential_pool_id?: string | undefined;
1757
+ parent_acs_credential_id?: string | undefined;
1758
+ card_number?: string | null | undefined;
1759
+ is_issued?: boolean | undefined;
1760
+ issued_at?: string | null | undefined;
1761
+ is_multi_phone_sync_credential?: boolean | undefined;
1762
+ is_latest_desired_state_synced_with_provider?: boolean | undefined;
1763
+ latest_desired_state_synced_with_provider_at?: string | undefined;
1764
+ } | null;
1560
1765
  };
1561
- action_type: "READ_CARD";
1766
+ action_type: "SCAN_CARD";
1562
1767
  } | {
1563
1768
  error: {
1564
1769
  type: "no_card_on_encoder";
@@ -1567,7 +1772,7 @@ declare const isSeamActionAttemptFailedError: <T extends {
1567
1772
  status: "error";
1568
1773
  action_attempt_id: string;
1569
1774
  result: null;
1570
- action_type: "READ_CARD";
1775
+ action_type: "SCAN_CARD";
1571
1776
  } | {
1572
1777
  error: null;
1573
1778
  status: "pending";
@@ -1578,10 +1783,7 @@ declare const isSeamActionAttemptFailedError: <T extends {
1578
1783
  error: null;
1579
1784
  status: "success";
1580
1785
  action_attempt_id: string;
1581
- result: {
1582
- acs_credential_id: string | null;
1583
- card_number: string | null;
1584
- };
1786
+ result: {};
1585
1787
  action_type: "ENCODE_CARD";
1586
1788
  } | {
1587
1789
  error: {
@@ -1749,8 +1951,8 @@ declare const isSeamActionAttemptFailedError: <T extends {
1749
1951
  error: null;
1750
1952
  status: "success";
1751
1953
  action_attempt_id: string;
1954
+ result: {};
1752
1955
  action_type: "SYNC_ACCESS_CODES";
1753
- result?: any;
1754
1956
  } | {
1755
1957
  error: {
1756
1958
  type: string;
@@ -1770,8 +1972,10 @@ declare const isSeamActionAttemptFailedError: <T extends {
1770
1972
  error: null;
1771
1973
  status: "success";
1772
1974
  action_attempt_id: string;
1975
+ result: {
1976
+ access_code?: any;
1977
+ };
1773
1978
  action_type: "CREATE_ACCESS_CODE";
1774
- result?: any;
1775
1979
  } | {
1776
1980
  error: {
1777
1981
  type: string;
@@ -1791,8 +1995,8 @@ declare const isSeamActionAttemptFailedError: <T extends {
1791
1995
  error: null;
1792
1996
  status: "success";
1793
1997
  action_attempt_id: string;
1998
+ result: {};
1794
1999
  action_type: "DELETE_ACCESS_CODE";
1795
- result?: any;
1796
2000
  } | {
1797
2001
  error: {
1798
2002
  type: string;
@@ -1812,8 +2016,10 @@ declare const isSeamActionAttemptFailedError: <T extends {
1812
2016
  error: null;
1813
2017
  status: "success";
1814
2018
  action_attempt_id: string;
2019
+ result: {
2020
+ access_code?: any;
2021
+ };
1815
2022
  action_type: "UPDATE_ACCESS_CODE";
1816
- result?: any;
1817
2023
  } | {
1818
2024
  error: {
1819
2025
  type: string;
@@ -1833,8 +2039,10 @@ declare const isSeamActionAttemptFailedError: <T extends {
1833
2039
  error: null;
1834
2040
  status: "success";
1835
2041
  action_attempt_id: string;
2042
+ result: {
2043
+ noise_threshold?: any;
2044
+ };
1836
2045
  action_type: "CREATE_NOISE_THRESHOLD";
1837
- result?: any;
1838
2046
  } | {
1839
2047
  error: {
1840
2048
  type: string;
@@ -1854,8 +2062,8 @@ declare const isSeamActionAttemptFailedError: <T extends {
1854
2062
  error: null;
1855
2063
  status: "success";
1856
2064
  action_attempt_id: string;
2065
+ result: {};
1857
2066
  action_type: "DELETE_NOISE_THRESHOLD";
1858
- result?: any;
1859
2067
  } | {
1860
2068
  error: {
1861
2069
  type: string;
@@ -1875,8 +2083,10 @@ declare const isSeamActionAttemptFailedError: <T extends {
1875
2083
  error: null;
1876
2084
  status: "success";
1877
2085
  action_attempt_id: string;
2086
+ result: {
2087
+ noise_threshold?: any;
2088
+ };
1878
2089
  action_type: "UPDATE_NOISE_THRESHOLD";
1879
- result?: any;
1880
2090
  } | {
1881
2091
  error: {
1882
2092
  type: string;
@@ -1938,15 +2148,115 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
1938
2148
  status: "pending";
1939
2149
  action_attempt_id: string;
1940
2150
  result: null;
1941
- action_type: "READ_CARD";
2151
+ action_type: "SCAN_CARD";
1942
2152
  } | {
1943
2153
  error: null;
1944
2154
  status: "success";
1945
2155
  action_attempt_id: string;
1946
2156
  result: {
1947
- card_number: string | null;
2157
+ acs_credential_on_encoder: {
2158
+ created_at: string | null;
2159
+ starts_at: string | null;
2160
+ ends_at: string | null;
2161
+ card_number: string | null;
2162
+ is_issued: boolean | null;
2163
+ visionline_metadata?: {
2164
+ expired: boolean;
2165
+ card_function_type: "guest" | "staff";
2166
+ card_id: string;
2167
+ cancelled: boolean;
2168
+ discarded: boolean;
2169
+ overwritten: boolean;
2170
+ pending_auto_update: boolean;
2171
+ card_format: "TLCode" | "rfid48";
2172
+ number_of_issued_cards: number;
2173
+ overridden?: boolean | undefined;
2174
+ card_holder?: string | undefined;
2175
+ } | undefined;
2176
+ };
2177
+ acs_credential_on_seam: {
2178
+ created_at: string;
2179
+ errors: {
2180
+ message: string;
2181
+ error_code: string;
2182
+ }[];
2183
+ warnings: {
2184
+ message: string;
2185
+ warning_code: string;
2186
+ }[];
2187
+ display_name: string;
2188
+ workspace_id: string;
2189
+ is_managed: true;
2190
+ acs_system_id: string;
2191
+ acs_credential_id: string;
2192
+ access_method: "code" | "card" | "mobile_key";
2193
+ code?: string | null | undefined;
2194
+ starts_at?: string | undefined;
2195
+ ends_at?: string | undefined;
2196
+ visionline_metadata?: {
2197
+ card_function_type: "guest" | "staff";
2198
+ joiner_acs_credential_ids?: string[] | undefined;
2199
+ guest_acs_entrance_ids?: string[] | undefined;
2200
+ common_acs_entrance_ids?: string[] | undefined;
2201
+ is_valid?: boolean | undefined;
2202
+ auto_join?: boolean | undefined;
2203
+ card_id?: string | undefined;
2204
+ credential_id?: string | undefined;
2205
+ } | undefined;
2206
+ external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
2207
+ external_type_display_name?: string | undefined;
2208
+ acs_user_id?: string | undefined;
2209
+ acs_credential_pool_id?: string | undefined;
2210
+ parent_acs_credential_id?: string | undefined;
2211
+ card_number?: string | null | undefined;
2212
+ is_issued?: boolean | undefined;
2213
+ issued_at?: string | null | undefined;
2214
+ is_multi_phone_sync_credential?: boolean | undefined;
2215
+ is_latest_desired_state_synced_with_provider?: boolean | undefined;
2216
+ latest_desired_state_synced_with_provider_at?: string | undefined;
2217
+ } | {
2218
+ created_at: string;
2219
+ errors: {
2220
+ message: string;
2221
+ error_code: string;
2222
+ }[];
2223
+ warnings: {
2224
+ message: string;
2225
+ warning_code: string;
2226
+ }[];
2227
+ display_name: string;
2228
+ workspace_id: string;
2229
+ is_managed: false;
2230
+ acs_system_id: string;
2231
+ acs_credential_id: string;
2232
+ access_method: "code" | "card" | "mobile_key";
2233
+ code?: string | null | undefined;
2234
+ starts_at?: string | undefined;
2235
+ ends_at?: string | undefined;
2236
+ visionline_metadata?: {
2237
+ card_function_type: "guest" | "staff";
2238
+ joiner_acs_credential_ids?: string[] | undefined;
2239
+ guest_acs_entrance_ids?: string[] | undefined;
2240
+ common_acs_entrance_ids?: string[] | undefined;
2241
+ is_valid?: boolean | undefined;
2242
+ auto_join?: boolean | undefined;
2243
+ card_id?: string | undefined;
2244
+ credential_id?: string | undefined;
2245
+ } | undefined;
2246
+ external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
2247
+ external_type_display_name?: string | undefined;
2248
+ acs_user_id?: string | undefined;
2249
+ acs_credential_pool_id?: string | undefined;
2250
+ parent_acs_credential_id?: string | undefined;
2251
+ card_number?: string | null | undefined;
2252
+ is_issued?: boolean | undefined;
2253
+ issued_at?: string | null | undefined;
2254
+ is_multi_phone_sync_credential?: boolean | undefined;
2255
+ is_latest_desired_state_synced_with_provider?: boolean | undefined;
2256
+ latest_desired_state_synced_with_provider_at?: string | undefined;
2257
+ } | null;
1948
2258
  };
1949
- action_type: "READ_CARD";
2259
+ action_type: "SCAN_CARD";
1950
2260
  } | {
1951
2261
  error: {
1952
2262
  type: "no_card_on_encoder";
@@ -1955,7 +2265,7 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
1955
2265
  status: "error";
1956
2266
  action_attempt_id: string;
1957
2267
  result: null;
1958
- action_type: "READ_CARD";
2268
+ action_type: "SCAN_CARD";
1959
2269
  } | {
1960
2270
  error: null;
1961
2271
  status: "pending";
@@ -1966,10 +2276,7 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
1966
2276
  error: null;
1967
2277
  status: "success";
1968
2278
  action_attempt_id: string;
1969
- result: {
1970
- acs_credential_id: string | null;
1971
- card_number: string | null;
1972
- };
2279
+ result: {};
1973
2280
  action_type: "ENCODE_CARD";
1974
2281
  } | {
1975
2282
  error: {
@@ -2137,8 +2444,8 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
2137
2444
  error: null;
2138
2445
  status: "success";
2139
2446
  action_attempt_id: string;
2447
+ result: {};
2140
2448
  action_type: "SYNC_ACCESS_CODES";
2141
- result?: any;
2142
2449
  } | {
2143
2450
  error: {
2144
2451
  type: string;
@@ -2158,8 +2465,10 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
2158
2465
  error: null;
2159
2466
  status: "success";
2160
2467
  action_attempt_id: string;
2468
+ result: {
2469
+ access_code?: any;
2470
+ };
2161
2471
  action_type: "CREATE_ACCESS_CODE";
2162
- result?: any;
2163
2472
  } | {
2164
2473
  error: {
2165
2474
  type: string;
@@ -2179,8 +2488,8 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
2179
2488
  error: null;
2180
2489
  status: "success";
2181
2490
  action_attempt_id: string;
2491
+ result: {};
2182
2492
  action_type: "DELETE_ACCESS_CODE";
2183
- result?: any;
2184
2493
  } | {
2185
2494
  error: {
2186
2495
  type: string;
@@ -2200,8 +2509,10 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
2200
2509
  error: null;
2201
2510
  status: "success";
2202
2511
  action_attempt_id: string;
2512
+ result: {
2513
+ access_code?: any;
2514
+ };
2203
2515
  action_type: "UPDATE_ACCESS_CODE";
2204
- result?: any;
2205
2516
  } | {
2206
2517
  error: {
2207
2518
  type: string;
@@ -2221,8 +2532,10 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
2221
2532
  error: null;
2222
2533
  status: "success";
2223
2534
  action_attempt_id: string;
2535
+ result: {
2536
+ noise_threshold?: any;
2537
+ };
2224
2538
  action_type: "CREATE_NOISE_THRESHOLD";
2225
- result?: any;
2226
2539
  } | {
2227
2540
  error: {
2228
2541
  type: string;
@@ -2242,8 +2555,8 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
2242
2555
  error: null;
2243
2556
  status: "success";
2244
2557
  action_attempt_id: string;
2558
+ result: {};
2245
2559
  action_type: "DELETE_NOISE_THRESHOLD";
2246
- result?: any;
2247
2560
  } | {
2248
2561
  error: {
2249
2562
  type: string;
@@ -2263,8 +2576,10 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
2263
2576
  error: null;
2264
2577
  status: "success";
2265
2578
  action_attempt_id: string;
2579
+ result: {
2580
+ noise_threshold?: any;
2581
+ };
2266
2582
  action_type: "UPDATE_NOISE_THRESHOLD";
2267
- result?: any;
2268
2583
  } | {
2269
2584
  error: {
2270
2585
  type: string;
@@ -2421,4 +2736,4 @@ declare const isPublishableKey: (token: string) => boolean;
2421
2736
  declare const isConsoleSessionToken: (token: string) => boolean;
2422
2737
  declare const isPersonalAccessToken: (token: string) => boolean;
2423
2738
 
2424
- 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 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 AcsEncodersEncodeCardBody, type AcsEncodersEncodeCardOptions, type AcsEncodersEncodeCardResponse, type AcsEncodersListOptions, type AcsEncodersListParams, type AcsEncodersListResponse, type AcsEncodersReadCardBody, type AcsEncodersReadCardOptions, type AcsEncodersReadCardResponse, 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 DevicesSimulateRemoveOptions, type DevicesSimulateRemoveParams, 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 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 };
2739
+ 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 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 AcsEncodersEncodeCardBody, type AcsEncodersEncodeCardOptions, type AcsEncodersEncodeCardResponse, type AcsEncodersListOptions, type AcsEncodersListParams, type AcsEncodersListResponse, type AcsEncodersScanCardBody, type AcsEncodersScanCardOptions, type AcsEncodersScanCardResponse, 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 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 };