@seamapi/http 1.52.0 → 1.54.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/connect.cjs +106 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +307 -293
- package/dist/index.cjs +106 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/lib/seam/connect/resolve-action-attempt.d.ts +388 -388
- package/lib/seam/connect/routes/instant-keys/instant-keys.d.ts +13 -0
- package/lib/seam/connect/routes/instant-keys/instant-keys.js +9 -0
- package/lib/seam/connect/routes/instant-keys/instant-keys.js.map +1 -1
- package/lib/seam/connect/routes/seam-http-endpoints.d.ts +3 -2
- package/lib/seam/connect/routes/seam-http-endpoints.js +31 -0
- package/lib/seam/connect/routes/seam-http-endpoints.js.map +1 -1
- package/lib/seam/connect/routes/thermostats/daily-programs/daily-programs.js +12 -0
- package/lib/seam/connect/routes/thermostats/daily-programs/daily-programs.js.map +1 -1
- package/lib/seam/connect/routes/thermostats/thermostats.js +3 -0
- package/lib/seam/connect/routes/thermostats/thermostats.js.map +1 -1
- package/lib/seam/connect/routes/user-identities/enrollment-automations/enrollment-automations.js +15 -0
- package/lib/seam/connect/routes/user-identities/enrollment-automations/enrollment-automations.js.map +1 -1
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/package.json +3 -3
- package/src/lib/seam/connect/routes/instant-keys/instant-keys.ts +33 -0
- package/src/lib/seam/connect/routes/seam-http-endpoints.ts +57 -0
- package/src/lib/seam/connect/routes/thermostats/daily-programs/daily-programs.ts +20 -0
- package/src/lib/seam/connect/routes/thermostats/thermostats.ts +5 -0
- package/src/lib/seam/connect/routes/user-identities/enrollment-automations/enrollment-automations.ts +25 -0
- package/src/lib/version.ts +1 -1
package/dist/connect.d.cts
CHANGED
|
@@ -2013,9 +2013,22 @@ declare class SeamHttpInstantKeys {
|
|
|
2013
2013
|
static fromPersonalAccessToken(personalAccessToken: SeamHttpOptionsWithPersonalAccessToken['personalAccessToken'], workspaceId: SeamHttpOptionsWithPersonalAccessToken['workspaceId'], options?: Omit<SeamHttpOptionsWithPersonalAccessToken, 'personalAccessToken' | 'workspaceId'>): SeamHttpInstantKeys;
|
|
2014
2014
|
createPaginator<const TResponse, const TResponseKey extends keyof TResponse>(request: SeamHttpRequest<TResponse, TResponseKey>): SeamPaginator<TResponse, TResponseKey>;
|
|
2015
2015
|
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
2016
|
+
delete(parameters?: InstantKeysDeleteParameters, options?: InstantKeysDeleteOptions): InstantKeysDeleteRequest;
|
|
2016
2017
|
get(parameters?: InstantKeysGetParameters, options?: InstantKeysGetOptions): InstantKeysGetRequest;
|
|
2017
2018
|
list(parameters?: InstantKeysListParameters, options?: InstantKeysListOptions): InstantKeysListRequest;
|
|
2018
2019
|
}
|
|
2020
|
+
type InstantKeysDeleteParameters = RouteRequestBody<'/instant_keys/delete'>;
|
|
2021
|
+
/**
|
|
2022
|
+
* @deprecated Use InstantKeysDeleteParameters instead.
|
|
2023
|
+
*/
|
|
2024
|
+
type InstantKeysDeleteParams = InstantKeysDeleteParameters;
|
|
2025
|
+
/**
|
|
2026
|
+
* @deprecated Use InstantKeysDeleteRequest instead.
|
|
2027
|
+
*/
|
|
2028
|
+
type InstantKeysDeleteResponse = SetNonNullable<Required<RouteResponse<'/instant_keys/delete'>>>;
|
|
2029
|
+
type InstantKeysDeleteRequest = SeamHttpRequest<void, undefined>;
|
|
2030
|
+
interface InstantKeysDeleteOptions {
|
|
2031
|
+
}
|
|
2019
2032
|
type InstantKeysGetParameters = RouteRequestBody<'/instant_keys/get'>;
|
|
2020
2033
|
/**
|
|
2021
2034
|
* @deprecated Use InstantKeysGetParameters instead.
|
|
@@ -4094,6 +4107,7 @@ declare class SeamHttpEndpoints {
|
|
|
4094
4107
|
get ['/devices/unmanaged/update'](): (parameters?: DevicesUnmanagedUpdateParameters, options?: DevicesUnmanagedUpdateOptions) => DevicesUnmanagedUpdateRequest;
|
|
4095
4108
|
get ['/events/get'](): (parameters?: EventsGetParameters, options?: EventsGetOptions) => EventsGetRequest;
|
|
4096
4109
|
get ['/events/list'](): (parameters?: EventsListParameters, options?: EventsListOptions) => EventsListRequest;
|
|
4110
|
+
get ['/instant_keys/delete'](): (parameters?: InstantKeysDeleteParameters, options?: InstantKeysDeleteOptions) => InstantKeysDeleteRequest;
|
|
4097
4111
|
get ['/instant_keys/get'](): (parameters?: InstantKeysGetParameters, options?: InstantKeysGetOptions) => InstantKeysGetRequest;
|
|
4098
4112
|
get ['/instant_keys/list'](): (parameters?: InstantKeysListParameters, options?: InstantKeysListOptions) => InstantKeysListRequest;
|
|
4099
4113
|
get ['/locks/get'](): (parameters?: LocksGetParameters, options?: LocksGetOptions) => LocksGetRequest;
|
|
@@ -4207,7 +4221,7 @@ declare class SeamHttpEndpoints {
|
|
|
4207
4221
|
}
|
|
4208
4222
|
type SeamHttpEndpointQueryPaths = '/access_codes/generate_code' | '/access_codes/get' | '/access_codes/list' | '/access_codes/unmanaged/get' | '/access_codes/unmanaged/list' | '/access_grants/get' | '/access_grants/get_related' | '/access_grants/list' | '/access_methods/get' | '/access_methods/get_related' | '/access_methods/list' | '/acs/access_groups/get' | '/acs/access_groups/list' | '/acs/access_groups/list_accessible_entrances' | '/acs/access_groups/list_users' | '/acs/access_groups/unmanaged/get' | '/acs/access_groups/unmanaged/list' | '/acs/credential_pools/list' | '/acs/credentials/get' | '/acs/credentials/list' | '/acs/credentials/list_accessible_entrances' | '/acs/credentials/unmanaged/get' | '/acs/credentials/unmanaged/list' | '/acs/encoders/get' | '/acs/encoders/list' | '/acs/entrances/get' | '/acs/entrances/list' | '/acs/entrances/list_credentials_with_access' | '/acs/systems/get' | '/acs/systems/list' | '/acs/systems/list_compatible_credential_manager_acs_systems' | '/acs/users/get' | '/acs/users/list' | '/acs/users/list_accessible_entrances' | '/acs/users/unmanaged/get' | '/acs/users/unmanaged/list' | '/action_attempts/get' | '/action_attempts/list' | '/bridges/get' | '/bridges/list' | '/client_sessions/get' | '/client_sessions/list' | '/connect_webviews/get' | '/connect_webviews/list' | '/connected_accounts/get' | '/connected_accounts/list' | '/devices/get' | '/devices/list' | '/devices/list_device_providers' | '/devices/unmanaged/get' | '/devices/unmanaged/list' | '/events/get' | '/events/list' | '/instant_keys/get' | '/instant_keys/list' | '/locks/get' | '/locks/list' | '/noise_sensors/list' | '/noise_sensors/noise_thresholds/get' | '/noise_sensors/noise_thresholds/list' | '/phones/get' | '/phones/list' | '/seam/console/v1/get_resource_locator' | '/seam/customer/v1/automation_runs/list' | '/seam/customer/v1/automations/get' | '/seam/customer/v1/portals/get' | '/seam/partner/v1/building_blocks/spaces/auto_map' | '/spaces/get' | '/spaces/get_related' | '/spaces/list' | '/thermostats/get' | '/thermostats/list' | '/thermostats/schedules/get' | '/thermostats/schedules/list' | '/unstable_access_grants/get' | '/unstable_access_grants/list' | '/unstable_access_methods/get' | '/unstable_access_methods/list' | '/unstable_locations/get' | '/unstable_locations/list' | '/unstable_partner/building_blocks/generate_magic_link' | '/user_identities/get' | '/user_identities/list' | '/user_identities/list_accessible_devices' | '/user_identities/list_acs_systems' | '/user_identities/list_acs_users' | '/user_identities/enrollment_automations/get' | '/user_identities/enrollment_automations/list' | '/webhooks/get' | '/webhooks/list' | '/workspaces/find_resources' | '/workspaces/get' | '/workspaces/list';
|
|
4209
4223
|
type SeamHttpEndpointPaginatedQueryPaths = '/access_codes/list' | '/access_codes/unmanaged/list' | '/acs/users/list' | '/connect_webviews/list' | '/connected_accounts/list' | '/devices/list' | '/seam/customer/v1/automation_runs/list';
|
|
4210
|
-
type SeamHttpEndpointMutationPaths = '/access_codes/create' | '/access_codes/create_multiple' | '/access_codes/delete' | '/access_codes/pull_backup_access_code' | '/access_codes/report_device_constraints' | '/access_codes/update' | '/access_codes/update_multiple' | '/access_codes/simulate/create_unmanaged_access_code' | '/access_codes/unmanaged/convert_to_managed' | '/access_codes/unmanaged/delete' | '/access_codes/unmanaged/update' | '/access_grants/create' | '/access_grants/delete' | '/access_grants/update' | '/access_methods/delete' | '/access_methods/encode' | '/acs/access_groups/add_user' | '/acs/access_groups/remove_user' | '/acs/credential_provisioning_automations/launch' | '/acs/credentials/assign' | '/acs/credentials/create' | '/acs/credentials/create_offline_code' | '/acs/credentials/delete' | '/acs/credentials/unassign' | '/acs/credentials/update' | '/acs/encoders/encode_credential' | '/acs/encoders/scan_credential' | '/acs/encoders/simulate/next_credential_encode_will_fail' | '/acs/encoders/simulate/next_credential_encode_will_succeed' | '/acs/encoders/simulate/next_credential_scan_will_fail' | '/acs/encoders/simulate/next_credential_scan_will_succeed' | '/acs/entrances/grant_access' | '/acs/users/add_to_access_group' | '/acs/users/create' | '/acs/users/delete' | '/acs/users/remove_from_access_group' | '/acs/users/revoke_access_to_all_entrances' | '/acs/users/suspend' | '/acs/users/unsuspend' | '/acs/users/update' | '/client_sessions/create' | '/client_sessions/delete' | '/client_sessions/get_or_create' | '/client_sessions/grant_access' | '/client_sessions/revoke' | '/connect_webviews/create' | '/connect_webviews/delete' | '/connected_accounts/delete' | '/connected_accounts/sync' | '/connected_accounts/update' | '/customers/create_portal' | '/customers/push_data' | '/devices/delete' | '/devices/update' | '/devices/simulate/connect' | '/devices/simulate/connect_to_hub' | '/devices/simulate/disconnect' | '/devices/simulate/disconnect_from_hub' | '/devices/simulate/remove' | '/devices/unmanaged/update' | '/locks/lock_door' | '/locks/unlock_door' | '/locks/simulate/keypad_code_entry' | '/locks/simulate/manual_lock_via_keypad' | '/noise_sensors/noise_thresholds/create' | '/noise_sensors/noise_thresholds/delete' | '/noise_sensors/noise_thresholds/update' | '/noise_sensors/simulate/trigger_noise_threshold' | '/phones/deactivate' | '/phones/simulate/create_sandbox_phone' | '/seam/customer/v1/automations/delete' | '/seam/customer/v1/automations/update' | '/seam/customer/v1/settings/update' | '/spaces/add_acs_entrances' | '/spaces/add_devices' | '/spaces/create' | '/spaces/delete' | '/spaces/remove_acs_entrances' | '/spaces/remove_devices' | '/spaces/update' | '/thermostats/activate_climate_preset' | '/thermostats/cool' | '/thermostats/create_climate_preset' | '/thermostats/delete_climate_preset' | '/thermostats/heat' | '/thermostats/heat_cool' | '/thermostats/off' | '/thermostats/set_fallback_climate_preset' | '/thermostats/set_fan_mode' | '/thermostats/set_hvac_mode' | '/thermostats/set_temperature_threshold' | '/thermostats/update_climate_preset' | '/thermostats/update_weekly_program' | '/thermostats/daily_programs/create' | '/thermostats/daily_programs/delete' | '/thermostats/daily_programs/update' | '/thermostats/schedules/create' | '/thermostats/schedules/delete' | '/thermostats/schedules/update' | '/thermostats/simulate/hvac_mode_adjusted' | '/thermostats/simulate/temperature_reached' | '/unstable_access_grants/create' | '/unstable_access_grants/delete' | '/unstable_access_methods/delete' | '/unstable_locations/add_acs_entrances' | '/unstable_locations/add_devices' | '/unstable_locations/create' | '/unstable_locations/delete' | '/unstable_locations/remove_acs_entrances' | '/unstable_locations/remove_devices' | '/unstable_locations/update' | '/unstable_partner/building_blocks/connect_accounts' | '/unstable_partner/building_blocks/manage_devices' | '/unstable_partner/building_blocks/organize_spaces' | '/user_identities/add_acs_user' | '/user_identities/create' | '/user_identities/delete' | '/user_identities/generate_instant_key' | '/user_identities/grant_access_to_device' | '/user_identities/remove_acs_user' | '/user_identities/revoke_access_to_device' | '/user_identities/update' | '/user_identities/enrollment_automations/delete' | '/user_identities/enrollment_automations/launch' | '/webhooks/create' | '/webhooks/delete' | '/webhooks/update' | '/workspaces/create' | '/workspaces/reset_sandbox' | '/workspaces/update';
|
|
4224
|
+
type SeamHttpEndpointMutationPaths = '/access_codes/create' | '/access_codes/create_multiple' | '/access_codes/delete' | '/access_codes/pull_backup_access_code' | '/access_codes/report_device_constraints' | '/access_codes/update' | '/access_codes/update_multiple' | '/access_codes/simulate/create_unmanaged_access_code' | '/access_codes/unmanaged/convert_to_managed' | '/access_codes/unmanaged/delete' | '/access_codes/unmanaged/update' | '/access_grants/create' | '/access_grants/delete' | '/access_grants/update' | '/access_methods/delete' | '/access_methods/encode' | '/acs/access_groups/add_user' | '/acs/access_groups/remove_user' | '/acs/credential_provisioning_automations/launch' | '/acs/credentials/assign' | '/acs/credentials/create' | '/acs/credentials/create_offline_code' | '/acs/credentials/delete' | '/acs/credentials/unassign' | '/acs/credentials/update' | '/acs/encoders/encode_credential' | '/acs/encoders/scan_credential' | '/acs/encoders/simulate/next_credential_encode_will_fail' | '/acs/encoders/simulate/next_credential_encode_will_succeed' | '/acs/encoders/simulate/next_credential_scan_will_fail' | '/acs/encoders/simulate/next_credential_scan_will_succeed' | '/acs/entrances/grant_access' | '/acs/users/add_to_access_group' | '/acs/users/create' | '/acs/users/delete' | '/acs/users/remove_from_access_group' | '/acs/users/revoke_access_to_all_entrances' | '/acs/users/suspend' | '/acs/users/unsuspend' | '/acs/users/update' | '/client_sessions/create' | '/client_sessions/delete' | '/client_sessions/get_or_create' | '/client_sessions/grant_access' | '/client_sessions/revoke' | '/connect_webviews/create' | '/connect_webviews/delete' | '/connected_accounts/delete' | '/connected_accounts/sync' | '/connected_accounts/update' | '/customers/create_portal' | '/customers/push_data' | '/devices/delete' | '/devices/update' | '/devices/simulate/connect' | '/devices/simulate/connect_to_hub' | '/devices/simulate/disconnect' | '/devices/simulate/disconnect_from_hub' | '/devices/simulate/remove' | '/devices/unmanaged/update' | '/instant_keys/delete' | '/locks/lock_door' | '/locks/unlock_door' | '/locks/simulate/keypad_code_entry' | '/locks/simulate/manual_lock_via_keypad' | '/noise_sensors/noise_thresholds/create' | '/noise_sensors/noise_thresholds/delete' | '/noise_sensors/noise_thresholds/update' | '/noise_sensors/simulate/trigger_noise_threshold' | '/phones/deactivate' | '/phones/simulate/create_sandbox_phone' | '/seam/customer/v1/automations/delete' | '/seam/customer/v1/automations/update' | '/seam/customer/v1/settings/update' | '/spaces/add_acs_entrances' | '/spaces/add_devices' | '/spaces/create' | '/spaces/delete' | '/spaces/remove_acs_entrances' | '/spaces/remove_devices' | '/spaces/update' | '/thermostats/activate_climate_preset' | '/thermostats/cool' | '/thermostats/create_climate_preset' | '/thermostats/delete_climate_preset' | '/thermostats/heat' | '/thermostats/heat_cool' | '/thermostats/off' | '/thermostats/set_fallback_climate_preset' | '/thermostats/set_fan_mode' | '/thermostats/set_hvac_mode' | '/thermostats/set_temperature_threshold' | '/thermostats/update_climate_preset' | '/thermostats/update_weekly_program' | '/thermostats/daily_programs/create' | '/thermostats/daily_programs/delete' | '/thermostats/daily_programs/update' | '/thermostats/schedules/create' | '/thermostats/schedules/delete' | '/thermostats/schedules/update' | '/thermostats/simulate/hvac_mode_adjusted' | '/thermostats/simulate/temperature_reached' | '/unstable_access_grants/create' | '/unstable_access_grants/delete' | '/unstable_access_methods/delete' | '/unstable_locations/add_acs_entrances' | '/unstable_locations/add_devices' | '/unstable_locations/create' | '/unstable_locations/delete' | '/unstable_locations/remove_acs_entrances' | '/unstable_locations/remove_devices' | '/unstable_locations/update' | '/unstable_partner/building_blocks/connect_accounts' | '/unstable_partner/building_blocks/manage_devices' | '/unstable_partner/building_blocks/organize_spaces' | '/user_identities/add_acs_user' | '/user_identities/create' | '/user_identities/delete' | '/user_identities/generate_instant_key' | '/user_identities/grant_access_to_device' | '/user_identities/remove_acs_user' | '/user_identities/revoke_access_to_device' | '/user_identities/update' | '/user_identities/enrollment_automations/delete' | '/user_identities/enrollment_automations/launch' | '/webhooks/create' | '/webhooks/delete' | '/webhooks/update' | '/workspaces/create' | '/workspaces/reset_sandbox' | '/workspaces/update';
|
|
4211
4225
|
|
|
4212
4226
|
declare class SeamHttpEndpointsWithoutWorkspace {
|
|
4213
4227
|
client: Client;
|
|
@@ -4245,57 +4259,57 @@ interface ResolveActionAttemptOptions {
|
|
|
4245
4259
|
pollingInterval?: number;
|
|
4246
4260
|
}
|
|
4247
4261
|
declare const isSeamActionAttemptError: <T extends {
|
|
4248
|
-
error: null;
|
|
4249
4262
|
status: "pending";
|
|
4250
4263
|
action_attempt_id: string;
|
|
4264
|
+
error: null;
|
|
4251
4265
|
result: null;
|
|
4252
4266
|
action_type: "LOCK_DOOR";
|
|
4253
4267
|
} | {
|
|
4254
|
-
error: null;
|
|
4255
4268
|
status: "success";
|
|
4256
4269
|
action_attempt_id: string;
|
|
4270
|
+
error: null;
|
|
4257
4271
|
result: {};
|
|
4258
4272
|
action_type: "LOCK_DOOR";
|
|
4259
4273
|
} | {
|
|
4274
|
+
status: "error";
|
|
4275
|
+
action_attempt_id: string;
|
|
4260
4276
|
error: {
|
|
4261
|
-
type: string;
|
|
4262
4277
|
message: string;
|
|
4278
|
+
type: string;
|
|
4263
4279
|
};
|
|
4264
|
-
status: "error";
|
|
4265
|
-
action_attempt_id: string;
|
|
4266
4280
|
result: null;
|
|
4267
4281
|
action_type: "LOCK_DOOR";
|
|
4268
4282
|
} | {
|
|
4269
|
-
error: null;
|
|
4270
4283
|
status: "pending";
|
|
4271
4284
|
action_attempt_id: string;
|
|
4285
|
+
error: null;
|
|
4272
4286
|
result: null;
|
|
4273
4287
|
action_type: "UNLOCK_DOOR";
|
|
4274
4288
|
} | {
|
|
4275
|
-
error: null;
|
|
4276
4289
|
status: "success";
|
|
4277
4290
|
action_attempt_id: string;
|
|
4291
|
+
error: null;
|
|
4278
4292
|
result: {};
|
|
4279
4293
|
action_type: "UNLOCK_DOOR";
|
|
4280
4294
|
} | {
|
|
4295
|
+
status: "error";
|
|
4296
|
+
action_attempt_id: string;
|
|
4281
4297
|
error: {
|
|
4282
|
-
type: string;
|
|
4283
4298
|
message: string;
|
|
4299
|
+
type: string;
|
|
4284
4300
|
};
|
|
4285
|
-
status: "error";
|
|
4286
|
-
action_attempt_id: string;
|
|
4287
4301
|
result: null;
|
|
4288
4302
|
action_type: "UNLOCK_DOOR";
|
|
4289
4303
|
} | {
|
|
4290
|
-
error: null;
|
|
4291
4304
|
status: "pending";
|
|
4292
4305
|
action_attempt_id: string;
|
|
4306
|
+
error: null;
|
|
4293
4307
|
result: null;
|
|
4294
4308
|
action_type: "SCAN_CREDENTIAL";
|
|
4295
4309
|
} | {
|
|
4296
|
-
error: null;
|
|
4297
4310
|
status: "success";
|
|
4298
4311
|
action_attempt_id: string;
|
|
4312
|
+
error: null;
|
|
4299
4313
|
result: {
|
|
4300
4314
|
warnings: {
|
|
4301
4315
|
warning_code: "acs_credential_on_encoder_out_of_sync" | "acs_credential_on_seam_not_found";
|
|
@@ -4308,10 +4322,10 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
4308
4322
|
is_issued: boolean | null;
|
|
4309
4323
|
card_number: string | null;
|
|
4310
4324
|
visionline_metadata?: {
|
|
4311
|
-
expired: boolean;
|
|
4312
4325
|
card_id: string;
|
|
4313
4326
|
cancelled: boolean;
|
|
4314
4327
|
discarded: boolean;
|
|
4328
|
+
expired: boolean;
|
|
4315
4329
|
overwritten: boolean;
|
|
4316
4330
|
pending_auto_update: boolean;
|
|
4317
4331
|
card_format: "TLCode" | "rfid48";
|
|
@@ -4470,30 +4484,30 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
4470
4484
|
};
|
|
4471
4485
|
action_type: "SCAN_CREDENTIAL";
|
|
4472
4486
|
} | {
|
|
4487
|
+
status: "error";
|
|
4488
|
+
action_attempt_id: string;
|
|
4473
4489
|
error: {
|
|
4474
|
-
type: "uncategorized_error";
|
|
4475
4490
|
message: string;
|
|
4491
|
+
type: "uncategorized_error";
|
|
4476
4492
|
} | {
|
|
4477
|
-
type: "action_attempt_expired";
|
|
4478
4493
|
message: string;
|
|
4494
|
+
type: "action_attempt_expired";
|
|
4479
4495
|
} | {
|
|
4480
|
-
type: "no_credential_on_encoder";
|
|
4481
4496
|
message: string;
|
|
4497
|
+
type: "no_credential_on_encoder";
|
|
4482
4498
|
};
|
|
4483
|
-
status: "error";
|
|
4484
|
-
action_attempt_id: string;
|
|
4485
4499
|
result: null;
|
|
4486
4500
|
action_type: "SCAN_CREDENTIAL";
|
|
4487
4501
|
} | {
|
|
4488
|
-
error: null;
|
|
4489
4502
|
status: "pending";
|
|
4490
4503
|
action_attempt_id: string;
|
|
4504
|
+
error: null;
|
|
4491
4505
|
result: null;
|
|
4492
4506
|
action_type: "ENCODE_CREDENTIAL";
|
|
4493
4507
|
} | {
|
|
4494
|
-
error: null;
|
|
4495
4508
|
status: "success";
|
|
4496
4509
|
action_attempt_id: string;
|
|
4510
|
+
error: null;
|
|
4497
4511
|
result: {
|
|
4498
4512
|
display_name: string;
|
|
4499
4513
|
workspace_id: string;
|
|
@@ -4641,326 +4655,326 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
4641
4655
|
};
|
|
4642
4656
|
action_type: "ENCODE_CREDENTIAL";
|
|
4643
4657
|
} | {
|
|
4658
|
+
status: "error";
|
|
4659
|
+
action_attempt_id: string;
|
|
4644
4660
|
error: {
|
|
4645
|
-
type: "uncategorized_error";
|
|
4646
4661
|
message: string;
|
|
4662
|
+
type: "uncategorized_error";
|
|
4647
4663
|
} | {
|
|
4648
|
-
type: "action_attempt_expired";
|
|
4649
4664
|
message: string;
|
|
4665
|
+
type: "action_attempt_expired";
|
|
4650
4666
|
} | {
|
|
4651
|
-
type: "no_credential_on_encoder";
|
|
4652
4667
|
message: string;
|
|
4668
|
+
type: "no_credential_on_encoder";
|
|
4653
4669
|
} | {
|
|
4654
|
-
type: "incompatible_card_format";
|
|
4655
4670
|
message: string;
|
|
4671
|
+
type: "incompatible_card_format";
|
|
4656
4672
|
} | {
|
|
4657
|
-
type: "credential_cannot_be_reissued";
|
|
4658
4673
|
message: string;
|
|
4674
|
+
type: "credential_cannot_be_reissued";
|
|
4659
4675
|
};
|
|
4660
|
-
status: "error";
|
|
4661
|
-
action_attempt_id: string;
|
|
4662
4676
|
result: null;
|
|
4663
4677
|
action_type: "ENCODE_CREDENTIAL";
|
|
4664
4678
|
} | {
|
|
4665
|
-
error: null;
|
|
4666
4679
|
status: "pending";
|
|
4667
4680
|
action_attempt_id: string;
|
|
4681
|
+
error: null;
|
|
4668
4682
|
result: null;
|
|
4669
4683
|
action_type: "RESET_SANDBOX_WORKSPACE";
|
|
4670
4684
|
} | {
|
|
4671
|
-
error: null;
|
|
4672
4685
|
status: "success";
|
|
4673
4686
|
action_attempt_id: string;
|
|
4687
|
+
error: null;
|
|
4674
4688
|
result: {};
|
|
4675
4689
|
action_type: "RESET_SANDBOX_WORKSPACE";
|
|
4676
4690
|
} | {
|
|
4691
|
+
status: "error";
|
|
4692
|
+
action_attempt_id: string;
|
|
4677
4693
|
error: {
|
|
4678
|
-
type: string;
|
|
4679
4694
|
message: string;
|
|
4695
|
+
type: string;
|
|
4680
4696
|
};
|
|
4681
|
-
status: "error";
|
|
4682
|
-
action_attempt_id: string;
|
|
4683
4697
|
result: null;
|
|
4684
4698
|
action_type: "RESET_SANDBOX_WORKSPACE";
|
|
4685
4699
|
} | {
|
|
4686
|
-
error: null;
|
|
4687
4700
|
status: "pending";
|
|
4688
4701
|
action_attempt_id: string;
|
|
4702
|
+
error: null;
|
|
4689
4703
|
result: null;
|
|
4690
4704
|
action_type: "SET_FAN_MODE";
|
|
4691
4705
|
} | {
|
|
4692
|
-
error: null;
|
|
4693
4706
|
status: "success";
|
|
4694
4707
|
action_attempt_id: string;
|
|
4708
|
+
error: null;
|
|
4695
4709
|
result: {};
|
|
4696
4710
|
action_type: "SET_FAN_MODE";
|
|
4697
4711
|
} | {
|
|
4712
|
+
status: "error";
|
|
4713
|
+
action_attempt_id: string;
|
|
4698
4714
|
error: {
|
|
4699
|
-
type: string;
|
|
4700
4715
|
message: string;
|
|
4716
|
+
type: string;
|
|
4701
4717
|
};
|
|
4702
|
-
status: "error";
|
|
4703
|
-
action_attempt_id: string;
|
|
4704
4718
|
result: null;
|
|
4705
4719
|
action_type: "SET_FAN_MODE";
|
|
4706
4720
|
} | {
|
|
4707
|
-
error: null;
|
|
4708
4721
|
status: "pending";
|
|
4709
4722
|
action_attempt_id: string;
|
|
4723
|
+
error: null;
|
|
4710
4724
|
result: null;
|
|
4711
4725
|
action_type: "SET_HVAC_MODE";
|
|
4712
4726
|
} | {
|
|
4713
|
-
error: null;
|
|
4714
4727
|
status: "success";
|
|
4715
4728
|
action_attempt_id: string;
|
|
4729
|
+
error: null;
|
|
4716
4730
|
result: {};
|
|
4717
4731
|
action_type: "SET_HVAC_MODE";
|
|
4718
4732
|
} | {
|
|
4733
|
+
status: "error";
|
|
4734
|
+
action_attempt_id: string;
|
|
4719
4735
|
error: {
|
|
4720
|
-
type: string;
|
|
4721
4736
|
message: string;
|
|
4737
|
+
type: string;
|
|
4722
4738
|
};
|
|
4723
|
-
status: "error";
|
|
4724
|
-
action_attempt_id: string;
|
|
4725
4739
|
result: null;
|
|
4726
4740
|
action_type: "SET_HVAC_MODE";
|
|
4727
4741
|
} | {
|
|
4728
|
-
error: null;
|
|
4729
4742
|
status: "pending";
|
|
4730
4743
|
action_attempt_id: string;
|
|
4744
|
+
error: null;
|
|
4731
4745
|
result: null;
|
|
4732
4746
|
action_type: "ACTIVATE_CLIMATE_PRESET";
|
|
4733
4747
|
} | {
|
|
4734
|
-
error: null;
|
|
4735
4748
|
status: "success";
|
|
4736
4749
|
action_attempt_id: string;
|
|
4750
|
+
error: null;
|
|
4737
4751
|
result: {};
|
|
4738
4752
|
action_type: "ACTIVATE_CLIMATE_PRESET";
|
|
4739
4753
|
} | {
|
|
4754
|
+
status: "error";
|
|
4755
|
+
action_attempt_id: string;
|
|
4740
4756
|
error: {
|
|
4741
|
-
type: string;
|
|
4742
4757
|
message: string;
|
|
4758
|
+
type: string;
|
|
4743
4759
|
};
|
|
4744
|
-
status: "error";
|
|
4745
|
-
action_attempt_id: string;
|
|
4746
4760
|
result: null;
|
|
4747
4761
|
action_type: "ACTIVATE_CLIMATE_PRESET";
|
|
4748
4762
|
} | {
|
|
4749
|
-
error: null;
|
|
4750
4763
|
status: "pending";
|
|
4751
4764
|
action_attempt_id: string;
|
|
4765
|
+
error: null;
|
|
4752
4766
|
result: null;
|
|
4753
4767
|
action_type: "SIMULATE_KEYPAD_CODE_ENTRY";
|
|
4754
4768
|
} | {
|
|
4755
|
-
error: null;
|
|
4756
4769
|
status: "success";
|
|
4757
4770
|
action_attempt_id: string;
|
|
4771
|
+
error: null;
|
|
4758
4772
|
result: {};
|
|
4759
4773
|
action_type: "SIMULATE_KEYPAD_CODE_ENTRY";
|
|
4760
4774
|
} | {
|
|
4775
|
+
status: "error";
|
|
4776
|
+
action_attempt_id: string;
|
|
4761
4777
|
error: {
|
|
4762
|
-
type: string;
|
|
4763
4778
|
message: string;
|
|
4779
|
+
type: string;
|
|
4764
4780
|
};
|
|
4765
|
-
status: "error";
|
|
4766
|
-
action_attempt_id: string;
|
|
4767
4781
|
result: null;
|
|
4768
4782
|
action_type: "SIMULATE_KEYPAD_CODE_ENTRY";
|
|
4769
4783
|
} | {
|
|
4770
|
-
error: null;
|
|
4771
4784
|
status: "pending";
|
|
4772
4785
|
action_attempt_id: string;
|
|
4786
|
+
error: null;
|
|
4773
4787
|
result: null;
|
|
4774
4788
|
action_type: "SIMULATE_MANUAL_LOCK_VIA_KEYPAD";
|
|
4775
4789
|
} | {
|
|
4776
|
-
error: null;
|
|
4777
4790
|
status: "success";
|
|
4778
4791
|
action_attempt_id: string;
|
|
4792
|
+
error: null;
|
|
4779
4793
|
result: {};
|
|
4780
4794
|
action_type: "SIMULATE_MANUAL_LOCK_VIA_KEYPAD";
|
|
4781
4795
|
} | {
|
|
4796
|
+
status: "error";
|
|
4797
|
+
action_attempt_id: string;
|
|
4782
4798
|
error: {
|
|
4783
|
-
type: string;
|
|
4784
4799
|
message: string;
|
|
4800
|
+
type: string;
|
|
4785
4801
|
};
|
|
4786
|
-
status: "error";
|
|
4787
|
-
action_attempt_id: string;
|
|
4788
4802
|
result: null;
|
|
4789
4803
|
action_type: "SIMULATE_MANUAL_LOCK_VIA_KEYPAD";
|
|
4790
4804
|
} | {
|
|
4791
|
-
error: null;
|
|
4792
4805
|
status: "pending";
|
|
4793
4806
|
action_attempt_id: string;
|
|
4807
|
+
error: null;
|
|
4794
4808
|
result: null;
|
|
4795
4809
|
action_type: "PUSH_THERMOSTAT_PROGRAMS";
|
|
4796
4810
|
} | {
|
|
4797
|
-
error: null;
|
|
4798
4811
|
status: "success";
|
|
4799
4812
|
action_attempt_id: string;
|
|
4813
|
+
error: null;
|
|
4800
4814
|
result: {};
|
|
4801
4815
|
action_type: "PUSH_THERMOSTAT_PROGRAMS";
|
|
4802
4816
|
} | {
|
|
4817
|
+
status: "error";
|
|
4818
|
+
action_attempt_id: string;
|
|
4803
4819
|
error: {
|
|
4804
|
-
type: string;
|
|
4805
4820
|
message: string;
|
|
4821
|
+
type: string;
|
|
4806
4822
|
};
|
|
4807
|
-
status: "error";
|
|
4808
|
-
action_attempt_id: string;
|
|
4809
4823
|
result: null;
|
|
4810
4824
|
action_type: "PUSH_THERMOSTAT_PROGRAMS";
|
|
4811
4825
|
} | {
|
|
4812
|
-
error: null;
|
|
4813
4826
|
status: "pending";
|
|
4814
4827
|
action_attempt_id: string;
|
|
4828
|
+
error: null;
|
|
4815
4829
|
result: null;
|
|
4816
4830
|
action_type: "SYNC_ACCESS_CODES";
|
|
4817
4831
|
} | {
|
|
4818
|
-
error: null;
|
|
4819
4832
|
status: "success";
|
|
4820
4833
|
action_attempt_id: string;
|
|
4834
|
+
error: null;
|
|
4821
4835
|
result: {};
|
|
4822
4836
|
action_type: "SYNC_ACCESS_CODES";
|
|
4823
4837
|
} | {
|
|
4838
|
+
status: "error";
|
|
4839
|
+
action_attempt_id: string;
|
|
4824
4840
|
error: {
|
|
4825
|
-
type: string;
|
|
4826
4841
|
message: string;
|
|
4842
|
+
type: string;
|
|
4827
4843
|
};
|
|
4828
|
-
status: "error";
|
|
4829
|
-
action_attempt_id: string;
|
|
4830
4844
|
result: null;
|
|
4831
4845
|
action_type: "SYNC_ACCESS_CODES";
|
|
4832
4846
|
} | {
|
|
4833
|
-
error: null;
|
|
4834
4847
|
status: "pending";
|
|
4835
4848
|
action_attempt_id: string;
|
|
4849
|
+
error: null;
|
|
4836
4850
|
result: null;
|
|
4837
4851
|
action_type: "CREATE_ACCESS_CODE";
|
|
4838
4852
|
} | {
|
|
4839
|
-
error: null;
|
|
4840
4853
|
status: "success";
|
|
4841
4854
|
action_attempt_id: string;
|
|
4855
|
+
error: null;
|
|
4842
4856
|
result: {
|
|
4843
4857
|
access_code?: any;
|
|
4844
4858
|
};
|
|
4845
4859
|
action_type: "CREATE_ACCESS_CODE";
|
|
4846
4860
|
} | {
|
|
4861
|
+
status: "error";
|
|
4862
|
+
action_attempt_id: string;
|
|
4847
4863
|
error: {
|
|
4848
|
-
type: string;
|
|
4849
4864
|
message: string;
|
|
4865
|
+
type: string;
|
|
4850
4866
|
};
|
|
4851
|
-
status: "error";
|
|
4852
|
-
action_attempt_id: string;
|
|
4853
4867
|
result: null;
|
|
4854
4868
|
action_type: "CREATE_ACCESS_CODE";
|
|
4855
4869
|
} | {
|
|
4856
|
-
error: null;
|
|
4857
4870
|
status: "pending";
|
|
4858
4871
|
action_attempt_id: string;
|
|
4872
|
+
error: null;
|
|
4859
4873
|
result: null;
|
|
4860
4874
|
action_type: "DELETE_ACCESS_CODE";
|
|
4861
4875
|
} | {
|
|
4862
|
-
error: null;
|
|
4863
4876
|
status: "success";
|
|
4864
4877
|
action_attempt_id: string;
|
|
4878
|
+
error: null;
|
|
4865
4879
|
result: {};
|
|
4866
4880
|
action_type: "DELETE_ACCESS_CODE";
|
|
4867
4881
|
} | {
|
|
4882
|
+
status: "error";
|
|
4883
|
+
action_attempt_id: string;
|
|
4868
4884
|
error: {
|
|
4869
|
-
type: string;
|
|
4870
4885
|
message: string;
|
|
4886
|
+
type: string;
|
|
4871
4887
|
};
|
|
4872
|
-
status: "error";
|
|
4873
|
-
action_attempt_id: string;
|
|
4874
4888
|
result: null;
|
|
4875
4889
|
action_type: "DELETE_ACCESS_CODE";
|
|
4876
4890
|
} | {
|
|
4877
|
-
error: null;
|
|
4878
4891
|
status: "pending";
|
|
4879
4892
|
action_attempt_id: string;
|
|
4893
|
+
error: null;
|
|
4880
4894
|
result: null;
|
|
4881
4895
|
action_type: "UPDATE_ACCESS_CODE";
|
|
4882
4896
|
} | {
|
|
4883
|
-
error: null;
|
|
4884
4897
|
status: "success";
|
|
4885
4898
|
action_attempt_id: string;
|
|
4899
|
+
error: null;
|
|
4886
4900
|
result: {
|
|
4887
4901
|
access_code?: any;
|
|
4888
4902
|
};
|
|
4889
4903
|
action_type: "UPDATE_ACCESS_CODE";
|
|
4890
4904
|
} | {
|
|
4905
|
+
status: "error";
|
|
4906
|
+
action_attempt_id: string;
|
|
4891
4907
|
error: {
|
|
4892
|
-
type: string;
|
|
4893
4908
|
message: string;
|
|
4909
|
+
type: string;
|
|
4894
4910
|
};
|
|
4895
|
-
status: "error";
|
|
4896
|
-
action_attempt_id: string;
|
|
4897
4911
|
result: null;
|
|
4898
4912
|
action_type: "UPDATE_ACCESS_CODE";
|
|
4899
4913
|
} | {
|
|
4900
|
-
error: null;
|
|
4901
4914
|
status: "pending";
|
|
4902
4915
|
action_attempt_id: string;
|
|
4916
|
+
error: null;
|
|
4903
4917
|
result: null;
|
|
4904
4918
|
action_type: "CREATE_NOISE_THRESHOLD";
|
|
4905
4919
|
} | {
|
|
4906
|
-
error: null;
|
|
4907
4920
|
status: "success";
|
|
4908
4921
|
action_attempt_id: string;
|
|
4922
|
+
error: null;
|
|
4909
4923
|
result: {
|
|
4910
4924
|
noise_threshold?: any;
|
|
4911
4925
|
};
|
|
4912
4926
|
action_type: "CREATE_NOISE_THRESHOLD";
|
|
4913
4927
|
} | {
|
|
4928
|
+
status: "error";
|
|
4929
|
+
action_attempt_id: string;
|
|
4914
4930
|
error: {
|
|
4915
|
-
type: string;
|
|
4916
4931
|
message: string;
|
|
4932
|
+
type: string;
|
|
4917
4933
|
};
|
|
4918
|
-
status: "error";
|
|
4919
|
-
action_attempt_id: string;
|
|
4920
4934
|
result: null;
|
|
4921
4935
|
action_type: "CREATE_NOISE_THRESHOLD";
|
|
4922
4936
|
} | {
|
|
4923
|
-
error: null;
|
|
4924
4937
|
status: "pending";
|
|
4925
4938
|
action_attempt_id: string;
|
|
4939
|
+
error: null;
|
|
4926
4940
|
result: null;
|
|
4927
4941
|
action_type: "DELETE_NOISE_THRESHOLD";
|
|
4928
4942
|
} | {
|
|
4929
|
-
error: null;
|
|
4930
4943
|
status: "success";
|
|
4931
4944
|
action_attempt_id: string;
|
|
4945
|
+
error: null;
|
|
4932
4946
|
result: {};
|
|
4933
4947
|
action_type: "DELETE_NOISE_THRESHOLD";
|
|
4934
4948
|
} | {
|
|
4949
|
+
status: "error";
|
|
4950
|
+
action_attempt_id: string;
|
|
4935
4951
|
error: {
|
|
4936
|
-
type: string;
|
|
4937
4952
|
message: string;
|
|
4953
|
+
type: string;
|
|
4938
4954
|
};
|
|
4939
|
-
status: "error";
|
|
4940
|
-
action_attempt_id: string;
|
|
4941
4955
|
result: null;
|
|
4942
4956
|
action_type: "DELETE_NOISE_THRESHOLD";
|
|
4943
4957
|
} | {
|
|
4944
|
-
error: null;
|
|
4945
4958
|
status: "pending";
|
|
4946
4959
|
action_attempt_id: string;
|
|
4960
|
+
error: null;
|
|
4947
4961
|
result: null;
|
|
4948
4962
|
action_type: "UPDATE_NOISE_THRESHOLD";
|
|
4949
4963
|
} | {
|
|
4950
|
-
error: null;
|
|
4951
4964
|
status: "success";
|
|
4952
4965
|
action_attempt_id: string;
|
|
4966
|
+
error: null;
|
|
4953
4967
|
result: {
|
|
4954
4968
|
noise_threshold?: any;
|
|
4955
4969
|
};
|
|
4956
4970
|
action_type: "UPDATE_NOISE_THRESHOLD";
|
|
4957
4971
|
} | {
|
|
4972
|
+
status: "error";
|
|
4973
|
+
action_attempt_id: string;
|
|
4958
4974
|
error: {
|
|
4959
|
-
type: string;
|
|
4960
4975
|
message: string;
|
|
4976
|
+
type: string;
|
|
4961
4977
|
};
|
|
4962
|
-
status: "error";
|
|
4963
|
-
action_attempt_id: string;
|
|
4964
4978
|
result: null;
|
|
4965
4979
|
action_type: "UPDATE_NOISE_THRESHOLD";
|
|
4966
4980
|
}>(error: unknown) => error is SeamActionAttemptError<T>;
|
|
@@ -4969,57 +4983,57 @@ declare class SeamActionAttemptError<T extends ActionAttempt> extends Error {
|
|
|
4969
4983
|
constructor(message: string, actionAttempt: T);
|
|
4970
4984
|
}
|
|
4971
4985
|
declare const isSeamActionAttemptFailedError: <T extends {
|
|
4972
|
-
error: null;
|
|
4973
4986
|
status: "pending";
|
|
4974
4987
|
action_attempt_id: string;
|
|
4988
|
+
error: null;
|
|
4975
4989
|
result: null;
|
|
4976
4990
|
action_type: "LOCK_DOOR";
|
|
4977
4991
|
} | {
|
|
4978
|
-
error: null;
|
|
4979
4992
|
status: "success";
|
|
4980
4993
|
action_attempt_id: string;
|
|
4994
|
+
error: null;
|
|
4981
4995
|
result: {};
|
|
4982
4996
|
action_type: "LOCK_DOOR";
|
|
4983
4997
|
} | {
|
|
4998
|
+
status: "error";
|
|
4999
|
+
action_attempt_id: string;
|
|
4984
5000
|
error: {
|
|
4985
|
-
type: string;
|
|
4986
5001
|
message: string;
|
|
5002
|
+
type: string;
|
|
4987
5003
|
};
|
|
4988
|
-
status: "error";
|
|
4989
|
-
action_attempt_id: string;
|
|
4990
5004
|
result: null;
|
|
4991
5005
|
action_type: "LOCK_DOOR";
|
|
4992
5006
|
} | {
|
|
4993
|
-
error: null;
|
|
4994
5007
|
status: "pending";
|
|
4995
5008
|
action_attempt_id: string;
|
|
5009
|
+
error: null;
|
|
4996
5010
|
result: null;
|
|
4997
5011
|
action_type: "UNLOCK_DOOR";
|
|
4998
5012
|
} | {
|
|
4999
|
-
error: null;
|
|
5000
5013
|
status: "success";
|
|
5001
5014
|
action_attempt_id: string;
|
|
5015
|
+
error: null;
|
|
5002
5016
|
result: {};
|
|
5003
5017
|
action_type: "UNLOCK_DOOR";
|
|
5004
5018
|
} | {
|
|
5019
|
+
status: "error";
|
|
5020
|
+
action_attempt_id: string;
|
|
5005
5021
|
error: {
|
|
5006
|
-
type: string;
|
|
5007
5022
|
message: string;
|
|
5023
|
+
type: string;
|
|
5008
5024
|
};
|
|
5009
|
-
status: "error";
|
|
5010
|
-
action_attempt_id: string;
|
|
5011
5025
|
result: null;
|
|
5012
5026
|
action_type: "UNLOCK_DOOR";
|
|
5013
5027
|
} | {
|
|
5014
|
-
error: null;
|
|
5015
5028
|
status: "pending";
|
|
5016
5029
|
action_attempt_id: string;
|
|
5030
|
+
error: null;
|
|
5017
5031
|
result: null;
|
|
5018
5032
|
action_type: "SCAN_CREDENTIAL";
|
|
5019
5033
|
} | {
|
|
5020
|
-
error: null;
|
|
5021
5034
|
status: "success";
|
|
5022
5035
|
action_attempt_id: string;
|
|
5036
|
+
error: null;
|
|
5023
5037
|
result: {
|
|
5024
5038
|
warnings: {
|
|
5025
5039
|
warning_code: "acs_credential_on_encoder_out_of_sync" | "acs_credential_on_seam_not_found";
|
|
@@ -5032,10 +5046,10 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
5032
5046
|
is_issued: boolean | null;
|
|
5033
5047
|
card_number: string | null;
|
|
5034
5048
|
visionline_metadata?: {
|
|
5035
|
-
expired: boolean;
|
|
5036
5049
|
card_id: string;
|
|
5037
5050
|
cancelled: boolean;
|
|
5038
5051
|
discarded: boolean;
|
|
5052
|
+
expired: boolean;
|
|
5039
5053
|
overwritten: boolean;
|
|
5040
5054
|
pending_auto_update: boolean;
|
|
5041
5055
|
card_format: "TLCode" | "rfid48";
|
|
@@ -5194,30 +5208,30 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
5194
5208
|
};
|
|
5195
5209
|
action_type: "SCAN_CREDENTIAL";
|
|
5196
5210
|
} | {
|
|
5211
|
+
status: "error";
|
|
5212
|
+
action_attempt_id: string;
|
|
5197
5213
|
error: {
|
|
5198
|
-
type: "uncategorized_error";
|
|
5199
5214
|
message: string;
|
|
5215
|
+
type: "uncategorized_error";
|
|
5200
5216
|
} | {
|
|
5201
|
-
type: "action_attempt_expired";
|
|
5202
5217
|
message: string;
|
|
5218
|
+
type: "action_attempt_expired";
|
|
5203
5219
|
} | {
|
|
5204
|
-
type: "no_credential_on_encoder";
|
|
5205
5220
|
message: string;
|
|
5221
|
+
type: "no_credential_on_encoder";
|
|
5206
5222
|
};
|
|
5207
|
-
status: "error";
|
|
5208
|
-
action_attempt_id: string;
|
|
5209
5223
|
result: null;
|
|
5210
5224
|
action_type: "SCAN_CREDENTIAL";
|
|
5211
5225
|
} | {
|
|
5212
|
-
error: null;
|
|
5213
5226
|
status: "pending";
|
|
5214
5227
|
action_attempt_id: string;
|
|
5228
|
+
error: null;
|
|
5215
5229
|
result: null;
|
|
5216
5230
|
action_type: "ENCODE_CREDENTIAL";
|
|
5217
5231
|
} | {
|
|
5218
|
-
error: null;
|
|
5219
5232
|
status: "success";
|
|
5220
5233
|
action_attempt_id: string;
|
|
5234
|
+
error: null;
|
|
5221
5235
|
result: {
|
|
5222
5236
|
display_name: string;
|
|
5223
5237
|
workspace_id: string;
|
|
@@ -5365,326 +5379,326 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
5365
5379
|
};
|
|
5366
5380
|
action_type: "ENCODE_CREDENTIAL";
|
|
5367
5381
|
} | {
|
|
5382
|
+
status: "error";
|
|
5383
|
+
action_attempt_id: string;
|
|
5368
5384
|
error: {
|
|
5369
|
-
type: "uncategorized_error";
|
|
5370
5385
|
message: string;
|
|
5386
|
+
type: "uncategorized_error";
|
|
5371
5387
|
} | {
|
|
5372
|
-
type: "action_attempt_expired";
|
|
5373
5388
|
message: string;
|
|
5389
|
+
type: "action_attempt_expired";
|
|
5374
5390
|
} | {
|
|
5375
|
-
type: "no_credential_on_encoder";
|
|
5376
5391
|
message: string;
|
|
5392
|
+
type: "no_credential_on_encoder";
|
|
5377
5393
|
} | {
|
|
5378
|
-
type: "incompatible_card_format";
|
|
5379
5394
|
message: string;
|
|
5395
|
+
type: "incompatible_card_format";
|
|
5380
5396
|
} | {
|
|
5381
|
-
type: "credential_cannot_be_reissued";
|
|
5382
5397
|
message: string;
|
|
5398
|
+
type: "credential_cannot_be_reissued";
|
|
5383
5399
|
};
|
|
5384
|
-
status: "error";
|
|
5385
|
-
action_attempt_id: string;
|
|
5386
5400
|
result: null;
|
|
5387
5401
|
action_type: "ENCODE_CREDENTIAL";
|
|
5388
5402
|
} | {
|
|
5389
|
-
error: null;
|
|
5390
5403
|
status: "pending";
|
|
5391
5404
|
action_attempt_id: string;
|
|
5405
|
+
error: null;
|
|
5392
5406
|
result: null;
|
|
5393
5407
|
action_type: "RESET_SANDBOX_WORKSPACE";
|
|
5394
5408
|
} | {
|
|
5395
|
-
error: null;
|
|
5396
5409
|
status: "success";
|
|
5397
5410
|
action_attempt_id: string;
|
|
5411
|
+
error: null;
|
|
5398
5412
|
result: {};
|
|
5399
5413
|
action_type: "RESET_SANDBOX_WORKSPACE";
|
|
5400
5414
|
} | {
|
|
5415
|
+
status: "error";
|
|
5416
|
+
action_attempt_id: string;
|
|
5401
5417
|
error: {
|
|
5402
|
-
type: string;
|
|
5403
5418
|
message: string;
|
|
5419
|
+
type: string;
|
|
5404
5420
|
};
|
|
5405
|
-
status: "error";
|
|
5406
|
-
action_attempt_id: string;
|
|
5407
5421
|
result: null;
|
|
5408
5422
|
action_type: "RESET_SANDBOX_WORKSPACE";
|
|
5409
5423
|
} | {
|
|
5410
|
-
error: null;
|
|
5411
5424
|
status: "pending";
|
|
5412
5425
|
action_attempt_id: string;
|
|
5426
|
+
error: null;
|
|
5413
5427
|
result: null;
|
|
5414
5428
|
action_type: "SET_FAN_MODE";
|
|
5415
5429
|
} | {
|
|
5416
|
-
error: null;
|
|
5417
5430
|
status: "success";
|
|
5418
5431
|
action_attempt_id: string;
|
|
5432
|
+
error: null;
|
|
5419
5433
|
result: {};
|
|
5420
5434
|
action_type: "SET_FAN_MODE";
|
|
5421
5435
|
} | {
|
|
5436
|
+
status: "error";
|
|
5437
|
+
action_attempt_id: string;
|
|
5422
5438
|
error: {
|
|
5423
|
-
type: string;
|
|
5424
5439
|
message: string;
|
|
5440
|
+
type: string;
|
|
5425
5441
|
};
|
|
5426
|
-
status: "error";
|
|
5427
|
-
action_attempt_id: string;
|
|
5428
5442
|
result: null;
|
|
5429
5443
|
action_type: "SET_FAN_MODE";
|
|
5430
5444
|
} | {
|
|
5431
|
-
error: null;
|
|
5432
5445
|
status: "pending";
|
|
5433
5446
|
action_attempt_id: string;
|
|
5447
|
+
error: null;
|
|
5434
5448
|
result: null;
|
|
5435
5449
|
action_type: "SET_HVAC_MODE";
|
|
5436
5450
|
} | {
|
|
5437
|
-
error: null;
|
|
5438
5451
|
status: "success";
|
|
5439
5452
|
action_attempt_id: string;
|
|
5453
|
+
error: null;
|
|
5440
5454
|
result: {};
|
|
5441
5455
|
action_type: "SET_HVAC_MODE";
|
|
5442
5456
|
} | {
|
|
5457
|
+
status: "error";
|
|
5458
|
+
action_attempt_id: string;
|
|
5443
5459
|
error: {
|
|
5444
|
-
type: string;
|
|
5445
5460
|
message: string;
|
|
5461
|
+
type: string;
|
|
5446
5462
|
};
|
|
5447
|
-
status: "error";
|
|
5448
|
-
action_attempt_id: string;
|
|
5449
5463
|
result: null;
|
|
5450
5464
|
action_type: "SET_HVAC_MODE";
|
|
5451
5465
|
} | {
|
|
5452
|
-
error: null;
|
|
5453
5466
|
status: "pending";
|
|
5454
5467
|
action_attempt_id: string;
|
|
5468
|
+
error: null;
|
|
5455
5469
|
result: null;
|
|
5456
5470
|
action_type: "ACTIVATE_CLIMATE_PRESET";
|
|
5457
5471
|
} | {
|
|
5458
|
-
error: null;
|
|
5459
5472
|
status: "success";
|
|
5460
5473
|
action_attempt_id: string;
|
|
5474
|
+
error: null;
|
|
5461
5475
|
result: {};
|
|
5462
5476
|
action_type: "ACTIVATE_CLIMATE_PRESET";
|
|
5463
5477
|
} | {
|
|
5478
|
+
status: "error";
|
|
5479
|
+
action_attempt_id: string;
|
|
5464
5480
|
error: {
|
|
5465
|
-
type: string;
|
|
5466
5481
|
message: string;
|
|
5482
|
+
type: string;
|
|
5467
5483
|
};
|
|
5468
|
-
status: "error";
|
|
5469
|
-
action_attempt_id: string;
|
|
5470
5484
|
result: null;
|
|
5471
5485
|
action_type: "ACTIVATE_CLIMATE_PRESET";
|
|
5472
5486
|
} | {
|
|
5473
|
-
error: null;
|
|
5474
5487
|
status: "pending";
|
|
5475
5488
|
action_attempt_id: string;
|
|
5489
|
+
error: null;
|
|
5476
5490
|
result: null;
|
|
5477
5491
|
action_type: "SIMULATE_KEYPAD_CODE_ENTRY";
|
|
5478
5492
|
} | {
|
|
5479
|
-
error: null;
|
|
5480
5493
|
status: "success";
|
|
5481
5494
|
action_attempt_id: string;
|
|
5495
|
+
error: null;
|
|
5482
5496
|
result: {};
|
|
5483
5497
|
action_type: "SIMULATE_KEYPAD_CODE_ENTRY";
|
|
5484
5498
|
} | {
|
|
5499
|
+
status: "error";
|
|
5500
|
+
action_attempt_id: string;
|
|
5485
5501
|
error: {
|
|
5486
|
-
type: string;
|
|
5487
5502
|
message: string;
|
|
5503
|
+
type: string;
|
|
5488
5504
|
};
|
|
5489
|
-
status: "error";
|
|
5490
|
-
action_attempt_id: string;
|
|
5491
5505
|
result: null;
|
|
5492
5506
|
action_type: "SIMULATE_KEYPAD_CODE_ENTRY";
|
|
5493
5507
|
} | {
|
|
5494
|
-
error: null;
|
|
5495
5508
|
status: "pending";
|
|
5496
5509
|
action_attempt_id: string;
|
|
5510
|
+
error: null;
|
|
5497
5511
|
result: null;
|
|
5498
5512
|
action_type: "SIMULATE_MANUAL_LOCK_VIA_KEYPAD";
|
|
5499
5513
|
} | {
|
|
5500
|
-
error: null;
|
|
5501
5514
|
status: "success";
|
|
5502
5515
|
action_attempt_id: string;
|
|
5516
|
+
error: null;
|
|
5503
5517
|
result: {};
|
|
5504
5518
|
action_type: "SIMULATE_MANUAL_LOCK_VIA_KEYPAD";
|
|
5505
5519
|
} | {
|
|
5520
|
+
status: "error";
|
|
5521
|
+
action_attempt_id: string;
|
|
5506
5522
|
error: {
|
|
5507
|
-
type: string;
|
|
5508
5523
|
message: string;
|
|
5524
|
+
type: string;
|
|
5509
5525
|
};
|
|
5510
|
-
status: "error";
|
|
5511
|
-
action_attempt_id: string;
|
|
5512
5526
|
result: null;
|
|
5513
5527
|
action_type: "SIMULATE_MANUAL_LOCK_VIA_KEYPAD";
|
|
5514
5528
|
} | {
|
|
5515
|
-
error: null;
|
|
5516
5529
|
status: "pending";
|
|
5517
5530
|
action_attempt_id: string;
|
|
5531
|
+
error: null;
|
|
5518
5532
|
result: null;
|
|
5519
5533
|
action_type: "PUSH_THERMOSTAT_PROGRAMS";
|
|
5520
5534
|
} | {
|
|
5521
|
-
error: null;
|
|
5522
5535
|
status: "success";
|
|
5523
5536
|
action_attempt_id: string;
|
|
5537
|
+
error: null;
|
|
5524
5538
|
result: {};
|
|
5525
5539
|
action_type: "PUSH_THERMOSTAT_PROGRAMS";
|
|
5526
5540
|
} | {
|
|
5541
|
+
status: "error";
|
|
5542
|
+
action_attempt_id: string;
|
|
5527
5543
|
error: {
|
|
5528
|
-
type: string;
|
|
5529
5544
|
message: string;
|
|
5545
|
+
type: string;
|
|
5530
5546
|
};
|
|
5531
|
-
status: "error";
|
|
5532
|
-
action_attempt_id: string;
|
|
5533
5547
|
result: null;
|
|
5534
5548
|
action_type: "PUSH_THERMOSTAT_PROGRAMS";
|
|
5535
5549
|
} | {
|
|
5536
|
-
error: null;
|
|
5537
5550
|
status: "pending";
|
|
5538
5551
|
action_attempt_id: string;
|
|
5552
|
+
error: null;
|
|
5539
5553
|
result: null;
|
|
5540
5554
|
action_type: "SYNC_ACCESS_CODES";
|
|
5541
5555
|
} | {
|
|
5542
|
-
error: null;
|
|
5543
5556
|
status: "success";
|
|
5544
5557
|
action_attempt_id: string;
|
|
5558
|
+
error: null;
|
|
5545
5559
|
result: {};
|
|
5546
5560
|
action_type: "SYNC_ACCESS_CODES";
|
|
5547
5561
|
} | {
|
|
5562
|
+
status: "error";
|
|
5563
|
+
action_attempt_id: string;
|
|
5548
5564
|
error: {
|
|
5549
|
-
type: string;
|
|
5550
5565
|
message: string;
|
|
5566
|
+
type: string;
|
|
5551
5567
|
};
|
|
5552
|
-
status: "error";
|
|
5553
|
-
action_attempt_id: string;
|
|
5554
5568
|
result: null;
|
|
5555
5569
|
action_type: "SYNC_ACCESS_CODES";
|
|
5556
5570
|
} | {
|
|
5557
|
-
error: null;
|
|
5558
5571
|
status: "pending";
|
|
5559
5572
|
action_attempt_id: string;
|
|
5573
|
+
error: null;
|
|
5560
5574
|
result: null;
|
|
5561
5575
|
action_type: "CREATE_ACCESS_CODE";
|
|
5562
5576
|
} | {
|
|
5563
|
-
error: null;
|
|
5564
5577
|
status: "success";
|
|
5565
5578
|
action_attempt_id: string;
|
|
5579
|
+
error: null;
|
|
5566
5580
|
result: {
|
|
5567
5581
|
access_code?: any;
|
|
5568
5582
|
};
|
|
5569
5583
|
action_type: "CREATE_ACCESS_CODE";
|
|
5570
5584
|
} | {
|
|
5585
|
+
status: "error";
|
|
5586
|
+
action_attempt_id: string;
|
|
5571
5587
|
error: {
|
|
5572
|
-
type: string;
|
|
5573
5588
|
message: string;
|
|
5589
|
+
type: string;
|
|
5574
5590
|
};
|
|
5575
|
-
status: "error";
|
|
5576
|
-
action_attempt_id: string;
|
|
5577
5591
|
result: null;
|
|
5578
5592
|
action_type: "CREATE_ACCESS_CODE";
|
|
5579
5593
|
} | {
|
|
5580
|
-
error: null;
|
|
5581
5594
|
status: "pending";
|
|
5582
5595
|
action_attempt_id: string;
|
|
5596
|
+
error: null;
|
|
5583
5597
|
result: null;
|
|
5584
5598
|
action_type: "DELETE_ACCESS_CODE";
|
|
5585
5599
|
} | {
|
|
5586
|
-
error: null;
|
|
5587
5600
|
status: "success";
|
|
5588
5601
|
action_attempt_id: string;
|
|
5602
|
+
error: null;
|
|
5589
5603
|
result: {};
|
|
5590
5604
|
action_type: "DELETE_ACCESS_CODE";
|
|
5591
5605
|
} | {
|
|
5606
|
+
status: "error";
|
|
5607
|
+
action_attempt_id: string;
|
|
5592
5608
|
error: {
|
|
5593
|
-
type: string;
|
|
5594
5609
|
message: string;
|
|
5610
|
+
type: string;
|
|
5595
5611
|
};
|
|
5596
|
-
status: "error";
|
|
5597
|
-
action_attempt_id: string;
|
|
5598
5612
|
result: null;
|
|
5599
5613
|
action_type: "DELETE_ACCESS_CODE";
|
|
5600
5614
|
} | {
|
|
5601
|
-
error: null;
|
|
5602
5615
|
status: "pending";
|
|
5603
5616
|
action_attempt_id: string;
|
|
5617
|
+
error: null;
|
|
5604
5618
|
result: null;
|
|
5605
5619
|
action_type: "UPDATE_ACCESS_CODE";
|
|
5606
5620
|
} | {
|
|
5607
|
-
error: null;
|
|
5608
5621
|
status: "success";
|
|
5609
5622
|
action_attempt_id: string;
|
|
5623
|
+
error: null;
|
|
5610
5624
|
result: {
|
|
5611
5625
|
access_code?: any;
|
|
5612
5626
|
};
|
|
5613
5627
|
action_type: "UPDATE_ACCESS_CODE";
|
|
5614
5628
|
} | {
|
|
5629
|
+
status: "error";
|
|
5630
|
+
action_attempt_id: string;
|
|
5615
5631
|
error: {
|
|
5616
|
-
type: string;
|
|
5617
5632
|
message: string;
|
|
5633
|
+
type: string;
|
|
5618
5634
|
};
|
|
5619
|
-
status: "error";
|
|
5620
|
-
action_attempt_id: string;
|
|
5621
5635
|
result: null;
|
|
5622
5636
|
action_type: "UPDATE_ACCESS_CODE";
|
|
5623
5637
|
} | {
|
|
5624
|
-
error: null;
|
|
5625
5638
|
status: "pending";
|
|
5626
5639
|
action_attempt_id: string;
|
|
5640
|
+
error: null;
|
|
5627
5641
|
result: null;
|
|
5628
5642
|
action_type: "CREATE_NOISE_THRESHOLD";
|
|
5629
5643
|
} | {
|
|
5630
|
-
error: null;
|
|
5631
5644
|
status: "success";
|
|
5632
5645
|
action_attempt_id: string;
|
|
5646
|
+
error: null;
|
|
5633
5647
|
result: {
|
|
5634
5648
|
noise_threshold?: any;
|
|
5635
5649
|
};
|
|
5636
5650
|
action_type: "CREATE_NOISE_THRESHOLD";
|
|
5637
5651
|
} | {
|
|
5652
|
+
status: "error";
|
|
5653
|
+
action_attempt_id: string;
|
|
5638
5654
|
error: {
|
|
5639
|
-
type: string;
|
|
5640
5655
|
message: string;
|
|
5656
|
+
type: string;
|
|
5641
5657
|
};
|
|
5642
|
-
status: "error";
|
|
5643
|
-
action_attempt_id: string;
|
|
5644
5658
|
result: null;
|
|
5645
5659
|
action_type: "CREATE_NOISE_THRESHOLD";
|
|
5646
5660
|
} | {
|
|
5647
|
-
error: null;
|
|
5648
5661
|
status: "pending";
|
|
5649
5662
|
action_attempt_id: string;
|
|
5663
|
+
error: null;
|
|
5650
5664
|
result: null;
|
|
5651
5665
|
action_type: "DELETE_NOISE_THRESHOLD";
|
|
5652
5666
|
} | {
|
|
5653
|
-
error: null;
|
|
5654
5667
|
status: "success";
|
|
5655
5668
|
action_attempt_id: string;
|
|
5669
|
+
error: null;
|
|
5656
5670
|
result: {};
|
|
5657
5671
|
action_type: "DELETE_NOISE_THRESHOLD";
|
|
5658
5672
|
} | {
|
|
5673
|
+
status: "error";
|
|
5674
|
+
action_attempt_id: string;
|
|
5659
5675
|
error: {
|
|
5660
|
-
type: string;
|
|
5661
5676
|
message: string;
|
|
5677
|
+
type: string;
|
|
5662
5678
|
};
|
|
5663
|
-
status: "error";
|
|
5664
|
-
action_attempt_id: string;
|
|
5665
5679
|
result: null;
|
|
5666
5680
|
action_type: "DELETE_NOISE_THRESHOLD";
|
|
5667
5681
|
} | {
|
|
5668
|
-
error: null;
|
|
5669
5682
|
status: "pending";
|
|
5670
5683
|
action_attempt_id: string;
|
|
5684
|
+
error: null;
|
|
5671
5685
|
result: null;
|
|
5672
5686
|
action_type: "UPDATE_NOISE_THRESHOLD";
|
|
5673
5687
|
} | {
|
|
5674
|
-
error: null;
|
|
5675
5688
|
status: "success";
|
|
5676
5689
|
action_attempt_id: string;
|
|
5690
|
+
error: null;
|
|
5677
5691
|
result: {
|
|
5678
5692
|
noise_threshold?: any;
|
|
5679
5693
|
};
|
|
5680
5694
|
action_type: "UPDATE_NOISE_THRESHOLD";
|
|
5681
5695
|
} | {
|
|
5696
|
+
status: "error";
|
|
5697
|
+
action_attempt_id: string;
|
|
5682
5698
|
error: {
|
|
5683
|
-
type: string;
|
|
5684
5699
|
message: string;
|
|
5700
|
+
type: string;
|
|
5685
5701
|
};
|
|
5686
|
-
status: "error";
|
|
5687
|
-
action_attempt_id: string;
|
|
5688
5702
|
result: null;
|
|
5689
5703
|
action_type: "UPDATE_NOISE_THRESHOLD";
|
|
5690
5704
|
}>(error: unknown) => error is SeamActionAttemptFailedError<T>;
|
|
@@ -5693,57 +5707,57 @@ declare class SeamActionAttemptFailedError<T extends ActionAttempt> extends Seam
|
|
|
5693
5707
|
constructor(actionAttempt: FailedActionAttempt<T>);
|
|
5694
5708
|
}
|
|
5695
5709
|
declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
5696
|
-
error: null;
|
|
5697
5710
|
status: "pending";
|
|
5698
5711
|
action_attempt_id: string;
|
|
5712
|
+
error: null;
|
|
5699
5713
|
result: null;
|
|
5700
5714
|
action_type: "LOCK_DOOR";
|
|
5701
5715
|
} | {
|
|
5702
|
-
error: null;
|
|
5703
5716
|
status: "success";
|
|
5704
5717
|
action_attempt_id: string;
|
|
5718
|
+
error: null;
|
|
5705
5719
|
result: {};
|
|
5706
5720
|
action_type: "LOCK_DOOR";
|
|
5707
5721
|
} | {
|
|
5722
|
+
status: "error";
|
|
5723
|
+
action_attempt_id: string;
|
|
5708
5724
|
error: {
|
|
5709
|
-
type: string;
|
|
5710
5725
|
message: string;
|
|
5726
|
+
type: string;
|
|
5711
5727
|
};
|
|
5712
|
-
status: "error";
|
|
5713
|
-
action_attempt_id: string;
|
|
5714
5728
|
result: null;
|
|
5715
5729
|
action_type: "LOCK_DOOR";
|
|
5716
5730
|
} | {
|
|
5717
|
-
error: null;
|
|
5718
5731
|
status: "pending";
|
|
5719
5732
|
action_attempt_id: string;
|
|
5733
|
+
error: null;
|
|
5720
5734
|
result: null;
|
|
5721
5735
|
action_type: "UNLOCK_DOOR";
|
|
5722
5736
|
} | {
|
|
5723
|
-
error: null;
|
|
5724
5737
|
status: "success";
|
|
5725
5738
|
action_attempt_id: string;
|
|
5739
|
+
error: null;
|
|
5726
5740
|
result: {};
|
|
5727
5741
|
action_type: "UNLOCK_DOOR";
|
|
5728
5742
|
} | {
|
|
5743
|
+
status: "error";
|
|
5744
|
+
action_attempt_id: string;
|
|
5729
5745
|
error: {
|
|
5730
|
-
type: string;
|
|
5731
5746
|
message: string;
|
|
5747
|
+
type: string;
|
|
5732
5748
|
};
|
|
5733
|
-
status: "error";
|
|
5734
|
-
action_attempt_id: string;
|
|
5735
5749
|
result: null;
|
|
5736
5750
|
action_type: "UNLOCK_DOOR";
|
|
5737
5751
|
} | {
|
|
5738
|
-
error: null;
|
|
5739
5752
|
status: "pending";
|
|
5740
5753
|
action_attempt_id: string;
|
|
5754
|
+
error: null;
|
|
5741
5755
|
result: null;
|
|
5742
5756
|
action_type: "SCAN_CREDENTIAL";
|
|
5743
5757
|
} | {
|
|
5744
|
-
error: null;
|
|
5745
5758
|
status: "success";
|
|
5746
5759
|
action_attempt_id: string;
|
|
5760
|
+
error: null;
|
|
5747
5761
|
result: {
|
|
5748
5762
|
warnings: {
|
|
5749
5763
|
warning_code: "acs_credential_on_encoder_out_of_sync" | "acs_credential_on_seam_not_found";
|
|
@@ -5756,10 +5770,10 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
5756
5770
|
is_issued: boolean | null;
|
|
5757
5771
|
card_number: string | null;
|
|
5758
5772
|
visionline_metadata?: {
|
|
5759
|
-
expired: boolean;
|
|
5760
5773
|
card_id: string;
|
|
5761
5774
|
cancelled: boolean;
|
|
5762
5775
|
discarded: boolean;
|
|
5776
|
+
expired: boolean;
|
|
5763
5777
|
overwritten: boolean;
|
|
5764
5778
|
pending_auto_update: boolean;
|
|
5765
5779
|
card_format: "TLCode" | "rfid48";
|
|
@@ -5918,30 +5932,30 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
5918
5932
|
};
|
|
5919
5933
|
action_type: "SCAN_CREDENTIAL";
|
|
5920
5934
|
} | {
|
|
5935
|
+
status: "error";
|
|
5936
|
+
action_attempt_id: string;
|
|
5921
5937
|
error: {
|
|
5922
|
-
type: "uncategorized_error";
|
|
5923
5938
|
message: string;
|
|
5939
|
+
type: "uncategorized_error";
|
|
5924
5940
|
} | {
|
|
5925
|
-
type: "action_attempt_expired";
|
|
5926
5941
|
message: string;
|
|
5942
|
+
type: "action_attempt_expired";
|
|
5927
5943
|
} | {
|
|
5928
|
-
type: "no_credential_on_encoder";
|
|
5929
5944
|
message: string;
|
|
5945
|
+
type: "no_credential_on_encoder";
|
|
5930
5946
|
};
|
|
5931
|
-
status: "error";
|
|
5932
|
-
action_attempt_id: string;
|
|
5933
5947
|
result: null;
|
|
5934
5948
|
action_type: "SCAN_CREDENTIAL";
|
|
5935
5949
|
} | {
|
|
5936
|
-
error: null;
|
|
5937
5950
|
status: "pending";
|
|
5938
5951
|
action_attempt_id: string;
|
|
5952
|
+
error: null;
|
|
5939
5953
|
result: null;
|
|
5940
5954
|
action_type: "ENCODE_CREDENTIAL";
|
|
5941
5955
|
} | {
|
|
5942
|
-
error: null;
|
|
5943
5956
|
status: "success";
|
|
5944
5957
|
action_attempt_id: string;
|
|
5958
|
+
error: null;
|
|
5945
5959
|
result: {
|
|
5946
5960
|
display_name: string;
|
|
5947
5961
|
workspace_id: string;
|
|
@@ -6089,326 +6103,326 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
6089
6103
|
};
|
|
6090
6104
|
action_type: "ENCODE_CREDENTIAL";
|
|
6091
6105
|
} | {
|
|
6106
|
+
status: "error";
|
|
6107
|
+
action_attempt_id: string;
|
|
6092
6108
|
error: {
|
|
6093
|
-
type: "uncategorized_error";
|
|
6094
6109
|
message: string;
|
|
6110
|
+
type: "uncategorized_error";
|
|
6095
6111
|
} | {
|
|
6096
|
-
type: "action_attempt_expired";
|
|
6097
6112
|
message: string;
|
|
6113
|
+
type: "action_attempt_expired";
|
|
6098
6114
|
} | {
|
|
6099
|
-
type: "no_credential_on_encoder";
|
|
6100
6115
|
message: string;
|
|
6116
|
+
type: "no_credential_on_encoder";
|
|
6101
6117
|
} | {
|
|
6102
|
-
type: "incompatible_card_format";
|
|
6103
6118
|
message: string;
|
|
6119
|
+
type: "incompatible_card_format";
|
|
6104
6120
|
} | {
|
|
6105
|
-
type: "credential_cannot_be_reissued";
|
|
6106
6121
|
message: string;
|
|
6122
|
+
type: "credential_cannot_be_reissued";
|
|
6107
6123
|
};
|
|
6108
|
-
status: "error";
|
|
6109
|
-
action_attempt_id: string;
|
|
6110
6124
|
result: null;
|
|
6111
6125
|
action_type: "ENCODE_CREDENTIAL";
|
|
6112
6126
|
} | {
|
|
6113
|
-
error: null;
|
|
6114
6127
|
status: "pending";
|
|
6115
6128
|
action_attempt_id: string;
|
|
6129
|
+
error: null;
|
|
6116
6130
|
result: null;
|
|
6117
6131
|
action_type: "RESET_SANDBOX_WORKSPACE";
|
|
6118
6132
|
} | {
|
|
6119
|
-
error: null;
|
|
6120
6133
|
status: "success";
|
|
6121
6134
|
action_attempt_id: string;
|
|
6135
|
+
error: null;
|
|
6122
6136
|
result: {};
|
|
6123
6137
|
action_type: "RESET_SANDBOX_WORKSPACE";
|
|
6124
6138
|
} | {
|
|
6139
|
+
status: "error";
|
|
6140
|
+
action_attempt_id: string;
|
|
6125
6141
|
error: {
|
|
6126
|
-
type: string;
|
|
6127
6142
|
message: string;
|
|
6143
|
+
type: string;
|
|
6128
6144
|
};
|
|
6129
|
-
status: "error";
|
|
6130
|
-
action_attempt_id: string;
|
|
6131
6145
|
result: null;
|
|
6132
6146
|
action_type: "RESET_SANDBOX_WORKSPACE";
|
|
6133
6147
|
} | {
|
|
6134
|
-
error: null;
|
|
6135
6148
|
status: "pending";
|
|
6136
6149
|
action_attempt_id: string;
|
|
6150
|
+
error: null;
|
|
6137
6151
|
result: null;
|
|
6138
6152
|
action_type: "SET_FAN_MODE";
|
|
6139
6153
|
} | {
|
|
6140
|
-
error: null;
|
|
6141
6154
|
status: "success";
|
|
6142
6155
|
action_attempt_id: string;
|
|
6156
|
+
error: null;
|
|
6143
6157
|
result: {};
|
|
6144
6158
|
action_type: "SET_FAN_MODE";
|
|
6145
6159
|
} | {
|
|
6160
|
+
status: "error";
|
|
6161
|
+
action_attempt_id: string;
|
|
6146
6162
|
error: {
|
|
6147
|
-
type: string;
|
|
6148
6163
|
message: string;
|
|
6164
|
+
type: string;
|
|
6149
6165
|
};
|
|
6150
|
-
status: "error";
|
|
6151
|
-
action_attempt_id: string;
|
|
6152
6166
|
result: null;
|
|
6153
6167
|
action_type: "SET_FAN_MODE";
|
|
6154
6168
|
} | {
|
|
6155
|
-
error: null;
|
|
6156
6169
|
status: "pending";
|
|
6157
6170
|
action_attempt_id: string;
|
|
6171
|
+
error: null;
|
|
6158
6172
|
result: null;
|
|
6159
6173
|
action_type: "SET_HVAC_MODE";
|
|
6160
6174
|
} | {
|
|
6161
|
-
error: null;
|
|
6162
6175
|
status: "success";
|
|
6163
6176
|
action_attempt_id: string;
|
|
6177
|
+
error: null;
|
|
6164
6178
|
result: {};
|
|
6165
6179
|
action_type: "SET_HVAC_MODE";
|
|
6166
6180
|
} | {
|
|
6181
|
+
status: "error";
|
|
6182
|
+
action_attempt_id: string;
|
|
6167
6183
|
error: {
|
|
6168
|
-
type: string;
|
|
6169
6184
|
message: string;
|
|
6185
|
+
type: string;
|
|
6170
6186
|
};
|
|
6171
|
-
status: "error";
|
|
6172
|
-
action_attempt_id: string;
|
|
6173
6187
|
result: null;
|
|
6174
6188
|
action_type: "SET_HVAC_MODE";
|
|
6175
6189
|
} | {
|
|
6176
|
-
error: null;
|
|
6177
6190
|
status: "pending";
|
|
6178
6191
|
action_attempt_id: string;
|
|
6192
|
+
error: null;
|
|
6179
6193
|
result: null;
|
|
6180
6194
|
action_type: "ACTIVATE_CLIMATE_PRESET";
|
|
6181
6195
|
} | {
|
|
6182
|
-
error: null;
|
|
6183
6196
|
status: "success";
|
|
6184
6197
|
action_attempt_id: string;
|
|
6198
|
+
error: null;
|
|
6185
6199
|
result: {};
|
|
6186
6200
|
action_type: "ACTIVATE_CLIMATE_PRESET";
|
|
6187
6201
|
} | {
|
|
6202
|
+
status: "error";
|
|
6203
|
+
action_attempt_id: string;
|
|
6188
6204
|
error: {
|
|
6189
|
-
type: string;
|
|
6190
6205
|
message: string;
|
|
6206
|
+
type: string;
|
|
6191
6207
|
};
|
|
6192
|
-
status: "error";
|
|
6193
|
-
action_attempt_id: string;
|
|
6194
6208
|
result: null;
|
|
6195
6209
|
action_type: "ACTIVATE_CLIMATE_PRESET";
|
|
6196
6210
|
} | {
|
|
6197
|
-
error: null;
|
|
6198
6211
|
status: "pending";
|
|
6199
6212
|
action_attempt_id: string;
|
|
6213
|
+
error: null;
|
|
6200
6214
|
result: null;
|
|
6201
6215
|
action_type: "SIMULATE_KEYPAD_CODE_ENTRY";
|
|
6202
6216
|
} | {
|
|
6203
|
-
error: null;
|
|
6204
6217
|
status: "success";
|
|
6205
6218
|
action_attempt_id: string;
|
|
6219
|
+
error: null;
|
|
6206
6220
|
result: {};
|
|
6207
6221
|
action_type: "SIMULATE_KEYPAD_CODE_ENTRY";
|
|
6208
6222
|
} | {
|
|
6223
|
+
status: "error";
|
|
6224
|
+
action_attempt_id: string;
|
|
6209
6225
|
error: {
|
|
6210
|
-
type: string;
|
|
6211
6226
|
message: string;
|
|
6227
|
+
type: string;
|
|
6212
6228
|
};
|
|
6213
|
-
status: "error";
|
|
6214
|
-
action_attempt_id: string;
|
|
6215
6229
|
result: null;
|
|
6216
6230
|
action_type: "SIMULATE_KEYPAD_CODE_ENTRY";
|
|
6217
6231
|
} | {
|
|
6218
|
-
error: null;
|
|
6219
6232
|
status: "pending";
|
|
6220
6233
|
action_attempt_id: string;
|
|
6234
|
+
error: null;
|
|
6221
6235
|
result: null;
|
|
6222
6236
|
action_type: "SIMULATE_MANUAL_LOCK_VIA_KEYPAD";
|
|
6223
6237
|
} | {
|
|
6224
|
-
error: null;
|
|
6225
6238
|
status: "success";
|
|
6226
6239
|
action_attempt_id: string;
|
|
6240
|
+
error: null;
|
|
6227
6241
|
result: {};
|
|
6228
6242
|
action_type: "SIMULATE_MANUAL_LOCK_VIA_KEYPAD";
|
|
6229
6243
|
} | {
|
|
6244
|
+
status: "error";
|
|
6245
|
+
action_attempt_id: string;
|
|
6230
6246
|
error: {
|
|
6231
|
-
type: string;
|
|
6232
6247
|
message: string;
|
|
6248
|
+
type: string;
|
|
6233
6249
|
};
|
|
6234
|
-
status: "error";
|
|
6235
|
-
action_attempt_id: string;
|
|
6236
6250
|
result: null;
|
|
6237
6251
|
action_type: "SIMULATE_MANUAL_LOCK_VIA_KEYPAD";
|
|
6238
6252
|
} | {
|
|
6239
|
-
error: null;
|
|
6240
6253
|
status: "pending";
|
|
6241
6254
|
action_attempt_id: string;
|
|
6255
|
+
error: null;
|
|
6242
6256
|
result: null;
|
|
6243
6257
|
action_type: "PUSH_THERMOSTAT_PROGRAMS";
|
|
6244
6258
|
} | {
|
|
6245
|
-
error: null;
|
|
6246
6259
|
status: "success";
|
|
6247
6260
|
action_attempt_id: string;
|
|
6261
|
+
error: null;
|
|
6248
6262
|
result: {};
|
|
6249
6263
|
action_type: "PUSH_THERMOSTAT_PROGRAMS";
|
|
6250
6264
|
} | {
|
|
6265
|
+
status: "error";
|
|
6266
|
+
action_attempt_id: string;
|
|
6251
6267
|
error: {
|
|
6252
|
-
type: string;
|
|
6253
6268
|
message: string;
|
|
6269
|
+
type: string;
|
|
6254
6270
|
};
|
|
6255
|
-
status: "error";
|
|
6256
|
-
action_attempt_id: string;
|
|
6257
6271
|
result: null;
|
|
6258
6272
|
action_type: "PUSH_THERMOSTAT_PROGRAMS";
|
|
6259
6273
|
} | {
|
|
6260
|
-
error: null;
|
|
6261
6274
|
status: "pending";
|
|
6262
6275
|
action_attempt_id: string;
|
|
6276
|
+
error: null;
|
|
6263
6277
|
result: null;
|
|
6264
6278
|
action_type: "SYNC_ACCESS_CODES";
|
|
6265
6279
|
} | {
|
|
6266
|
-
error: null;
|
|
6267
6280
|
status: "success";
|
|
6268
6281
|
action_attempt_id: string;
|
|
6282
|
+
error: null;
|
|
6269
6283
|
result: {};
|
|
6270
6284
|
action_type: "SYNC_ACCESS_CODES";
|
|
6271
6285
|
} | {
|
|
6286
|
+
status: "error";
|
|
6287
|
+
action_attempt_id: string;
|
|
6272
6288
|
error: {
|
|
6273
|
-
type: string;
|
|
6274
6289
|
message: string;
|
|
6290
|
+
type: string;
|
|
6275
6291
|
};
|
|
6276
|
-
status: "error";
|
|
6277
|
-
action_attempt_id: string;
|
|
6278
6292
|
result: null;
|
|
6279
6293
|
action_type: "SYNC_ACCESS_CODES";
|
|
6280
6294
|
} | {
|
|
6281
|
-
error: null;
|
|
6282
6295
|
status: "pending";
|
|
6283
6296
|
action_attempt_id: string;
|
|
6297
|
+
error: null;
|
|
6284
6298
|
result: null;
|
|
6285
6299
|
action_type: "CREATE_ACCESS_CODE";
|
|
6286
6300
|
} | {
|
|
6287
|
-
error: null;
|
|
6288
6301
|
status: "success";
|
|
6289
6302
|
action_attempt_id: string;
|
|
6303
|
+
error: null;
|
|
6290
6304
|
result: {
|
|
6291
6305
|
access_code?: any;
|
|
6292
6306
|
};
|
|
6293
6307
|
action_type: "CREATE_ACCESS_CODE";
|
|
6294
6308
|
} | {
|
|
6309
|
+
status: "error";
|
|
6310
|
+
action_attempt_id: string;
|
|
6295
6311
|
error: {
|
|
6296
|
-
type: string;
|
|
6297
6312
|
message: string;
|
|
6313
|
+
type: string;
|
|
6298
6314
|
};
|
|
6299
|
-
status: "error";
|
|
6300
|
-
action_attempt_id: string;
|
|
6301
6315
|
result: null;
|
|
6302
6316
|
action_type: "CREATE_ACCESS_CODE";
|
|
6303
6317
|
} | {
|
|
6304
|
-
error: null;
|
|
6305
6318
|
status: "pending";
|
|
6306
6319
|
action_attempt_id: string;
|
|
6320
|
+
error: null;
|
|
6307
6321
|
result: null;
|
|
6308
6322
|
action_type: "DELETE_ACCESS_CODE";
|
|
6309
6323
|
} | {
|
|
6310
|
-
error: null;
|
|
6311
6324
|
status: "success";
|
|
6312
6325
|
action_attempt_id: string;
|
|
6326
|
+
error: null;
|
|
6313
6327
|
result: {};
|
|
6314
6328
|
action_type: "DELETE_ACCESS_CODE";
|
|
6315
6329
|
} | {
|
|
6330
|
+
status: "error";
|
|
6331
|
+
action_attempt_id: string;
|
|
6316
6332
|
error: {
|
|
6317
|
-
type: string;
|
|
6318
6333
|
message: string;
|
|
6334
|
+
type: string;
|
|
6319
6335
|
};
|
|
6320
|
-
status: "error";
|
|
6321
|
-
action_attempt_id: string;
|
|
6322
6336
|
result: null;
|
|
6323
6337
|
action_type: "DELETE_ACCESS_CODE";
|
|
6324
6338
|
} | {
|
|
6325
|
-
error: null;
|
|
6326
6339
|
status: "pending";
|
|
6327
6340
|
action_attempt_id: string;
|
|
6341
|
+
error: null;
|
|
6328
6342
|
result: null;
|
|
6329
6343
|
action_type: "UPDATE_ACCESS_CODE";
|
|
6330
6344
|
} | {
|
|
6331
|
-
error: null;
|
|
6332
6345
|
status: "success";
|
|
6333
6346
|
action_attempt_id: string;
|
|
6347
|
+
error: null;
|
|
6334
6348
|
result: {
|
|
6335
6349
|
access_code?: any;
|
|
6336
6350
|
};
|
|
6337
6351
|
action_type: "UPDATE_ACCESS_CODE";
|
|
6338
6352
|
} | {
|
|
6353
|
+
status: "error";
|
|
6354
|
+
action_attempt_id: string;
|
|
6339
6355
|
error: {
|
|
6340
|
-
type: string;
|
|
6341
6356
|
message: string;
|
|
6357
|
+
type: string;
|
|
6342
6358
|
};
|
|
6343
|
-
status: "error";
|
|
6344
|
-
action_attempt_id: string;
|
|
6345
6359
|
result: null;
|
|
6346
6360
|
action_type: "UPDATE_ACCESS_CODE";
|
|
6347
6361
|
} | {
|
|
6348
|
-
error: null;
|
|
6349
6362
|
status: "pending";
|
|
6350
6363
|
action_attempt_id: string;
|
|
6364
|
+
error: null;
|
|
6351
6365
|
result: null;
|
|
6352
6366
|
action_type: "CREATE_NOISE_THRESHOLD";
|
|
6353
6367
|
} | {
|
|
6354
|
-
error: null;
|
|
6355
6368
|
status: "success";
|
|
6356
6369
|
action_attempt_id: string;
|
|
6370
|
+
error: null;
|
|
6357
6371
|
result: {
|
|
6358
6372
|
noise_threshold?: any;
|
|
6359
6373
|
};
|
|
6360
6374
|
action_type: "CREATE_NOISE_THRESHOLD";
|
|
6361
6375
|
} | {
|
|
6376
|
+
status: "error";
|
|
6377
|
+
action_attempt_id: string;
|
|
6362
6378
|
error: {
|
|
6363
|
-
type: string;
|
|
6364
6379
|
message: string;
|
|
6380
|
+
type: string;
|
|
6365
6381
|
};
|
|
6366
|
-
status: "error";
|
|
6367
|
-
action_attempt_id: string;
|
|
6368
6382
|
result: null;
|
|
6369
6383
|
action_type: "CREATE_NOISE_THRESHOLD";
|
|
6370
6384
|
} | {
|
|
6371
|
-
error: null;
|
|
6372
6385
|
status: "pending";
|
|
6373
6386
|
action_attempt_id: string;
|
|
6387
|
+
error: null;
|
|
6374
6388
|
result: null;
|
|
6375
6389
|
action_type: "DELETE_NOISE_THRESHOLD";
|
|
6376
6390
|
} | {
|
|
6377
|
-
error: null;
|
|
6378
6391
|
status: "success";
|
|
6379
6392
|
action_attempt_id: string;
|
|
6393
|
+
error: null;
|
|
6380
6394
|
result: {};
|
|
6381
6395
|
action_type: "DELETE_NOISE_THRESHOLD";
|
|
6382
6396
|
} | {
|
|
6397
|
+
status: "error";
|
|
6398
|
+
action_attempt_id: string;
|
|
6383
6399
|
error: {
|
|
6384
|
-
type: string;
|
|
6385
6400
|
message: string;
|
|
6401
|
+
type: string;
|
|
6386
6402
|
};
|
|
6387
|
-
status: "error";
|
|
6388
|
-
action_attempt_id: string;
|
|
6389
6403
|
result: null;
|
|
6390
6404
|
action_type: "DELETE_NOISE_THRESHOLD";
|
|
6391
6405
|
} | {
|
|
6392
|
-
error: null;
|
|
6393
6406
|
status: "pending";
|
|
6394
6407
|
action_attempt_id: string;
|
|
6408
|
+
error: null;
|
|
6395
6409
|
result: null;
|
|
6396
6410
|
action_type: "UPDATE_NOISE_THRESHOLD";
|
|
6397
6411
|
} | {
|
|
6398
|
-
error: null;
|
|
6399
6412
|
status: "success";
|
|
6400
6413
|
action_attempt_id: string;
|
|
6414
|
+
error: null;
|
|
6401
6415
|
result: {
|
|
6402
6416
|
noise_threshold?: any;
|
|
6403
6417
|
};
|
|
6404
6418
|
action_type: "UPDATE_NOISE_THRESHOLD";
|
|
6405
6419
|
} | {
|
|
6420
|
+
status: "error";
|
|
6421
|
+
action_attempt_id: string;
|
|
6406
6422
|
error: {
|
|
6407
|
-
type: string;
|
|
6408
6423
|
message: string;
|
|
6424
|
+
type: string;
|
|
6409
6425
|
};
|
|
6410
|
-
status: "error";
|
|
6411
|
-
action_attempt_id: string;
|
|
6412
6426
|
result: null;
|
|
6413
6427
|
action_type: "UPDATE_NOISE_THRESHOLD";
|
|
6414
6428
|
}>(error: unknown) => error is SeamActionAttemptTimeoutError<T>;
|
|
@@ -6520,4 +6534,4 @@ declare const isPublishableKey: (token: string) => boolean;
|
|
|
6520
6534
|
declare const isConsoleSessionToken: (token: string) => boolean;
|
|
6521
6535
|
declare const isPersonalAccessToken: (token: string) => boolean;
|
|
6522
6536
|
|
|
6523
|
-
export { type AccessCodesCreateBody, type AccessCodesCreateMultipleBody, type AccessCodesCreateMultipleOptions, type AccessCodesCreateMultipleParameters, type AccessCodesCreateMultipleRequest, type AccessCodesCreateMultipleResponse, type AccessCodesCreateOptions, type AccessCodesCreateParameters, type AccessCodesCreateRequest, type AccessCodesCreateResponse, type AccessCodesDeleteOptions, type AccessCodesDeleteParameters, type AccessCodesDeleteParams, type AccessCodesDeleteRequest, type AccessCodesDeleteResponse, type AccessCodesGenerateCodeOptions, type AccessCodesGenerateCodeParameters, type AccessCodesGenerateCodeParams, type AccessCodesGenerateCodeRequest, type AccessCodesGenerateCodeResponse, type AccessCodesGetOptions, type AccessCodesGetParameters, type AccessCodesGetParams, type AccessCodesGetRequest, type AccessCodesGetResponse, type AccessCodesListOptions, type AccessCodesListParameters, type AccessCodesListParams, type AccessCodesListRequest, type AccessCodesListResponse, type AccessCodesPullBackupAccessCodeBody, type AccessCodesPullBackupAccessCodeOptions, type AccessCodesPullBackupAccessCodeParameters, type AccessCodesPullBackupAccessCodeRequest, type AccessCodesPullBackupAccessCodeResponse, type AccessCodesReportDeviceConstraintsBody, type AccessCodesReportDeviceConstraintsOptions, type AccessCodesReportDeviceConstraintsParameters, type AccessCodesReportDeviceConstraintsRequest, type AccessCodesReportDeviceConstraintsResponse, type AccessCodesSimulateCreateUnmanagedAccessCodeBody, type AccessCodesSimulateCreateUnmanagedAccessCodeOptions, type AccessCodesSimulateCreateUnmanagedAccessCodeParameters, type AccessCodesSimulateCreateUnmanagedAccessCodeRequest, type AccessCodesSimulateCreateUnmanagedAccessCodeResponse, type AccessCodesUnmanagedConvertToManagedBody, type AccessCodesUnmanagedConvertToManagedOptions, type AccessCodesUnmanagedConvertToManagedParameters, type AccessCodesUnmanagedConvertToManagedRequest, type AccessCodesUnmanagedConvertToManagedResponse, type AccessCodesUnmanagedDeleteOptions, type AccessCodesUnmanagedDeleteParameters, type AccessCodesUnmanagedDeleteParams, type AccessCodesUnmanagedDeleteRequest, type AccessCodesUnmanagedDeleteResponse, type AccessCodesUnmanagedGetOptions, type AccessCodesUnmanagedGetParameters, type AccessCodesUnmanagedGetParams, type AccessCodesUnmanagedGetRequest, type AccessCodesUnmanagedGetResponse, type AccessCodesUnmanagedListOptions, type AccessCodesUnmanagedListParameters, type AccessCodesUnmanagedListParams, type AccessCodesUnmanagedListRequest, type AccessCodesUnmanagedListResponse, type AccessCodesUnmanagedUpdateBody, type AccessCodesUnmanagedUpdateOptions, type AccessCodesUnmanagedUpdateParameters, type AccessCodesUnmanagedUpdateRequest, type AccessCodesUnmanagedUpdateResponse, type AccessCodesUpdateBody, type AccessCodesUpdateMultipleBody, type AccessCodesUpdateMultipleOptions, type AccessCodesUpdateMultipleParameters, type AccessCodesUpdateMultipleRequest, type AccessCodesUpdateMultipleResponse, type AccessCodesUpdateOptions, type AccessCodesUpdateParameters, type AccessCodesUpdateRequest, type AccessCodesUpdateResponse, type AccessGrantsCreateBody, type AccessGrantsCreateOptions, type AccessGrantsCreateParameters, type AccessGrantsCreateRequest, type AccessGrantsCreateResponse, type AccessGrantsDeleteOptions, type AccessGrantsDeleteParameters, type AccessGrantsDeleteParams, type AccessGrantsDeleteRequest, type AccessGrantsDeleteResponse, type AccessGrantsGetOptions, type AccessGrantsGetParameters, type AccessGrantsGetParams, type AccessGrantsGetRelatedOptions, type AccessGrantsGetRelatedParameters, type AccessGrantsGetRelatedParams, type AccessGrantsGetRelatedRequest, type AccessGrantsGetRelatedResponse, type AccessGrantsGetRequest, type AccessGrantsGetResponse, type AccessGrantsListOptions, type AccessGrantsListParameters, type AccessGrantsListParams, type AccessGrantsListRequest, type AccessGrantsListResponse, type AccessGrantsUpdateBody, type AccessGrantsUpdateOptions, type AccessGrantsUpdateParameters, type AccessGrantsUpdateRequest, type AccessGrantsUpdateResponse, type AccessMethodsDeleteOptions, type AccessMethodsDeleteParameters, type AccessMethodsDeleteParams, type AccessMethodsDeleteRequest, type AccessMethodsDeleteResponse, type AccessMethodsEncodeBody, type AccessMethodsEncodeOptions, type AccessMethodsEncodeParameters, type AccessMethodsEncodeRequest, type AccessMethodsEncodeResponse, type AccessMethodsGetOptions, type AccessMethodsGetParameters, type AccessMethodsGetParams, type AccessMethodsGetRelatedOptions, type AccessMethodsGetRelatedParameters, type AccessMethodsGetRelatedParams, type AccessMethodsGetRelatedRequest, type AccessMethodsGetRelatedResponse, type AccessMethodsGetRequest, type AccessMethodsGetResponse, type AccessMethodsListOptions, type AccessMethodsListParameters, type AccessMethodsListParams, type AccessMethodsListRequest, type AccessMethodsListResponse, type AcsAccessGroupsAddUserBody, type AcsAccessGroupsAddUserOptions, type AcsAccessGroupsAddUserParameters, type AcsAccessGroupsAddUserRequest, type AcsAccessGroupsAddUserResponse, type AcsAccessGroupsGetOptions, type AcsAccessGroupsGetParameters, type AcsAccessGroupsGetParams, type AcsAccessGroupsGetRequest, type AcsAccessGroupsGetResponse, type AcsAccessGroupsListAccessibleEntrancesOptions, type AcsAccessGroupsListAccessibleEntrancesParameters, type AcsAccessGroupsListAccessibleEntrancesParams, type AcsAccessGroupsListAccessibleEntrancesRequest, type AcsAccessGroupsListAccessibleEntrancesResponse, type AcsAccessGroupsListOptions, type AcsAccessGroupsListParameters, type AcsAccessGroupsListParams, type AcsAccessGroupsListRequest, type AcsAccessGroupsListResponse, type AcsAccessGroupsListUsersOptions, type AcsAccessGroupsListUsersParameters, type AcsAccessGroupsListUsersParams, type AcsAccessGroupsListUsersRequest, type AcsAccessGroupsListUsersResponse, type AcsAccessGroupsRemoveUserOptions, type AcsAccessGroupsRemoveUserParameters, type AcsAccessGroupsRemoveUserParams, type AcsAccessGroupsRemoveUserRequest, type AcsAccessGroupsRemoveUserResponse, type AcsAccessGroupsUnmanagedGetOptions, type AcsAccessGroupsUnmanagedGetParameters, type AcsAccessGroupsUnmanagedGetParams, type AcsAccessGroupsUnmanagedGetRequest, type AcsAccessGroupsUnmanagedGetResponse, type AcsAccessGroupsUnmanagedListOptions, type AcsAccessGroupsUnmanagedListParameters, type AcsAccessGroupsUnmanagedListParams, type AcsAccessGroupsUnmanagedListRequest, type AcsAccessGroupsUnmanagedListResponse, type AcsCredentialPoolsListOptions, type AcsCredentialPoolsListParameters, type AcsCredentialPoolsListParams, type AcsCredentialPoolsListRequest, type AcsCredentialPoolsListResponse, type AcsCredentialProvisioningAutomationsLaunchBody, type AcsCredentialProvisioningAutomationsLaunchOptions, type AcsCredentialProvisioningAutomationsLaunchParameters, type AcsCredentialProvisioningAutomationsLaunchRequest, type AcsCredentialProvisioningAutomationsLaunchResponse, type AcsCredentialsAssignBody, type AcsCredentialsAssignOptions, type AcsCredentialsAssignParameters, type AcsCredentialsAssignRequest, type AcsCredentialsAssignResponse, type AcsCredentialsCreateBody, type AcsCredentialsCreateOfflineCodeBody, type AcsCredentialsCreateOfflineCodeOptions, type AcsCredentialsCreateOfflineCodeParameters, type AcsCredentialsCreateOfflineCodeRequest, type AcsCredentialsCreateOfflineCodeResponse, type AcsCredentialsCreateOptions, type AcsCredentialsCreateParameters, type AcsCredentialsCreateRequest, type AcsCredentialsCreateResponse, type AcsCredentialsDeleteOptions, type AcsCredentialsDeleteParameters, type AcsCredentialsDeleteParams, type AcsCredentialsDeleteRequest, type AcsCredentialsDeleteResponse, type AcsCredentialsGetOptions, type AcsCredentialsGetParameters, type AcsCredentialsGetParams, type AcsCredentialsGetRequest, type AcsCredentialsGetResponse, type AcsCredentialsListAccessibleEntrancesOptions, type AcsCredentialsListAccessibleEntrancesParameters, type AcsCredentialsListAccessibleEntrancesParams, type AcsCredentialsListAccessibleEntrancesRequest, type AcsCredentialsListAccessibleEntrancesResponse, type AcsCredentialsListOptions, type AcsCredentialsListParameters, type AcsCredentialsListParams, type AcsCredentialsListRequest, type AcsCredentialsListResponse, type AcsCredentialsUnassignBody, type AcsCredentialsUnassignOptions, type AcsCredentialsUnassignParameters, type AcsCredentialsUnassignRequest, type AcsCredentialsUnassignResponse, type AcsCredentialsUnmanagedGetOptions, type AcsCredentialsUnmanagedGetParameters, type AcsCredentialsUnmanagedGetParams, type AcsCredentialsUnmanagedGetRequest, type AcsCredentialsUnmanagedGetResponse, type AcsCredentialsUnmanagedListOptions, type AcsCredentialsUnmanagedListParameters, type AcsCredentialsUnmanagedListParams, type AcsCredentialsUnmanagedListRequest, type AcsCredentialsUnmanagedListResponse, type AcsCredentialsUpdateBody, type AcsCredentialsUpdateOptions, type AcsCredentialsUpdateParameters, type AcsCredentialsUpdateRequest, type AcsCredentialsUpdateResponse, type AcsEncodersEncodeCredentialBody, type AcsEncodersEncodeCredentialOptions, type AcsEncodersEncodeCredentialParameters, type AcsEncodersEncodeCredentialRequest, type AcsEncodersEncodeCredentialResponse, type AcsEncodersGetOptions, type AcsEncodersGetParameters, type AcsEncodersGetParams, type AcsEncodersGetRequest, type AcsEncodersGetResponse, type AcsEncodersListOptions, type AcsEncodersListParameters, type AcsEncodersListParams, type AcsEncodersListRequest, type AcsEncodersListResponse, type AcsEncodersScanCredentialBody, type AcsEncodersScanCredentialOptions, type AcsEncodersScanCredentialParameters, type AcsEncodersScanCredentialRequest, type AcsEncodersScanCredentialResponse, type AcsEncodersSimulateNextCredentialEncodeWillFailBody, type AcsEncodersSimulateNextCredentialEncodeWillFailOptions, type AcsEncodersSimulateNextCredentialEncodeWillFailParameters, type AcsEncodersSimulateNextCredentialEncodeWillFailRequest, type AcsEncodersSimulateNextCredentialEncodeWillFailResponse, type AcsEncodersSimulateNextCredentialEncodeWillSucceedBody, type AcsEncodersSimulateNextCredentialEncodeWillSucceedOptions, type AcsEncodersSimulateNextCredentialEncodeWillSucceedParameters, type AcsEncodersSimulateNextCredentialEncodeWillSucceedRequest, type AcsEncodersSimulateNextCredentialEncodeWillSucceedResponse, type AcsEncodersSimulateNextCredentialScanWillFailBody, type AcsEncodersSimulateNextCredentialScanWillFailOptions, type AcsEncodersSimulateNextCredentialScanWillFailParameters, type AcsEncodersSimulateNextCredentialScanWillFailRequest, type AcsEncodersSimulateNextCredentialScanWillFailResponse, type AcsEncodersSimulateNextCredentialScanWillSucceedBody, type AcsEncodersSimulateNextCredentialScanWillSucceedOptions, type AcsEncodersSimulateNextCredentialScanWillSucceedParameters, type AcsEncodersSimulateNextCredentialScanWillSucceedRequest, type AcsEncodersSimulateNextCredentialScanWillSucceedResponse, type AcsEntrancesGetOptions, type AcsEntrancesGetParameters, type AcsEntrancesGetParams, type AcsEntrancesGetRequest, type AcsEntrancesGetResponse, type AcsEntrancesGrantAccessBody, type AcsEntrancesGrantAccessOptions, type AcsEntrancesGrantAccessParameters, type AcsEntrancesGrantAccessRequest, type AcsEntrancesGrantAccessResponse, type AcsEntrancesListCredentialsWithAccessOptions, type AcsEntrancesListCredentialsWithAccessParameters, type AcsEntrancesListCredentialsWithAccessParams, type AcsEntrancesListCredentialsWithAccessRequest, type AcsEntrancesListCredentialsWithAccessResponse, type AcsEntrancesListOptions, type AcsEntrancesListParameters, type AcsEntrancesListParams, type AcsEntrancesListRequest, type AcsEntrancesListResponse, type AcsSystemsGetOptions, type AcsSystemsGetParameters, type AcsSystemsGetParams, type AcsSystemsGetRequest, type AcsSystemsGetResponse, type AcsSystemsListCompatibleCredentialManagerAcsSystemsOptions, type AcsSystemsListCompatibleCredentialManagerAcsSystemsParameters, type AcsSystemsListCompatibleCredentialManagerAcsSystemsParams, type AcsSystemsListCompatibleCredentialManagerAcsSystemsRequest, type AcsSystemsListCompatibleCredentialManagerAcsSystemsResponse, type AcsSystemsListOptions, type AcsSystemsListParameters, type AcsSystemsListParams, type AcsSystemsListRequest, type AcsSystemsListResponse, type AcsUsersAddToAccessGroupBody, type AcsUsersAddToAccessGroupOptions, type AcsUsersAddToAccessGroupParameters, type AcsUsersAddToAccessGroupRequest, type AcsUsersAddToAccessGroupResponse, type AcsUsersCreateBody, type AcsUsersCreateOptions, type AcsUsersCreateParameters, type AcsUsersCreateRequest, type AcsUsersCreateResponse, type AcsUsersDeleteOptions, type AcsUsersDeleteParameters, type AcsUsersDeleteParams, type AcsUsersDeleteRequest, type AcsUsersDeleteResponse, type AcsUsersGetOptions, type AcsUsersGetParameters, type AcsUsersGetParams, type AcsUsersGetRequest, type AcsUsersGetResponse, type AcsUsersListAccessibleEntrancesOptions, type AcsUsersListAccessibleEntrancesParameters, type AcsUsersListAccessibleEntrancesParams, type AcsUsersListAccessibleEntrancesRequest, type AcsUsersListAccessibleEntrancesResponse, type AcsUsersListOptions, type AcsUsersListParameters, type AcsUsersListParams, type AcsUsersListRequest, type AcsUsersListResponse, type AcsUsersRemoveFromAccessGroupOptions, type AcsUsersRemoveFromAccessGroupParameters, type AcsUsersRemoveFromAccessGroupParams, type AcsUsersRemoveFromAccessGroupRequest, type AcsUsersRemoveFromAccessGroupResponse, type AcsUsersRevokeAccessToAllEntrancesBody, type AcsUsersRevokeAccessToAllEntrancesOptions, type AcsUsersRevokeAccessToAllEntrancesParameters, type AcsUsersRevokeAccessToAllEntrancesRequest, type AcsUsersRevokeAccessToAllEntrancesResponse, type AcsUsersSuspendBody, type AcsUsersSuspendOptions, type AcsUsersSuspendParameters, type AcsUsersSuspendRequest, type AcsUsersSuspendResponse, type AcsUsersUnmanagedGetOptions, type AcsUsersUnmanagedGetParameters, type AcsUsersUnmanagedGetParams, type AcsUsersUnmanagedGetRequest, type AcsUsersUnmanagedGetResponse, type AcsUsersUnmanagedListOptions, type AcsUsersUnmanagedListParameters, type AcsUsersUnmanagedListParams, type AcsUsersUnmanagedListRequest, type AcsUsersUnmanagedListResponse, type AcsUsersUnsuspendBody, type AcsUsersUnsuspendOptions, type AcsUsersUnsuspendParameters, type AcsUsersUnsuspendRequest, type AcsUsersUnsuspendResponse, type AcsUsersUpdateBody, type AcsUsersUpdateOptions, type AcsUsersUpdateParameters, type AcsUsersUpdateRequest, type AcsUsersUpdateResponse, type ActionAttemptsGetOptions, type ActionAttemptsGetParameters, type ActionAttemptsGetParams, type ActionAttemptsGetRequest, type ActionAttemptsGetResponse, type ActionAttemptsListOptions, type ActionAttemptsListParameters, type ActionAttemptsListParams, type ActionAttemptsListRequest, type ActionAttemptsListResponse, type BridgesGetOptions, type BridgesGetParameters, type BridgesGetParams, type BridgesGetRequest, type BridgesGetResponse, type BridgesListOptions, type BridgesListParameters, type BridgesListParams, type BridgesListRequest, type BridgesListResponse, type ClientSessionsCreateBody, type ClientSessionsCreateOptions, type ClientSessionsCreateParameters, type ClientSessionsCreateRequest, type ClientSessionsCreateResponse, type ClientSessionsDeleteOptions, type ClientSessionsDeleteParameters, type ClientSessionsDeleteParams, type ClientSessionsDeleteRequest, type ClientSessionsDeleteResponse, type ClientSessionsGetOptions, type ClientSessionsGetOrCreateBody, type ClientSessionsGetOrCreateOptions, type ClientSessionsGetOrCreateParameters, type ClientSessionsGetOrCreateRequest, type ClientSessionsGetOrCreateResponse, type ClientSessionsGetParameters, type ClientSessionsGetParams, type ClientSessionsGetRequest, type ClientSessionsGetResponse, type ClientSessionsGrantAccessBody, type ClientSessionsGrantAccessOptions, type ClientSessionsGrantAccessParameters, type ClientSessionsGrantAccessRequest, type ClientSessionsGrantAccessResponse, type ClientSessionsListOptions, type ClientSessionsListParameters, type ClientSessionsListParams, type ClientSessionsListRequest, type ClientSessionsListResponse, type ClientSessionsRevokeBody, type ClientSessionsRevokeOptions, type ClientSessionsRevokeParameters, type ClientSessionsRevokeRequest, type ClientSessionsRevokeResponse, type ConnectWebviewsCreateBody, type ConnectWebviewsCreateOptions, type ConnectWebviewsCreateParameters, type ConnectWebviewsCreateRequest, type ConnectWebviewsCreateResponse, type ConnectWebviewsDeleteOptions, type ConnectWebviewsDeleteParameters, type ConnectWebviewsDeleteParams, type ConnectWebviewsDeleteRequest, type ConnectWebviewsDeleteResponse, type ConnectWebviewsGetOptions, type ConnectWebviewsGetParameters, type ConnectWebviewsGetParams, type ConnectWebviewsGetRequest, type ConnectWebviewsGetResponse, type ConnectWebviewsListOptions, type ConnectWebviewsListParameters, type ConnectWebviewsListParams, type ConnectWebviewsListRequest, type ConnectWebviewsListResponse, type ConnectedAccountsDeleteOptions, type ConnectedAccountsDeleteParameters, type ConnectedAccountsDeleteParams, type ConnectedAccountsDeleteRequest, type ConnectedAccountsDeleteResponse, type ConnectedAccountsGetOptions, type ConnectedAccountsGetParameters, type ConnectedAccountsGetParams, type ConnectedAccountsGetRequest, type ConnectedAccountsGetResponse, type ConnectedAccountsListOptions, type ConnectedAccountsListParameters, type ConnectedAccountsListParams, type ConnectedAccountsListRequest, type ConnectedAccountsListResponse, type ConnectedAccountsSyncBody, type ConnectedAccountsSyncOptions, type ConnectedAccountsSyncParameters, type ConnectedAccountsSyncRequest, type ConnectedAccountsSyncResponse, type ConnectedAccountsUpdateBody, type ConnectedAccountsUpdateOptions, type ConnectedAccountsUpdateParameters, type ConnectedAccountsUpdateRequest, type ConnectedAccountsUpdateResponse, type CustomersCreatePortalBody, type CustomersCreatePortalOptions, type CustomersCreatePortalParameters, type CustomersCreatePortalRequest, type CustomersCreatePortalResponse, type CustomersPushDataBody, type CustomersPushDataOptions, type CustomersPushDataParameters, type CustomersPushDataRequest, type CustomersPushDataResponse, type DevicesDeleteOptions, type DevicesDeleteParameters, type DevicesDeleteParams, type DevicesDeleteRequest, type DevicesDeleteResponse, type DevicesGetOptions, type DevicesGetParameters, type DevicesGetParams, type DevicesGetRequest, type DevicesGetResponse, type DevicesListDeviceProvidersOptions, type DevicesListDeviceProvidersParameters, type DevicesListDeviceProvidersParams, type DevicesListDeviceProvidersRequest, type DevicesListDeviceProvidersResponse, type DevicesListOptions, type DevicesListParameters, type DevicesListParams, type DevicesListRequest, type DevicesListResponse, type DevicesSimulateConnectBody, type DevicesSimulateConnectOptions, type DevicesSimulateConnectParameters, type DevicesSimulateConnectRequest, type DevicesSimulateConnectResponse, type DevicesSimulateConnectToHubBody, type DevicesSimulateConnectToHubOptions, type DevicesSimulateConnectToHubParameters, type DevicesSimulateConnectToHubRequest, type DevicesSimulateConnectToHubResponse, type DevicesSimulateDisconnectBody, type DevicesSimulateDisconnectFromHubBody, type DevicesSimulateDisconnectFromHubOptions, type DevicesSimulateDisconnectFromHubParameters, type DevicesSimulateDisconnectFromHubRequest, type DevicesSimulateDisconnectFromHubResponse, type DevicesSimulateDisconnectOptions, type DevicesSimulateDisconnectParameters, type DevicesSimulateDisconnectRequest, type DevicesSimulateDisconnectResponse, type DevicesSimulateRemoveBody, type DevicesSimulateRemoveOptions, type DevicesSimulateRemoveParameters, type DevicesSimulateRemoveRequest, type DevicesSimulateRemoveResponse, type DevicesUnmanagedGetOptions, type DevicesUnmanagedGetParameters, type DevicesUnmanagedGetParams, type DevicesUnmanagedGetRequest, type DevicesUnmanagedGetResponse, type DevicesUnmanagedListOptions, type DevicesUnmanagedListParameters, type DevicesUnmanagedListParams, type DevicesUnmanagedListRequest, type DevicesUnmanagedListResponse, type DevicesUnmanagedUpdateBody, type DevicesUnmanagedUpdateOptions, type DevicesUnmanagedUpdateParameters, type DevicesUnmanagedUpdateRequest, type DevicesUnmanagedUpdateResponse, type DevicesUpdateBody, type DevicesUpdateOptions, type DevicesUpdateParameters, type DevicesUpdateRequest, type DevicesUpdateResponse, type EventsGetOptions, type EventsGetParameters, type EventsGetParams, type EventsGetRequest, type EventsGetResponse, type EventsListOptions, type EventsListParameters, type EventsListParams, type EventsListRequest, type EventsListResponse, type InstantKeysGetOptions, type InstantKeysGetParameters, type InstantKeysGetParams, type InstantKeysGetRequest, type InstantKeysGetResponse, type InstantKeysListOptions, type InstantKeysListParameters, type InstantKeysListParams, type InstantKeysListRequest, type InstantKeysListResponse, type LocksGetOptions, type LocksGetParameters, type LocksGetParams, type LocksGetRequest, type LocksGetResponse, type LocksListOptions, type LocksListParameters, type LocksListParams, type LocksListRequest, type LocksListResponse, type LocksLockDoorBody, type LocksLockDoorOptions, type LocksLockDoorParameters, type LocksLockDoorRequest, type LocksLockDoorResponse, type LocksSimulateKeypadCodeEntryBody, type LocksSimulateKeypadCodeEntryOptions, type LocksSimulateKeypadCodeEntryParameters, type LocksSimulateKeypadCodeEntryRequest, type LocksSimulateKeypadCodeEntryResponse, type LocksSimulateManualLockViaKeypadBody, type LocksSimulateManualLockViaKeypadOptions, type LocksSimulateManualLockViaKeypadParameters, type LocksSimulateManualLockViaKeypadRequest, type LocksSimulateManualLockViaKeypadResponse, type LocksUnlockDoorBody, type LocksUnlockDoorOptions, type LocksUnlockDoorParameters, type LocksUnlockDoorRequest, type LocksUnlockDoorResponse, type NoiseSensorsListOptions, type NoiseSensorsListParameters, type NoiseSensorsListParams, type NoiseSensorsListRequest, type NoiseSensorsListResponse, type NoiseSensorsNoiseThresholdsCreateBody, type NoiseSensorsNoiseThresholdsCreateOptions, type NoiseSensorsNoiseThresholdsCreateParameters, type NoiseSensorsNoiseThresholdsCreateRequest, type NoiseSensorsNoiseThresholdsCreateResponse, type NoiseSensorsNoiseThresholdsDeleteOptions, type NoiseSensorsNoiseThresholdsDeleteParameters, type NoiseSensorsNoiseThresholdsDeleteParams, type NoiseSensorsNoiseThresholdsDeleteRequest, type NoiseSensorsNoiseThresholdsDeleteResponse, type NoiseSensorsNoiseThresholdsGetOptions, type NoiseSensorsNoiseThresholdsGetParameters, type NoiseSensorsNoiseThresholdsGetParams, type NoiseSensorsNoiseThresholdsGetRequest, type NoiseSensorsNoiseThresholdsGetResponse, type NoiseSensorsNoiseThresholdsListOptions, type NoiseSensorsNoiseThresholdsListParameters, type NoiseSensorsNoiseThresholdsListParams, type NoiseSensorsNoiseThresholdsListRequest, type NoiseSensorsNoiseThresholdsListResponse, type NoiseSensorsNoiseThresholdsUpdateBody, type NoiseSensorsNoiseThresholdsUpdateOptions, type NoiseSensorsNoiseThresholdsUpdateParameters, type NoiseSensorsNoiseThresholdsUpdateRequest, type NoiseSensorsNoiseThresholdsUpdateResponse, type NoiseSensorsSimulateTriggerNoiseThresholdBody, type NoiseSensorsSimulateTriggerNoiseThresholdOptions, type NoiseSensorsSimulateTriggerNoiseThresholdParameters, type NoiseSensorsSimulateTriggerNoiseThresholdRequest, type NoiseSensorsSimulateTriggerNoiseThresholdResponse, type PhonesDeactivateOptions, type PhonesDeactivateParameters, type PhonesDeactivateParams, type PhonesDeactivateRequest, type PhonesDeactivateResponse, type PhonesGetOptions, type PhonesGetParameters, type PhonesGetParams, type PhonesGetRequest, type PhonesGetResponse, type PhonesListOptions, type PhonesListParameters, type PhonesListParams, type PhonesListRequest, type PhonesListResponse, type PhonesSimulateCreateSandboxPhoneBody, type PhonesSimulateCreateSandboxPhoneOptions, type PhonesSimulateCreateSandboxPhoneParameters, type PhonesSimulateCreateSandboxPhoneRequest, type PhonesSimulateCreateSandboxPhoneResponse, SeamActionAttemptError, SeamActionAttemptFailedError, SeamActionAttemptTimeoutError, type SeamConsoleV1GetResourceLocatorOptions, type SeamConsoleV1GetResourceLocatorParameters, type SeamConsoleV1GetResourceLocatorParams, type SeamConsoleV1GetResourceLocatorRequest, type SeamConsoleV1GetResourceLocatorResponse, type SeamCustomerV1AutomationRunsListOptions, type SeamCustomerV1AutomationRunsListParameters, type SeamCustomerV1AutomationRunsListParams, type SeamCustomerV1AutomationRunsListRequest, type SeamCustomerV1AutomationRunsListResponse, type SeamCustomerV1AutomationsDeleteOptions, type SeamCustomerV1AutomationsDeleteParameters, type SeamCustomerV1AutomationsDeleteParams, type SeamCustomerV1AutomationsDeleteRequest, type SeamCustomerV1AutomationsDeleteResponse, type SeamCustomerV1AutomationsGetOptions, type SeamCustomerV1AutomationsGetParameters, type SeamCustomerV1AutomationsGetParams, type SeamCustomerV1AutomationsGetRequest, type SeamCustomerV1AutomationsGetResponse, type SeamCustomerV1AutomationsUpdateBody, type SeamCustomerV1AutomationsUpdateOptions, type SeamCustomerV1AutomationsUpdateParameters, type SeamCustomerV1AutomationsUpdateRequest, type SeamCustomerV1AutomationsUpdateResponse, type SeamCustomerV1PortalsGetOptions, type SeamCustomerV1PortalsGetParameters, type SeamCustomerV1PortalsGetParams, type SeamCustomerV1PortalsGetRequest, type SeamCustomerV1PortalsGetResponse, type SeamCustomerV1SettingsUpdateBody, type SeamCustomerV1SettingsUpdateOptions, type SeamCustomerV1SettingsUpdateParameters, type SeamCustomerV1SettingsUpdateRequest, type SeamCustomerV1SettingsUpdateResponse, SeamHttp, SeamHttpAccessCodes, SeamHttpAccessCodesSimulate, SeamHttpAccessCodesUnmanaged, SeamHttpAccessGrants, SeamHttpAccessMethods, SeamHttpAcs, SeamHttpAcsAccessGroups, SeamHttpAcsAccessGroupsUnmanaged, SeamHttpAcsCredentialPools, SeamHttpAcsCredentialProvisioningAutomations, SeamHttpAcsCredentials, SeamHttpAcsCredentialsUnmanaged, SeamHttpAcsEncoders, SeamHttpAcsEncodersSimulate, SeamHttpAcsEntrances, SeamHttpAcsSystems, SeamHttpAcsUsers, SeamHttpAcsUsersUnmanaged, SeamHttpActionAttempts, SeamHttpApiError, SeamHttpBridges, SeamHttpClientSessions, SeamHttpConnectWebviews, SeamHttpConnectedAccounts, SeamHttpCustomers, SeamHttpDevices, SeamHttpDevicesSimulate, SeamHttpDevicesUnmanaged, type SeamHttpEndpointMutationPaths, type SeamHttpEndpointPaginatedQueryPaths, type SeamHttpEndpointQueryPaths, type SeamHttpEndpointWithoutWorkspaceMutationPaths, type SeamHttpEndpointWithoutWorkspaceQueryPaths, SeamHttpEndpoints, SeamHttpEndpointsWithoutWorkspace, SeamHttpEvents, type SeamHttpFromPublishableKeyOptions, SeamHttpInstantKeys, SeamHttpInvalidInputError, SeamHttpInvalidOptionsError, SeamHttpInvalidTokenError, SeamHttpLocks, SeamHttpLocksSimulate, SeamHttpMultiWorkspace, SeamHttpNoiseSensors, SeamHttpNoiseSensorsNoiseThresholds, SeamHttpNoiseSensorsSimulate, type SeamHttpOptions, type SeamHttpOptionsFromEnv, type SeamHttpOptionsWithApiKey, type SeamHttpOptionsWithClient, type SeamHttpOptionsWithClientSessionToken, type SeamHttpOptionsWithConsoleSessionToken, type SeamHttpOptionsWithPersonalAccessToken, SeamHttpPhones, SeamHttpPhonesSimulate, SeamHttpRequest, type SeamHttpRequestOptions, SeamHttpSeamConsole, SeamHttpSeamConsoleV1, SeamHttpSeamCustomerV1, SeamHttpSeamCustomerV1AutomationRuns, SeamHttpSeamCustomerV1Automations, SeamHttpSeamCustomerV1Portals, SeamHttpSeamCustomerV1Settings, SeamHttpSeamPartnerV1BuildingBlocks, SeamHttpSeamPartnerV1BuildingBlocksSpaces, SeamHttpSpaces, SeamHttpThermostats, SeamHttpThermostatsDailyPrograms, SeamHttpThermostatsSchedules, SeamHttpThermostatsSimulate, SeamHttpUnauthorizedError, SeamHttpUnstableAccessGrants, SeamHttpUnstableAccessMethods, SeamHttpUnstableLocations, SeamHttpUnstablePartner, SeamHttpUnstablePartnerBuildingBlocks, SeamHttpUserIdentities, SeamHttpUserIdentitiesEnrollmentAutomations, SeamHttpWebhooks, SeamHttpWithoutWorkspace, SeamHttpWithoutWorkspaceInvalidOptionsError, type SeamHttpWithoutWorkspaceOptions, type SeamHttpWithoutWorkspaceOptionsFromEnv, type SeamHttpWithoutWorkspaceOptionsWithClient, type SeamHttpWithoutWorkspaceOptionsWithConsoleSessionToken, type SeamHttpWithoutWorkspaceOptionsWithPersonalAccessToken, SeamHttpWorkspaces, type SeamPageCursor, SeamPaginator, type SeamPartnerV1BuildingBlocksSpacesAutoMapOptions, type SeamPartnerV1BuildingBlocksSpacesAutoMapParameters, type SeamPartnerV1BuildingBlocksSpacesAutoMapParams, type SeamPartnerV1BuildingBlocksSpacesAutoMapRequest, type SeamPartnerV1BuildingBlocksSpacesAutoMapResponse, type SpacesAddAcsEntrancesBody, type SpacesAddAcsEntrancesOptions, type SpacesAddAcsEntrancesParameters, type SpacesAddAcsEntrancesRequest, type SpacesAddAcsEntrancesResponse, type SpacesAddDevicesBody, type SpacesAddDevicesOptions, type SpacesAddDevicesParameters, type SpacesAddDevicesRequest, type SpacesAddDevicesResponse, type SpacesCreateBody, type SpacesCreateOptions, type SpacesCreateParameters, type SpacesCreateRequest, type SpacesCreateResponse, type SpacesDeleteOptions, type SpacesDeleteParameters, type SpacesDeleteParams, type SpacesDeleteRequest, type SpacesDeleteResponse, type SpacesGetOptions, type SpacesGetParameters, type SpacesGetParams, type SpacesGetRelatedOptions, type SpacesGetRelatedParameters, type SpacesGetRelatedParams, type SpacesGetRelatedRequest, type SpacesGetRelatedResponse, type SpacesGetRequest, type SpacesGetResponse, type SpacesListOptions, type SpacesListParameters, type SpacesListParams, type SpacesListRequest, type SpacesListResponse, type SpacesRemoveAcsEntrancesOptions, type SpacesRemoveAcsEntrancesParameters, type SpacesRemoveAcsEntrancesParams, type SpacesRemoveAcsEntrancesRequest, type SpacesRemoveAcsEntrancesResponse, type SpacesRemoveDevicesOptions, type SpacesRemoveDevicesParameters, type SpacesRemoveDevicesParams, type SpacesRemoveDevicesRequest, type SpacesRemoveDevicesResponse, type SpacesUpdateBody, type SpacesUpdateOptions, type SpacesUpdateParameters, type SpacesUpdateRequest, type SpacesUpdateResponse, type ThermostatsActivateClimatePresetBody, type ThermostatsActivateClimatePresetOptions, type ThermostatsActivateClimatePresetParameters, type ThermostatsActivateClimatePresetRequest, type ThermostatsActivateClimatePresetResponse, type ThermostatsCoolBody, type ThermostatsCoolOptions, type ThermostatsCoolParameters, type ThermostatsCoolRequest, type ThermostatsCoolResponse, type ThermostatsCreateClimatePresetBody, type ThermostatsCreateClimatePresetOptions, type ThermostatsCreateClimatePresetParameters, type ThermostatsCreateClimatePresetRequest, type ThermostatsCreateClimatePresetResponse, type ThermostatsDailyProgramsCreateBody, type ThermostatsDailyProgramsCreateOptions, type ThermostatsDailyProgramsCreateParameters, type ThermostatsDailyProgramsCreateRequest, type ThermostatsDailyProgramsCreateResponse, type ThermostatsDailyProgramsDeleteOptions, type ThermostatsDailyProgramsDeleteParameters, type ThermostatsDailyProgramsDeleteParams, type ThermostatsDailyProgramsDeleteRequest, type ThermostatsDailyProgramsDeleteResponse, type ThermostatsDailyProgramsUpdateBody, type ThermostatsDailyProgramsUpdateOptions, type ThermostatsDailyProgramsUpdateParameters, type ThermostatsDailyProgramsUpdateRequest, type ThermostatsDailyProgramsUpdateResponse, type ThermostatsDeleteClimatePresetOptions, type ThermostatsDeleteClimatePresetParameters, type ThermostatsDeleteClimatePresetParams, type ThermostatsDeleteClimatePresetRequest, type ThermostatsDeleteClimatePresetResponse, type ThermostatsGetOptions, type ThermostatsGetParameters, type ThermostatsGetParams, type ThermostatsGetRequest, type ThermostatsGetResponse, type ThermostatsHeatBody, type ThermostatsHeatCoolBody, type ThermostatsHeatCoolOptions, type ThermostatsHeatCoolParameters, type ThermostatsHeatCoolRequest, type ThermostatsHeatCoolResponse, type ThermostatsHeatOptions, type ThermostatsHeatParameters, type ThermostatsHeatRequest, type ThermostatsHeatResponse, type ThermostatsListOptions, type ThermostatsListParameters, type ThermostatsListParams, type ThermostatsListRequest, type ThermostatsListResponse, type ThermostatsOffBody, type ThermostatsOffOptions, type ThermostatsOffParameters, type ThermostatsOffRequest, type ThermostatsOffResponse, type ThermostatsSchedulesCreateBody, type ThermostatsSchedulesCreateOptions, type ThermostatsSchedulesCreateParameters, type ThermostatsSchedulesCreateRequest, type ThermostatsSchedulesCreateResponse, type ThermostatsSchedulesDeleteOptions, type ThermostatsSchedulesDeleteParameters, type ThermostatsSchedulesDeleteParams, type ThermostatsSchedulesDeleteRequest, type ThermostatsSchedulesDeleteResponse, type ThermostatsSchedulesGetOptions, type ThermostatsSchedulesGetParameters, type ThermostatsSchedulesGetParams, type ThermostatsSchedulesGetRequest, type ThermostatsSchedulesGetResponse, type ThermostatsSchedulesListOptions, type ThermostatsSchedulesListParameters, type ThermostatsSchedulesListParams, type ThermostatsSchedulesListRequest, type ThermostatsSchedulesListResponse, type ThermostatsSchedulesUpdateBody, type ThermostatsSchedulesUpdateOptions, type ThermostatsSchedulesUpdateParameters, type ThermostatsSchedulesUpdateRequest, type ThermostatsSchedulesUpdateResponse, type ThermostatsSetFallbackClimatePresetBody, type ThermostatsSetFallbackClimatePresetOptions, type ThermostatsSetFallbackClimatePresetParameters, type ThermostatsSetFallbackClimatePresetRequest, type ThermostatsSetFallbackClimatePresetResponse, type ThermostatsSetFanModeBody, type ThermostatsSetFanModeOptions, type ThermostatsSetFanModeParameters, type ThermostatsSetFanModeRequest, type ThermostatsSetFanModeResponse, type ThermostatsSetHvacModeBody, type ThermostatsSetHvacModeOptions, type ThermostatsSetHvacModeParameters, type ThermostatsSetHvacModeRequest, type ThermostatsSetHvacModeResponse, type ThermostatsSetTemperatureThresholdBody, type ThermostatsSetTemperatureThresholdOptions, type ThermostatsSetTemperatureThresholdParameters, type ThermostatsSetTemperatureThresholdRequest, type ThermostatsSetTemperatureThresholdResponse, type ThermostatsSimulateHvacModeAdjustedBody, type ThermostatsSimulateHvacModeAdjustedOptions, type ThermostatsSimulateHvacModeAdjustedParameters, type ThermostatsSimulateHvacModeAdjustedRequest, type ThermostatsSimulateHvacModeAdjustedResponse, type ThermostatsSimulateTemperatureReachedBody, type ThermostatsSimulateTemperatureReachedOptions, type ThermostatsSimulateTemperatureReachedParameters, type ThermostatsSimulateTemperatureReachedRequest, type ThermostatsSimulateTemperatureReachedResponse, type ThermostatsUpdateClimatePresetBody, type ThermostatsUpdateClimatePresetOptions, type ThermostatsUpdateClimatePresetParameters, type ThermostatsUpdateClimatePresetRequest, type ThermostatsUpdateClimatePresetResponse, type ThermostatsUpdateWeeklyProgramBody, type ThermostatsUpdateWeeklyProgramOptions, type ThermostatsUpdateWeeklyProgramParameters, type ThermostatsUpdateWeeklyProgramRequest, type ThermostatsUpdateWeeklyProgramResponse, type UnstableAccessGrantsCreateBody, type UnstableAccessGrantsCreateOptions, type UnstableAccessGrantsCreateParameters, type UnstableAccessGrantsCreateRequest, type UnstableAccessGrantsCreateResponse, type UnstableAccessGrantsDeleteOptions, type UnstableAccessGrantsDeleteParameters, type UnstableAccessGrantsDeleteParams, type UnstableAccessGrantsDeleteRequest, type UnstableAccessGrantsDeleteResponse, type UnstableAccessGrantsGetOptions, type UnstableAccessGrantsGetParameters, type UnstableAccessGrantsGetParams, type UnstableAccessGrantsGetRequest, type UnstableAccessGrantsGetResponse, type UnstableAccessGrantsListOptions, type UnstableAccessGrantsListParameters, type UnstableAccessGrantsListParams, type UnstableAccessGrantsListRequest, type UnstableAccessGrantsListResponse, type UnstableAccessMethodsDeleteOptions, type UnstableAccessMethodsDeleteParameters, type UnstableAccessMethodsDeleteParams, type UnstableAccessMethodsDeleteRequest, type UnstableAccessMethodsDeleteResponse, type UnstableAccessMethodsGetOptions, type UnstableAccessMethodsGetParameters, type UnstableAccessMethodsGetParams, type UnstableAccessMethodsGetRequest, type UnstableAccessMethodsGetResponse, type UnstableAccessMethodsListOptions, type UnstableAccessMethodsListParameters, type UnstableAccessMethodsListParams, type UnstableAccessMethodsListRequest, type UnstableAccessMethodsListResponse, type UnstableLocationsAddAcsEntrancesBody, type UnstableLocationsAddAcsEntrancesOptions, type UnstableLocationsAddAcsEntrancesParameters, type UnstableLocationsAddAcsEntrancesRequest, type UnstableLocationsAddAcsEntrancesResponse, type UnstableLocationsAddDevicesBody, type UnstableLocationsAddDevicesOptions, type UnstableLocationsAddDevicesParameters, type UnstableLocationsAddDevicesRequest, type UnstableLocationsAddDevicesResponse, type UnstableLocationsCreateBody, type UnstableLocationsCreateOptions, type UnstableLocationsCreateParameters, type UnstableLocationsCreateRequest, type UnstableLocationsCreateResponse, type UnstableLocationsDeleteOptions, type UnstableLocationsDeleteParameters, type UnstableLocationsDeleteParams, type UnstableLocationsDeleteRequest, type UnstableLocationsDeleteResponse, type UnstableLocationsGetOptions, type UnstableLocationsGetParameters, type UnstableLocationsGetParams, type UnstableLocationsGetRequest, type UnstableLocationsGetResponse, type UnstableLocationsListOptions, type UnstableLocationsListParameters, type UnstableLocationsListParams, type UnstableLocationsListRequest, type UnstableLocationsListResponse, type UnstableLocationsRemoveAcsEntrancesOptions, type UnstableLocationsRemoveAcsEntrancesParameters, type UnstableLocationsRemoveAcsEntrancesParams, type UnstableLocationsRemoveAcsEntrancesRequest, type UnstableLocationsRemoveAcsEntrancesResponse, type UnstableLocationsRemoveDevicesOptions, type UnstableLocationsRemoveDevicesParameters, type UnstableLocationsRemoveDevicesParams, type UnstableLocationsRemoveDevicesRequest, type UnstableLocationsRemoveDevicesResponse, type UnstableLocationsUpdateBody, type UnstableLocationsUpdateOptions, type UnstableLocationsUpdateParameters, type UnstableLocationsUpdateRequest, type UnstableLocationsUpdateResponse, type UnstablePartnerBuildingBlocksConnectAccountsBody, type UnstablePartnerBuildingBlocksConnectAccountsOptions, type UnstablePartnerBuildingBlocksConnectAccountsParameters, type UnstablePartnerBuildingBlocksConnectAccountsRequest, type UnstablePartnerBuildingBlocksConnectAccountsResponse, type UnstablePartnerBuildingBlocksGenerateMagicLinkOptions, type UnstablePartnerBuildingBlocksGenerateMagicLinkParameters, type UnstablePartnerBuildingBlocksGenerateMagicLinkParams, type UnstablePartnerBuildingBlocksGenerateMagicLinkRequest, type UnstablePartnerBuildingBlocksGenerateMagicLinkResponse, type UnstablePartnerBuildingBlocksManageDevicesBody, type UnstablePartnerBuildingBlocksManageDevicesOptions, type UnstablePartnerBuildingBlocksManageDevicesParameters, type UnstablePartnerBuildingBlocksManageDevicesRequest, type UnstablePartnerBuildingBlocksManageDevicesResponse, type UnstablePartnerBuildingBlocksOrganizeSpacesBody, type UnstablePartnerBuildingBlocksOrganizeSpacesOptions, type UnstablePartnerBuildingBlocksOrganizeSpacesParameters, type UnstablePartnerBuildingBlocksOrganizeSpacesRequest, type UnstablePartnerBuildingBlocksOrganizeSpacesResponse, type UserIdentitiesAddAcsUserBody, type UserIdentitiesAddAcsUserOptions, type UserIdentitiesAddAcsUserParameters, type UserIdentitiesAddAcsUserRequest, type UserIdentitiesAddAcsUserResponse, type UserIdentitiesCreateBody, type UserIdentitiesCreateOptions, type UserIdentitiesCreateParameters, type UserIdentitiesCreateRequest, type UserIdentitiesCreateResponse, type UserIdentitiesDeleteOptions, type UserIdentitiesDeleteParameters, type UserIdentitiesDeleteParams, type UserIdentitiesDeleteRequest, type UserIdentitiesDeleteResponse, type UserIdentitiesEnrollmentAutomationsDeleteOptions, type UserIdentitiesEnrollmentAutomationsDeleteParameters, type UserIdentitiesEnrollmentAutomationsDeleteParams, type UserIdentitiesEnrollmentAutomationsDeleteRequest, type UserIdentitiesEnrollmentAutomationsDeleteResponse, type UserIdentitiesEnrollmentAutomationsGetOptions, type UserIdentitiesEnrollmentAutomationsGetParameters, type UserIdentitiesEnrollmentAutomationsGetParams, type UserIdentitiesEnrollmentAutomationsGetRequest, type UserIdentitiesEnrollmentAutomationsGetResponse, type UserIdentitiesEnrollmentAutomationsLaunchBody, type UserIdentitiesEnrollmentAutomationsLaunchOptions, type UserIdentitiesEnrollmentAutomationsLaunchParameters, type UserIdentitiesEnrollmentAutomationsLaunchRequest, type UserIdentitiesEnrollmentAutomationsLaunchResponse, type UserIdentitiesEnrollmentAutomationsListOptions, type UserIdentitiesEnrollmentAutomationsListParameters, type UserIdentitiesEnrollmentAutomationsListParams, type UserIdentitiesEnrollmentAutomationsListRequest, type UserIdentitiesEnrollmentAutomationsListResponse, type UserIdentitiesGenerateInstantKeyBody, type UserIdentitiesGenerateInstantKeyOptions, type UserIdentitiesGenerateInstantKeyParameters, type UserIdentitiesGenerateInstantKeyRequest, type UserIdentitiesGenerateInstantKeyResponse, type UserIdentitiesGetOptions, type UserIdentitiesGetParameters, type UserIdentitiesGetParams, type UserIdentitiesGetRequest, type UserIdentitiesGetResponse, type UserIdentitiesGrantAccessToDeviceBody, type UserIdentitiesGrantAccessToDeviceOptions, type UserIdentitiesGrantAccessToDeviceParameters, type UserIdentitiesGrantAccessToDeviceRequest, type UserIdentitiesGrantAccessToDeviceResponse, type UserIdentitiesListAccessibleDevicesOptions, type UserIdentitiesListAccessibleDevicesParameters, type UserIdentitiesListAccessibleDevicesParams, type UserIdentitiesListAccessibleDevicesRequest, type UserIdentitiesListAccessibleDevicesResponse, type UserIdentitiesListAcsSystemsOptions, type UserIdentitiesListAcsSystemsParameters, type UserIdentitiesListAcsSystemsParams, type UserIdentitiesListAcsSystemsRequest, type UserIdentitiesListAcsSystemsResponse, type UserIdentitiesListAcsUsersOptions, type UserIdentitiesListAcsUsersParameters, type UserIdentitiesListAcsUsersParams, type UserIdentitiesListAcsUsersRequest, type UserIdentitiesListAcsUsersResponse, type UserIdentitiesListOptions, type UserIdentitiesListParameters, type UserIdentitiesListParams, type UserIdentitiesListRequest, type UserIdentitiesListResponse, type UserIdentitiesRemoveAcsUserOptions, type UserIdentitiesRemoveAcsUserParameters, type UserIdentitiesRemoveAcsUserParams, type UserIdentitiesRemoveAcsUserRequest, type UserIdentitiesRemoveAcsUserResponse, type UserIdentitiesRevokeAccessToDeviceOptions, type UserIdentitiesRevokeAccessToDeviceParameters, type UserIdentitiesRevokeAccessToDeviceParams, type UserIdentitiesRevokeAccessToDeviceRequest, type UserIdentitiesRevokeAccessToDeviceResponse, type UserIdentitiesUpdateBody, type UserIdentitiesUpdateOptions, type UserIdentitiesUpdateParameters, type UserIdentitiesUpdateRequest, type UserIdentitiesUpdateResponse, type WebhooksCreateBody, type WebhooksCreateOptions, type WebhooksCreateParameters, type WebhooksCreateRequest, type WebhooksCreateResponse, type WebhooksDeleteOptions, type WebhooksDeleteParameters, type WebhooksDeleteParams, type WebhooksDeleteRequest, type WebhooksDeleteResponse, type WebhooksGetOptions, type WebhooksGetParameters, type WebhooksGetParams, type WebhooksGetRequest, type WebhooksGetResponse, type WebhooksListOptions, type WebhooksListParameters, type WebhooksListParams, type WebhooksListRequest, type WebhooksListResponse, type WebhooksUpdateBody, type WebhooksUpdateOptions, type WebhooksUpdateParameters, type WebhooksUpdateRequest, type WebhooksUpdateResponse, type WorkspacesCreateBody, type WorkspacesCreateOptions, type WorkspacesCreateParameters, type WorkspacesCreateRequest, type WorkspacesCreateResponse, type WorkspacesFindResourcesOptions, type WorkspacesFindResourcesParameters, type WorkspacesFindResourcesParams, type WorkspacesFindResourcesRequest, type WorkspacesFindResourcesResponse, type WorkspacesGetOptions, type WorkspacesGetParameters, type WorkspacesGetParams, type WorkspacesGetRequest, type WorkspacesGetResponse, type WorkspacesListOptions, type WorkspacesListParameters, type WorkspacesListParams, type WorkspacesListRequest, type WorkspacesListResponse, type WorkspacesResetSandboxBody, type WorkspacesResetSandboxOptions, type WorkspacesResetSandboxParameters, type WorkspacesResetSandboxRequest, type WorkspacesResetSandboxResponse, type WorkspacesUpdateBody, type WorkspacesUpdateOptions, type WorkspacesUpdateParameters, type WorkspacesUpdateRequest, type WorkspacesUpdateResponse, errorInterceptor, getOpenapiSchema, isApiKey, isClientSessionToken, isConsoleSessionToken, isPersonalAccessToken, isPublishableKey, isSeamActionAttemptError, isSeamActionAttemptFailedError, isSeamActionAttemptTimeoutError, isSeamHttpApiError, isSeamHttpInvalidInputError, isSeamHttpOptionsWithApiKey, isSeamHttpOptionsWithClient, isSeamHttpOptionsWithClientSessionToken, isSeamHttpOptionsWithConsoleSessionToken, isSeamHttpOptionsWithPersonalAccessToken, isSeamHttpUnauthorizedError, isSeamHttpWithoutWorkspaceOptionsWithClient, isSeamHttpWithoutWorkspaceOptionsWithConsoleSessionToken, isSeamHttpWithoutWorkspaceOptionsWithPersonalAccessToken };
|
|
6537
|
+
export { type AccessCodesCreateBody, type AccessCodesCreateMultipleBody, type AccessCodesCreateMultipleOptions, type AccessCodesCreateMultipleParameters, type AccessCodesCreateMultipleRequest, type AccessCodesCreateMultipleResponse, type AccessCodesCreateOptions, type AccessCodesCreateParameters, type AccessCodesCreateRequest, type AccessCodesCreateResponse, type AccessCodesDeleteOptions, type AccessCodesDeleteParameters, type AccessCodesDeleteParams, type AccessCodesDeleteRequest, type AccessCodesDeleteResponse, type AccessCodesGenerateCodeOptions, type AccessCodesGenerateCodeParameters, type AccessCodesGenerateCodeParams, type AccessCodesGenerateCodeRequest, type AccessCodesGenerateCodeResponse, type AccessCodesGetOptions, type AccessCodesGetParameters, type AccessCodesGetParams, type AccessCodesGetRequest, type AccessCodesGetResponse, type AccessCodesListOptions, type AccessCodesListParameters, type AccessCodesListParams, type AccessCodesListRequest, type AccessCodesListResponse, type AccessCodesPullBackupAccessCodeBody, type AccessCodesPullBackupAccessCodeOptions, type AccessCodesPullBackupAccessCodeParameters, type AccessCodesPullBackupAccessCodeRequest, type AccessCodesPullBackupAccessCodeResponse, type AccessCodesReportDeviceConstraintsBody, type AccessCodesReportDeviceConstraintsOptions, type AccessCodesReportDeviceConstraintsParameters, type AccessCodesReportDeviceConstraintsRequest, type AccessCodesReportDeviceConstraintsResponse, type AccessCodesSimulateCreateUnmanagedAccessCodeBody, type AccessCodesSimulateCreateUnmanagedAccessCodeOptions, type AccessCodesSimulateCreateUnmanagedAccessCodeParameters, type AccessCodesSimulateCreateUnmanagedAccessCodeRequest, type AccessCodesSimulateCreateUnmanagedAccessCodeResponse, type AccessCodesUnmanagedConvertToManagedBody, type AccessCodesUnmanagedConvertToManagedOptions, type AccessCodesUnmanagedConvertToManagedParameters, type AccessCodesUnmanagedConvertToManagedRequest, type AccessCodesUnmanagedConvertToManagedResponse, type AccessCodesUnmanagedDeleteOptions, type AccessCodesUnmanagedDeleteParameters, type AccessCodesUnmanagedDeleteParams, type AccessCodesUnmanagedDeleteRequest, type AccessCodesUnmanagedDeleteResponse, type AccessCodesUnmanagedGetOptions, type AccessCodesUnmanagedGetParameters, type AccessCodesUnmanagedGetParams, type AccessCodesUnmanagedGetRequest, type AccessCodesUnmanagedGetResponse, type AccessCodesUnmanagedListOptions, type AccessCodesUnmanagedListParameters, type AccessCodesUnmanagedListParams, type AccessCodesUnmanagedListRequest, type AccessCodesUnmanagedListResponse, type AccessCodesUnmanagedUpdateBody, type AccessCodesUnmanagedUpdateOptions, type AccessCodesUnmanagedUpdateParameters, type AccessCodesUnmanagedUpdateRequest, type AccessCodesUnmanagedUpdateResponse, type AccessCodesUpdateBody, type AccessCodesUpdateMultipleBody, type AccessCodesUpdateMultipleOptions, type AccessCodesUpdateMultipleParameters, type AccessCodesUpdateMultipleRequest, type AccessCodesUpdateMultipleResponse, type AccessCodesUpdateOptions, type AccessCodesUpdateParameters, type AccessCodesUpdateRequest, type AccessCodesUpdateResponse, type AccessGrantsCreateBody, type AccessGrantsCreateOptions, type AccessGrantsCreateParameters, type AccessGrantsCreateRequest, type AccessGrantsCreateResponse, type AccessGrantsDeleteOptions, type AccessGrantsDeleteParameters, type AccessGrantsDeleteParams, type AccessGrantsDeleteRequest, type AccessGrantsDeleteResponse, type AccessGrantsGetOptions, type AccessGrantsGetParameters, type AccessGrantsGetParams, type AccessGrantsGetRelatedOptions, type AccessGrantsGetRelatedParameters, type AccessGrantsGetRelatedParams, type AccessGrantsGetRelatedRequest, type AccessGrantsGetRelatedResponse, type AccessGrantsGetRequest, type AccessGrantsGetResponse, type AccessGrantsListOptions, type AccessGrantsListParameters, type AccessGrantsListParams, type AccessGrantsListRequest, type AccessGrantsListResponse, type AccessGrantsUpdateBody, type AccessGrantsUpdateOptions, type AccessGrantsUpdateParameters, type AccessGrantsUpdateRequest, type AccessGrantsUpdateResponse, type AccessMethodsDeleteOptions, type AccessMethodsDeleteParameters, type AccessMethodsDeleteParams, type AccessMethodsDeleteRequest, type AccessMethodsDeleteResponse, type AccessMethodsEncodeBody, type AccessMethodsEncodeOptions, type AccessMethodsEncodeParameters, type AccessMethodsEncodeRequest, type AccessMethodsEncodeResponse, type AccessMethodsGetOptions, type AccessMethodsGetParameters, type AccessMethodsGetParams, type AccessMethodsGetRelatedOptions, type AccessMethodsGetRelatedParameters, type AccessMethodsGetRelatedParams, type AccessMethodsGetRelatedRequest, type AccessMethodsGetRelatedResponse, type AccessMethodsGetRequest, type AccessMethodsGetResponse, type AccessMethodsListOptions, type AccessMethodsListParameters, type AccessMethodsListParams, type AccessMethodsListRequest, type AccessMethodsListResponse, type AcsAccessGroupsAddUserBody, type AcsAccessGroupsAddUserOptions, type AcsAccessGroupsAddUserParameters, type AcsAccessGroupsAddUserRequest, type AcsAccessGroupsAddUserResponse, type AcsAccessGroupsGetOptions, type AcsAccessGroupsGetParameters, type AcsAccessGroupsGetParams, type AcsAccessGroupsGetRequest, type AcsAccessGroupsGetResponse, type AcsAccessGroupsListAccessibleEntrancesOptions, type AcsAccessGroupsListAccessibleEntrancesParameters, type AcsAccessGroupsListAccessibleEntrancesParams, type AcsAccessGroupsListAccessibleEntrancesRequest, type AcsAccessGroupsListAccessibleEntrancesResponse, type AcsAccessGroupsListOptions, type AcsAccessGroupsListParameters, type AcsAccessGroupsListParams, type AcsAccessGroupsListRequest, type AcsAccessGroupsListResponse, type AcsAccessGroupsListUsersOptions, type AcsAccessGroupsListUsersParameters, type AcsAccessGroupsListUsersParams, type AcsAccessGroupsListUsersRequest, type AcsAccessGroupsListUsersResponse, type AcsAccessGroupsRemoveUserOptions, type AcsAccessGroupsRemoveUserParameters, type AcsAccessGroupsRemoveUserParams, type AcsAccessGroupsRemoveUserRequest, type AcsAccessGroupsRemoveUserResponse, type AcsAccessGroupsUnmanagedGetOptions, type AcsAccessGroupsUnmanagedGetParameters, type AcsAccessGroupsUnmanagedGetParams, type AcsAccessGroupsUnmanagedGetRequest, type AcsAccessGroupsUnmanagedGetResponse, type AcsAccessGroupsUnmanagedListOptions, type AcsAccessGroupsUnmanagedListParameters, type AcsAccessGroupsUnmanagedListParams, type AcsAccessGroupsUnmanagedListRequest, type AcsAccessGroupsUnmanagedListResponse, type AcsCredentialPoolsListOptions, type AcsCredentialPoolsListParameters, type AcsCredentialPoolsListParams, type AcsCredentialPoolsListRequest, type AcsCredentialPoolsListResponse, type AcsCredentialProvisioningAutomationsLaunchBody, type AcsCredentialProvisioningAutomationsLaunchOptions, type AcsCredentialProvisioningAutomationsLaunchParameters, type AcsCredentialProvisioningAutomationsLaunchRequest, type AcsCredentialProvisioningAutomationsLaunchResponse, type AcsCredentialsAssignBody, type AcsCredentialsAssignOptions, type AcsCredentialsAssignParameters, type AcsCredentialsAssignRequest, type AcsCredentialsAssignResponse, type AcsCredentialsCreateBody, type AcsCredentialsCreateOfflineCodeBody, type AcsCredentialsCreateOfflineCodeOptions, type AcsCredentialsCreateOfflineCodeParameters, type AcsCredentialsCreateOfflineCodeRequest, type AcsCredentialsCreateOfflineCodeResponse, type AcsCredentialsCreateOptions, type AcsCredentialsCreateParameters, type AcsCredentialsCreateRequest, type AcsCredentialsCreateResponse, type AcsCredentialsDeleteOptions, type AcsCredentialsDeleteParameters, type AcsCredentialsDeleteParams, type AcsCredentialsDeleteRequest, type AcsCredentialsDeleteResponse, type AcsCredentialsGetOptions, type AcsCredentialsGetParameters, type AcsCredentialsGetParams, type AcsCredentialsGetRequest, type AcsCredentialsGetResponse, type AcsCredentialsListAccessibleEntrancesOptions, type AcsCredentialsListAccessibleEntrancesParameters, type AcsCredentialsListAccessibleEntrancesParams, type AcsCredentialsListAccessibleEntrancesRequest, type AcsCredentialsListAccessibleEntrancesResponse, type AcsCredentialsListOptions, type AcsCredentialsListParameters, type AcsCredentialsListParams, type AcsCredentialsListRequest, type AcsCredentialsListResponse, type AcsCredentialsUnassignBody, type AcsCredentialsUnassignOptions, type AcsCredentialsUnassignParameters, type AcsCredentialsUnassignRequest, type AcsCredentialsUnassignResponse, type AcsCredentialsUnmanagedGetOptions, type AcsCredentialsUnmanagedGetParameters, type AcsCredentialsUnmanagedGetParams, type AcsCredentialsUnmanagedGetRequest, type AcsCredentialsUnmanagedGetResponse, type AcsCredentialsUnmanagedListOptions, type AcsCredentialsUnmanagedListParameters, type AcsCredentialsUnmanagedListParams, type AcsCredentialsUnmanagedListRequest, type AcsCredentialsUnmanagedListResponse, type AcsCredentialsUpdateBody, type AcsCredentialsUpdateOptions, type AcsCredentialsUpdateParameters, type AcsCredentialsUpdateRequest, type AcsCredentialsUpdateResponse, type AcsEncodersEncodeCredentialBody, type AcsEncodersEncodeCredentialOptions, type AcsEncodersEncodeCredentialParameters, type AcsEncodersEncodeCredentialRequest, type AcsEncodersEncodeCredentialResponse, type AcsEncodersGetOptions, type AcsEncodersGetParameters, type AcsEncodersGetParams, type AcsEncodersGetRequest, type AcsEncodersGetResponse, type AcsEncodersListOptions, type AcsEncodersListParameters, type AcsEncodersListParams, type AcsEncodersListRequest, type AcsEncodersListResponse, type AcsEncodersScanCredentialBody, type AcsEncodersScanCredentialOptions, type AcsEncodersScanCredentialParameters, type AcsEncodersScanCredentialRequest, type AcsEncodersScanCredentialResponse, type AcsEncodersSimulateNextCredentialEncodeWillFailBody, type AcsEncodersSimulateNextCredentialEncodeWillFailOptions, type AcsEncodersSimulateNextCredentialEncodeWillFailParameters, type AcsEncodersSimulateNextCredentialEncodeWillFailRequest, type AcsEncodersSimulateNextCredentialEncodeWillFailResponse, type AcsEncodersSimulateNextCredentialEncodeWillSucceedBody, type AcsEncodersSimulateNextCredentialEncodeWillSucceedOptions, type AcsEncodersSimulateNextCredentialEncodeWillSucceedParameters, type AcsEncodersSimulateNextCredentialEncodeWillSucceedRequest, type AcsEncodersSimulateNextCredentialEncodeWillSucceedResponse, type AcsEncodersSimulateNextCredentialScanWillFailBody, type AcsEncodersSimulateNextCredentialScanWillFailOptions, type AcsEncodersSimulateNextCredentialScanWillFailParameters, type AcsEncodersSimulateNextCredentialScanWillFailRequest, type AcsEncodersSimulateNextCredentialScanWillFailResponse, type AcsEncodersSimulateNextCredentialScanWillSucceedBody, type AcsEncodersSimulateNextCredentialScanWillSucceedOptions, type AcsEncodersSimulateNextCredentialScanWillSucceedParameters, type AcsEncodersSimulateNextCredentialScanWillSucceedRequest, type AcsEncodersSimulateNextCredentialScanWillSucceedResponse, type AcsEntrancesGetOptions, type AcsEntrancesGetParameters, type AcsEntrancesGetParams, type AcsEntrancesGetRequest, type AcsEntrancesGetResponse, type AcsEntrancesGrantAccessBody, type AcsEntrancesGrantAccessOptions, type AcsEntrancesGrantAccessParameters, type AcsEntrancesGrantAccessRequest, type AcsEntrancesGrantAccessResponse, type AcsEntrancesListCredentialsWithAccessOptions, type AcsEntrancesListCredentialsWithAccessParameters, type AcsEntrancesListCredentialsWithAccessParams, type AcsEntrancesListCredentialsWithAccessRequest, type AcsEntrancesListCredentialsWithAccessResponse, type AcsEntrancesListOptions, type AcsEntrancesListParameters, type AcsEntrancesListParams, type AcsEntrancesListRequest, type AcsEntrancesListResponse, type AcsSystemsGetOptions, type AcsSystemsGetParameters, type AcsSystemsGetParams, type AcsSystemsGetRequest, type AcsSystemsGetResponse, type AcsSystemsListCompatibleCredentialManagerAcsSystemsOptions, type AcsSystemsListCompatibleCredentialManagerAcsSystemsParameters, type AcsSystemsListCompatibleCredentialManagerAcsSystemsParams, type AcsSystemsListCompatibleCredentialManagerAcsSystemsRequest, type AcsSystemsListCompatibleCredentialManagerAcsSystemsResponse, type AcsSystemsListOptions, type AcsSystemsListParameters, type AcsSystemsListParams, type AcsSystemsListRequest, type AcsSystemsListResponse, type AcsUsersAddToAccessGroupBody, type AcsUsersAddToAccessGroupOptions, type AcsUsersAddToAccessGroupParameters, type AcsUsersAddToAccessGroupRequest, type AcsUsersAddToAccessGroupResponse, type AcsUsersCreateBody, type AcsUsersCreateOptions, type AcsUsersCreateParameters, type AcsUsersCreateRequest, type AcsUsersCreateResponse, type AcsUsersDeleteOptions, type AcsUsersDeleteParameters, type AcsUsersDeleteParams, type AcsUsersDeleteRequest, type AcsUsersDeleteResponse, type AcsUsersGetOptions, type AcsUsersGetParameters, type AcsUsersGetParams, type AcsUsersGetRequest, type AcsUsersGetResponse, type AcsUsersListAccessibleEntrancesOptions, type AcsUsersListAccessibleEntrancesParameters, type AcsUsersListAccessibleEntrancesParams, type AcsUsersListAccessibleEntrancesRequest, type AcsUsersListAccessibleEntrancesResponse, type AcsUsersListOptions, type AcsUsersListParameters, type AcsUsersListParams, type AcsUsersListRequest, type AcsUsersListResponse, type AcsUsersRemoveFromAccessGroupOptions, type AcsUsersRemoveFromAccessGroupParameters, type AcsUsersRemoveFromAccessGroupParams, type AcsUsersRemoveFromAccessGroupRequest, type AcsUsersRemoveFromAccessGroupResponse, type AcsUsersRevokeAccessToAllEntrancesBody, type AcsUsersRevokeAccessToAllEntrancesOptions, type AcsUsersRevokeAccessToAllEntrancesParameters, type AcsUsersRevokeAccessToAllEntrancesRequest, type AcsUsersRevokeAccessToAllEntrancesResponse, type AcsUsersSuspendBody, type AcsUsersSuspendOptions, type AcsUsersSuspendParameters, type AcsUsersSuspendRequest, type AcsUsersSuspendResponse, type AcsUsersUnmanagedGetOptions, type AcsUsersUnmanagedGetParameters, type AcsUsersUnmanagedGetParams, type AcsUsersUnmanagedGetRequest, type AcsUsersUnmanagedGetResponse, type AcsUsersUnmanagedListOptions, type AcsUsersUnmanagedListParameters, type AcsUsersUnmanagedListParams, type AcsUsersUnmanagedListRequest, type AcsUsersUnmanagedListResponse, type AcsUsersUnsuspendBody, type AcsUsersUnsuspendOptions, type AcsUsersUnsuspendParameters, type AcsUsersUnsuspendRequest, type AcsUsersUnsuspendResponse, type AcsUsersUpdateBody, type AcsUsersUpdateOptions, type AcsUsersUpdateParameters, type AcsUsersUpdateRequest, type AcsUsersUpdateResponse, type ActionAttemptsGetOptions, type ActionAttemptsGetParameters, type ActionAttemptsGetParams, type ActionAttemptsGetRequest, type ActionAttemptsGetResponse, type ActionAttemptsListOptions, type ActionAttemptsListParameters, type ActionAttemptsListParams, type ActionAttemptsListRequest, type ActionAttemptsListResponse, type BridgesGetOptions, type BridgesGetParameters, type BridgesGetParams, type BridgesGetRequest, type BridgesGetResponse, type BridgesListOptions, type BridgesListParameters, type BridgesListParams, type BridgesListRequest, type BridgesListResponse, type ClientSessionsCreateBody, type ClientSessionsCreateOptions, type ClientSessionsCreateParameters, type ClientSessionsCreateRequest, type ClientSessionsCreateResponse, type ClientSessionsDeleteOptions, type ClientSessionsDeleteParameters, type ClientSessionsDeleteParams, type ClientSessionsDeleteRequest, type ClientSessionsDeleteResponse, type ClientSessionsGetOptions, type ClientSessionsGetOrCreateBody, type ClientSessionsGetOrCreateOptions, type ClientSessionsGetOrCreateParameters, type ClientSessionsGetOrCreateRequest, type ClientSessionsGetOrCreateResponse, type ClientSessionsGetParameters, type ClientSessionsGetParams, type ClientSessionsGetRequest, type ClientSessionsGetResponse, type ClientSessionsGrantAccessBody, type ClientSessionsGrantAccessOptions, type ClientSessionsGrantAccessParameters, type ClientSessionsGrantAccessRequest, type ClientSessionsGrantAccessResponse, type ClientSessionsListOptions, type ClientSessionsListParameters, type ClientSessionsListParams, type ClientSessionsListRequest, type ClientSessionsListResponse, type ClientSessionsRevokeBody, type ClientSessionsRevokeOptions, type ClientSessionsRevokeParameters, type ClientSessionsRevokeRequest, type ClientSessionsRevokeResponse, type ConnectWebviewsCreateBody, type ConnectWebviewsCreateOptions, type ConnectWebviewsCreateParameters, type ConnectWebviewsCreateRequest, type ConnectWebviewsCreateResponse, type ConnectWebviewsDeleteOptions, type ConnectWebviewsDeleteParameters, type ConnectWebviewsDeleteParams, type ConnectWebviewsDeleteRequest, type ConnectWebviewsDeleteResponse, type ConnectWebviewsGetOptions, type ConnectWebviewsGetParameters, type ConnectWebviewsGetParams, type ConnectWebviewsGetRequest, type ConnectWebviewsGetResponse, type ConnectWebviewsListOptions, type ConnectWebviewsListParameters, type ConnectWebviewsListParams, type ConnectWebviewsListRequest, type ConnectWebviewsListResponse, type ConnectedAccountsDeleteOptions, type ConnectedAccountsDeleteParameters, type ConnectedAccountsDeleteParams, type ConnectedAccountsDeleteRequest, type ConnectedAccountsDeleteResponse, type ConnectedAccountsGetOptions, type ConnectedAccountsGetParameters, type ConnectedAccountsGetParams, type ConnectedAccountsGetRequest, type ConnectedAccountsGetResponse, type ConnectedAccountsListOptions, type ConnectedAccountsListParameters, type ConnectedAccountsListParams, type ConnectedAccountsListRequest, type ConnectedAccountsListResponse, type ConnectedAccountsSyncBody, type ConnectedAccountsSyncOptions, type ConnectedAccountsSyncParameters, type ConnectedAccountsSyncRequest, type ConnectedAccountsSyncResponse, type ConnectedAccountsUpdateBody, type ConnectedAccountsUpdateOptions, type ConnectedAccountsUpdateParameters, type ConnectedAccountsUpdateRequest, type ConnectedAccountsUpdateResponse, type CustomersCreatePortalBody, type CustomersCreatePortalOptions, type CustomersCreatePortalParameters, type CustomersCreatePortalRequest, type CustomersCreatePortalResponse, type CustomersPushDataBody, type CustomersPushDataOptions, type CustomersPushDataParameters, type CustomersPushDataRequest, type CustomersPushDataResponse, type DevicesDeleteOptions, type DevicesDeleteParameters, type DevicesDeleteParams, type DevicesDeleteRequest, type DevicesDeleteResponse, type DevicesGetOptions, type DevicesGetParameters, type DevicesGetParams, type DevicesGetRequest, type DevicesGetResponse, type DevicesListDeviceProvidersOptions, type DevicesListDeviceProvidersParameters, type DevicesListDeviceProvidersParams, type DevicesListDeviceProvidersRequest, type DevicesListDeviceProvidersResponse, type DevicesListOptions, type DevicesListParameters, type DevicesListParams, type DevicesListRequest, type DevicesListResponse, type DevicesSimulateConnectBody, type DevicesSimulateConnectOptions, type DevicesSimulateConnectParameters, type DevicesSimulateConnectRequest, type DevicesSimulateConnectResponse, type DevicesSimulateConnectToHubBody, type DevicesSimulateConnectToHubOptions, type DevicesSimulateConnectToHubParameters, type DevicesSimulateConnectToHubRequest, type DevicesSimulateConnectToHubResponse, type DevicesSimulateDisconnectBody, type DevicesSimulateDisconnectFromHubBody, type DevicesSimulateDisconnectFromHubOptions, type DevicesSimulateDisconnectFromHubParameters, type DevicesSimulateDisconnectFromHubRequest, type DevicesSimulateDisconnectFromHubResponse, type DevicesSimulateDisconnectOptions, type DevicesSimulateDisconnectParameters, type DevicesSimulateDisconnectRequest, type DevicesSimulateDisconnectResponse, type DevicesSimulateRemoveBody, type DevicesSimulateRemoveOptions, type DevicesSimulateRemoveParameters, type DevicesSimulateRemoveRequest, type DevicesSimulateRemoveResponse, type DevicesUnmanagedGetOptions, type DevicesUnmanagedGetParameters, type DevicesUnmanagedGetParams, type DevicesUnmanagedGetRequest, type DevicesUnmanagedGetResponse, type DevicesUnmanagedListOptions, type DevicesUnmanagedListParameters, type DevicesUnmanagedListParams, type DevicesUnmanagedListRequest, type DevicesUnmanagedListResponse, type DevicesUnmanagedUpdateBody, type DevicesUnmanagedUpdateOptions, type DevicesUnmanagedUpdateParameters, type DevicesUnmanagedUpdateRequest, type DevicesUnmanagedUpdateResponse, type DevicesUpdateBody, type DevicesUpdateOptions, type DevicesUpdateParameters, type DevicesUpdateRequest, type DevicesUpdateResponse, type EventsGetOptions, type EventsGetParameters, type EventsGetParams, type EventsGetRequest, type EventsGetResponse, type EventsListOptions, type EventsListParameters, type EventsListParams, type EventsListRequest, type EventsListResponse, type InstantKeysDeleteOptions, type InstantKeysDeleteParameters, type InstantKeysDeleteParams, type InstantKeysDeleteRequest, type InstantKeysDeleteResponse, type InstantKeysGetOptions, type InstantKeysGetParameters, type InstantKeysGetParams, type InstantKeysGetRequest, type InstantKeysGetResponse, type InstantKeysListOptions, type InstantKeysListParameters, type InstantKeysListParams, type InstantKeysListRequest, type InstantKeysListResponse, type LocksGetOptions, type LocksGetParameters, type LocksGetParams, type LocksGetRequest, type LocksGetResponse, type LocksListOptions, type LocksListParameters, type LocksListParams, type LocksListRequest, type LocksListResponse, type LocksLockDoorBody, type LocksLockDoorOptions, type LocksLockDoorParameters, type LocksLockDoorRequest, type LocksLockDoorResponse, type LocksSimulateKeypadCodeEntryBody, type LocksSimulateKeypadCodeEntryOptions, type LocksSimulateKeypadCodeEntryParameters, type LocksSimulateKeypadCodeEntryRequest, type LocksSimulateKeypadCodeEntryResponse, type LocksSimulateManualLockViaKeypadBody, type LocksSimulateManualLockViaKeypadOptions, type LocksSimulateManualLockViaKeypadParameters, type LocksSimulateManualLockViaKeypadRequest, type LocksSimulateManualLockViaKeypadResponse, type LocksUnlockDoorBody, type LocksUnlockDoorOptions, type LocksUnlockDoorParameters, type LocksUnlockDoorRequest, type LocksUnlockDoorResponse, type NoiseSensorsListOptions, type NoiseSensorsListParameters, type NoiseSensorsListParams, type NoiseSensorsListRequest, type NoiseSensorsListResponse, type NoiseSensorsNoiseThresholdsCreateBody, type NoiseSensorsNoiseThresholdsCreateOptions, type NoiseSensorsNoiseThresholdsCreateParameters, type NoiseSensorsNoiseThresholdsCreateRequest, type NoiseSensorsNoiseThresholdsCreateResponse, type NoiseSensorsNoiseThresholdsDeleteOptions, type NoiseSensorsNoiseThresholdsDeleteParameters, type NoiseSensorsNoiseThresholdsDeleteParams, type NoiseSensorsNoiseThresholdsDeleteRequest, type NoiseSensorsNoiseThresholdsDeleteResponse, type NoiseSensorsNoiseThresholdsGetOptions, type NoiseSensorsNoiseThresholdsGetParameters, type NoiseSensorsNoiseThresholdsGetParams, type NoiseSensorsNoiseThresholdsGetRequest, type NoiseSensorsNoiseThresholdsGetResponse, type NoiseSensorsNoiseThresholdsListOptions, type NoiseSensorsNoiseThresholdsListParameters, type NoiseSensorsNoiseThresholdsListParams, type NoiseSensorsNoiseThresholdsListRequest, type NoiseSensorsNoiseThresholdsListResponse, type NoiseSensorsNoiseThresholdsUpdateBody, type NoiseSensorsNoiseThresholdsUpdateOptions, type NoiseSensorsNoiseThresholdsUpdateParameters, type NoiseSensorsNoiseThresholdsUpdateRequest, type NoiseSensorsNoiseThresholdsUpdateResponse, type NoiseSensorsSimulateTriggerNoiseThresholdBody, type NoiseSensorsSimulateTriggerNoiseThresholdOptions, type NoiseSensorsSimulateTriggerNoiseThresholdParameters, type NoiseSensorsSimulateTriggerNoiseThresholdRequest, type NoiseSensorsSimulateTriggerNoiseThresholdResponse, type PhonesDeactivateOptions, type PhonesDeactivateParameters, type PhonesDeactivateParams, type PhonesDeactivateRequest, type PhonesDeactivateResponse, type PhonesGetOptions, type PhonesGetParameters, type PhonesGetParams, type PhonesGetRequest, type PhonesGetResponse, type PhonesListOptions, type PhonesListParameters, type PhonesListParams, type PhonesListRequest, type PhonesListResponse, type PhonesSimulateCreateSandboxPhoneBody, type PhonesSimulateCreateSandboxPhoneOptions, type PhonesSimulateCreateSandboxPhoneParameters, type PhonesSimulateCreateSandboxPhoneRequest, type PhonesSimulateCreateSandboxPhoneResponse, SeamActionAttemptError, SeamActionAttemptFailedError, SeamActionAttemptTimeoutError, type SeamConsoleV1GetResourceLocatorOptions, type SeamConsoleV1GetResourceLocatorParameters, type SeamConsoleV1GetResourceLocatorParams, type SeamConsoleV1GetResourceLocatorRequest, type SeamConsoleV1GetResourceLocatorResponse, type SeamCustomerV1AutomationRunsListOptions, type SeamCustomerV1AutomationRunsListParameters, type SeamCustomerV1AutomationRunsListParams, type SeamCustomerV1AutomationRunsListRequest, type SeamCustomerV1AutomationRunsListResponse, type SeamCustomerV1AutomationsDeleteOptions, type SeamCustomerV1AutomationsDeleteParameters, type SeamCustomerV1AutomationsDeleteParams, type SeamCustomerV1AutomationsDeleteRequest, type SeamCustomerV1AutomationsDeleteResponse, type SeamCustomerV1AutomationsGetOptions, type SeamCustomerV1AutomationsGetParameters, type SeamCustomerV1AutomationsGetParams, type SeamCustomerV1AutomationsGetRequest, type SeamCustomerV1AutomationsGetResponse, type SeamCustomerV1AutomationsUpdateBody, type SeamCustomerV1AutomationsUpdateOptions, type SeamCustomerV1AutomationsUpdateParameters, type SeamCustomerV1AutomationsUpdateRequest, type SeamCustomerV1AutomationsUpdateResponse, type SeamCustomerV1PortalsGetOptions, type SeamCustomerV1PortalsGetParameters, type SeamCustomerV1PortalsGetParams, type SeamCustomerV1PortalsGetRequest, type SeamCustomerV1PortalsGetResponse, type SeamCustomerV1SettingsUpdateBody, type SeamCustomerV1SettingsUpdateOptions, type SeamCustomerV1SettingsUpdateParameters, type SeamCustomerV1SettingsUpdateRequest, type SeamCustomerV1SettingsUpdateResponse, SeamHttp, SeamHttpAccessCodes, SeamHttpAccessCodesSimulate, SeamHttpAccessCodesUnmanaged, SeamHttpAccessGrants, SeamHttpAccessMethods, SeamHttpAcs, SeamHttpAcsAccessGroups, SeamHttpAcsAccessGroupsUnmanaged, SeamHttpAcsCredentialPools, SeamHttpAcsCredentialProvisioningAutomations, SeamHttpAcsCredentials, SeamHttpAcsCredentialsUnmanaged, SeamHttpAcsEncoders, SeamHttpAcsEncodersSimulate, SeamHttpAcsEntrances, SeamHttpAcsSystems, SeamHttpAcsUsers, SeamHttpAcsUsersUnmanaged, SeamHttpActionAttempts, SeamHttpApiError, SeamHttpBridges, SeamHttpClientSessions, SeamHttpConnectWebviews, SeamHttpConnectedAccounts, SeamHttpCustomers, SeamHttpDevices, SeamHttpDevicesSimulate, SeamHttpDevicesUnmanaged, type SeamHttpEndpointMutationPaths, type SeamHttpEndpointPaginatedQueryPaths, type SeamHttpEndpointQueryPaths, type SeamHttpEndpointWithoutWorkspaceMutationPaths, type SeamHttpEndpointWithoutWorkspaceQueryPaths, SeamHttpEndpoints, SeamHttpEndpointsWithoutWorkspace, SeamHttpEvents, type SeamHttpFromPublishableKeyOptions, SeamHttpInstantKeys, SeamHttpInvalidInputError, SeamHttpInvalidOptionsError, SeamHttpInvalidTokenError, SeamHttpLocks, SeamHttpLocksSimulate, SeamHttpMultiWorkspace, SeamHttpNoiseSensors, SeamHttpNoiseSensorsNoiseThresholds, SeamHttpNoiseSensorsSimulate, type SeamHttpOptions, type SeamHttpOptionsFromEnv, type SeamHttpOptionsWithApiKey, type SeamHttpOptionsWithClient, type SeamHttpOptionsWithClientSessionToken, type SeamHttpOptionsWithConsoleSessionToken, type SeamHttpOptionsWithPersonalAccessToken, SeamHttpPhones, SeamHttpPhonesSimulate, SeamHttpRequest, type SeamHttpRequestOptions, SeamHttpSeamConsole, SeamHttpSeamConsoleV1, SeamHttpSeamCustomerV1, SeamHttpSeamCustomerV1AutomationRuns, SeamHttpSeamCustomerV1Automations, SeamHttpSeamCustomerV1Portals, SeamHttpSeamCustomerV1Settings, SeamHttpSeamPartnerV1BuildingBlocks, SeamHttpSeamPartnerV1BuildingBlocksSpaces, SeamHttpSpaces, SeamHttpThermostats, SeamHttpThermostatsDailyPrograms, SeamHttpThermostatsSchedules, SeamHttpThermostatsSimulate, SeamHttpUnauthorizedError, SeamHttpUnstableAccessGrants, SeamHttpUnstableAccessMethods, SeamHttpUnstableLocations, SeamHttpUnstablePartner, SeamHttpUnstablePartnerBuildingBlocks, SeamHttpUserIdentities, SeamHttpUserIdentitiesEnrollmentAutomations, SeamHttpWebhooks, SeamHttpWithoutWorkspace, SeamHttpWithoutWorkspaceInvalidOptionsError, type SeamHttpWithoutWorkspaceOptions, type SeamHttpWithoutWorkspaceOptionsFromEnv, type SeamHttpWithoutWorkspaceOptionsWithClient, type SeamHttpWithoutWorkspaceOptionsWithConsoleSessionToken, type SeamHttpWithoutWorkspaceOptionsWithPersonalAccessToken, SeamHttpWorkspaces, type SeamPageCursor, SeamPaginator, type SeamPartnerV1BuildingBlocksSpacesAutoMapOptions, type SeamPartnerV1BuildingBlocksSpacesAutoMapParameters, type SeamPartnerV1BuildingBlocksSpacesAutoMapParams, type SeamPartnerV1BuildingBlocksSpacesAutoMapRequest, type SeamPartnerV1BuildingBlocksSpacesAutoMapResponse, type SpacesAddAcsEntrancesBody, type SpacesAddAcsEntrancesOptions, type SpacesAddAcsEntrancesParameters, type SpacesAddAcsEntrancesRequest, type SpacesAddAcsEntrancesResponse, type SpacesAddDevicesBody, type SpacesAddDevicesOptions, type SpacesAddDevicesParameters, type SpacesAddDevicesRequest, type SpacesAddDevicesResponse, type SpacesCreateBody, type SpacesCreateOptions, type SpacesCreateParameters, type SpacesCreateRequest, type SpacesCreateResponse, type SpacesDeleteOptions, type SpacesDeleteParameters, type SpacesDeleteParams, type SpacesDeleteRequest, type SpacesDeleteResponse, type SpacesGetOptions, type SpacesGetParameters, type SpacesGetParams, type SpacesGetRelatedOptions, type SpacesGetRelatedParameters, type SpacesGetRelatedParams, type SpacesGetRelatedRequest, type SpacesGetRelatedResponse, type SpacesGetRequest, type SpacesGetResponse, type SpacesListOptions, type SpacesListParameters, type SpacesListParams, type SpacesListRequest, type SpacesListResponse, type SpacesRemoveAcsEntrancesOptions, type SpacesRemoveAcsEntrancesParameters, type SpacesRemoveAcsEntrancesParams, type SpacesRemoveAcsEntrancesRequest, type SpacesRemoveAcsEntrancesResponse, type SpacesRemoveDevicesOptions, type SpacesRemoveDevicesParameters, type SpacesRemoveDevicesParams, type SpacesRemoveDevicesRequest, type SpacesRemoveDevicesResponse, type SpacesUpdateBody, type SpacesUpdateOptions, type SpacesUpdateParameters, type SpacesUpdateRequest, type SpacesUpdateResponse, type ThermostatsActivateClimatePresetBody, type ThermostatsActivateClimatePresetOptions, type ThermostatsActivateClimatePresetParameters, type ThermostatsActivateClimatePresetRequest, type ThermostatsActivateClimatePresetResponse, type ThermostatsCoolBody, type ThermostatsCoolOptions, type ThermostatsCoolParameters, type ThermostatsCoolRequest, type ThermostatsCoolResponse, type ThermostatsCreateClimatePresetBody, type ThermostatsCreateClimatePresetOptions, type ThermostatsCreateClimatePresetParameters, type ThermostatsCreateClimatePresetRequest, type ThermostatsCreateClimatePresetResponse, type ThermostatsDailyProgramsCreateBody, type ThermostatsDailyProgramsCreateOptions, type ThermostatsDailyProgramsCreateParameters, type ThermostatsDailyProgramsCreateRequest, type ThermostatsDailyProgramsCreateResponse, type ThermostatsDailyProgramsDeleteOptions, type ThermostatsDailyProgramsDeleteParameters, type ThermostatsDailyProgramsDeleteParams, type ThermostatsDailyProgramsDeleteRequest, type ThermostatsDailyProgramsDeleteResponse, type ThermostatsDailyProgramsUpdateBody, type ThermostatsDailyProgramsUpdateOptions, type ThermostatsDailyProgramsUpdateParameters, type ThermostatsDailyProgramsUpdateRequest, type ThermostatsDailyProgramsUpdateResponse, type ThermostatsDeleteClimatePresetOptions, type ThermostatsDeleteClimatePresetParameters, type ThermostatsDeleteClimatePresetParams, type ThermostatsDeleteClimatePresetRequest, type ThermostatsDeleteClimatePresetResponse, type ThermostatsGetOptions, type ThermostatsGetParameters, type ThermostatsGetParams, type ThermostatsGetRequest, type ThermostatsGetResponse, type ThermostatsHeatBody, type ThermostatsHeatCoolBody, type ThermostatsHeatCoolOptions, type ThermostatsHeatCoolParameters, type ThermostatsHeatCoolRequest, type ThermostatsHeatCoolResponse, type ThermostatsHeatOptions, type ThermostatsHeatParameters, type ThermostatsHeatRequest, type ThermostatsHeatResponse, type ThermostatsListOptions, type ThermostatsListParameters, type ThermostatsListParams, type ThermostatsListRequest, type ThermostatsListResponse, type ThermostatsOffBody, type ThermostatsOffOptions, type ThermostatsOffParameters, type ThermostatsOffRequest, type ThermostatsOffResponse, type ThermostatsSchedulesCreateBody, type ThermostatsSchedulesCreateOptions, type ThermostatsSchedulesCreateParameters, type ThermostatsSchedulesCreateRequest, type ThermostatsSchedulesCreateResponse, type ThermostatsSchedulesDeleteOptions, type ThermostatsSchedulesDeleteParameters, type ThermostatsSchedulesDeleteParams, type ThermostatsSchedulesDeleteRequest, type ThermostatsSchedulesDeleteResponse, type ThermostatsSchedulesGetOptions, type ThermostatsSchedulesGetParameters, type ThermostatsSchedulesGetParams, type ThermostatsSchedulesGetRequest, type ThermostatsSchedulesGetResponse, type ThermostatsSchedulesListOptions, type ThermostatsSchedulesListParameters, type ThermostatsSchedulesListParams, type ThermostatsSchedulesListRequest, type ThermostatsSchedulesListResponse, type ThermostatsSchedulesUpdateBody, type ThermostatsSchedulesUpdateOptions, type ThermostatsSchedulesUpdateParameters, type ThermostatsSchedulesUpdateRequest, type ThermostatsSchedulesUpdateResponse, type ThermostatsSetFallbackClimatePresetBody, type ThermostatsSetFallbackClimatePresetOptions, type ThermostatsSetFallbackClimatePresetParameters, type ThermostatsSetFallbackClimatePresetRequest, type ThermostatsSetFallbackClimatePresetResponse, type ThermostatsSetFanModeBody, type ThermostatsSetFanModeOptions, type ThermostatsSetFanModeParameters, type ThermostatsSetFanModeRequest, type ThermostatsSetFanModeResponse, type ThermostatsSetHvacModeBody, type ThermostatsSetHvacModeOptions, type ThermostatsSetHvacModeParameters, type ThermostatsSetHvacModeRequest, type ThermostatsSetHvacModeResponse, type ThermostatsSetTemperatureThresholdBody, type ThermostatsSetTemperatureThresholdOptions, type ThermostatsSetTemperatureThresholdParameters, type ThermostatsSetTemperatureThresholdRequest, type ThermostatsSetTemperatureThresholdResponse, type ThermostatsSimulateHvacModeAdjustedBody, type ThermostatsSimulateHvacModeAdjustedOptions, type ThermostatsSimulateHvacModeAdjustedParameters, type ThermostatsSimulateHvacModeAdjustedRequest, type ThermostatsSimulateHvacModeAdjustedResponse, type ThermostatsSimulateTemperatureReachedBody, type ThermostatsSimulateTemperatureReachedOptions, type ThermostatsSimulateTemperatureReachedParameters, type ThermostatsSimulateTemperatureReachedRequest, type ThermostatsSimulateTemperatureReachedResponse, type ThermostatsUpdateClimatePresetBody, type ThermostatsUpdateClimatePresetOptions, type ThermostatsUpdateClimatePresetParameters, type ThermostatsUpdateClimatePresetRequest, type ThermostatsUpdateClimatePresetResponse, type ThermostatsUpdateWeeklyProgramBody, type ThermostatsUpdateWeeklyProgramOptions, type ThermostatsUpdateWeeklyProgramParameters, type ThermostatsUpdateWeeklyProgramRequest, type ThermostatsUpdateWeeklyProgramResponse, type UnstableAccessGrantsCreateBody, type UnstableAccessGrantsCreateOptions, type UnstableAccessGrantsCreateParameters, type UnstableAccessGrantsCreateRequest, type UnstableAccessGrantsCreateResponse, type UnstableAccessGrantsDeleteOptions, type UnstableAccessGrantsDeleteParameters, type UnstableAccessGrantsDeleteParams, type UnstableAccessGrantsDeleteRequest, type UnstableAccessGrantsDeleteResponse, type UnstableAccessGrantsGetOptions, type UnstableAccessGrantsGetParameters, type UnstableAccessGrantsGetParams, type UnstableAccessGrantsGetRequest, type UnstableAccessGrantsGetResponse, type UnstableAccessGrantsListOptions, type UnstableAccessGrantsListParameters, type UnstableAccessGrantsListParams, type UnstableAccessGrantsListRequest, type UnstableAccessGrantsListResponse, type UnstableAccessMethodsDeleteOptions, type UnstableAccessMethodsDeleteParameters, type UnstableAccessMethodsDeleteParams, type UnstableAccessMethodsDeleteRequest, type UnstableAccessMethodsDeleteResponse, type UnstableAccessMethodsGetOptions, type UnstableAccessMethodsGetParameters, type UnstableAccessMethodsGetParams, type UnstableAccessMethodsGetRequest, type UnstableAccessMethodsGetResponse, type UnstableAccessMethodsListOptions, type UnstableAccessMethodsListParameters, type UnstableAccessMethodsListParams, type UnstableAccessMethodsListRequest, type UnstableAccessMethodsListResponse, type UnstableLocationsAddAcsEntrancesBody, type UnstableLocationsAddAcsEntrancesOptions, type UnstableLocationsAddAcsEntrancesParameters, type UnstableLocationsAddAcsEntrancesRequest, type UnstableLocationsAddAcsEntrancesResponse, type UnstableLocationsAddDevicesBody, type UnstableLocationsAddDevicesOptions, type UnstableLocationsAddDevicesParameters, type UnstableLocationsAddDevicesRequest, type UnstableLocationsAddDevicesResponse, type UnstableLocationsCreateBody, type UnstableLocationsCreateOptions, type UnstableLocationsCreateParameters, type UnstableLocationsCreateRequest, type UnstableLocationsCreateResponse, type UnstableLocationsDeleteOptions, type UnstableLocationsDeleteParameters, type UnstableLocationsDeleteParams, type UnstableLocationsDeleteRequest, type UnstableLocationsDeleteResponse, type UnstableLocationsGetOptions, type UnstableLocationsGetParameters, type UnstableLocationsGetParams, type UnstableLocationsGetRequest, type UnstableLocationsGetResponse, type UnstableLocationsListOptions, type UnstableLocationsListParameters, type UnstableLocationsListParams, type UnstableLocationsListRequest, type UnstableLocationsListResponse, type UnstableLocationsRemoveAcsEntrancesOptions, type UnstableLocationsRemoveAcsEntrancesParameters, type UnstableLocationsRemoveAcsEntrancesParams, type UnstableLocationsRemoveAcsEntrancesRequest, type UnstableLocationsRemoveAcsEntrancesResponse, type UnstableLocationsRemoveDevicesOptions, type UnstableLocationsRemoveDevicesParameters, type UnstableLocationsRemoveDevicesParams, type UnstableLocationsRemoveDevicesRequest, type UnstableLocationsRemoveDevicesResponse, type UnstableLocationsUpdateBody, type UnstableLocationsUpdateOptions, type UnstableLocationsUpdateParameters, type UnstableLocationsUpdateRequest, type UnstableLocationsUpdateResponse, type UnstablePartnerBuildingBlocksConnectAccountsBody, type UnstablePartnerBuildingBlocksConnectAccountsOptions, type UnstablePartnerBuildingBlocksConnectAccountsParameters, type UnstablePartnerBuildingBlocksConnectAccountsRequest, type UnstablePartnerBuildingBlocksConnectAccountsResponse, type UnstablePartnerBuildingBlocksGenerateMagicLinkOptions, type UnstablePartnerBuildingBlocksGenerateMagicLinkParameters, type UnstablePartnerBuildingBlocksGenerateMagicLinkParams, type UnstablePartnerBuildingBlocksGenerateMagicLinkRequest, type UnstablePartnerBuildingBlocksGenerateMagicLinkResponse, type UnstablePartnerBuildingBlocksManageDevicesBody, type UnstablePartnerBuildingBlocksManageDevicesOptions, type UnstablePartnerBuildingBlocksManageDevicesParameters, type UnstablePartnerBuildingBlocksManageDevicesRequest, type UnstablePartnerBuildingBlocksManageDevicesResponse, type UnstablePartnerBuildingBlocksOrganizeSpacesBody, type UnstablePartnerBuildingBlocksOrganizeSpacesOptions, type UnstablePartnerBuildingBlocksOrganizeSpacesParameters, type UnstablePartnerBuildingBlocksOrganizeSpacesRequest, type UnstablePartnerBuildingBlocksOrganizeSpacesResponse, type UserIdentitiesAddAcsUserBody, type UserIdentitiesAddAcsUserOptions, type UserIdentitiesAddAcsUserParameters, type UserIdentitiesAddAcsUserRequest, type UserIdentitiesAddAcsUserResponse, type UserIdentitiesCreateBody, type UserIdentitiesCreateOptions, type UserIdentitiesCreateParameters, type UserIdentitiesCreateRequest, type UserIdentitiesCreateResponse, type UserIdentitiesDeleteOptions, type UserIdentitiesDeleteParameters, type UserIdentitiesDeleteParams, type UserIdentitiesDeleteRequest, type UserIdentitiesDeleteResponse, type UserIdentitiesEnrollmentAutomationsDeleteOptions, type UserIdentitiesEnrollmentAutomationsDeleteParameters, type UserIdentitiesEnrollmentAutomationsDeleteParams, type UserIdentitiesEnrollmentAutomationsDeleteRequest, type UserIdentitiesEnrollmentAutomationsDeleteResponse, type UserIdentitiesEnrollmentAutomationsGetOptions, type UserIdentitiesEnrollmentAutomationsGetParameters, type UserIdentitiesEnrollmentAutomationsGetParams, type UserIdentitiesEnrollmentAutomationsGetRequest, type UserIdentitiesEnrollmentAutomationsGetResponse, type UserIdentitiesEnrollmentAutomationsLaunchBody, type UserIdentitiesEnrollmentAutomationsLaunchOptions, type UserIdentitiesEnrollmentAutomationsLaunchParameters, type UserIdentitiesEnrollmentAutomationsLaunchRequest, type UserIdentitiesEnrollmentAutomationsLaunchResponse, type UserIdentitiesEnrollmentAutomationsListOptions, type UserIdentitiesEnrollmentAutomationsListParameters, type UserIdentitiesEnrollmentAutomationsListParams, type UserIdentitiesEnrollmentAutomationsListRequest, type UserIdentitiesEnrollmentAutomationsListResponse, type UserIdentitiesGenerateInstantKeyBody, type UserIdentitiesGenerateInstantKeyOptions, type UserIdentitiesGenerateInstantKeyParameters, type UserIdentitiesGenerateInstantKeyRequest, type UserIdentitiesGenerateInstantKeyResponse, type UserIdentitiesGetOptions, type UserIdentitiesGetParameters, type UserIdentitiesGetParams, type UserIdentitiesGetRequest, type UserIdentitiesGetResponse, type UserIdentitiesGrantAccessToDeviceBody, type UserIdentitiesGrantAccessToDeviceOptions, type UserIdentitiesGrantAccessToDeviceParameters, type UserIdentitiesGrantAccessToDeviceRequest, type UserIdentitiesGrantAccessToDeviceResponse, type UserIdentitiesListAccessibleDevicesOptions, type UserIdentitiesListAccessibleDevicesParameters, type UserIdentitiesListAccessibleDevicesParams, type UserIdentitiesListAccessibleDevicesRequest, type UserIdentitiesListAccessibleDevicesResponse, type UserIdentitiesListAcsSystemsOptions, type UserIdentitiesListAcsSystemsParameters, type UserIdentitiesListAcsSystemsParams, type UserIdentitiesListAcsSystemsRequest, type UserIdentitiesListAcsSystemsResponse, type UserIdentitiesListAcsUsersOptions, type UserIdentitiesListAcsUsersParameters, type UserIdentitiesListAcsUsersParams, type UserIdentitiesListAcsUsersRequest, type UserIdentitiesListAcsUsersResponse, type UserIdentitiesListOptions, type UserIdentitiesListParameters, type UserIdentitiesListParams, type UserIdentitiesListRequest, type UserIdentitiesListResponse, type UserIdentitiesRemoveAcsUserOptions, type UserIdentitiesRemoveAcsUserParameters, type UserIdentitiesRemoveAcsUserParams, type UserIdentitiesRemoveAcsUserRequest, type UserIdentitiesRemoveAcsUserResponse, type UserIdentitiesRevokeAccessToDeviceOptions, type UserIdentitiesRevokeAccessToDeviceParameters, type UserIdentitiesRevokeAccessToDeviceParams, type UserIdentitiesRevokeAccessToDeviceRequest, type UserIdentitiesRevokeAccessToDeviceResponse, type UserIdentitiesUpdateBody, type UserIdentitiesUpdateOptions, type UserIdentitiesUpdateParameters, type UserIdentitiesUpdateRequest, type UserIdentitiesUpdateResponse, type WebhooksCreateBody, type WebhooksCreateOptions, type WebhooksCreateParameters, type WebhooksCreateRequest, type WebhooksCreateResponse, type WebhooksDeleteOptions, type WebhooksDeleteParameters, type WebhooksDeleteParams, type WebhooksDeleteRequest, type WebhooksDeleteResponse, type WebhooksGetOptions, type WebhooksGetParameters, type WebhooksGetParams, type WebhooksGetRequest, type WebhooksGetResponse, type WebhooksListOptions, type WebhooksListParameters, type WebhooksListParams, type WebhooksListRequest, type WebhooksListResponse, type WebhooksUpdateBody, type WebhooksUpdateOptions, type WebhooksUpdateParameters, type WebhooksUpdateRequest, type WebhooksUpdateResponse, type WorkspacesCreateBody, type WorkspacesCreateOptions, type WorkspacesCreateParameters, type WorkspacesCreateRequest, type WorkspacesCreateResponse, type WorkspacesFindResourcesOptions, type WorkspacesFindResourcesParameters, type WorkspacesFindResourcesParams, type WorkspacesFindResourcesRequest, type WorkspacesFindResourcesResponse, type WorkspacesGetOptions, type WorkspacesGetParameters, type WorkspacesGetParams, type WorkspacesGetRequest, type WorkspacesGetResponse, type WorkspacesListOptions, type WorkspacesListParameters, type WorkspacesListParams, type WorkspacesListRequest, type WorkspacesListResponse, type WorkspacesResetSandboxBody, type WorkspacesResetSandboxOptions, type WorkspacesResetSandboxParameters, type WorkspacesResetSandboxRequest, type WorkspacesResetSandboxResponse, type WorkspacesUpdateBody, type WorkspacesUpdateOptions, type WorkspacesUpdateParameters, type WorkspacesUpdateRequest, type WorkspacesUpdateResponse, errorInterceptor, getOpenapiSchema, isApiKey, isClientSessionToken, isConsoleSessionToken, isPersonalAccessToken, isPublishableKey, isSeamActionAttemptError, isSeamActionAttemptFailedError, isSeamActionAttemptTimeoutError, isSeamHttpApiError, isSeamHttpInvalidInputError, isSeamHttpOptionsWithApiKey, isSeamHttpOptionsWithClient, isSeamHttpOptionsWithClientSessionToken, isSeamHttpOptionsWithConsoleSessionToken, isSeamHttpOptionsWithPersonalAccessToken, isSeamHttpUnauthorizedError, isSeamHttpWithoutWorkspaceOptionsWithClient, isSeamHttpWithoutWorkspaceOptionsWithConsoleSessionToken, isSeamHttpWithoutWorkspaceOptionsWithPersonalAccessToken };
|