@seamapi/http 1.12.0 → 1.13.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.
@@ -465,19 +465,19 @@ declare class SeamHttpAcsEncoders {
465
465
  static fromConsoleSessionToken(consoleSessionToken: SeamHttpOptionsWithConsoleSessionToken['consoleSessionToken'], workspaceId: SeamHttpOptionsWithConsoleSessionToken['workspaceId'], options?: Omit<SeamHttpOptionsWithConsoleSessionToken, 'consoleSessionToken' | 'workspaceId'>): SeamHttpAcsEncoders;
466
466
  static fromPersonalAccessToken(personalAccessToken: SeamHttpOptionsWithPersonalAccessToken['personalAccessToken'], workspaceId: SeamHttpOptionsWithPersonalAccessToken['workspaceId'], options?: Omit<SeamHttpOptionsWithPersonalAccessToken, 'personalAccessToken' | 'workspaceId'>): SeamHttpAcsEncoders;
467
467
  updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
468
- encodeCard(body?: AcsEncodersEncodeCardBody, options?: Pick<SeamHttpRequestOptions, 'waitForActionAttempt'>): SeamHttpRequest<AcsEncodersEncodeCardResponse, 'action_attempt'>;
468
+ encodeCredential(body?: AcsEncodersEncodeCredentialBody, options?: Pick<SeamHttpRequestOptions, 'waitForActionAttempt'>): SeamHttpRequest<AcsEncodersEncodeCredentialResponse, 'action_attempt'>;
469
469
  list(body?: AcsEncodersListParams): SeamHttpRequest<AcsEncodersListResponse, 'devices'>;
470
- scanCard(body?: AcsEncodersScanCardBody, options?: Pick<SeamHttpRequestOptions, 'waitForActionAttempt'>): SeamHttpRequest<AcsEncodersScanCardResponse, 'action_attempt'>;
470
+ scanCredential(body?: AcsEncodersScanCredentialBody, options?: Pick<SeamHttpRequestOptions, 'waitForActionAttempt'>): SeamHttpRequest<AcsEncodersScanCredentialResponse, 'action_attempt'>;
471
471
  }
472
- type AcsEncodersEncodeCardBody = RouteRequestBody<'/acs/encoders/encode_card'>;
473
- type AcsEncodersEncodeCardResponse = SetNonNullable<Required<RouteResponse<'/acs/encoders/encode_card'>>>;
474
- type AcsEncodersEncodeCardOptions = Pick<SeamHttpRequestOptions, 'waitForActionAttempt'>;
472
+ type AcsEncodersEncodeCredentialBody = RouteRequestBody<'/acs/encoders/encode_credential'>;
473
+ type AcsEncodersEncodeCredentialResponse = SetNonNullable<Required<RouteResponse<'/acs/encoders/encode_credential'>>>;
474
+ type AcsEncodersEncodeCredentialOptions = Pick<SeamHttpRequestOptions, 'waitForActionAttempt'>;
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 AcsEncodersScanCardBody = RouteRequestBody<'/acs/encoders/scan_card'>;
479
- type AcsEncodersScanCardResponse = SetNonNullable<Required<RouteResponse<'/acs/encoders/scan_card'>>>;
480
- type AcsEncodersScanCardOptions = Pick<SeamHttpRequestOptions, 'waitForActionAttempt'>;
478
+ type AcsEncodersScanCredentialBody = RouteRequestBody<'/acs/encoders/scan_credential'>;
479
+ type AcsEncodersScanCredentialResponse = SetNonNullable<Required<RouteResponse<'/acs/encoders/scan_credential'>>>;
480
+ type AcsEncodersScanCredentialOptions = Pick<SeamHttpRequestOptions, 'waitForActionAttempt'>;
481
481
 
482
482
  declare class SeamHttpActionAttempts {
483
483
  client: Client;
@@ -1166,12 +1166,16 @@ declare const isSeamActionAttemptError: <T extends {
1166
1166
  status: "pending";
1167
1167
  action_attempt_id: string;
1168
1168
  result: null;
1169
- action_type: "SCAN_CARD";
1169
+ action_type: "SCAN_CREDENTIAL";
1170
1170
  } | {
1171
1171
  error: null;
1172
1172
  status: "success";
1173
1173
  action_attempt_id: string;
1174
1174
  result: {
1175
+ warnings: {
1176
+ warning_code: "acs_credential_on_encoder_out_of_sync";
1177
+ warning_message: string;
1178
+ }[];
1175
1179
  acs_credential_on_encoder: {
1176
1180
  created_at: string | null;
1177
1181
  starts_at: string | null;
@@ -1275,22 +1279,28 @@ declare const isSeamActionAttemptError: <T extends {
1275
1279
  latest_desired_state_synced_with_provider_at?: string | undefined;
1276
1280
  } | null;
1277
1281
  };
1278
- action_type: "SCAN_CARD";
1282
+ action_type: "SCAN_CREDENTIAL";
1279
1283
  } | {
1280
1284
  error: {
1285
+ type: "uncategorized_error";
1286
+ message: string;
1287
+ } | {
1288
+ type: "action_attempt_expired";
1289
+ message: string;
1290
+ } | {
1281
1291
  type: "no_card_on_encoder";
1282
1292
  message: string;
1283
1293
  };
1284
1294
  status: "error";
1285
1295
  action_attempt_id: string;
1286
1296
  result: null;
1287
- action_type: "SCAN_CARD";
1297
+ action_type: "SCAN_CREDENTIAL";
1288
1298
  } | {
1289
1299
  error: null;
1290
1300
  status: "pending";
1291
1301
  action_attempt_id: string;
1292
1302
  result: null;
1293
- action_type: "ENCODE_CARD";
1303
+ action_type: "ENCODE_CREDENTIAL";
1294
1304
  } | {
1295
1305
  error: null;
1296
1306
  status: "success";
@@ -1376,16 +1386,25 @@ declare const isSeamActionAttemptError: <T extends {
1376
1386
  is_latest_desired_state_synced_with_provider?: boolean | undefined;
1377
1387
  latest_desired_state_synced_with_provider_at?: string | undefined;
1378
1388
  };
1379
- action_type: "ENCODE_CARD";
1389
+ action_type: "ENCODE_CREDENTIAL";
1380
1390
  } | {
1381
1391
  error: {
1382
- type: string;
1392
+ type: "uncategorized_error";
1393
+ message: string;
1394
+ } | {
1395
+ type: "action_attempt_expired";
1396
+ message: string;
1397
+ } | {
1398
+ type: "no_card_on_encoder";
1399
+ message: string;
1400
+ } | {
1401
+ type: "incompatible_card_format";
1383
1402
  message: string;
1384
1403
  };
1385
1404
  status: "error";
1386
1405
  action_attempt_id: string;
1387
1406
  result: null;
1388
- action_type: "ENCODE_CARD";
1407
+ action_type: "ENCODE_CREDENTIAL";
1389
1408
  } | {
1390
1409
  error: null;
1391
1410
  status: "pending";
@@ -1740,12 +1759,16 @@ declare const isSeamActionAttemptFailedError: <T extends {
1740
1759
  status: "pending";
1741
1760
  action_attempt_id: string;
1742
1761
  result: null;
1743
- action_type: "SCAN_CARD";
1762
+ action_type: "SCAN_CREDENTIAL";
1744
1763
  } | {
1745
1764
  error: null;
1746
1765
  status: "success";
1747
1766
  action_attempt_id: string;
1748
1767
  result: {
1768
+ warnings: {
1769
+ warning_code: "acs_credential_on_encoder_out_of_sync";
1770
+ warning_message: string;
1771
+ }[];
1749
1772
  acs_credential_on_encoder: {
1750
1773
  created_at: string | null;
1751
1774
  starts_at: string | null;
@@ -1849,22 +1872,28 @@ declare const isSeamActionAttemptFailedError: <T extends {
1849
1872
  latest_desired_state_synced_with_provider_at?: string | undefined;
1850
1873
  } | null;
1851
1874
  };
1852
- action_type: "SCAN_CARD";
1875
+ action_type: "SCAN_CREDENTIAL";
1853
1876
  } | {
1854
1877
  error: {
1878
+ type: "uncategorized_error";
1879
+ message: string;
1880
+ } | {
1881
+ type: "action_attempt_expired";
1882
+ message: string;
1883
+ } | {
1855
1884
  type: "no_card_on_encoder";
1856
1885
  message: string;
1857
1886
  };
1858
1887
  status: "error";
1859
1888
  action_attempt_id: string;
1860
1889
  result: null;
1861
- action_type: "SCAN_CARD";
1890
+ action_type: "SCAN_CREDENTIAL";
1862
1891
  } | {
1863
1892
  error: null;
1864
1893
  status: "pending";
1865
1894
  action_attempt_id: string;
1866
1895
  result: null;
1867
- action_type: "ENCODE_CARD";
1896
+ action_type: "ENCODE_CREDENTIAL";
1868
1897
  } | {
1869
1898
  error: null;
1870
1899
  status: "success";
@@ -1950,16 +1979,25 @@ declare const isSeamActionAttemptFailedError: <T extends {
1950
1979
  is_latest_desired_state_synced_with_provider?: boolean | undefined;
1951
1980
  latest_desired_state_synced_with_provider_at?: string | undefined;
1952
1981
  };
1953
- action_type: "ENCODE_CARD";
1982
+ action_type: "ENCODE_CREDENTIAL";
1954
1983
  } | {
1955
1984
  error: {
1956
- type: string;
1985
+ type: "uncategorized_error";
1986
+ message: string;
1987
+ } | {
1988
+ type: "action_attempt_expired";
1989
+ message: string;
1990
+ } | {
1991
+ type: "no_card_on_encoder";
1992
+ message: string;
1993
+ } | {
1994
+ type: "incompatible_card_format";
1957
1995
  message: string;
1958
1996
  };
1959
1997
  status: "error";
1960
1998
  action_attempt_id: string;
1961
1999
  result: null;
1962
- action_type: "ENCODE_CARD";
2000
+ action_type: "ENCODE_CREDENTIAL";
1963
2001
  } | {
1964
2002
  error: null;
1965
2003
  status: "pending";
@@ -2314,12 +2352,16 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
2314
2352
  status: "pending";
2315
2353
  action_attempt_id: string;
2316
2354
  result: null;
2317
- action_type: "SCAN_CARD";
2355
+ action_type: "SCAN_CREDENTIAL";
2318
2356
  } | {
2319
2357
  error: null;
2320
2358
  status: "success";
2321
2359
  action_attempt_id: string;
2322
2360
  result: {
2361
+ warnings: {
2362
+ warning_code: "acs_credential_on_encoder_out_of_sync";
2363
+ warning_message: string;
2364
+ }[];
2323
2365
  acs_credential_on_encoder: {
2324
2366
  created_at: string | null;
2325
2367
  starts_at: string | null;
@@ -2423,22 +2465,28 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
2423
2465
  latest_desired_state_synced_with_provider_at?: string | undefined;
2424
2466
  } | null;
2425
2467
  };
2426
- action_type: "SCAN_CARD";
2468
+ action_type: "SCAN_CREDENTIAL";
2427
2469
  } | {
2428
2470
  error: {
2471
+ type: "uncategorized_error";
2472
+ message: string;
2473
+ } | {
2474
+ type: "action_attempt_expired";
2475
+ message: string;
2476
+ } | {
2429
2477
  type: "no_card_on_encoder";
2430
2478
  message: string;
2431
2479
  };
2432
2480
  status: "error";
2433
2481
  action_attempt_id: string;
2434
2482
  result: null;
2435
- action_type: "SCAN_CARD";
2483
+ action_type: "SCAN_CREDENTIAL";
2436
2484
  } | {
2437
2485
  error: null;
2438
2486
  status: "pending";
2439
2487
  action_attempt_id: string;
2440
2488
  result: null;
2441
- action_type: "ENCODE_CARD";
2489
+ action_type: "ENCODE_CREDENTIAL";
2442
2490
  } | {
2443
2491
  error: null;
2444
2492
  status: "success";
@@ -2524,16 +2572,25 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
2524
2572
  is_latest_desired_state_synced_with_provider?: boolean | undefined;
2525
2573
  latest_desired_state_synced_with_provider_at?: string | undefined;
2526
2574
  };
2527
- action_type: "ENCODE_CARD";
2575
+ action_type: "ENCODE_CREDENTIAL";
2528
2576
  } | {
2529
2577
  error: {
2530
- type: string;
2578
+ type: "uncategorized_error";
2579
+ message: string;
2580
+ } | {
2581
+ type: "action_attempt_expired";
2582
+ message: string;
2583
+ } | {
2584
+ type: "no_card_on_encoder";
2585
+ message: string;
2586
+ } | {
2587
+ type: "incompatible_card_format";
2531
2588
  message: string;
2532
2589
  };
2533
2590
  status: "error";
2534
2591
  action_attempt_id: string;
2535
2592
  result: null;
2536
- action_type: "ENCODE_CARD";
2593
+ action_type: "ENCODE_CREDENTIAL";
2537
2594
  } | {
2538
2595
  error: null;
2539
2596
  status: "pending";
@@ -2983,4 +3040,4 @@ declare const isPublishableKey: (token: string) => boolean;
2983
3040
  declare const isConsoleSessionToken: (token: string) => boolean;
2984
3041
  declare const isPersonalAccessToken: (token: string) => boolean;
2985
3042
 
2986
- 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 ThermostatsSetTemperatureThresholdBody, type ThermostatsSetTemperatureThresholdOptions, type ThermostatsSetTemperatureThresholdResponse, type ThermostatsUpdateClimatePresetBody, type ThermostatsUpdateClimatePresetOptions, type ThermostatsUpdateClimatePresetResponse, type UserIdentitiesAddAcsUserBody, type UserIdentitiesAddAcsUserOptions, type UserIdentitiesAddAcsUserResponse, type UserIdentitiesCreateBody, type UserIdentitiesCreateOptions, type UserIdentitiesCreateResponse, type UserIdentitiesDeleteOptions, type UserIdentitiesDeleteParams, type UserIdentitiesDeleteResponse, type UserIdentitiesEnrollmentAutomationsDeleteOptions, type UserIdentitiesEnrollmentAutomationsDeleteParams, type UserIdentitiesEnrollmentAutomationsDeleteResponse, type UserIdentitiesEnrollmentAutomationsGetOptions, type UserIdentitiesEnrollmentAutomationsGetParams, type UserIdentitiesEnrollmentAutomationsGetResponse, type UserIdentitiesEnrollmentAutomationsLaunchBody, type UserIdentitiesEnrollmentAutomationsLaunchOptions, type UserIdentitiesEnrollmentAutomationsLaunchResponse, type UserIdentitiesEnrollmentAutomationsListOptions, type UserIdentitiesEnrollmentAutomationsListParams, type UserIdentitiesEnrollmentAutomationsListResponse, type UserIdentitiesGetOptions, type UserIdentitiesGetParams, type UserIdentitiesGetResponse, type UserIdentitiesGrantAccessToDeviceBody, type UserIdentitiesGrantAccessToDeviceOptions, type UserIdentitiesGrantAccessToDeviceResponse, type UserIdentitiesListAccessibleDevicesOptions, type UserIdentitiesListAccessibleDevicesParams, type UserIdentitiesListAccessibleDevicesResponse, type UserIdentitiesListAcsSystemsOptions, type UserIdentitiesListAcsSystemsParams, type UserIdentitiesListAcsSystemsResponse, type UserIdentitiesListAcsUsersOptions, type UserIdentitiesListAcsUsersParams, type UserIdentitiesListAcsUsersResponse, type UserIdentitiesListOptions, type UserIdentitiesListParams, type UserIdentitiesListResponse, type UserIdentitiesRemoveAcsUserOptions, type UserIdentitiesRemoveAcsUserParams, type UserIdentitiesRemoveAcsUserResponse, type UserIdentitiesRevokeAccessToDeviceOptions, type UserIdentitiesRevokeAccessToDeviceParams, type UserIdentitiesRevokeAccessToDeviceResponse, type UserIdentitiesUpdateBody, type UserIdentitiesUpdateOptions, type UserIdentitiesUpdateResponse, type WebhooksCreateBody, type WebhooksCreateOptions, type WebhooksCreateResponse, type WebhooksDeleteOptions, type WebhooksDeleteParams, type WebhooksDeleteResponse, type WebhooksGetOptions, type WebhooksGetParams, type WebhooksGetResponse, type WebhooksListOptions, type WebhooksListParams, type WebhooksListResponse, type WebhooksUpdateBody, type WebhooksUpdateOptions, type WebhooksUpdateResponse, type WorkspacesCreateBody, type WorkspacesCreateOptions, type WorkspacesCreateResponse, type WorkspacesGetOptions, type WorkspacesGetParams, type WorkspacesGetResponse, type WorkspacesListOptions, type WorkspacesListParams, type WorkspacesListResponse, type WorkspacesResetSandboxBody, type WorkspacesResetSandboxOptions, type WorkspacesResetSandboxResponse, errorInterceptor, getOpenapiSchema, isApiKey, isClientSessionToken, isConsoleSessionToken, isPersonalAccessToken, isPublishableKey, isSeamActionAttemptError, isSeamActionAttemptFailedError, isSeamActionAttemptTimeoutError, isSeamHttpApiError, isSeamHttpInvalidInputError, isSeamHttpMultiWorkspaceOptionsWithClient, isSeamHttpMultiWorkspaceOptionsWithConsoleSessionToken, isSeamHttpMultiWorkspaceOptionsWithPersonalAccessToken, isSeamHttpOptionsWithApiKey, isSeamHttpOptionsWithClient, isSeamHttpOptionsWithClientSessionToken, isSeamHttpOptionsWithConsoleSessionToken, isSeamHttpOptionsWithPersonalAccessToken, isSeamHttpUnauthorizedError };
3043
+ 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 AcsEncodersEncodeCredentialBody, type AcsEncodersEncodeCredentialOptions, type AcsEncodersEncodeCredentialResponse, type AcsEncodersListOptions, type AcsEncodersListParams, type AcsEncodersListResponse, type AcsEncodersScanCredentialBody, type AcsEncodersScanCredentialOptions, type AcsEncodersScanCredentialResponse, type AcsEntrancesGetOptions, type AcsEntrancesGetParams, type AcsEntrancesGetResponse, type AcsEntrancesGrantAccessBody, type AcsEntrancesGrantAccessOptions, type AcsEntrancesGrantAccessResponse, type AcsEntrancesListCredentialsWithAccessOptions, type AcsEntrancesListCredentialsWithAccessParams, type AcsEntrancesListCredentialsWithAccessResponse, type AcsEntrancesListOptions, type AcsEntrancesListParams, type AcsEntrancesListResponse, type AcsSystemsGetOptions, type AcsSystemsGetParams, type AcsSystemsGetResponse, type AcsSystemsListCompatibleCredentialManagerAcsSystemsOptions, type AcsSystemsListCompatibleCredentialManagerAcsSystemsParams, type AcsSystemsListCompatibleCredentialManagerAcsSystemsResponse, type AcsSystemsListOptions, type AcsSystemsListParams, type AcsSystemsListResponse, type AcsUsersAddToAccessGroupBody, type AcsUsersAddToAccessGroupOptions, type AcsUsersAddToAccessGroupResponse, type AcsUsersCreateBody, type AcsUsersCreateOptions, type AcsUsersCreateResponse, type AcsUsersDeleteOptions, type AcsUsersDeleteParams, type AcsUsersDeleteResponse, type AcsUsersGetOptions, type AcsUsersGetParams, type AcsUsersGetResponse, type AcsUsersListAccessibleEntrancesOptions, type AcsUsersListAccessibleEntrancesParams, type AcsUsersListAccessibleEntrancesResponse, type AcsUsersListOptions, type AcsUsersListParams, type AcsUsersListResponse, type AcsUsersRemoveFromAccessGroupOptions, type AcsUsersRemoveFromAccessGroupParams, type AcsUsersRemoveFromAccessGroupResponse, type AcsUsersRevokeAccessToAllEntrancesOptions, type AcsUsersRevokeAccessToAllEntrancesParams, type AcsUsersRevokeAccessToAllEntrancesResponse, type AcsUsersSuspendBody, type AcsUsersSuspendOptions, type AcsUsersSuspendResponse, type AcsUsersUnmanagedGetOptions, type AcsUsersUnmanagedGetParams, type AcsUsersUnmanagedGetResponse, type AcsUsersUnmanagedListOptions, type AcsUsersUnmanagedListParams, type AcsUsersUnmanagedListResponse, type AcsUsersUnsuspendBody, type AcsUsersUnsuspendOptions, type AcsUsersUnsuspendResponse, type AcsUsersUpdateBody, type AcsUsersUpdateOptions, type AcsUsersUpdateResponse, type ActionAttemptsGetOptions, type ActionAttemptsGetParams, type ActionAttemptsGetResponse, type ActionAttemptsListOptions, type ActionAttemptsListParams, type ActionAttemptsListResponse, type ClientSessionsCreateBody, type ClientSessionsCreateOptions, type ClientSessionsCreateResponse, type ClientSessionsDeleteOptions, type ClientSessionsDeleteParams, type ClientSessionsDeleteResponse, type ClientSessionsGetOptions, type ClientSessionsGetOrCreateBody, type ClientSessionsGetOrCreateOptions, type ClientSessionsGetOrCreateResponse, type ClientSessionsGetParams, type ClientSessionsGetResponse, type ClientSessionsGrantAccessBody, type ClientSessionsGrantAccessOptions, type ClientSessionsGrantAccessResponse, type ClientSessionsListOptions, type ClientSessionsListParams, type ClientSessionsListResponse, type ClientSessionsRevokeOptions, type ClientSessionsRevokeParams, type ClientSessionsRevokeResponse, type ConnectWebviewsCreateBody, type ConnectWebviewsCreateOptions, type ConnectWebviewsCreateResponse, type ConnectWebviewsDeleteOptions, type ConnectWebviewsDeleteParams, type ConnectWebviewsDeleteResponse, type ConnectWebviewsGetOptions, type ConnectWebviewsGetParams, type ConnectWebviewsGetResponse, type ConnectWebviewsListOptions, type ConnectWebviewsListParams, type ConnectWebviewsListResponse, type ConnectedAccountsDeleteOptions, type ConnectedAccountsDeleteParams, type ConnectedAccountsDeleteResponse, type ConnectedAccountsGetOptions, type ConnectedAccountsGetParams, type ConnectedAccountsGetResponse, type ConnectedAccountsListOptions, type ConnectedAccountsListParams, type ConnectedAccountsListResponse, type ConnectedAccountsUpdateBody, type ConnectedAccountsUpdateOptions, type ConnectedAccountsUpdateResponse, type DevicesDeleteOptions, type DevicesDeleteParams, type DevicesDeleteResponse, type DevicesGetOptions, type DevicesGetParams, type DevicesGetResponse, type DevicesListDeviceProvidersOptions, type DevicesListDeviceProvidersParams, type DevicesListDeviceProvidersResponse, type DevicesListOptions, type DevicesListParams, type DevicesListResponse, type DevicesSimulateConnectBody, type DevicesSimulateConnectOptions, type DevicesSimulateConnectResponse, type DevicesSimulateDisconnectBody, type DevicesSimulateDisconnectOptions, type DevicesSimulateDisconnectResponse, type DevicesSimulateRemoveBody, type DevicesSimulateRemoveOptions, type DevicesSimulateRemoveResponse, type DevicesUnmanagedGetOptions, type DevicesUnmanagedGetParams, type DevicesUnmanagedGetResponse, type DevicesUnmanagedListOptions, type DevicesUnmanagedListParams, type DevicesUnmanagedListResponse, type DevicesUnmanagedUpdateBody, type DevicesUnmanagedUpdateOptions, type DevicesUnmanagedUpdateResponse, type DevicesUpdateBody, type DevicesUpdateOptions, type DevicesUpdateResponse, type EventsGetOptions, type EventsGetParams, type EventsGetResponse, type EventsListOptions, type EventsListParams, type EventsListResponse, type LocksGetOptions, type LocksGetParams, type LocksGetResponse, type LocksListOptions, type LocksListParams, type LocksListResponse, type LocksLockDoorBody, type LocksLockDoorOptions, type LocksLockDoorResponse, type LocksUnlockDoorBody, type LocksUnlockDoorOptions, type LocksUnlockDoorResponse, type NetworksGetOptions, type NetworksGetParams, type NetworksGetResponse, type NetworksListOptions, type NetworksListParams, type NetworksListResponse, type NoiseSensorsListOptions, type NoiseSensorsListParams, type NoiseSensorsListResponse, type NoiseSensorsNoiseThresholdsCreateBody, type NoiseSensorsNoiseThresholdsCreateOptions, type NoiseSensorsNoiseThresholdsCreateResponse, type NoiseSensorsNoiseThresholdsDeleteOptions, type NoiseSensorsNoiseThresholdsDeleteParams, type NoiseSensorsNoiseThresholdsDeleteResponse, type NoiseSensorsNoiseThresholdsGetOptions, type NoiseSensorsNoiseThresholdsGetParams, type NoiseSensorsNoiseThresholdsGetResponse, type NoiseSensorsNoiseThresholdsListOptions, type NoiseSensorsNoiseThresholdsListParams, type NoiseSensorsNoiseThresholdsListResponse, type NoiseSensorsNoiseThresholdsUpdateBody, type NoiseSensorsNoiseThresholdsUpdateOptions, type NoiseSensorsNoiseThresholdsUpdateResponse, type NoiseSensorsSimulateTriggerNoiseThresholdBody, type NoiseSensorsSimulateTriggerNoiseThresholdOptions, type NoiseSensorsSimulateTriggerNoiseThresholdResponse, type PhonesDeactivateOptions, type PhonesDeactivateParams, type PhonesDeactivateResponse, type PhonesListOptions, type PhonesListParams, type PhonesListResponse, type PhonesSimulateCreateSandboxPhoneBody, type PhonesSimulateCreateSandboxPhoneOptions, type PhonesSimulateCreateSandboxPhoneResponse, SeamActionAttemptError, SeamActionAttemptFailedError, SeamActionAttemptTimeoutError, SeamHttp, SeamHttpAccessCodes, SeamHttpAccessCodesSimulate, SeamHttpAccessCodesUnmanaged, SeamHttpAcs, SeamHttpAcsAccessGroups, SeamHttpAcsAccessGroupsUnmanaged, SeamHttpAcsCredentialPools, SeamHttpAcsCredentialProvisioningAutomations, SeamHttpAcsCredentials, SeamHttpAcsCredentialsUnmanaged, SeamHttpAcsEncoders, SeamHttpAcsEntrances, SeamHttpAcsSystems, SeamHttpAcsUsers, SeamHttpAcsUsersUnmanaged, SeamHttpActionAttempts, SeamHttpApiError, SeamHttpClientSessions, SeamHttpConnectWebviews, SeamHttpConnectedAccounts, SeamHttpDevices, SeamHttpDevicesSimulate, SeamHttpDevicesUnmanaged, SeamHttpEvents, type SeamHttpFromPublishableKeyOptions, SeamHttpInvalidInputError, SeamHttpInvalidOptionsError, SeamHttpInvalidTokenError, SeamHttpLocks, SeamHttpMultiWorkspace, SeamHttpMultiWorkspaceInvalidOptionsError, type SeamHttpMultiWorkspaceOptions, type SeamHttpMultiWorkspaceOptionsWithClient, type SeamHttpMultiWorkspaceOptionsWithConsoleSessionToken, type SeamHttpMultiWorkspaceOptionsWithPersonalAccessToken, SeamHttpNetworks, SeamHttpNoiseSensors, SeamHttpNoiseSensorsNoiseThresholds, SeamHttpNoiseSensorsSimulate, type SeamHttpOptions, type SeamHttpOptionsFromEnv, type SeamHttpOptionsWithApiKey, type SeamHttpOptionsWithClient, type SeamHttpOptionsWithClientSessionToken, type SeamHttpOptionsWithConsoleSessionToken, type SeamHttpOptionsWithPersonalAccessToken, SeamHttpPhones, SeamHttpPhonesSimulate, SeamHttpRequest, type SeamHttpRequestOptions, SeamHttpThermostats, SeamHttpThermostatsSchedules, SeamHttpUnauthorizedError, SeamHttpUserIdentities, SeamHttpUserIdentitiesEnrollmentAutomations, SeamHttpWebhooks, SeamHttpWorkspaces, type ThermostatsActivateClimatePresetBody, type ThermostatsActivateClimatePresetOptions, type ThermostatsActivateClimatePresetResponse, type ThermostatsCoolBody, type ThermostatsCoolOptions, type ThermostatsCoolResponse, type ThermostatsCreateClimatePresetBody, type ThermostatsCreateClimatePresetOptions, type ThermostatsCreateClimatePresetResponse, type ThermostatsDeleteClimatePresetBody, type ThermostatsDeleteClimatePresetOptions, type ThermostatsDeleteClimatePresetResponse, type ThermostatsGetOptions, type ThermostatsGetParams, type ThermostatsGetResponse, type ThermostatsHeatBody, type ThermostatsHeatCoolBody, type ThermostatsHeatCoolOptions, type ThermostatsHeatCoolResponse, type ThermostatsHeatOptions, type ThermostatsHeatResponse, type ThermostatsListOptions, type ThermostatsListParams, type ThermostatsListResponse, type ThermostatsOffBody, type ThermostatsOffOptions, type ThermostatsOffResponse, type ThermostatsSchedulesCreateBody, type ThermostatsSchedulesCreateOptions, type ThermostatsSchedulesCreateResponse, type ThermostatsSchedulesDeleteOptions, type ThermostatsSchedulesDeleteParams, type ThermostatsSchedulesDeleteResponse, type ThermostatsSchedulesGetOptions, type ThermostatsSchedulesGetParams, type ThermostatsSchedulesGetResponse, type ThermostatsSchedulesListOptions, type ThermostatsSchedulesListParams, type ThermostatsSchedulesListResponse, type ThermostatsSchedulesUpdateBody, type ThermostatsSchedulesUpdateOptions, type ThermostatsSchedulesUpdateResponse, type ThermostatsSetFallbackClimatePresetBody, type ThermostatsSetFallbackClimatePresetOptions, type ThermostatsSetFallbackClimatePresetResponse, type ThermostatsSetFanModeBody, type ThermostatsSetFanModeOptions, type ThermostatsSetFanModeResponse, type ThermostatsSetTemperatureThresholdBody, type ThermostatsSetTemperatureThresholdOptions, type ThermostatsSetTemperatureThresholdResponse, type ThermostatsUpdateClimatePresetBody, type ThermostatsUpdateClimatePresetOptions, type ThermostatsUpdateClimatePresetResponse, type UserIdentitiesAddAcsUserBody, type UserIdentitiesAddAcsUserOptions, type UserIdentitiesAddAcsUserResponse, type UserIdentitiesCreateBody, type UserIdentitiesCreateOptions, type UserIdentitiesCreateResponse, type UserIdentitiesDeleteOptions, type UserIdentitiesDeleteParams, type UserIdentitiesDeleteResponse, type UserIdentitiesEnrollmentAutomationsDeleteOptions, type UserIdentitiesEnrollmentAutomationsDeleteParams, type UserIdentitiesEnrollmentAutomationsDeleteResponse, type UserIdentitiesEnrollmentAutomationsGetOptions, type UserIdentitiesEnrollmentAutomationsGetParams, type UserIdentitiesEnrollmentAutomationsGetResponse, type UserIdentitiesEnrollmentAutomationsLaunchBody, type UserIdentitiesEnrollmentAutomationsLaunchOptions, type UserIdentitiesEnrollmentAutomationsLaunchResponse, type UserIdentitiesEnrollmentAutomationsListOptions, type UserIdentitiesEnrollmentAutomationsListParams, type UserIdentitiesEnrollmentAutomationsListResponse, type UserIdentitiesGetOptions, type UserIdentitiesGetParams, type UserIdentitiesGetResponse, type UserIdentitiesGrantAccessToDeviceBody, type UserIdentitiesGrantAccessToDeviceOptions, type UserIdentitiesGrantAccessToDeviceResponse, type UserIdentitiesListAccessibleDevicesOptions, type UserIdentitiesListAccessibleDevicesParams, type UserIdentitiesListAccessibleDevicesResponse, type UserIdentitiesListAcsSystemsOptions, type UserIdentitiesListAcsSystemsParams, type UserIdentitiesListAcsSystemsResponse, type UserIdentitiesListAcsUsersOptions, type UserIdentitiesListAcsUsersParams, type UserIdentitiesListAcsUsersResponse, type UserIdentitiesListOptions, type UserIdentitiesListParams, type UserIdentitiesListResponse, type UserIdentitiesRemoveAcsUserOptions, type UserIdentitiesRemoveAcsUserParams, type UserIdentitiesRemoveAcsUserResponse, type UserIdentitiesRevokeAccessToDeviceOptions, type UserIdentitiesRevokeAccessToDeviceParams, type UserIdentitiesRevokeAccessToDeviceResponse, type UserIdentitiesUpdateBody, type UserIdentitiesUpdateOptions, type UserIdentitiesUpdateResponse, type WebhooksCreateBody, type WebhooksCreateOptions, type WebhooksCreateResponse, type WebhooksDeleteOptions, type WebhooksDeleteParams, type WebhooksDeleteResponse, type WebhooksGetOptions, type WebhooksGetParams, type WebhooksGetResponse, type WebhooksListOptions, type WebhooksListParams, type WebhooksListResponse, type WebhooksUpdateBody, type WebhooksUpdateOptions, type WebhooksUpdateResponse, type WorkspacesCreateBody, type WorkspacesCreateOptions, type WorkspacesCreateResponse, type WorkspacesGetOptions, type WorkspacesGetParams, type WorkspacesGetResponse, type WorkspacesListOptions, type WorkspacesListParams, type WorkspacesListResponse, type WorkspacesResetSandboxBody, type WorkspacesResetSandboxOptions, type WorkspacesResetSandboxResponse, errorInterceptor, getOpenapiSchema, isApiKey, isClientSessionToken, isConsoleSessionToken, isPersonalAccessToken, isPublishableKey, isSeamActionAttemptError, isSeamActionAttemptFailedError, isSeamActionAttemptTimeoutError, isSeamHttpApiError, isSeamHttpInvalidInputError, isSeamHttpMultiWorkspaceOptionsWithClient, isSeamHttpMultiWorkspaceOptionsWithConsoleSessionToken, isSeamHttpMultiWorkspaceOptionsWithPersonalAccessToken, isSeamHttpOptionsWithApiKey, isSeamHttpOptionsWithClient, isSeamHttpOptionsWithClientSessionToken, isSeamHttpOptionsWithConsoleSessionToken, isSeamHttpOptionsWithPersonalAccessToken, isSeamHttpUnauthorizedError };
@@ -51,12 +51,16 @@ export declare const resolveActionAttempt: <T extends {
51
51
  status: "pending";
52
52
  action_attempt_id: string;
53
53
  result: null;
54
- action_type: "SCAN_CARD";
54
+ action_type: "SCAN_CREDENTIAL";
55
55
  } | {
56
56
  error: null;
57
57
  status: "success";
58
58
  action_attempt_id: string;
59
59
  result: {
60
+ warnings: {
61
+ warning_code: "acs_credential_on_encoder_out_of_sync";
62
+ warning_message: string;
63
+ }[];
60
64
  acs_credential_on_encoder: {
61
65
  created_at: string | null;
62
66
  starts_at: string | null;
@@ -160,22 +164,28 @@ export declare const resolveActionAttempt: <T extends {
160
164
  latest_desired_state_synced_with_provider_at?: string | undefined;
161
165
  } | null;
162
166
  };
163
- action_type: "SCAN_CARD";
167
+ action_type: "SCAN_CREDENTIAL";
164
168
  } | {
165
169
  error: {
170
+ type: "uncategorized_error";
171
+ message: string;
172
+ } | {
173
+ type: "action_attempt_expired";
174
+ message: string;
175
+ } | {
166
176
  type: "no_card_on_encoder";
167
177
  message: string;
168
178
  };
169
179
  status: "error";
170
180
  action_attempt_id: string;
171
181
  result: null;
172
- action_type: "SCAN_CARD";
182
+ action_type: "SCAN_CREDENTIAL";
173
183
  } | {
174
184
  error: null;
175
185
  status: "pending";
176
186
  action_attempt_id: string;
177
187
  result: null;
178
- action_type: "ENCODE_CARD";
188
+ action_type: "ENCODE_CREDENTIAL";
179
189
  } | {
180
190
  error: null;
181
191
  status: "success";
@@ -261,16 +271,25 @@ export declare const resolveActionAttempt: <T extends {
261
271
  is_latest_desired_state_synced_with_provider?: boolean | undefined;
262
272
  latest_desired_state_synced_with_provider_at?: string | undefined;
263
273
  };
264
- action_type: "ENCODE_CARD";
274
+ action_type: "ENCODE_CREDENTIAL";
265
275
  } | {
266
276
  error: {
267
- type: string;
277
+ type: "uncategorized_error";
278
+ message: string;
279
+ } | {
280
+ type: "action_attempt_expired";
281
+ message: string;
282
+ } | {
283
+ type: "no_card_on_encoder";
284
+ message: string;
285
+ } | {
286
+ type: "incompatible_card_format";
268
287
  message: string;
269
288
  };
270
289
  status: "error";
271
290
  action_attempt_id: string;
272
291
  result: null;
273
- action_type: "ENCODE_CARD";
292
+ action_type: "ENCODE_CREDENTIAL";
274
293
  } | {
275
294
  error: null;
276
295
  status: "pending";
@@ -623,12 +642,16 @@ export declare const isSeamActionAttemptError: <T extends {
623
642
  status: "pending";
624
643
  action_attempt_id: string;
625
644
  result: null;
626
- action_type: "SCAN_CARD";
645
+ action_type: "SCAN_CREDENTIAL";
627
646
  } | {
628
647
  error: null;
629
648
  status: "success";
630
649
  action_attempt_id: string;
631
650
  result: {
651
+ warnings: {
652
+ warning_code: "acs_credential_on_encoder_out_of_sync";
653
+ warning_message: string;
654
+ }[];
632
655
  acs_credential_on_encoder: {
633
656
  created_at: string | null;
634
657
  starts_at: string | null;
@@ -732,22 +755,28 @@ export declare const isSeamActionAttemptError: <T extends {
732
755
  latest_desired_state_synced_with_provider_at?: string | undefined;
733
756
  } | null;
734
757
  };
735
- action_type: "SCAN_CARD";
758
+ action_type: "SCAN_CREDENTIAL";
736
759
  } | {
737
760
  error: {
761
+ type: "uncategorized_error";
762
+ message: string;
763
+ } | {
764
+ type: "action_attempt_expired";
765
+ message: string;
766
+ } | {
738
767
  type: "no_card_on_encoder";
739
768
  message: string;
740
769
  };
741
770
  status: "error";
742
771
  action_attempt_id: string;
743
772
  result: null;
744
- action_type: "SCAN_CARD";
773
+ action_type: "SCAN_CREDENTIAL";
745
774
  } | {
746
775
  error: null;
747
776
  status: "pending";
748
777
  action_attempt_id: string;
749
778
  result: null;
750
- action_type: "ENCODE_CARD";
779
+ action_type: "ENCODE_CREDENTIAL";
751
780
  } | {
752
781
  error: null;
753
782
  status: "success";
@@ -833,16 +862,25 @@ export declare const isSeamActionAttemptError: <T extends {
833
862
  is_latest_desired_state_synced_with_provider?: boolean | undefined;
834
863
  latest_desired_state_synced_with_provider_at?: string | undefined;
835
864
  };
836
- action_type: "ENCODE_CARD";
865
+ action_type: "ENCODE_CREDENTIAL";
837
866
  } | {
838
867
  error: {
839
- type: string;
868
+ type: "uncategorized_error";
869
+ message: string;
870
+ } | {
871
+ type: "action_attempt_expired";
872
+ message: string;
873
+ } | {
874
+ type: "no_card_on_encoder";
875
+ message: string;
876
+ } | {
877
+ type: "incompatible_card_format";
840
878
  message: string;
841
879
  };
842
880
  status: "error";
843
881
  action_attempt_id: string;
844
882
  result: null;
845
- action_type: "ENCODE_CARD";
883
+ action_type: "ENCODE_CREDENTIAL";
846
884
  } | {
847
885
  error: null;
848
886
  status: "pending";
@@ -1197,12 +1235,16 @@ export declare const isSeamActionAttemptFailedError: <T extends {
1197
1235
  status: "pending";
1198
1236
  action_attempt_id: string;
1199
1237
  result: null;
1200
- action_type: "SCAN_CARD";
1238
+ action_type: "SCAN_CREDENTIAL";
1201
1239
  } | {
1202
1240
  error: null;
1203
1241
  status: "success";
1204
1242
  action_attempt_id: string;
1205
1243
  result: {
1244
+ warnings: {
1245
+ warning_code: "acs_credential_on_encoder_out_of_sync";
1246
+ warning_message: string;
1247
+ }[];
1206
1248
  acs_credential_on_encoder: {
1207
1249
  created_at: string | null;
1208
1250
  starts_at: string | null;
@@ -1306,22 +1348,28 @@ export declare const isSeamActionAttemptFailedError: <T extends {
1306
1348
  latest_desired_state_synced_with_provider_at?: string | undefined;
1307
1349
  } | null;
1308
1350
  };
1309
- action_type: "SCAN_CARD";
1351
+ action_type: "SCAN_CREDENTIAL";
1310
1352
  } | {
1311
1353
  error: {
1354
+ type: "uncategorized_error";
1355
+ message: string;
1356
+ } | {
1357
+ type: "action_attempt_expired";
1358
+ message: string;
1359
+ } | {
1312
1360
  type: "no_card_on_encoder";
1313
1361
  message: string;
1314
1362
  };
1315
1363
  status: "error";
1316
1364
  action_attempt_id: string;
1317
1365
  result: null;
1318
- action_type: "SCAN_CARD";
1366
+ action_type: "SCAN_CREDENTIAL";
1319
1367
  } | {
1320
1368
  error: null;
1321
1369
  status: "pending";
1322
1370
  action_attempt_id: string;
1323
1371
  result: null;
1324
- action_type: "ENCODE_CARD";
1372
+ action_type: "ENCODE_CREDENTIAL";
1325
1373
  } | {
1326
1374
  error: null;
1327
1375
  status: "success";
@@ -1407,16 +1455,25 @@ export declare const isSeamActionAttemptFailedError: <T extends {
1407
1455
  is_latest_desired_state_synced_with_provider?: boolean | undefined;
1408
1456
  latest_desired_state_synced_with_provider_at?: string | undefined;
1409
1457
  };
1410
- action_type: "ENCODE_CARD";
1458
+ action_type: "ENCODE_CREDENTIAL";
1411
1459
  } | {
1412
1460
  error: {
1413
- type: string;
1461
+ type: "uncategorized_error";
1462
+ message: string;
1463
+ } | {
1464
+ type: "action_attempt_expired";
1465
+ message: string;
1466
+ } | {
1467
+ type: "no_card_on_encoder";
1468
+ message: string;
1469
+ } | {
1470
+ type: "incompatible_card_format";
1414
1471
  message: string;
1415
1472
  };
1416
1473
  status: "error";
1417
1474
  action_attempt_id: string;
1418
1475
  result: null;
1419
- action_type: "ENCODE_CARD";
1476
+ action_type: "ENCODE_CREDENTIAL";
1420
1477
  } | {
1421
1478
  error: null;
1422
1479
  status: "pending";
@@ -1771,12 +1828,16 @@ export declare const isSeamActionAttemptTimeoutError: <T extends {
1771
1828
  status: "pending";
1772
1829
  action_attempt_id: string;
1773
1830
  result: null;
1774
- action_type: "SCAN_CARD";
1831
+ action_type: "SCAN_CREDENTIAL";
1775
1832
  } | {
1776
1833
  error: null;
1777
1834
  status: "success";
1778
1835
  action_attempt_id: string;
1779
1836
  result: {
1837
+ warnings: {
1838
+ warning_code: "acs_credential_on_encoder_out_of_sync";
1839
+ warning_message: string;
1840
+ }[];
1780
1841
  acs_credential_on_encoder: {
1781
1842
  created_at: string | null;
1782
1843
  starts_at: string | null;
@@ -1880,22 +1941,28 @@ export declare const isSeamActionAttemptTimeoutError: <T extends {
1880
1941
  latest_desired_state_synced_with_provider_at?: string | undefined;
1881
1942
  } | null;
1882
1943
  };
1883
- action_type: "SCAN_CARD";
1944
+ action_type: "SCAN_CREDENTIAL";
1884
1945
  } | {
1885
1946
  error: {
1947
+ type: "uncategorized_error";
1948
+ message: string;
1949
+ } | {
1950
+ type: "action_attempt_expired";
1951
+ message: string;
1952
+ } | {
1886
1953
  type: "no_card_on_encoder";
1887
1954
  message: string;
1888
1955
  };
1889
1956
  status: "error";
1890
1957
  action_attempt_id: string;
1891
1958
  result: null;
1892
- action_type: "SCAN_CARD";
1959
+ action_type: "SCAN_CREDENTIAL";
1893
1960
  } | {
1894
1961
  error: null;
1895
1962
  status: "pending";
1896
1963
  action_attempt_id: string;
1897
1964
  result: null;
1898
- action_type: "ENCODE_CARD";
1965
+ action_type: "ENCODE_CREDENTIAL";
1899
1966
  } | {
1900
1967
  error: null;
1901
1968
  status: "success";
@@ -1981,16 +2048,25 @@ export declare const isSeamActionAttemptTimeoutError: <T extends {
1981
2048
  is_latest_desired_state_synced_with_provider?: boolean | undefined;
1982
2049
  latest_desired_state_synced_with_provider_at?: string | undefined;
1983
2050
  };
1984
- action_type: "ENCODE_CARD";
2051
+ action_type: "ENCODE_CREDENTIAL";
1985
2052
  } | {
1986
2053
  error: {
1987
- type: string;
2054
+ type: "uncategorized_error";
2055
+ message: string;
2056
+ } | {
2057
+ type: "action_attempt_expired";
2058
+ message: string;
2059
+ } | {
2060
+ type: "no_card_on_encoder";
2061
+ message: string;
2062
+ } | {
2063
+ type: "incompatible_card_format";
1988
2064
  message: string;
1989
2065
  };
1990
2066
  status: "error";
1991
2067
  action_attempt_id: string;
1992
2068
  result: null;
1993
- action_type: "ENCODE_CARD";
2069
+ action_type: "ENCODE_CREDENTIAL";
1994
2070
  } | {
1995
2071
  error: null;
1996
2072
  status: "pending";