@seamapi/http 1.51.0 → 1.53.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 +32 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +322 -294
- package/dist/index.cjs +32 -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 +26 -0
- package/lib/seam/connect/routes/instant-keys/instant-keys.js +18 -0
- package/lib/seam/connect/routes/instant-keys/instant-keys.js.map +1 -1
- package/lib/seam/connect/routes/seam-http-endpoints.d.ts +5 -3
- package/lib/seam/connect/routes/seam-http-endpoints.js +14 -0
- package/lib/seam/connect/routes/seam-http-endpoints.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 +68 -0
- package/src/lib/seam/connect/routes/seam-http-endpoints.ts +34 -0
- package/src/lib/version.ts +1 -1
package/dist/connect.d.cts
CHANGED
|
@@ -2013,8 +2013,34 @@ 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;
|
|
2017
|
+
get(parameters?: InstantKeysGetParameters, options?: InstantKeysGetOptions): InstantKeysGetRequest;
|
|
2016
2018
|
list(parameters?: InstantKeysListParameters, options?: InstantKeysListOptions): InstantKeysListRequest;
|
|
2017
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
|
+
}
|
|
2032
|
+
type InstantKeysGetParameters = RouteRequestBody<'/instant_keys/get'>;
|
|
2033
|
+
/**
|
|
2034
|
+
* @deprecated Use InstantKeysGetParameters instead.
|
|
2035
|
+
*/
|
|
2036
|
+
type InstantKeysGetParams = InstantKeysGetParameters;
|
|
2037
|
+
/**
|
|
2038
|
+
* @deprecated Use InstantKeysGetRequest instead.
|
|
2039
|
+
*/
|
|
2040
|
+
type InstantKeysGetResponse = SetNonNullable<Required<RouteResponse<'/instant_keys/get'>>>;
|
|
2041
|
+
type InstantKeysGetRequest = SeamHttpRequest<InstantKeysGetResponse, 'instant_key'>;
|
|
2042
|
+
interface InstantKeysGetOptions {
|
|
2043
|
+
}
|
|
2018
2044
|
type InstantKeysListParameters = RouteRequestBody<'/instant_keys/list'>;
|
|
2019
2045
|
/**
|
|
2020
2046
|
* @deprecated Use InstantKeysListParameters instead.
|
|
@@ -4081,6 +4107,8 @@ declare class SeamHttpEndpoints {
|
|
|
4081
4107
|
get ['/devices/unmanaged/update'](): (parameters?: DevicesUnmanagedUpdateParameters, options?: DevicesUnmanagedUpdateOptions) => DevicesUnmanagedUpdateRequest;
|
|
4082
4108
|
get ['/events/get'](): (parameters?: EventsGetParameters, options?: EventsGetOptions) => EventsGetRequest;
|
|
4083
4109
|
get ['/events/list'](): (parameters?: EventsListParameters, options?: EventsListOptions) => EventsListRequest;
|
|
4110
|
+
get ['/instant_keys/delete'](): (parameters?: InstantKeysDeleteParameters, options?: InstantKeysDeleteOptions) => InstantKeysDeleteRequest;
|
|
4111
|
+
get ['/instant_keys/get'](): (parameters?: InstantKeysGetParameters, options?: InstantKeysGetOptions) => InstantKeysGetRequest;
|
|
4084
4112
|
get ['/instant_keys/list'](): (parameters?: InstantKeysListParameters, options?: InstantKeysListOptions) => InstantKeysListRequest;
|
|
4085
4113
|
get ['/locks/get'](): (parameters?: LocksGetParameters, options?: LocksGetOptions) => LocksGetRequest;
|
|
4086
4114
|
get ['/locks/list'](): (parameters?: LocksListParameters, options?: LocksListOptions) => LocksListRequest;
|
|
@@ -4191,9 +4219,9 @@ declare class SeamHttpEndpoints {
|
|
|
4191
4219
|
get ['/workspaces/reset_sandbox'](): (parameters?: WorkspacesResetSandboxParameters, options?: WorkspacesResetSandboxOptions) => WorkspacesResetSandboxRequest;
|
|
4192
4220
|
get ['/workspaces/update'](): (parameters?: WorkspacesUpdateParameters, options?: WorkspacesUpdateOptions) => WorkspacesUpdateRequest;
|
|
4193
4221
|
}
|
|
4194
|
-
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/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';
|
|
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';
|
|
4195
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';
|
|
4196
|
-
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';
|
|
4197
4225
|
|
|
4198
4226
|
declare class SeamHttpEndpointsWithoutWorkspace {
|
|
4199
4227
|
client: Client;
|
|
@@ -4231,57 +4259,57 @@ interface ResolveActionAttemptOptions {
|
|
|
4231
4259
|
pollingInterval?: number;
|
|
4232
4260
|
}
|
|
4233
4261
|
declare const isSeamActionAttemptError: <T extends {
|
|
4234
|
-
error: null;
|
|
4235
4262
|
status: "pending";
|
|
4236
4263
|
action_attempt_id: string;
|
|
4264
|
+
error: null;
|
|
4237
4265
|
result: null;
|
|
4238
4266
|
action_type: "LOCK_DOOR";
|
|
4239
4267
|
} | {
|
|
4240
|
-
error: null;
|
|
4241
4268
|
status: "success";
|
|
4242
4269
|
action_attempt_id: string;
|
|
4270
|
+
error: null;
|
|
4243
4271
|
result: {};
|
|
4244
4272
|
action_type: "LOCK_DOOR";
|
|
4245
4273
|
} | {
|
|
4274
|
+
status: "error";
|
|
4275
|
+
action_attempt_id: string;
|
|
4246
4276
|
error: {
|
|
4247
|
-
type: string;
|
|
4248
4277
|
message: string;
|
|
4278
|
+
type: string;
|
|
4249
4279
|
};
|
|
4250
|
-
status: "error";
|
|
4251
|
-
action_attempt_id: string;
|
|
4252
4280
|
result: null;
|
|
4253
4281
|
action_type: "LOCK_DOOR";
|
|
4254
4282
|
} | {
|
|
4255
|
-
error: null;
|
|
4256
4283
|
status: "pending";
|
|
4257
4284
|
action_attempt_id: string;
|
|
4285
|
+
error: null;
|
|
4258
4286
|
result: null;
|
|
4259
4287
|
action_type: "UNLOCK_DOOR";
|
|
4260
4288
|
} | {
|
|
4261
|
-
error: null;
|
|
4262
4289
|
status: "success";
|
|
4263
4290
|
action_attempt_id: string;
|
|
4291
|
+
error: null;
|
|
4264
4292
|
result: {};
|
|
4265
4293
|
action_type: "UNLOCK_DOOR";
|
|
4266
4294
|
} | {
|
|
4295
|
+
status: "error";
|
|
4296
|
+
action_attempt_id: string;
|
|
4267
4297
|
error: {
|
|
4268
|
-
type: string;
|
|
4269
4298
|
message: string;
|
|
4299
|
+
type: string;
|
|
4270
4300
|
};
|
|
4271
|
-
status: "error";
|
|
4272
|
-
action_attempt_id: string;
|
|
4273
4301
|
result: null;
|
|
4274
4302
|
action_type: "UNLOCK_DOOR";
|
|
4275
4303
|
} | {
|
|
4276
|
-
error: null;
|
|
4277
4304
|
status: "pending";
|
|
4278
4305
|
action_attempt_id: string;
|
|
4306
|
+
error: null;
|
|
4279
4307
|
result: null;
|
|
4280
4308
|
action_type: "SCAN_CREDENTIAL";
|
|
4281
4309
|
} | {
|
|
4282
|
-
error: null;
|
|
4283
4310
|
status: "success";
|
|
4284
4311
|
action_attempt_id: string;
|
|
4312
|
+
error: null;
|
|
4285
4313
|
result: {
|
|
4286
4314
|
warnings: {
|
|
4287
4315
|
warning_code: "acs_credential_on_encoder_out_of_sync" | "acs_credential_on_seam_not_found";
|
|
@@ -4294,10 +4322,10 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
4294
4322
|
is_issued: boolean | null;
|
|
4295
4323
|
card_number: string | null;
|
|
4296
4324
|
visionline_metadata?: {
|
|
4297
|
-
expired: boolean;
|
|
4298
4325
|
card_id: string;
|
|
4299
4326
|
cancelled: boolean;
|
|
4300
4327
|
discarded: boolean;
|
|
4328
|
+
expired: boolean;
|
|
4301
4329
|
overwritten: boolean;
|
|
4302
4330
|
pending_auto_update: boolean;
|
|
4303
4331
|
card_format: "TLCode" | "rfid48";
|
|
@@ -4456,30 +4484,30 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
4456
4484
|
};
|
|
4457
4485
|
action_type: "SCAN_CREDENTIAL";
|
|
4458
4486
|
} | {
|
|
4487
|
+
status: "error";
|
|
4488
|
+
action_attempt_id: string;
|
|
4459
4489
|
error: {
|
|
4460
|
-
type: "uncategorized_error";
|
|
4461
4490
|
message: string;
|
|
4491
|
+
type: "uncategorized_error";
|
|
4462
4492
|
} | {
|
|
4463
|
-
type: "action_attempt_expired";
|
|
4464
4493
|
message: string;
|
|
4494
|
+
type: "action_attempt_expired";
|
|
4465
4495
|
} | {
|
|
4466
|
-
type: "no_credential_on_encoder";
|
|
4467
4496
|
message: string;
|
|
4497
|
+
type: "no_credential_on_encoder";
|
|
4468
4498
|
};
|
|
4469
|
-
status: "error";
|
|
4470
|
-
action_attempt_id: string;
|
|
4471
4499
|
result: null;
|
|
4472
4500
|
action_type: "SCAN_CREDENTIAL";
|
|
4473
4501
|
} | {
|
|
4474
|
-
error: null;
|
|
4475
4502
|
status: "pending";
|
|
4476
4503
|
action_attempt_id: string;
|
|
4504
|
+
error: null;
|
|
4477
4505
|
result: null;
|
|
4478
4506
|
action_type: "ENCODE_CREDENTIAL";
|
|
4479
4507
|
} | {
|
|
4480
|
-
error: null;
|
|
4481
4508
|
status: "success";
|
|
4482
4509
|
action_attempt_id: string;
|
|
4510
|
+
error: null;
|
|
4483
4511
|
result: {
|
|
4484
4512
|
display_name: string;
|
|
4485
4513
|
workspace_id: string;
|
|
@@ -4627,326 +4655,326 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
4627
4655
|
};
|
|
4628
4656
|
action_type: "ENCODE_CREDENTIAL";
|
|
4629
4657
|
} | {
|
|
4658
|
+
status: "error";
|
|
4659
|
+
action_attempt_id: string;
|
|
4630
4660
|
error: {
|
|
4631
|
-
type: "uncategorized_error";
|
|
4632
4661
|
message: string;
|
|
4662
|
+
type: "uncategorized_error";
|
|
4633
4663
|
} | {
|
|
4634
|
-
type: "action_attempt_expired";
|
|
4635
4664
|
message: string;
|
|
4665
|
+
type: "action_attempt_expired";
|
|
4636
4666
|
} | {
|
|
4637
|
-
type: "no_credential_on_encoder";
|
|
4638
4667
|
message: string;
|
|
4668
|
+
type: "no_credential_on_encoder";
|
|
4639
4669
|
} | {
|
|
4640
|
-
type: "incompatible_card_format";
|
|
4641
4670
|
message: string;
|
|
4671
|
+
type: "incompatible_card_format";
|
|
4642
4672
|
} | {
|
|
4643
|
-
type: "credential_cannot_be_reissued";
|
|
4644
4673
|
message: string;
|
|
4674
|
+
type: "credential_cannot_be_reissued";
|
|
4645
4675
|
};
|
|
4646
|
-
status: "error";
|
|
4647
|
-
action_attempt_id: string;
|
|
4648
4676
|
result: null;
|
|
4649
4677
|
action_type: "ENCODE_CREDENTIAL";
|
|
4650
4678
|
} | {
|
|
4651
|
-
error: null;
|
|
4652
4679
|
status: "pending";
|
|
4653
4680
|
action_attempt_id: string;
|
|
4681
|
+
error: null;
|
|
4654
4682
|
result: null;
|
|
4655
4683
|
action_type: "RESET_SANDBOX_WORKSPACE";
|
|
4656
4684
|
} | {
|
|
4657
|
-
error: null;
|
|
4658
4685
|
status: "success";
|
|
4659
4686
|
action_attempt_id: string;
|
|
4687
|
+
error: null;
|
|
4660
4688
|
result: {};
|
|
4661
4689
|
action_type: "RESET_SANDBOX_WORKSPACE";
|
|
4662
4690
|
} | {
|
|
4691
|
+
status: "error";
|
|
4692
|
+
action_attempt_id: string;
|
|
4663
4693
|
error: {
|
|
4664
|
-
type: string;
|
|
4665
4694
|
message: string;
|
|
4695
|
+
type: string;
|
|
4666
4696
|
};
|
|
4667
|
-
status: "error";
|
|
4668
|
-
action_attempt_id: string;
|
|
4669
4697
|
result: null;
|
|
4670
4698
|
action_type: "RESET_SANDBOX_WORKSPACE";
|
|
4671
4699
|
} | {
|
|
4672
|
-
error: null;
|
|
4673
4700
|
status: "pending";
|
|
4674
4701
|
action_attempt_id: string;
|
|
4702
|
+
error: null;
|
|
4675
4703
|
result: null;
|
|
4676
4704
|
action_type: "SET_FAN_MODE";
|
|
4677
4705
|
} | {
|
|
4678
|
-
error: null;
|
|
4679
4706
|
status: "success";
|
|
4680
4707
|
action_attempt_id: string;
|
|
4708
|
+
error: null;
|
|
4681
4709
|
result: {};
|
|
4682
4710
|
action_type: "SET_FAN_MODE";
|
|
4683
4711
|
} | {
|
|
4712
|
+
status: "error";
|
|
4713
|
+
action_attempt_id: string;
|
|
4684
4714
|
error: {
|
|
4685
|
-
type: string;
|
|
4686
4715
|
message: string;
|
|
4716
|
+
type: string;
|
|
4687
4717
|
};
|
|
4688
|
-
status: "error";
|
|
4689
|
-
action_attempt_id: string;
|
|
4690
4718
|
result: null;
|
|
4691
4719
|
action_type: "SET_FAN_MODE";
|
|
4692
4720
|
} | {
|
|
4693
|
-
error: null;
|
|
4694
4721
|
status: "pending";
|
|
4695
4722
|
action_attempt_id: string;
|
|
4723
|
+
error: null;
|
|
4696
4724
|
result: null;
|
|
4697
4725
|
action_type: "SET_HVAC_MODE";
|
|
4698
4726
|
} | {
|
|
4699
|
-
error: null;
|
|
4700
4727
|
status: "success";
|
|
4701
4728
|
action_attempt_id: string;
|
|
4729
|
+
error: null;
|
|
4702
4730
|
result: {};
|
|
4703
4731
|
action_type: "SET_HVAC_MODE";
|
|
4704
4732
|
} | {
|
|
4733
|
+
status: "error";
|
|
4734
|
+
action_attempt_id: string;
|
|
4705
4735
|
error: {
|
|
4706
|
-
type: string;
|
|
4707
4736
|
message: string;
|
|
4737
|
+
type: string;
|
|
4708
4738
|
};
|
|
4709
|
-
status: "error";
|
|
4710
|
-
action_attempt_id: string;
|
|
4711
4739
|
result: null;
|
|
4712
4740
|
action_type: "SET_HVAC_MODE";
|
|
4713
4741
|
} | {
|
|
4714
|
-
error: null;
|
|
4715
4742
|
status: "pending";
|
|
4716
4743
|
action_attempt_id: string;
|
|
4744
|
+
error: null;
|
|
4717
4745
|
result: null;
|
|
4718
4746
|
action_type: "ACTIVATE_CLIMATE_PRESET";
|
|
4719
4747
|
} | {
|
|
4720
|
-
error: null;
|
|
4721
4748
|
status: "success";
|
|
4722
4749
|
action_attempt_id: string;
|
|
4750
|
+
error: null;
|
|
4723
4751
|
result: {};
|
|
4724
4752
|
action_type: "ACTIVATE_CLIMATE_PRESET";
|
|
4725
4753
|
} | {
|
|
4754
|
+
status: "error";
|
|
4755
|
+
action_attempt_id: string;
|
|
4726
4756
|
error: {
|
|
4727
|
-
type: string;
|
|
4728
4757
|
message: string;
|
|
4758
|
+
type: string;
|
|
4729
4759
|
};
|
|
4730
|
-
status: "error";
|
|
4731
|
-
action_attempt_id: string;
|
|
4732
4760
|
result: null;
|
|
4733
4761
|
action_type: "ACTIVATE_CLIMATE_PRESET";
|
|
4734
4762
|
} | {
|
|
4735
|
-
error: null;
|
|
4736
4763
|
status: "pending";
|
|
4737
4764
|
action_attempt_id: string;
|
|
4765
|
+
error: null;
|
|
4738
4766
|
result: null;
|
|
4739
4767
|
action_type: "SIMULATE_KEYPAD_CODE_ENTRY";
|
|
4740
4768
|
} | {
|
|
4741
|
-
error: null;
|
|
4742
4769
|
status: "success";
|
|
4743
4770
|
action_attempt_id: string;
|
|
4771
|
+
error: null;
|
|
4744
4772
|
result: {};
|
|
4745
4773
|
action_type: "SIMULATE_KEYPAD_CODE_ENTRY";
|
|
4746
4774
|
} | {
|
|
4775
|
+
status: "error";
|
|
4776
|
+
action_attempt_id: string;
|
|
4747
4777
|
error: {
|
|
4748
|
-
type: string;
|
|
4749
4778
|
message: string;
|
|
4779
|
+
type: string;
|
|
4750
4780
|
};
|
|
4751
|
-
status: "error";
|
|
4752
|
-
action_attempt_id: string;
|
|
4753
4781
|
result: null;
|
|
4754
4782
|
action_type: "SIMULATE_KEYPAD_CODE_ENTRY";
|
|
4755
4783
|
} | {
|
|
4756
|
-
error: null;
|
|
4757
4784
|
status: "pending";
|
|
4758
4785
|
action_attempt_id: string;
|
|
4786
|
+
error: null;
|
|
4759
4787
|
result: null;
|
|
4760
4788
|
action_type: "SIMULATE_MANUAL_LOCK_VIA_KEYPAD";
|
|
4761
4789
|
} | {
|
|
4762
|
-
error: null;
|
|
4763
4790
|
status: "success";
|
|
4764
4791
|
action_attempt_id: string;
|
|
4792
|
+
error: null;
|
|
4765
4793
|
result: {};
|
|
4766
4794
|
action_type: "SIMULATE_MANUAL_LOCK_VIA_KEYPAD";
|
|
4767
4795
|
} | {
|
|
4796
|
+
status: "error";
|
|
4797
|
+
action_attempt_id: string;
|
|
4768
4798
|
error: {
|
|
4769
|
-
type: string;
|
|
4770
4799
|
message: string;
|
|
4800
|
+
type: string;
|
|
4771
4801
|
};
|
|
4772
|
-
status: "error";
|
|
4773
|
-
action_attempt_id: string;
|
|
4774
4802
|
result: null;
|
|
4775
4803
|
action_type: "SIMULATE_MANUAL_LOCK_VIA_KEYPAD";
|
|
4776
4804
|
} | {
|
|
4777
|
-
error: null;
|
|
4778
4805
|
status: "pending";
|
|
4779
4806
|
action_attempt_id: string;
|
|
4807
|
+
error: null;
|
|
4780
4808
|
result: null;
|
|
4781
4809
|
action_type: "PUSH_THERMOSTAT_PROGRAMS";
|
|
4782
4810
|
} | {
|
|
4783
|
-
error: null;
|
|
4784
4811
|
status: "success";
|
|
4785
4812
|
action_attempt_id: string;
|
|
4813
|
+
error: null;
|
|
4786
4814
|
result: {};
|
|
4787
4815
|
action_type: "PUSH_THERMOSTAT_PROGRAMS";
|
|
4788
4816
|
} | {
|
|
4817
|
+
status: "error";
|
|
4818
|
+
action_attempt_id: string;
|
|
4789
4819
|
error: {
|
|
4790
|
-
type: string;
|
|
4791
4820
|
message: string;
|
|
4821
|
+
type: string;
|
|
4792
4822
|
};
|
|
4793
|
-
status: "error";
|
|
4794
|
-
action_attempt_id: string;
|
|
4795
4823
|
result: null;
|
|
4796
4824
|
action_type: "PUSH_THERMOSTAT_PROGRAMS";
|
|
4797
4825
|
} | {
|
|
4798
|
-
error: null;
|
|
4799
4826
|
status: "pending";
|
|
4800
4827
|
action_attempt_id: string;
|
|
4828
|
+
error: null;
|
|
4801
4829
|
result: null;
|
|
4802
4830
|
action_type: "SYNC_ACCESS_CODES";
|
|
4803
4831
|
} | {
|
|
4804
|
-
error: null;
|
|
4805
4832
|
status: "success";
|
|
4806
4833
|
action_attempt_id: string;
|
|
4834
|
+
error: null;
|
|
4807
4835
|
result: {};
|
|
4808
4836
|
action_type: "SYNC_ACCESS_CODES";
|
|
4809
4837
|
} | {
|
|
4838
|
+
status: "error";
|
|
4839
|
+
action_attempt_id: string;
|
|
4810
4840
|
error: {
|
|
4811
|
-
type: string;
|
|
4812
4841
|
message: string;
|
|
4842
|
+
type: string;
|
|
4813
4843
|
};
|
|
4814
|
-
status: "error";
|
|
4815
|
-
action_attempt_id: string;
|
|
4816
4844
|
result: null;
|
|
4817
4845
|
action_type: "SYNC_ACCESS_CODES";
|
|
4818
4846
|
} | {
|
|
4819
|
-
error: null;
|
|
4820
4847
|
status: "pending";
|
|
4821
4848
|
action_attempt_id: string;
|
|
4849
|
+
error: null;
|
|
4822
4850
|
result: null;
|
|
4823
4851
|
action_type: "CREATE_ACCESS_CODE";
|
|
4824
4852
|
} | {
|
|
4825
|
-
error: null;
|
|
4826
4853
|
status: "success";
|
|
4827
4854
|
action_attempt_id: string;
|
|
4855
|
+
error: null;
|
|
4828
4856
|
result: {
|
|
4829
4857
|
access_code?: any;
|
|
4830
4858
|
};
|
|
4831
4859
|
action_type: "CREATE_ACCESS_CODE";
|
|
4832
4860
|
} | {
|
|
4861
|
+
status: "error";
|
|
4862
|
+
action_attempt_id: string;
|
|
4833
4863
|
error: {
|
|
4834
|
-
type: string;
|
|
4835
4864
|
message: string;
|
|
4865
|
+
type: string;
|
|
4836
4866
|
};
|
|
4837
|
-
status: "error";
|
|
4838
|
-
action_attempt_id: string;
|
|
4839
4867
|
result: null;
|
|
4840
4868
|
action_type: "CREATE_ACCESS_CODE";
|
|
4841
4869
|
} | {
|
|
4842
|
-
error: null;
|
|
4843
4870
|
status: "pending";
|
|
4844
4871
|
action_attempt_id: string;
|
|
4872
|
+
error: null;
|
|
4845
4873
|
result: null;
|
|
4846
4874
|
action_type: "DELETE_ACCESS_CODE";
|
|
4847
4875
|
} | {
|
|
4848
|
-
error: null;
|
|
4849
4876
|
status: "success";
|
|
4850
4877
|
action_attempt_id: string;
|
|
4878
|
+
error: null;
|
|
4851
4879
|
result: {};
|
|
4852
4880
|
action_type: "DELETE_ACCESS_CODE";
|
|
4853
4881
|
} | {
|
|
4882
|
+
status: "error";
|
|
4883
|
+
action_attempt_id: string;
|
|
4854
4884
|
error: {
|
|
4855
|
-
type: string;
|
|
4856
4885
|
message: string;
|
|
4886
|
+
type: string;
|
|
4857
4887
|
};
|
|
4858
|
-
status: "error";
|
|
4859
|
-
action_attempt_id: string;
|
|
4860
4888
|
result: null;
|
|
4861
4889
|
action_type: "DELETE_ACCESS_CODE";
|
|
4862
4890
|
} | {
|
|
4863
|
-
error: null;
|
|
4864
4891
|
status: "pending";
|
|
4865
4892
|
action_attempt_id: string;
|
|
4893
|
+
error: null;
|
|
4866
4894
|
result: null;
|
|
4867
4895
|
action_type: "UPDATE_ACCESS_CODE";
|
|
4868
4896
|
} | {
|
|
4869
|
-
error: null;
|
|
4870
4897
|
status: "success";
|
|
4871
4898
|
action_attempt_id: string;
|
|
4899
|
+
error: null;
|
|
4872
4900
|
result: {
|
|
4873
4901
|
access_code?: any;
|
|
4874
4902
|
};
|
|
4875
4903
|
action_type: "UPDATE_ACCESS_CODE";
|
|
4876
4904
|
} | {
|
|
4905
|
+
status: "error";
|
|
4906
|
+
action_attempt_id: string;
|
|
4877
4907
|
error: {
|
|
4878
|
-
type: string;
|
|
4879
4908
|
message: string;
|
|
4909
|
+
type: string;
|
|
4880
4910
|
};
|
|
4881
|
-
status: "error";
|
|
4882
|
-
action_attempt_id: string;
|
|
4883
4911
|
result: null;
|
|
4884
4912
|
action_type: "UPDATE_ACCESS_CODE";
|
|
4885
4913
|
} | {
|
|
4886
|
-
error: null;
|
|
4887
4914
|
status: "pending";
|
|
4888
4915
|
action_attempt_id: string;
|
|
4916
|
+
error: null;
|
|
4889
4917
|
result: null;
|
|
4890
4918
|
action_type: "CREATE_NOISE_THRESHOLD";
|
|
4891
4919
|
} | {
|
|
4892
|
-
error: null;
|
|
4893
4920
|
status: "success";
|
|
4894
4921
|
action_attempt_id: string;
|
|
4922
|
+
error: null;
|
|
4895
4923
|
result: {
|
|
4896
4924
|
noise_threshold?: any;
|
|
4897
4925
|
};
|
|
4898
4926
|
action_type: "CREATE_NOISE_THRESHOLD";
|
|
4899
4927
|
} | {
|
|
4928
|
+
status: "error";
|
|
4929
|
+
action_attempt_id: string;
|
|
4900
4930
|
error: {
|
|
4901
|
-
type: string;
|
|
4902
4931
|
message: string;
|
|
4932
|
+
type: string;
|
|
4903
4933
|
};
|
|
4904
|
-
status: "error";
|
|
4905
|
-
action_attempt_id: string;
|
|
4906
4934
|
result: null;
|
|
4907
4935
|
action_type: "CREATE_NOISE_THRESHOLD";
|
|
4908
4936
|
} | {
|
|
4909
|
-
error: null;
|
|
4910
4937
|
status: "pending";
|
|
4911
4938
|
action_attempt_id: string;
|
|
4939
|
+
error: null;
|
|
4912
4940
|
result: null;
|
|
4913
4941
|
action_type: "DELETE_NOISE_THRESHOLD";
|
|
4914
4942
|
} | {
|
|
4915
|
-
error: null;
|
|
4916
4943
|
status: "success";
|
|
4917
4944
|
action_attempt_id: string;
|
|
4945
|
+
error: null;
|
|
4918
4946
|
result: {};
|
|
4919
4947
|
action_type: "DELETE_NOISE_THRESHOLD";
|
|
4920
4948
|
} | {
|
|
4949
|
+
status: "error";
|
|
4950
|
+
action_attempt_id: string;
|
|
4921
4951
|
error: {
|
|
4922
|
-
type: string;
|
|
4923
4952
|
message: string;
|
|
4953
|
+
type: string;
|
|
4924
4954
|
};
|
|
4925
|
-
status: "error";
|
|
4926
|
-
action_attempt_id: string;
|
|
4927
4955
|
result: null;
|
|
4928
4956
|
action_type: "DELETE_NOISE_THRESHOLD";
|
|
4929
4957
|
} | {
|
|
4930
|
-
error: null;
|
|
4931
4958
|
status: "pending";
|
|
4932
4959
|
action_attempt_id: string;
|
|
4960
|
+
error: null;
|
|
4933
4961
|
result: null;
|
|
4934
4962
|
action_type: "UPDATE_NOISE_THRESHOLD";
|
|
4935
4963
|
} | {
|
|
4936
|
-
error: null;
|
|
4937
4964
|
status: "success";
|
|
4938
4965
|
action_attempt_id: string;
|
|
4966
|
+
error: null;
|
|
4939
4967
|
result: {
|
|
4940
4968
|
noise_threshold?: any;
|
|
4941
4969
|
};
|
|
4942
4970
|
action_type: "UPDATE_NOISE_THRESHOLD";
|
|
4943
4971
|
} | {
|
|
4972
|
+
status: "error";
|
|
4973
|
+
action_attempt_id: string;
|
|
4944
4974
|
error: {
|
|
4945
|
-
type: string;
|
|
4946
4975
|
message: string;
|
|
4976
|
+
type: string;
|
|
4947
4977
|
};
|
|
4948
|
-
status: "error";
|
|
4949
|
-
action_attempt_id: string;
|
|
4950
4978
|
result: null;
|
|
4951
4979
|
action_type: "UPDATE_NOISE_THRESHOLD";
|
|
4952
4980
|
}>(error: unknown) => error is SeamActionAttemptError<T>;
|
|
@@ -4955,57 +4983,57 @@ declare class SeamActionAttemptError<T extends ActionAttempt> extends Error {
|
|
|
4955
4983
|
constructor(message: string, actionAttempt: T);
|
|
4956
4984
|
}
|
|
4957
4985
|
declare const isSeamActionAttemptFailedError: <T extends {
|
|
4958
|
-
error: null;
|
|
4959
4986
|
status: "pending";
|
|
4960
4987
|
action_attempt_id: string;
|
|
4988
|
+
error: null;
|
|
4961
4989
|
result: null;
|
|
4962
4990
|
action_type: "LOCK_DOOR";
|
|
4963
4991
|
} | {
|
|
4964
|
-
error: null;
|
|
4965
4992
|
status: "success";
|
|
4966
4993
|
action_attempt_id: string;
|
|
4994
|
+
error: null;
|
|
4967
4995
|
result: {};
|
|
4968
4996
|
action_type: "LOCK_DOOR";
|
|
4969
4997
|
} | {
|
|
4998
|
+
status: "error";
|
|
4999
|
+
action_attempt_id: string;
|
|
4970
5000
|
error: {
|
|
4971
|
-
type: string;
|
|
4972
5001
|
message: string;
|
|
5002
|
+
type: string;
|
|
4973
5003
|
};
|
|
4974
|
-
status: "error";
|
|
4975
|
-
action_attempt_id: string;
|
|
4976
5004
|
result: null;
|
|
4977
5005
|
action_type: "LOCK_DOOR";
|
|
4978
5006
|
} | {
|
|
4979
|
-
error: null;
|
|
4980
5007
|
status: "pending";
|
|
4981
5008
|
action_attempt_id: string;
|
|
5009
|
+
error: null;
|
|
4982
5010
|
result: null;
|
|
4983
5011
|
action_type: "UNLOCK_DOOR";
|
|
4984
5012
|
} | {
|
|
4985
|
-
error: null;
|
|
4986
5013
|
status: "success";
|
|
4987
5014
|
action_attempt_id: string;
|
|
5015
|
+
error: null;
|
|
4988
5016
|
result: {};
|
|
4989
5017
|
action_type: "UNLOCK_DOOR";
|
|
4990
5018
|
} | {
|
|
5019
|
+
status: "error";
|
|
5020
|
+
action_attempt_id: string;
|
|
4991
5021
|
error: {
|
|
4992
|
-
type: string;
|
|
4993
5022
|
message: string;
|
|
5023
|
+
type: string;
|
|
4994
5024
|
};
|
|
4995
|
-
status: "error";
|
|
4996
|
-
action_attempt_id: string;
|
|
4997
5025
|
result: null;
|
|
4998
5026
|
action_type: "UNLOCK_DOOR";
|
|
4999
5027
|
} | {
|
|
5000
|
-
error: null;
|
|
5001
5028
|
status: "pending";
|
|
5002
5029
|
action_attempt_id: string;
|
|
5030
|
+
error: null;
|
|
5003
5031
|
result: null;
|
|
5004
5032
|
action_type: "SCAN_CREDENTIAL";
|
|
5005
5033
|
} | {
|
|
5006
|
-
error: null;
|
|
5007
5034
|
status: "success";
|
|
5008
5035
|
action_attempt_id: string;
|
|
5036
|
+
error: null;
|
|
5009
5037
|
result: {
|
|
5010
5038
|
warnings: {
|
|
5011
5039
|
warning_code: "acs_credential_on_encoder_out_of_sync" | "acs_credential_on_seam_not_found";
|
|
@@ -5018,10 +5046,10 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
5018
5046
|
is_issued: boolean | null;
|
|
5019
5047
|
card_number: string | null;
|
|
5020
5048
|
visionline_metadata?: {
|
|
5021
|
-
expired: boolean;
|
|
5022
5049
|
card_id: string;
|
|
5023
5050
|
cancelled: boolean;
|
|
5024
5051
|
discarded: boolean;
|
|
5052
|
+
expired: boolean;
|
|
5025
5053
|
overwritten: boolean;
|
|
5026
5054
|
pending_auto_update: boolean;
|
|
5027
5055
|
card_format: "TLCode" | "rfid48";
|
|
@@ -5180,30 +5208,30 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
5180
5208
|
};
|
|
5181
5209
|
action_type: "SCAN_CREDENTIAL";
|
|
5182
5210
|
} | {
|
|
5211
|
+
status: "error";
|
|
5212
|
+
action_attempt_id: string;
|
|
5183
5213
|
error: {
|
|
5184
|
-
type: "uncategorized_error";
|
|
5185
5214
|
message: string;
|
|
5215
|
+
type: "uncategorized_error";
|
|
5186
5216
|
} | {
|
|
5187
|
-
type: "action_attempt_expired";
|
|
5188
5217
|
message: string;
|
|
5218
|
+
type: "action_attempt_expired";
|
|
5189
5219
|
} | {
|
|
5190
|
-
type: "no_credential_on_encoder";
|
|
5191
5220
|
message: string;
|
|
5221
|
+
type: "no_credential_on_encoder";
|
|
5192
5222
|
};
|
|
5193
|
-
status: "error";
|
|
5194
|
-
action_attempt_id: string;
|
|
5195
5223
|
result: null;
|
|
5196
5224
|
action_type: "SCAN_CREDENTIAL";
|
|
5197
5225
|
} | {
|
|
5198
|
-
error: null;
|
|
5199
5226
|
status: "pending";
|
|
5200
5227
|
action_attempt_id: string;
|
|
5228
|
+
error: null;
|
|
5201
5229
|
result: null;
|
|
5202
5230
|
action_type: "ENCODE_CREDENTIAL";
|
|
5203
5231
|
} | {
|
|
5204
|
-
error: null;
|
|
5205
5232
|
status: "success";
|
|
5206
5233
|
action_attempt_id: string;
|
|
5234
|
+
error: null;
|
|
5207
5235
|
result: {
|
|
5208
5236
|
display_name: string;
|
|
5209
5237
|
workspace_id: string;
|
|
@@ -5351,326 +5379,326 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
5351
5379
|
};
|
|
5352
5380
|
action_type: "ENCODE_CREDENTIAL";
|
|
5353
5381
|
} | {
|
|
5382
|
+
status: "error";
|
|
5383
|
+
action_attempt_id: string;
|
|
5354
5384
|
error: {
|
|
5355
|
-
type: "uncategorized_error";
|
|
5356
5385
|
message: string;
|
|
5386
|
+
type: "uncategorized_error";
|
|
5357
5387
|
} | {
|
|
5358
|
-
type: "action_attempt_expired";
|
|
5359
5388
|
message: string;
|
|
5389
|
+
type: "action_attempt_expired";
|
|
5360
5390
|
} | {
|
|
5361
|
-
type: "no_credential_on_encoder";
|
|
5362
5391
|
message: string;
|
|
5392
|
+
type: "no_credential_on_encoder";
|
|
5363
5393
|
} | {
|
|
5364
|
-
type: "incompatible_card_format";
|
|
5365
5394
|
message: string;
|
|
5395
|
+
type: "incompatible_card_format";
|
|
5366
5396
|
} | {
|
|
5367
|
-
type: "credential_cannot_be_reissued";
|
|
5368
5397
|
message: string;
|
|
5398
|
+
type: "credential_cannot_be_reissued";
|
|
5369
5399
|
};
|
|
5370
|
-
status: "error";
|
|
5371
|
-
action_attempt_id: string;
|
|
5372
5400
|
result: null;
|
|
5373
5401
|
action_type: "ENCODE_CREDENTIAL";
|
|
5374
5402
|
} | {
|
|
5375
|
-
error: null;
|
|
5376
5403
|
status: "pending";
|
|
5377
5404
|
action_attempt_id: string;
|
|
5405
|
+
error: null;
|
|
5378
5406
|
result: null;
|
|
5379
5407
|
action_type: "RESET_SANDBOX_WORKSPACE";
|
|
5380
5408
|
} | {
|
|
5381
|
-
error: null;
|
|
5382
5409
|
status: "success";
|
|
5383
5410
|
action_attempt_id: string;
|
|
5411
|
+
error: null;
|
|
5384
5412
|
result: {};
|
|
5385
5413
|
action_type: "RESET_SANDBOX_WORKSPACE";
|
|
5386
5414
|
} | {
|
|
5415
|
+
status: "error";
|
|
5416
|
+
action_attempt_id: string;
|
|
5387
5417
|
error: {
|
|
5388
|
-
type: string;
|
|
5389
5418
|
message: string;
|
|
5419
|
+
type: string;
|
|
5390
5420
|
};
|
|
5391
|
-
status: "error";
|
|
5392
|
-
action_attempt_id: string;
|
|
5393
5421
|
result: null;
|
|
5394
5422
|
action_type: "RESET_SANDBOX_WORKSPACE";
|
|
5395
5423
|
} | {
|
|
5396
|
-
error: null;
|
|
5397
5424
|
status: "pending";
|
|
5398
5425
|
action_attempt_id: string;
|
|
5426
|
+
error: null;
|
|
5399
5427
|
result: null;
|
|
5400
5428
|
action_type: "SET_FAN_MODE";
|
|
5401
5429
|
} | {
|
|
5402
|
-
error: null;
|
|
5403
5430
|
status: "success";
|
|
5404
5431
|
action_attempt_id: string;
|
|
5432
|
+
error: null;
|
|
5405
5433
|
result: {};
|
|
5406
5434
|
action_type: "SET_FAN_MODE";
|
|
5407
5435
|
} | {
|
|
5436
|
+
status: "error";
|
|
5437
|
+
action_attempt_id: string;
|
|
5408
5438
|
error: {
|
|
5409
|
-
type: string;
|
|
5410
5439
|
message: string;
|
|
5440
|
+
type: string;
|
|
5411
5441
|
};
|
|
5412
|
-
status: "error";
|
|
5413
|
-
action_attempt_id: string;
|
|
5414
5442
|
result: null;
|
|
5415
5443
|
action_type: "SET_FAN_MODE";
|
|
5416
5444
|
} | {
|
|
5417
|
-
error: null;
|
|
5418
5445
|
status: "pending";
|
|
5419
5446
|
action_attempt_id: string;
|
|
5447
|
+
error: null;
|
|
5420
5448
|
result: null;
|
|
5421
5449
|
action_type: "SET_HVAC_MODE";
|
|
5422
5450
|
} | {
|
|
5423
|
-
error: null;
|
|
5424
5451
|
status: "success";
|
|
5425
5452
|
action_attempt_id: string;
|
|
5453
|
+
error: null;
|
|
5426
5454
|
result: {};
|
|
5427
5455
|
action_type: "SET_HVAC_MODE";
|
|
5428
5456
|
} | {
|
|
5457
|
+
status: "error";
|
|
5458
|
+
action_attempt_id: string;
|
|
5429
5459
|
error: {
|
|
5430
|
-
type: string;
|
|
5431
5460
|
message: string;
|
|
5461
|
+
type: string;
|
|
5432
5462
|
};
|
|
5433
|
-
status: "error";
|
|
5434
|
-
action_attempt_id: string;
|
|
5435
5463
|
result: null;
|
|
5436
5464
|
action_type: "SET_HVAC_MODE";
|
|
5437
5465
|
} | {
|
|
5438
|
-
error: null;
|
|
5439
5466
|
status: "pending";
|
|
5440
5467
|
action_attempt_id: string;
|
|
5468
|
+
error: null;
|
|
5441
5469
|
result: null;
|
|
5442
5470
|
action_type: "ACTIVATE_CLIMATE_PRESET";
|
|
5443
5471
|
} | {
|
|
5444
|
-
error: null;
|
|
5445
5472
|
status: "success";
|
|
5446
5473
|
action_attempt_id: string;
|
|
5474
|
+
error: null;
|
|
5447
5475
|
result: {};
|
|
5448
5476
|
action_type: "ACTIVATE_CLIMATE_PRESET";
|
|
5449
5477
|
} | {
|
|
5478
|
+
status: "error";
|
|
5479
|
+
action_attempt_id: string;
|
|
5450
5480
|
error: {
|
|
5451
|
-
type: string;
|
|
5452
5481
|
message: string;
|
|
5482
|
+
type: string;
|
|
5453
5483
|
};
|
|
5454
|
-
status: "error";
|
|
5455
|
-
action_attempt_id: string;
|
|
5456
5484
|
result: null;
|
|
5457
5485
|
action_type: "ACTIVATE_CLIMATE_PRESET";
|
|
5458
5486
|
} | {
|
|
5459
|
-
error: null;
|
|
5460
5487
|
status: "pending";
|
|
5461
5488
|
action_attempt_id: string;
|
|
5489
|
+
error: null;
|
|
5462
5490
|
result: null;
|
|
5463
5491
|
action_type: "SIMULATE_KEYPAD_CODE_ENTRY";
|
|
5464
5492
|
} | {
|
|
5465
|
-
error: null;
|
|
5466
5493
|
status: "success";
|
|
5467
5494
|
action_attempt_id: string;
|
|
5495
|
+
error: null;
|
|
5468
5496
|
result: {};
|
|
5469
5497
|
action_type: "SIMULATE_KEYPAD_CODE_ENTRY";
|
|
5470
5498
|
} | {
|
|
5499
|
+
status: "error";
|
|
5500
|
+
action_attempt_id: string;
|
|
5471
5501
|
error: {
|
|
5472
|
-
type: string;
|
|
5473
5502
|
message: string;
|
|
5503
|
+
type: string;
|
|
5474
5504
|
};
|
|
5475
|
-
status: "error";
|
|
5476
|
-
action_attempt_id: string;
|
|
5477
5505
|
result: null;
|
|
5478
5506
|
action_type: "SIMULATE_KEYPAD_CODE_ENTRY";
|
|
5479
5507
|
} | {
|
|
5480
|
-
error: null;
|
|
5481
5508
|
status: "pending";
|
|
5482
5509
|
action_attempt_id: string;
|
|
5510
|
+
error: null;
|
|
5483
5511
|
result: null;
|
|
5484
5512
|
action_type: "SIMULATE_MANUAL_LOCK_VIA_KEYPAD";
|
|
5485
5513
|
} | {
|
|
5486
|
-
error: null;
|
|
5487
5514
|
status: "success";
|
|
5488
5515
|
action_attempt_id: string;
|
|
5516
|
+
error: null;
|
|
5489
5517
|
result: {};
|
|
5490
5518
|
action_type: "SIMULATE_MANUAL_LOCK_VIA_KEYPAD";
|
|
5491
5519
|
} | {
|
|
5520
|
+
status: "error";
|
|
5521
|
+
action_attempt_id: string;
|
|
5492
5522
|
error: {
|
|
5493
|
-
type: string;
|
|
5494
5523
|
message: string;
|
|
5524
|
+
type: string;
|
|
5495
5525
|
};
|
|
5496
|
-
status: "error";
|
|
5497
|
-
action_attempt_id: string;
|
|
5498
5526
|
result: null;
|
|
5499
5527
|
action_type: "SIMULATE_MANUAL_LOCK_VIA_KEYPAD";
|
|
5500
5528
|
} | {
|
|
5501
|
-
error: null;
|
|
5502
5529
|
status: "pending";
|
|
5503
5530
|
action_attempt_id: string;
|
|
5531
|
+
error: null;
|
|
5504
5532
|
result: null;
|
|
5505
5533
|
action_type: "PUSH_THERMOSTAT_PROGRAMS";
|
|
5506
5534
|
} | {
|
|
5507
|
-
error: null;
|
|
5508
5535
|
status: "success";
|
|
5509
5536
|
action_attempt_id: string;
|
|
5537
|
+
error: null;
|
|
5510
5538
|
result: {};
|
|
5511
5539
|
action_type: "PUSH_THERMOSTAT_PROGRAMS";
|
|
5512
5540
|
} | {
|
|
5541
|
+
status: "error";
|
|
5542
|
+
action_attempt_id: string;
|
|
5513
5543
|
error: {
|
|
5514
|
-
type: string;
|
|
5515
5544
|
message: string;
|
|
5545
|
+
type: string;
|
|
5516
5546
|
};
|
|
5517
|
-
status: "error";
|
|
5518
|
-
action_attempt_id: string;
|
|
5519
5547
|
result: null;
|
|
5520
5548
|
action_type: "PUSH_THERMOSTAT_PROGRAMS";
|
|
5521
5549
|
} | {
|
|
5522
|
-
error: null;
|
|
5523
5550
|
status: "pending";
|
|
5524
5551
|
action_attempt_id: string;
|
|
5552
|
+
error: null;
|
|
5525
5553
|
result: null;
|
|
5526
5554
|
action_type: "SYNC_ACCESS_CODES";
|
|
5527
5555
|
} | {
|
|
5528
|
-
error: null;
|
|
5529
5556
|
status: "success";
|
|
5530
5557
|
action_attempt_id: string;
|
|
5558
|
+
error: null;
|
|
5531
5559
|
result: {};
|
|
5532
5560
|
action_type: "SYNC_ACCESS_CODES";
|
|
5533
5561
|
} | {
|
|
5562
|
+
status: "error";
|
|
5563
|
+
action_attempt_id: string;
|
|
5534
5564
|
error: {
|
|
5535
|
-
type: string;
|
|
5536
5565
|
message: string;
|
|
5566
|
+
type: string;
|
|
5537
5567
|
};
|
|
5538
|
-
status: "error";
|
|
5539
|
-
action_attempt_id: string;
|
|
5540
5568
|
result: null;
|
|
5541
5569
|
action_type: "SYNC_ACCESS_CODES";
|
|
5542
5570
|
} | {
|
|
5543
|
-
error: null;
|
|
5544
5571
|
status: "pending";
|
|
5545
5572
|
action_attempt_id: string;
|
|
5573
|
+
error: null;
|
|
5546
5574
|
result: null;
|
|
5547
5575
|
action_type: "CREATE_ACCESS_CODE";
|
|
5548
5576
|
} | {
|
|
5549
|
-
error: null;
|
|
5550
5577
|
status: "success";
|
|
5551
5578
|
action_attempt_id: string;
|
|
5579
|
+
error: null;
|
|
5552
5580
|
result: {
|
|
5553
5581
|
access_code?: any;
|
|
5554
5582
|
};
|
|
5555
5583
|
action_type: "CREATE_ACCESS_CODE";
|
|
5556
5584
|
} | {
|
|
5585
|
+
status: "error";
|
|
5586
|
+
action_attempt_id: string;
|
|
5557
5587
|
error: {
|
|
5558
|
-
type: string;
|
|
5559
5588
|
message: string;
|
|
5589
|
+
type: string;
|
|
5560
5590
|
};
|
|
5561
|
-
status: "error";
|
|
5562
|
-
action_attempt_id: string;
|
|
5563
5591
|
result: null;
|
|
5564
5592
|
action_type: "CREATE_ACCESS_CODE";
|
|
5565
5593
|
} | {
|
|
5566
|
-
error: null;
|
|
5567
5594
|
status: "pending";
|
|
5568
5595
|
action_attempt_id: string;
|
|
5596
|
+
error: null;
|
|
5569
5597
|
result: null;
|
|
5570
5598
|
action_type: "DELETE_ACCESS_CODE";
|
|
5571
5599
|
} | {
|
|
5572
|
-
error: null;
|
|
5573
5600
|
status: "success";
|
|
5574
5601
|
action_attempt_id: string;
|
|
5602
|
+
error: null;
|
|
5575
5603
|
result: {};
|
|
5576
5604
|
action_type: "DELETE_ACCESS_CODE";
|
|
5577
5605
|
} | {
|
|
5606
|
+
status: "error";
|
|
5607
|
+
action_attempt_id: string;
|
|
5578
5608
|
error: {
|
|
5579
|
-
type: string;
|
|
5580
5609
|
message: string;
|
|
5610
|
+
type: string;
|
|
5581
5611
|
};
|
|
5582
|
-
status: "error";
|
|
5583
|
-
action_attempt_id: string;
|
|
5584
5612
|
result: null;
|
|
5585
5613
|
action_type: "DELETE_ACCESS_CODE";
|
|
5586
5614
|
} | {
|
|
5587
|
-
error: null;
|
|
5588
5615
|
status: "pending";
|
|
5589
5616
|
action_attempt_id: string;
|
|
5617
|
+
error: null;
|
|
5590
5618
|
result: null;
|
|
5591
5619
|
action_type: "UPDATE_ACCESS_CODE";
|
|
5592
5620
|
} | {
|
|
5593
|
-
error: null;
|
|
5594
5621
|
status: "success";
|
|
5595
5622
|
action_attempt_id: string;
|
|
5623
|
+
error: null;
|
|
5596
5624
|
result: {
|
|
5597
5625
|
access_code?: any;
|
|
5598
5626
|
};
|
|
5599
5627
|
action_type: "UPDATE_ACCESS_CODE";
|
|
5600
5628
|
} | {
|
|
5629
|
+
status: "error";
|
|
5630
|
+
action_attempt_id: string;
|
|
5601
5631
|
error: {
|
|
5602
|
-
type: string;
|
|
5603
5632
|
message: string;
|
|
5633
|
+
type: string;
|
|
5604
5634
|
};
|
|
5605
|
-
status: "error";
|
|
5606
|
-
action_attempt_id: string;
|
|
5607
5635
|
result: null;
|
|
5608
5636
|
action_type: "UPDATE_ACCESS_CODE";
|
|
5609
5637
|
} | {
|
|
5610
|
-
error: null;
|
|
5611
5638
|
status: "pending";
|
|
5612
5639
|
action_attempt_id: string;
|
|
5640
|
+
error: null;
|
|
5613
5641
|
result: null;
|
|
5614
5642
|
action_type: "CREATE_NOISE_THRESHOLD";
|
|
5615
5643
|
} | {
|
|
5616
|
-
error: null;
|
|
5617
5644
|
status: "success";
|
|
5618
5645
|
action_attempt_id: string;
|
|
5646
|
+
error: null;
|
|
5619
5647
|
result: {
|
|
5620
5648
|
noise_threshold?: any;
|
|
5621
5649
|
};
|
|
5622
5650
|
action_type: "CREATE_NOISE_THRESHOLD";
|
|
5623
5651
|
} | {
|
|
5652
|
+
status: "error";
|
|
5653
|
+
action_attempt_id: string;
|
|
5624
5654
|
error: {
|
|
5625
|
-
type: string;
|
|
5626
5655
|
message: string;
|
|
5656
|
+
type: string;
|
|
5627
5657
|
};
|
|
5628
|
-
status: "error";
|
|
5629
|
-
action_attempt_id: string;
|
|
5630
5658
|
result: null;
|
|
5631
5659
|
action_type: "CREATE_NOISE_THRESHOLD";
|
|
5632
5660
|
} | {
|
|
5633
|
-
error: null;
|
|
5634
5661
|
status: "pending";
|
|
5635
5662
|
action_attempt_id: string;
|
|
5663
|
+
error: null;
|
|
5636
5664
|
result: null;
|
|
5637
5665
|
action_type: "DELETE_NOISE_THRESHOLD";
|
|
5638
5666
|
} | {
|
|
5639
|
-
error: null;
|
|
5640
5667
|
status: "success";
|
|
5641
5668
|
action_attempt_id: string;
|
|
5669
|
+
error: null;
|
|
5642
5670
|
result: {};
|
|
5643
5671
|
action_type: "DELETE_NOISE_THRESHOLD";
|
|
5644
5672
|
} | {
|
|
5673
|
+
status: "error";
|
|
5674
|
+
action_attempt_id: string;
|
|
5645
5675
|
error: {
|
|
5646
|
-
type: string;
|
|
5647
5676
|
message: string;
|
|
5677
|
+
type: string;
|
|
5648
5678
|
};
|
|
5649
|
-
status: "error";
|
|
5650
|
-
action_attempt_id: string;
|
|
5651
5679
|
result: null;
|
|
5652
5680
|
action_type: "DELETE_NOISE_THRESHOLD";
|
|
5653
5681
|
} | {
|
|
5654
|
-
error: null;
|
|
5655
5682
|
status: "pending";
|
|
5656
5683
|
action_attempt_id: string;
|
|
5684
|
+
error: null;
|
|
5657
5685
|
result: null;
|
|
5658
5686
|
action_type: "UPDATE_NOISE_THRESHOLD";
|
|
5659
5687
|
} | {
|
|
5660
|
-
error: null;
|
|
5661
5688
|
status: "success";
|
|
5662
5689
|
action_attempt_id: string;
|
|
5690
|
+
error: null;
|
|
5663
5691
|
result: {
|
|
5664
5692
|
noise_threshold?: any;
|
|
5665
5693
|
};
|
|
5666
5694
|
action_type: "UPDATE_NOISE_THRESHOLD";
|
|
5667
5695
|
} | {
|
|
5696
|
+
status: "error";
|
|
5697
|
+
action_attempt_id: string;
|
|
5668
5698
|
error: {
|
|
5669
|
-
type: string;
|
|
5670
5699
|
message: string;
|
|
5700
|
+
type: string;
|
|
5671
5701
|
};
|
|
5672
|
-
status: "error";
|
|
5673
|
-
action_attempt_id: string;
|
|
5674
5702
|
result: null;
|
|
5675
5703
|
action_type: "UPDATE_NOISE_THRESHOLD";
|
|
5676
5704
|
}>(error: unknown) => error is SeamActionAttemptFailedError<T>;
|
|
@@ -5679,57 +5707,57 @@ declare class SeamActionAttemptFailedError<T extends ActionAttempt> extends Seam
|
|
|
5679
5707
|
constructor(actionAttempt: FailedActionAttempt<T>);
|
|
5680
5708
|
}
|
|
5681
5709
|
declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
5682
|
-
error: null;
|
|
5683
5710
|
status: "pending";
|
|
5684
5711
|
action_attempt_id: string;
|
|
5712
|
+
error: null;
|
|
5685
5713
|
result: null;
|
|
5686
5714
|
action_type: "LOCK_DOOR";
|
|
5687
5715
|
} | {
|
|
5688
|
-
error: null;
|
|
5689
5716
|
status: "success";
|
|
5690
5717
|
action_attempt_id: string;
|
|
5718
|
+
error: null;
|
|
5691
5719
|
result: {};
|
|
5692
5720
|
action_type: "LOCK_DOOR";
|
|
5693
5721
|
} | {
|
|
5722
|
+
status: "error";
|
|
5723
|
+
action_attempt_id: string;
|
|
5694
5724
|
error: {
|
|
5695
|
-
type: string;
|
|
5696
5725
|
message: string;
|
|
5726
|
+
type: string;
|
|
5697
5727
|
};
|
|
5698
|
-
status: "error";
|
|
5699
|
-
action_attempt_id: string;
|
|
5700
5728
|
result: null;
|
|
5701
5729
|
action_type: "LOCK_DOOR";
|
|
5702
5730
|
} | {
|
|
5703
|
-
error: null;
|
|
5704
5731
|
status: "pending";
|
|
5705
5732
|
action_attempt_id: string;
|
|
5733
|
+
error: null;
|
|
5706
5734
|
result: null;
|
|
5707
5735
|
action_type: "UNLOCK_DOOR";
|
|
5708
5736
|
} | {
|
|
5709
|
-
error: null;
|
|
5710
5737
|
status: "success";
|
|
5711
5738
|
action_attempt_id: string;
|
|
5739
|
+
error: null;
|
|
5712
5740
|
result: {};
|
|
5713
5741
|
action_type: "UNLOCK_DOOR";
|
|
5714
5742
|
} | {
|
|
5743
|
+
status: "error";
|
|
5744
|
+
action_attempt_id: string;
|
|
5715
5745
|
error: {
|
|
5716
|
-
type: string;
|
|
5717
5746
|
message: string;
|
|
5747
|
+
type: string;
|
|
5718
5748
|
};
|
|
5719
|
-
status: "error";
|
|
5720
|
-
action_attempt_id: string;
|
|
5721
5749
|
result: null;
|
|
5722
5750
|
action_type: "UNLOCK_DOOR";
|
|
5723
5751
|
} | {
|
|
5724
|
-
error: null;
|
|
5725
5752
|
status: "pending";
|
|
5726
5753
|
action_attempt_id: string;
|
|
5754
|
+
error: null;
|
|
5727
5755
|
result: null;
|
|
5728
5756
|
action_type: "SCAN_CREDENTIAL";
|
|
5729
5757
|
} | {
|
|
5730
|
-
error: null;
|
|
5731
5758
|
status: "success";
|
|
5732
5759
|
action_attempt_id: string;
|
|
5760
|
+
error: null;
|
|
5733
5761
|
result: {
|
|
5734
5762
|
warnings: {
|
|
5735
5763
|
warning_code: "acs_credential_on_encoder_out_of_sync" | "acs_credential_on_seam_not_found";
|
|
@@ -5742,10 +5770,10 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
5742
5770
|
is_issued: boolean | null;
|
|
5743
5771
|
card_number: string | null;
|
|
5744
5772
|
visionline_metadata?: {
|
|
5745
|
-
expired: boolean;
|
|
5746
5773
|
card_id: string;
|
|
5747
5774
|
cancelled: boolean;
|
|
5748
5775
|
discarded: boolean;
|
|
5776
|
+
expired: boolean;
|
|
5749
5777
|
overwritten: boolean;
|
|
5750
5778
|
pending_auto_update: boolean;
|
|
5751
5779
|
card_format: "TLCode" | "rfid48";
|
|
@@ -5904,30 +5932,30 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
5904
5932
|
};
|
|
5905
5933
|
action_type: "SCAN_CREDENTIAL";
|
|
5906
5934
|
} | {
|
|
5935
|
+
status: "error";
|
|
5936
|
+
action_attempt_id: string;
|
|
5907
5937
|
error: {
|
|
5908
|
-
type: "uncategorized_error";
|
|
5909
5938
|
message: string;
|
|
5939
|
+
type: "uncategorized_error";
|
|
5910
5940
|
} | {
|
|
5911
|
-
type: "action_attempt_expired";
|
|
5912
5941
|
message: string;
|
|
5942
|
+
type: "action_attempt_expired";
|
|
5913
5943
|
} | {
|
|
5914
|
-
type: "no_credential_on_encoder";
|
|
5915
5944
|
message: string;
|
|
5945
|
+
type: "no_credential_on_encoder";
|
|
5916
5946
|
};
|
|
5917
|
-
status: "error";
|
|
5918
|
-
action_attempt_id: string;
|
|
5919
5947
|
result: null;
|
|
5920
5948
|
action_type: "SCAN_CREDENTIAL";
|
|
5921
5949
|
} | {
|
|
5922
|
-
error: null;
|
|
5923
5950
|
status: "pending";
|
|
5924
5951
|
action_attempt_id: string;
|
|
5952
|
+
error: null;
|
|
5925
5953
|
result: null;
|
|
5926
5954
|
action_type: "ENCODE_CREDENTIAL";
|
|
5927
5955
|
} | {
|
|
5928
|
-
error: null;
|
|
5929
5956
|
status: "success";
|
|
5930
5957
|
action_attempt_id: string;
|
|
5958
|
+
error: null;
|
|
5931
5959
|
result: {
|
|
5932
5960
|
display_name: string;
|
|
5933
5961
|
workspace_id: string;
|
|
@@ -6075,326 +6103,326 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
6075
6103
|
};
|
|
6076
6104
|
action_type: "ENCODE_CREDENTIAL";
|
|
6077
6105
|
} | {
|
|
6106
|
+
status: "error";
|
|
6107
|
+
action_attempt_id: string;
|
|
6078
6108
|
error: {
|
|
6079
|
-
type: "uncategorized_error";
|
|
6080
6109
|
message: string;
|
|
6110
|
+
type: "uncategorized_error";
|
|
6081
6111
|
} | {
|
|
6082
|
-
type: "action_attempt_expired";
|
|
6083
6112
|
message: string;
|
|
6113
|
+
type: "action_attempt_expired";
|
|
6084
6114
|
} | {
|
|
6085
|
-
type: "no_credential_on_encoder";
|
|
6086
6115
|
message: string;
|
|
6116
|
+
type: "no_credential_on_encoder";
|
|
6087
6117
|
} | {
|
|
6088
|
-
type: "incompatible_card_format";
|
|
6089
6118
|
message: string;
|
|
6119
|
+
type: "incompatible_card_format";
|
|
6090
6120
|
} | {
|
|
6091
|
-
type: "credential_cannot_be_reissued";
|
|
6092
6121
|
message: string;
|
|
6122
|
+
type: "credential_cannot_be_reissued";
|
|
6093
6123
|
};
|
|
6094
|
-
status: "error";
|
|
6095
|
-
action_attempt_id: string;
|
|
6096
6124
|
result: null;
|
|
6097
6125
|
action_type: "ENCODE_CREDENTIAL";
|
|
6098
6126
|
} | {
|
|
6099
|
-
error: null;
|
|
6100
6127
|
status: "pending";
|
|
6101
6128
|
action_attempt_id: string;
|
|
6129
|
+
error: null;
|
|
6102
6130
|
result: null;
|
|
6103
6131
|
action_type: "RESET_SANDBOX_WORKSPACE";
|
|
6104
6132
|
} | {
|
|
6105
|
-
error: null;
|
|
6106
6133
|
status: "success";
|
|
6107
6134
|
action_attempt_id: string;
|
|
6135
|
+
error: null;
|
|
6108
6136
|
result: {};
|
|
6109
6137
|
action_type: "RESET_SANDBOX_WORKSPACE";
|
|
6110
6138
|
} | {
|
|
6139
|
+
status: "error";
|
|
6140
|
+
action_attempt_id: string;
|
|
6111
6141
|
error: {
|
|
6112
|
-
type: string;
|
|
6113
6142
|
message: string;
|
|
6143
|
+
type: string;
|
|
6114
6144
|
};
|
|
6115
|
-
status: "error";
|
|
6116
|
-
action_attempt_id: string;
|
|
6117
6145
|
result: null;
|
|
6118
6146
|
action_type: "RESET_SANDBOX_WORKSPACE";
|
|
6119
6147
|
} | {
|
|
6120
|
-
error: null;
|
|
6121
6148
|
status: "pending";
|
|
6122
6149
|
action_attempt_id: string;
|
|
6150
|
+
error: null;
|
|
6123
6151
|
result: null;
|
|
6124
6152
|
action_type: "SET_FAN_MODE";
|
|
6125
6153
|
} | {
|
|
6126
|
-
error: null;
|
|
6127
6154
|
status: "success";
|
|
6128
6155
|
action_attempt_id: string;
|
|
6156
|
+
error: null;
|
|
6129
6157
|
result: {};
|
|
6130
6158
|
action_type: "SET_FAN_MODE";
|
|
6131
6159
|
} | {
|
|
6160
|
+
status: "error";
|
|
6161
|
+
action_attempt_id: string;
|
|
6132
6162
|
error: {
|
|
6133
|
-
type: string;
|
|
6134
6163
|
message: string;
|
|
6164
|
+
type: string;
|
|
6135
6165
|
};
|
|
6136
|
-
status: "error";
|
|
6137
|
-
action_attempt_id: string;
|
|
6138
6166
|
result: null;
|
|
6139
6167
|
action_type: "SET_FAN_MODE";
|
|
6140
6168
|
} | {
|
|
6141
|
-
error: null;
|
|
6142
6169
|
status: "pending";
|
|
6143
6170
|
action_attempt_id: string;
|
|
6171
|
+
error: null;
|
|
6144
6172
|
result: null;
|
|
6145
6173
|
action_type: "SET_HVAC_MODE";
|
|
6146
6174
|
} | {
|
|
6147
|
-
error: null;
|
|
6148
6175
|
status: "success";
|
|
6149
6176
|
action_attempt_id: string;
|
|
6177
|
+
error: null;
|
|
6150
6178
|
result: {};
|
|
6151
6179
|
action_type: "SET_HVAC_MODE";
|
|
6152
6180
|
} | {
|
|
6181
|
+
status: "error";
|
|
6182
|
+
action_attempt_id: string;
|
|
6153
6183
|
error: {
|
|
6154
|
-
type: string;
|
|
6155
6184
|
message: string;
|
|
6185
|
+
type: string;
|
|
6156
6186
|
};
|
|
6157
|
-
status: "error";
|
|
6158
|
-
action_attempt_id: string;
|
|
6159
6187
|
result: null;
|
|
6160
6188
|
action_type: "SET_HVAC_MODE";
|
|
6161
6189
|
} | {
|
|
6162
|
-
error: null;
|
|
6163
6190
|
status: "pending";
|
|
6164
6191
|
action_attempt_id: string;
|
|
6192
|
+
error: null;
|
|
6165
6193
|
result: null;
|
|
6166
6194
|
action_type: "ACTIVATE_CLIMATE_PRESET";
|
|
6167
6195
|
} | {
|
|
6168
|
-
error: null;
|
|
6169
6196
|
status: "success";
|
|
6170
6197
|
action_attempt_id: string;
|
|
6198
|
+
error: null;
|
|
6171
6199
|
result: {};
|
|
6172
6200
|
action_type: "ACTIVATE_CLIMATE_PRESET";
|
|
6173
6201
|
} | {
|
|
6202
|
+
status: "error";
|
|
6203
|
+
action_attempt_id: string;
|
|
6174
6204
|
error: {
|
|
6175
|
-
type: string;
|
|
6176
6205
|
message: string;
|
|
6206
|
+
type: string;
|
|
6177
6207
|
};
|
|
6178
|
-
status: "error";
|
|
6179
|
-
action_attempt_id: string;
|
|
6180
6208
|
result: null;
|
|
6181
6209
|
action_type: "ACTIVATE_CLIMATE_PRESET";
|
|
6182
6210
|
} | {
|
|
6183
|
-
error: null;
|
|
6184
6211
|
status: "pending";
|
|
6185
6212
|
action_attempt_id: string;
|
|
6213
|
+
error: null;
|
|
6186
6214
|
result: null;
|
|
6187
6215
|
action_type: "SIMULATE_KEYPAD_CODE_ENTRY";
|
|
6188
6216
|
} | {
|
|
6189
|
-
error: null;
|
|
6190
6217
|
status: "success";
|
|
6191
6218
|
action_attempt_id: string;
|
|
6219
|
+
error: null;
|
|
6192
6220
|
result: {};
|
|
6193
6221
|
action_type: "SIMULATE_KEYPAD_CODE_ENTRY";
|
|
6194
6222
|
} | {
|
|
6223
|
+
status: "error";
|
|
6224
|
+
action_attempt_id: string;
|
|
6195
6225
|
error: {
|
|
6196
|
-
type: string;
|
|
6197
6226
|
message: string;
|
|
6227
|
+
type: string;
|
|
6198
6228
|
};
|
|
6199
|
-
status: "error";
|
|
6200
|
-
action_attempt_id: string;
|
|
6201
6229
|
result: null;
|
|
6202
6230
|
action_type: "SIMULATE_KEYPAD_CODE_ENTRY";
|
|
6203
6231
|
} | {
|
|
6204
|
-
error: null;
|
|
6205
6232
|
status: "pending";
|
|
6206
6233
|
action_attempt_id: string;
|
|
6234
|
+
error: null;
|
|
6207
6235
|
result: null;
|
|
6208
6236
|
action_type: "SIMULATE_MANUAL_LOCK_VIA_KEYPAD";
|
|
6209
6237
|
} | {
|
|
6210
|
-
error: null;
|
|
6211
6238
|
status: "success";
|
|
6212
6239
|
action_attempt_id: string;
|
|
6240
|
+
error: null;
|
|
6213
6241
|
result: {};
|
|
6214
6242
|
action_type: "SIMULATE_MANUAL_LOCK_VIA_KEYPAD";
|
|
6215
6243
|
} | {
|
|
6244
|
+
status: "error";
|
|
6245
|
+
action_attempt_id: string;
|
|
6216
6246
|
error: {
|
|
6217
|
-
type: string;
|
|
6218
6247
|
message: string;
|
|
6248
|
+
type: string;
|
|
6219
6249
|
};
|
|
6220
|
-
status: "error";
|
|
6221
|
-
action_attempt_id: string;
|
|
6222
6250
|
result: null;
|
|
6223
6251
|
action_type: "SIMULATE_MANUAL_LOCK_VIA_KEYPAD";
|
|
6224
6252
|
} | {
|
|
6225
|
-
error: null;
|
|
6226
6253
|
status: "pending";
|
|
6227
6254
|
action_attempt_id: string;
|
|
6255
|
+
error: null;
|
|
6228
6256
|
result: null;
|
|
6229
6257
|
action_type: "PUSH_THERMOSTAT_PROGRAMS";
|
|
6230
6258
|
} | {
|
|
6231
|
-
error: null;
|
|
6232
6259
|
status: "success";
|
|
6233
6260
|
action_attempt_id: string;
|
|
6261
|
+
error: null;
|
|
6234
6262
|
result: {};
|
|
6235
6263
|
action_type: "PUSH_THERMOSTAT_PROGRAMS";
|
|
6236
6264
|
} | {
|
|
6265
|
+
status: "error";
|
|
6266
|
+
action_attempt_id: string;
|
|
6237
6267
|
error: {
|
|
6238
|
-
type: string;
|
|
6239
6268
|
message: string;
|
|
6269
|
+
type: string;
|
|
6240
6270
|
};
|
|
6241
|
-
status: "error";
|
|
6242
|
-
action_attempt_id: string;
|
|
6243
6271
|
result: null;
|
|
6244
6272
|
action_type: "PUSH_THERMOSTAT_PROGRAMS";
|
|
6245
6273
|
} | {
|
|
6246
|
-
error: null;
|
|
6247
6274
|
status: "pending";
|
|
6248
6275
|
action_attempt_id: string;
|
|
6276
|
+
error: null;
|
|
6249
6277
|
result: null;
|
|
6250
6278
|
action_type: "SYNC_ACCESS_CODES";
|
|
6251
6279
|
} | {
|
|
6252
|
-
error: null;
|
|
6253
6280
|
status: "success";
|
|
6254
6281
|
action_attempt_id: string;
|
|
6282
|
+
error: null;
|
|
6255
6283
|
result: {};
|
|
6256
6284
|
action_type: "SYNC_ACCESS_CODES";
|
|
6257
6285
|
} | {
|
|
6286
|
+
status: "error";
|
|
6287
|
+
action_attempt_id: string;
|
|
6258
6288
|
error: {
|
|
6259
|
-
type: string;
|
|
6260
6289
|
message: string;
|
|
6290
|
+
type: string;
|
|
6261
6291
|
};
|
|
6262
|
-
status: "error";
|
|
6263
|
-
action_attempt_id: string;
|
|
6264
6292
|
result: null;
|
|
6265
6293
|
action_type: "SYNC_ACCESS_CODES";
|
|
6266
6294
|
} | {
|
|
6267
|
-
error: null;
|
|
6268
6295
|
status: "pending";
|
|
6269
6296
|
action_attempt_id: string;
|
|
6297
|
+
error: null;
|
|
6270
6298
|
result: null;
|
|
6271
6299
|
action_type: "CREATE_ACCESS_CODE";
|
|
6272
6300
|
} | {
|
|
6273
|
-
error: null;
|
|
6274
6301
|
status: "success";
|
|
6275
6302
|
action_attempt_id: string;
|
|
6303
|
+
error: null;
|
|
6276
6304
|
result: {
|
|
6277
6305
|
access_code?: any;
|
|
6278
6306
|
};
|
|
6279
6307
|
action_type: "CREATE_ACCESS_CODE";
|
|
6280
6308
|
} | {
|
|
6309
|
+
status: "error";
|
|
6310
|
+
action_attempt_id: string;
|
|
6281
6311
|
error: {
|
|
6282
|
-
type: string;
|
|
6283
6312
|
message: string;
|
|
6313
|
+
type: string;
|
|
6284
6314
|
};
|
|
6285
|
-
status: "error";
|
|
6286
|
-
action_attempt_id: string;
|
|
6287
6315
|
result: null;
|
|
6288
6316
|
action_type: "CREATE_ACCESS_CODE";
|
|
6289
6317
|
} | {
|
|
6290
|
-
error: null;
|
|
6291
6318
|
status: "pending";
|
|
6292
6319
|
action_attempt_id: string;
|
|
6320
|
+
error: null;
|
|
6293
6321
|
result: null;
|
|
6294
6322
|
action_type: "DELETE_ACCESS_CODE";
|
|
6295
6323
|
} | {
|
|
6296
|
-
error: null;
|
|
6297
6324
|
status: "success";
|
|
6298
6325
|
action_attempt_id: string;
|
|
6326
|
+
error: null;
|
|
6299
6327
|
result: {};
|
|
6300
6328
|
action_type: "DELETE_ACCESS_CODE";
|
|
6301
6329
|
} | {
|
|
6330
|
+
status: "error";
|
|
6331
|
+
action_attempt_id: string;
|
|
6302
6332
|
error: {
|
|
6303
|
-
type: string;
|
|
6304
6333
|
message: string;
|
|
6334
|
+
type: string;
|
|
6305
6335
|
};
|
|
6306
|
-
status: "error";
|
|
6307
|
-
action_attempt_id: string;
|
|
6308
6336
|
result: null;
|
|
6309
6337
|
action_type: "DELETE_ACCESS_CODE";
|
|
6310
6338
|
} | {
|
|
6311
|
-
error: null;
|
|
6312
6339
|
status: "pending";
|
|
6313
6340
|
action_attempt_id: string;
|
|
6341
|
+
error: null;
|
|
6314
6342
|
result: null;
|
|
6315
6343
|
action_type: "UPDATE_ACCESS_CODE";
|
|
6316
6344
|
} | {
|
|
6317
|
-
error: null;
|
|
6318
6345
|
status: "success";
|
|
6319
6346
|
action_attempt_id: string;
|
|
6347
|
+
error: null;
|
|
6320
6348
|
result: {
|
|
6321
6349
|
access_code?: any;
|
|
6322
6350
|
};
|
|
6323
6351
|
action_type: "UPDATE_ACCESS_CODE";
|
|
6324
6352
|
} | {
|
|
6353
|
+
status: "error";
|
|
6354
|
+
action_attempt_id: string;
|
|
6325
6355
|
error: {
|
|
6326
|
-
type: string;
|
|
6327
6356
|
message: string;
|
|
6357
|
+
type: string;
|
|
6328
6358
|
};
|
|
6329
|
-
status: "error";
|
|
6330
|
-
action_attempt_id: string;
|
|
6331
6359
|
result: null;
|
|
6332
6360
|
action_type: "UPDATE_ACCESS_CODE";
|
|
6333
6361
|
} | {
|
|
6334
|
-
error: null;
|
|
6335
6362
|
status: "pending";
|
|
6336
6363
|
action_attempt_id: string;
|
|
6364
|
+
error: null;
|
|
6337
6365
|
result: null;
|
|
6338
6366
|
action_type: "CREATE_NOISE_THRESHOLD";
|
|
6339
6367
|
} | {
|
|
6340
|
-
error: null;
|
|
6341
6368
|
status: "success";
|
|
6342
6369
|
action_attempt_id: string;
|
|
6370
|
+
error: null;
|
|
6343
6371
|
result: {
|
|
6344
6372
|
noise_threshold?: any;
|
|
6345
6373
|
};
|
|
6346
6374
|
action_type: "CREATE_NOISE_THRESHOLD";
|
|
6347
6375
|
} | {
|
|
6376
|
+
status: "error";
|
|
6377
|
+
action_attempt_id: string;
|
|
6348
6378
|
error: {
|
|
6349
|
-
type: string;
|
|
6350
6379
|
message: string;
|
|
6380
|
+
type: string;
|
|
6351
6381
|
};
|
|
6352
|
-
status: "error";
|
|
6353
|
-
action_attempt_id: string;
|
|
6354
6382
|
result: null;
|
|
6355
6383
|
action_type: "CREATE_NOISE_THRESHOLD";
|
|
6356
6384
|
} | {
|
|
6357
|
-
error: null;
|
|
6358
6385
|
status: "pending";
|
|
6359
6386
|
action_attempt_id: string;
|
|
6387
|
+
error: null;
|
|
6360
6388
|
result: null;
|
|
6361
6389
|
action_type: "DELETE_NOISE_THRESHOLD";
|
|
6362
6390
|
} | {
|
|
6363
|
-
error: null;
|
|
6364
6391
|
status: "success";
|
|
6365
6392
|
action_attempt_id: string;
|
|
6393
|
+
error: null;
|
|
6366
6394
|
result: {};
|
|
6367
6395
|
action_type: "DELETE_NOISE_THRESHOLD";
|
|
6368
6396
|
} | {
|
|
6397
|
+
status: "error";
|
|
6398
|
+
action_attempt_id: string;
|
|
6369
6399
|
error: {
|
|
6370
|
-
type: string;
|
|
6371
6400
|
message: string;
|
|
6401
|
+
type: string;
|
|
6372
6402
|
};
|
|
6373
|
-
status: "error";
|
|
6374
|
-
action_attempt_id: string;
|
|
6375
6403
|
result: null;
|
|
6376
6404
|
action_type: "DELETE_NOISE_THRESHOLD";
|
|
6377
6405
|
} | {
|
|
6378
|
-
error: null;
|
|
6379
6406
|
status: "pending";
|
|
6380
6407
|
action_attempt_id: string;
|
|
6408
|
+
error: null;
|
|
6381
6409
|
result: null;
|
|
6382
6410
|
action_type: "UPDATE_NOISE_THRESHOLD";
|
|
6383
6411
|
} | {
|
|
6384
|
-
error: null;
|
|
6385
6412
|
status: "success";
|
|
6386
6413
|
action_attempt_id: string;
|
|
6414
|
+
error: null;
|
|
6387
6415
|
result: {
|
|
6388
6416
|
noise_threshold?: any;
|
|
6389
6417
|
};
|
|
6390
6418
|
action_type: "UPDATE_NOISE_THRESHOLD";
|
|
6391
6419
|
} | {
|
|
6420
|
+
status: "error";
|
|
6421
|
+
action_attempt_id: string;
|
|
6392
6422
|
error: {
|
|
6393
|
-
type: string;
|
|
6394
6423
|
message: string;
|
|
6424
|
+
type: string;
|
|
6395
6425
|
};
|
|
6396
|
-
status: "error";
|
|
6397
|
-
action_attempt_id: string;
|
|
6398
6426
|
result: null;
|
|
6399
6427
|
action_type: "UPDATE_NOISE_THRESHOLD";
|
|
6400
6428
|
}>(error: unknown) => error is SeamActionAttemptTimeoutError<T>;
|
|
@@ -6506,4 +6534,4 @@ declare const isPublishableKey: (token: string) => boolean;
|
|
|
6506
6534
|
declare const isConsoleSessionToken: (token: string) => boolean;
|
|
6507
6535
|
declare const isPersonalAccessToken: (token: string) => boolean;
|
|
6508
6536
|
|
|
6509
|
-
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 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 };
|