@seamapi/types 1.404.0 → 1.404.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -24288,6 +24288,7 @@ declare const _default: {
24288
24288
  'x-undocumented': string;
24289
24289
  };
24290
24290
  accepted_providers: {
24291
+ description: string;
24291
24292
  items: {
24292
24293
  type: string;
24293
24294
  };
@@ -24300,26 +24301,32 @@ declare const _default: {
24300
24301
  'x-undocumented': string;
24301
24302
  };
24302
24303
  any_provider_allowed: {
24304
+ description: string;
24303
24305
  type: string;
24304
24306
  };
24305
24307
  authorized_at: {
24308
+ description: string;
24306
24309
  format: string;
24307
24310
  nullable: boolean;
24308
24311
  type: string;
24309
24312
  };
24310
24313
  automatically_manage_new_devices: {
24314
+ description: string;
24311
24315
  type: string;
24312
24316
  };
24313
24317
  connect_webview_id: {
24318
+ description: string;
24314
24319
  format: string;
24315
24320
  type: string;
24316
24321
  };
24317
24322
  connected_account_id: {
24323
+ description: string;
24318
24324
  format: string;
24319
24325
  nullable: boolean;
24320
24326
  type: string;
24321
24327
  };
24322
24328
  created_at: {
24329
+ description: string;
24323
24330
  format: string;
24324
24331
  type: string;
24325
24332
  };
@@ -24329,14 +24336,17 @@ declare const _default: {
24329
24336
  type: string;
24330
24337
  }[];
24331
24338
  };
24339
+ description: string;
24332
24340
  type: string;
24333
24341
  };
24334
24342
  custom_redirect_failure_url: {
24343
+ description: string;
24335
24344
  format: string;
24336
24345
  nullable: boolean;
24337
24346
  type: string;
24338
24347
  };
24339
24348
  custom_redirect_url: {
24349
+ description: string;
24340
24350
  format: string;
24341
24351
  nullable: boolean;
24342
24352
  type: string;
@@ -24346,24 +24356,30 @@ declare const _default: {
24346
24356
  type: string;
24347
24357
  };
24348
24358
  login_successful: {
24359
+ description: string;
24349
24360
  type: string;
24350
24361
  };
24351
24362
  selected_provider: {
24363
+ description: string;
24352
24364
  nullable: boolean;
24353
24365
  type: string;
24354
24366
  };
24355
24367
  status: {
24368
+ description: string;
24356
24369
  enum: string[];
24357
24370
  type: string;
24358
24371
  };
24359
24372
  url: {
24373
+ description: string;
24360
24374
  format: string;
24361
24375
  type: string;
24362
24376
  };
24363
24377
  wait_for_device_creation: {
24378
+ description: string;
24364
24379
  type: string;
24365
24380
  };
24366
24381
  workspace_id: {
24382
+ description: string;
24367
24383
  format: string;
24368
24384
  type: string;
24369
24385
  };
@@ -24398,6 +24414,7 @@ declare const _default: {
24398
24414
  type: string;
24399
24415
  }[];
24400
24416
  };
24417
+ description: string;
24401
24418
  type: string;
24402
24419
  };
24403
24420
  errors: {
@@ -24652,6 +24669,7 @@ declare const _default: {
24652
24669
  type: string;
24653
24670
  }[];
24654
24671
  };
24672
+ description: string;
24655
24673
  type: string;
24656
24674
  };
24657
24675
  device_id: {
@@ -38328,6 +38346,11 @@ declare const _default: {
38328
38346
  format: string;
38329
38347
  type: string;
38330
38348
  };
38349
+ user_identity_id: {
38350
+ description: string;
38351
+ format: string;
38352
+ type: string;
38353
+ };
38331
38354
  };
38332
38355
  required: string[];
38333
38356
  type: string;
@@ -69070,8 +69093,10 @@ interface Routes {
69070
69093
  queryParams: {};
69071
69094
  jsonBody: {};
69072
69095
  commonParams: {
69073
- /** ID of the access system user that you want to remove from an access group. */
69074
- acs_user_id: string;
69096
+ /** ID of the access system user that you want to remove from an access group. You can only provide acs_user_id or user_identity_id. */
69097
+ acs_user_id?: string | undefined;
69098
+ /** ID of the user identity that you want to remove from an access group. You can only provide acs_user_id or user_identity_id. */
69099
+ user_identity_id?: string | undefined;
69075
69100
  /** ID of the access group from which you want to remove an access system user. */
69076
69101
  acs_access_group_id: string;
69077
69102
  };
@@ -72063,12 +72088,18 @@ interface Routes {
72063
72088
 
72064
72089
  To list all providers within a category, use `/devices/list_device_providers` with the desired `provider_category` filter. To list all provider keys, use `/devices/list_device_providers` with no filters. */
72065
72090
  connect_webview: {
72091
+ /** ID of the Connect Webview. */
72066
72092
  connect_webview_id: string;
72093
+ /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the Connect Webview. */
72067
72094
  workspace_id: string;
72095
+ /** Date and time at which the Connect Webview was created. */
72068
72096
  created_at: string;
72097
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the Connect Webview. */
72069
72098
  connected_account_id: string | null;
72099
+ /** URL for the Connect Webview. You use the URL to display the Connect Webview flow to your user. */
72070
72100
  url: string;
72071
72101
  device_selection_mode: 'none' | 'single' | 'multiple';
72102
+ /** List of accepted [provider keys](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-brands-to-display-in-your-connect-webviews). */
72072
72103
  accepted_providers: string[];
72073
72104
  /**
72074
72105
  * @deprecated Unused. Will be removed. */
@@ -72076,15 +72107,25 @@ interface Routes {
72076
72107
  /**
72077
72108
  * @deprecated Unused. Will be removed. */
72078
72109
  any_device_allowed: boolean;
72110
+ /** Indicates whether any provider is allowed. */
72079
72111
  any_provider_allowed: boolean;
72112
+ /** Indicates whether the user logged in successfully using the Connect Webview. */
72080
72113
  login_successful: boolean;
72114
+ /** Status of the Connect Webview. `authorized` indicates that the user has successfully logged into their device or system account, thereby completing the Connect Webview. */
72081
72115
  status: 'pending' | 'failed' | 'authorized';
72116
+ /** URL to which the Connect Webview should redirect when the user successfully pairs a device or system. If you do not set the `custom_redirect_failure_url`, the Connect Webview redirects to the `custom_redirect_url` when an unexpected error occurs. */
72082
72117
  custom_redirect_url: string | null;
72118
+ /** URL to which the Connect Webview should redirect when an unexpected error occurs. */
72083
72119
  custom_redirect_failure_url: string | null;
72120
+ /** Set of key:value pairs. Adding custom metadata to a resource, such as a [Connect Webview](https://docs.seam.co/latest/core-concepts/connect-webviews/attaching-custom-data-to-the-connect-webview), [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts/adding-custom-metadata-to-a-connected-account), or [device](https://docs.seam.co/latest/core-concepts/devices/adding-custom-metadata-to-a-device), enables you to store custom information, like customer details or internal IDs from your application. */
72084
72121
  custom_metadata: Record<string, string | boolean>;
72122
+ /** Indicates whether Seam should [import all new devices](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#automatically_manage_new_devices) for the connected account to make these devices available for use and management by the Seam API. */
72085
72123
  automatically_manage_new_devices: boolean;
72124
+ /** Indicates whether Seam should [finish syncing all devices](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#wait_for_device_creation) in a newly-connected account before completing the associated Connect Webview. */
72086
72125
  wait_for_device_creation: boolean;
72126
+ /** Date and time at which the user authorized (through the Connect Webview) the management of their devices. */
72087
72127
  authorized_at: string | null;
72128
+ /** Selected provider of the Connect Webview, one of the [provider keys](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-brands-to-display-in-your-connect-webviews). */
72088
72129
  selected_provider: string | null;
72089
72130
  };
72090
72131
  };
@@ -72124,12 +72165,18 @@ interface Routes {
72124
72165
 
72125
72166
  To list all providers within a category, use `/devices/list_device_providers` with the desired `provider_category` filter. To list all provider keys, use `/devices/list_device_providers` with no filters. */
72126
72167
  connect_webview: {
72168
+ /** ID of the Connect Webview. */
72127
72169
  connect_webview_id: string;
72170
+ /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the Connect Webview. */
72128
72171
  workspace_id: string;
72172
+ /** Date and time at which the Connect Webview was created. */
72129
72173
  created_at: string;
72174
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the Connect Webview. */
72130
72175
  connected_account_id: string | null;
72176
+ /** URL for the Connect Webview. You use the URL to display the Connect Webview flow to your user. */
72131
72177
  url: string;
72132
72178
  device_selection_mode: 'none' | 'single' | 'multiple';
72179
+ /** List of accepted [provider keys](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-brands-to-display-in-your-connect-webviews). */
72133
72180
  accepted_providers: string[];
72134
72181
  /**
72135
72182
  * @deprecated Unused. Will be removed. */
@@ -72137,15 +72184,25 @@ interface Routes {
72137
72184
  /**
72138
72185
  * @deprecated Unused. Will be removed. */
72139
72186
  any_device_allowed: boolean;
72187
+ /** Indicates whether any provider is allowed. */
72140
72188
  any_provider_allowed: boolean;
72189
+ /** Indicates whether the user logged in successfully using the Connect Webview. */
72141
72190
  login_successful: boolean;
72191
+ /** Status of the Connect Webview. `authorized` indicates that the user has successfully logged into their device or system account, thereby completing the Connect Webview. */
72142
72192
  status: 'pending' | 'failed' | 'authorized';
72193
+ /** URL to which the Connect Webview should redirect when the user successfully pairs a device or system. If you do not set the `custom_redirect_failure_url`, the Connect Webview redirects to the `custom_redirect_url` when an unexpected error occurs. */
72143
72194
  custom_redirect_url: string | null;
72195
+ /** URL to which the Connect Webview should redirect when an unexpected error occurs. */
72144
72196
  custom_redirect_failure_url: string | null;
72197
+ /** Set of key:value pairs. Adding custom metadata to a resource, such as a [Connect Webview](https://docs.seam.co/latest/core-concepts/connect-webviews/attaching-custom-data-to-the-connect-webview), [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts/adding-custom-metadata-to-a-connected-account), or [device](https://docs.seam.co/latest/core-concepts/devices/adding-custom-metadata-to-a-device), enables you to store custom information, like customer details or internal IDs from your application. */
72145
72198
  custom_metadata: Record<string, string | boolean>;
72199
+ /** Indicates whether Seam should [import all new devices](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#automatically_manage_new_devices) for the connected account to make these devices available for use and management by the Seam API. */
72146
72200
  automatically_manage_new_devices: boolean;
72201
+ /** Indicates whether Seam should [finish syncing all devices](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#wait_for_device_creation) in a newly-connected account before completing the associated Connect Webview. */
72147
72202
  wait_for_device_creation: boolean;
72203
+ /** Date and time at which the user authorized (through the Connect Webview) the management of their devices. */
72148
72204
  authorized_at: string | null;
72205
+ /** Selected provider of the Connect Webview, one of the [provider keys](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-brands-to-display-in-your-connect-webviews). */
72149
72206
  selected_provider: string | null;
72150
72207
  };
72151
72208
  };
@@ -72166,12 +72223,18 @@ interface Routes {
72166
72223
  formData: {};
72167
72224
  jsonResponse: {
72168
72225
  connect_webviews: Array<{
72226
+ /** ID of the Connect Webview. */
72169
72227
  connect_webview_id: string;
72228
+ /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the Connect Webview. */
72170
72229
  workspace_id: string;
72230
+ /** Date and time at which the Connect Webview was created. */
72171
72231
  created_at: string;
72232
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the Connect Webview. */
72172
72233
  connected_account_id: string | null;
72234
+ /** URL for the Connect Webview. You use the URL to display the Connect Webview flow to your user. */
72173
72235
  url: string;
72174
72236
  device_selection_mode: 'none' | 'single' | 'multiple';
72237
+ /** List of accepted [provider keys](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-brands-to-display-in-your-connect-webviews). */
72175
72238
  accepted_providers: string[];
72176
72239
  /**
72177
72240
  * @deprecated Unused. Will be removed. */
@@ -72179,15 +72242,25 @@ interface Routes {
72179
72242
  /**
72180
72243
  * @deprecated Unused. Will be removed. */
72181
72244
  any_device_allowed: boolean;
72245
+ /** Indicates whether any provider is allowed. */
72182
72246
  any_provider_allowed: boolean;
72247
+ /** Indicates whether the user logged in successfully using the Connect Webview. */
72183
72248
  login_successful: boolean;
72249
+ /** Status of the Connect Webview. `authorized` indicates that the user has successfully logged into their device or system account, thereby completing the Connect Webview. */
72184
72250
  status: 'pending' | 'failed' | 'authorized';
72251
+ /** URL to which the Connect Webview should redirect when the user successfully pairs a device or system. If you do not set the `custom_redirect_failure_url`, the Connect Webview redirects to the `custom_redirect_url` when an unexpected error occurs. */
72185
72252
  custom_redirect_url: string | null;
72253
+ /** URL to which the Connect Webview should redirect when an unexpected error occurs. */
72186
72254
  custom_redirect_failure_url: string | null;
72255
+ /** Set of key:value pairs. Adding custom metadata to a resource, such as a [Connect Webview](https://docs.seam.co/latest/core-concepts/connect-webviews/attaching-custom-data-to-the-connect-webview), [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts/adding-custom-metadata-to-a-connected-account), or [device](https://docs.seam.co/latest/core-concepts/devices/adding-custom-metadata-to-a-device), enables you to store custom information, like customer details or internal IDs from your application. */
72187
72256
  custom_metadata: Record<string, string | boolean>;
72257
+ /** Indicates whether Seam should [import all new devices](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#automatically_manage_new_devices) for the connected account to make these devices available for use and management by the Seam API. */
72188
72258
  automatically_manage_new_devices: boolean;
72259
+ /** Indicates whether Seam should [finish syncing all devices](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#wait_for_device_creation) in a newly-connected account before completing the associated Connect Webview. */
72189
72260
  wait_for_device_creation: boolean;
72261
+ /** Date and time at which the user authorized (through the Connect Webview) the management of their devices. */
72190
72262
  authorized_at: string | null;
72263
+ /** Selected provider of the Connect Webview, one of the [provider keys](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-brands-to-display-in-your-connect-webviews). */
72191
72264
  selected_provider: string | null;
72192
72265
  }>;
72193
72266
  };
@@ -72301,6 +72374,7 @@ interface Routes {
72301
72374
  }>;
72302
72375
  };
72303
72376
  }>;
72377
+ /** Set of key:value pairs. Adding custom metadata to a resource, such as a [Connect Webview](https://docs.seam.co/latest/core-concepts/connect-webviews/attaching-custom-data-to-the-connect-webview), [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts/adding-custom-metadata-to-a-connected-account), or [device](https://docs.seam.co/latest/core-concepts/devices/adding-custom-metadata-to-a-device), enables you to store custom information, like customer details or internal IDs from your application. */
72304
72378
  custom_metadata: Record<string, string | boolean>;
72305
72379
  automatically_manage_new_devices: boolean;
72306
72380
  };
@@ -72404,6 +72478,7 @@ interface Routes {
72404
72478
  }>;
72405
72479
  };
72406
72480
  }>;
72481
+ /** Set of key:value pairs. Adding custom metadata to a resource, such as a [Connect Webview](https://docs.seam.co/latest/core-concepts/connect-webviews/attaching-custom-data-to-the-connect-webview), [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts/adding-custom-metadata-to-a-connected-account), or [device](https://docs.seam.co/latest/core-concepts/devices/adding-custom-metadata-to-a-device), enables you to store custom information, like customer details or internal IDs from your application. */
72407
72482
  custom_metadata: Record<string, string | boolean>;
72408
72483
  automatically_manage_new_devices: boolean;
72409
72484
  }>;
@@ -72514,6 +72589,7 @@ interface Routes {
72514
72589
  }>;
72515
72590
  };
72516
72591
  }>;
72592
+ /** Set of key:value pairs. Adding custom metadata to a resource, such as a [Connect Webview](https://docs.seam.co/latest/core-concepts/connect-webviews/attaching-custom-data-to-the-connect-webview), [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts/adding-custom-metadata-to-a-connected-account), or [device](https://docs.seam.co/latest/core-concepts/devices/adding-custom-metadata-to-a-device), enables you to store custom information, like customer details or internal IDs from your application. */
72517
72593
  custom_metadata: Record<string, string | boolean>;
72518
72594
  automatically_manage_new_devices: boolean;
72519
72595
  };
@@ -73285,6 +73361,7 @@ interface Routes {
73285
73361
  created_at: string;
73286
73362
  /** Indicates whether Seam manages the device. */
73287
73363
  is_managed: true;
73364
+ /** Set of key:value pairs. Adding custom metadata to a resource, such as a [Connect Webview](https://docs.seam.co/latest/core-concepts/connect-webviews/attaching-custom-data-to-the-connect-webview), [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts/adding-custom-metadata-to-a-connected-account), or [device](https://docs.seam.co/latest/core-concepts/devices/adding-custom-metadata-to-a-device), enables you to store custom information, like customer details or internal IDs from your application. */
73288
73365
  custom_metadata: Record<string, string | boolean>;
73289
73366
  can_remotely_unlock?: boolean | undefined;
73290
73367
  can_remotely_lock?: boolean | undefined;
@@ -74080,6 +74157,7 @@ interface Routes {
74080
74157
  created_at: string;
74081
74158
  /** Indicates whether Seam manages the device. */
74082
74159
  is_managed: true;
74160
+ /** Set of key:value pairs. Adding custom metadata to a resource, such as a [Connect Webview](https://docs.seam.co/latest/core-concepts/connect-webviews/attaching-custom-data-to-the-connect-webview), [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts/adding-custom-metadata-to-a-connected-account), or [device](https://docs.seam.co/latest/core-concepts/devices/adding-custom-metadata-to-a-device), enables you to store custom information, like customer details or internal IDs from your application. */
74083
74161
  custom_metadata: Record<string, string | boolean>;
74084
74162
  can_remotely_unlock?: boolean | undefined;
74085
74163
  can_remotely_lock?: boolean | undefined;
@@ -78319,6 +78397,7 @@ interface Routes {
78319
78397
  created_at: string;
78320
78398
  /** Indicates whether Seam manages the device. */
78321
78399
  is_managed: true;
78400
+ /** Set of key:value pairs. Adding custom metadata to a resource, such as a [Connect Webview](https://docs.seam.co/latest/core-concepts/connect-webviews/attaching-custom-data-to-the-connect-webview), [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts/adding-custom-metadata-to-a-connected-account), or [device](https://docs.seam.co/latest/core-concepts/devices/adding-custom-metadata-to-a-device), enables you to store custom information, like customer details or internal IDs from your application. */
78322
78401
  custom_metadata: Record<string, string | boolean>;
78323
78402
  can_remotely_unlock?: boolean | undefined;
78324
78403
  can_remotely_lock?: boolean | undefined;
@@ -79073,6 +79152,7 @@ interface Routes {
79073
79152
  created_at: string;
79074
79153
  /** Indicates whether Seam manages the device. */
79075
79154
  is_managed: true;
79155
+ /** Set of key:value pairs. Adding custom metadata to a resource, such as a [Connect Webview](https://docs.seam.co/latest/core-concepts/connect-webviews/attaching-custom-data-to-the-connect-webview), [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts/adding-custom-metadata-to-a-connected-account), or [device](https://docs.seam.co/latest/core-concepts/devices/adding-custom-metadata-to-a-device), enables you to store custom information, like customer details or internal IDs from your application. */
79076
79156
  custom_metadata: Record<string, string | boolean>;
79077
79157
  can_remotely_unlock?: boolean | undefined;
79078
79158
  can_remotely_lock?: boolean | undefined;
@@ -79868,6 +79948,7 @@ interface Routes {
79868
79948
  created_at: string;
79869
79949
  /** Indicates whether Seam manages the device. */
79870
79950
  is_managed: true;
79951
+ /** Set of key:value pairs. Adding custom metadata to a resource, such as a [Connect Webview](https://docs.seam.co/latest/core-concepts/connect-webviews/attaching-custom-data-to-the-connect-webview), [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts/adding-custom-metadata-to-a-connected-account), or [device](https://docs.seam.co/latest/core-concepts/devices/adding-custom-metadata-to-a-device), enables you to store custom information, like customer details or internal IDs from your application. */
79871
79952
  custom_metadata: Record<string, string | boolean>;
79872
79953
  can_remotely_unlock?: boolean | undefined;
79873
79954
  can_remotely_lock?: boolean | undefined;
@@ -80621,6 +80702,7 @@ interface Routes {
80621
80702
  created_at: string;
80622
80703
  /** Indicates whether Seam manages the device. */
80623
80704
  is_managed: true;
80705
+ /** Set of key:value pairs. Adding custom metadata to a resource, such as a [Connect Webview](https://docs.seam.co/latest/core-concepts/connect-webviews/attaching-custom-data-to-the-connect-webview), [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts/adding-custom-metadata-to-a-connected-account), or [device](https://docs.seam.co/latest/core-concepts/devices/adding-custom-metadata-to-a-device), enables you to store custom information, like customer details or internal IDs from your application. */
80624
80706
  custom_metadata: Record<string, string | boolean>;
80625
80707
  can_remotely_unlock?: boolean | undefined;
80626
80708
  can_remotely_lock?: boolean | undefined;
@@ -85914,6 +85996,7 @@ interface Routes {
85914
85996
  created_at: string;
85915
85997
  /** Indicates whether Seam manages the device. */
85916
85998
  is_managed: true;
85999
+ /** Set of key:value pairs. Adding custom metadata to a resource, such as a [Connect Webview](https://docs.seam.co/latest/core-concepts/connect-webviews/attaching-custom-data-to-the-connect-webview), [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts/adding-custom-metadata-to-a-connected-account), or [device](https://docs.seam.co/latest/core-concepts/devices/adding-custom-metadata-to-a-device), enables you to store custom information, like customer details or internal IDs from your application. */
85917
86000
  custom_metadata: Record<string, string | boolean>;
85918
86001
  can_remotely_unlock?: boolean | undefined;
85919
86002
  can_remotely_lock?: boolean | undefined;
@@ -86667,6 +86750,7 @@ interface Routes {
86667
86750
  created_at: string;
86668
86751
  /** Indicates whether Seam manages the device. */
86669
86752
  is_managed: true;
86753
+ /** Set of key:value pairs. Adding custom metadata to a resource, such as a [Connect Webview](https://docs.seam.co/latest/core-concepts/connect-webviews/attaching-custom-data-to-the-connect-webview), [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts/adding-custom-metadata-to-a-connected-account), or [device](https://docs.seam.co/latest/core-concepts/devices/adding-custom-metadata-to-a-device), enables you to store custom information, like customer details or internal IDs from your application. */
86670
86754
  custom_metadata: Record<string, string | boolean>;
86671
86755
  can_remotely_unlock?: boolean | undefined;
86672
86756
  can_remotely_lock?: boolean | undefined;
@@ -95132,6 +95216,7 @@ interface Routes {
95132
95216
  created_at: string;
95133
95217
  /** Indicates whether Seam manages the device. */
95134
95218
  is_managed: true;
95219
+ /** Set of key:value pairs. Adding custom metadata to a resource, such as a [Connect Webview](https://docs.seam.co/latest/core-concepts/connect-webviews/attaching-custom-data-to-the-connect-webview), [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts/adding-custom-metadata-to-a-connected-account), or [device](https://docs.seam.co/latest/core-concepts/devices/adding-custom-metadata-to-a-device), enables you to store custom information, like customer details or internal IDs from your application. */
95135
95220
  custom_metadata: Record<string, string | boolean>;
95136
95221
  can_remotely_unlock?: boolean | undefined;
95137
95222
  can_remotely_lock?: boolean | undefined;
@@ -98175,6 +98260,7 @@ interface Routes {
98175
98260
  created_at: string;
98176
98261
  /** Indicates whether Seam manages the device. */
98177
98262
  is_managed: true;
98263
+ /** Set of key:value pairs. Adding custom metadata to a resource, such as a [Connect Webview](https://docs.seam.co/latest/core-concepts/connect-webviews/attaching-custom-data-to-the-connect-webview), [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts/adding-custom-metadata-to-a-connected-account), or [device](https://docs.seam.co/latest/core-concepts/devices/adding-custom-metadata-to-a-device), enables you to store custom information, like customer details or internal IDs from your application. */
98178
98264
  custom_metadata: Record<string, string | boolean>;
98179
98265
  can_remotely_unlock?: boolean | undefined;
98180
98266
  can_remotely_lock?: boolean | undefined;
@@ -98928,6 +99014,7 @@ interface Routes {
98928
99014
  created_at: string;
98929
99015
  /** Indicates whether Seam manages the device. */
98930
99016
  is_managed: true;
99017
+ /** Set of key:value pairs. Adding custom metadata to a resource, such as a [Connect Webview](https://docs.seam.co/latest/core-concepts/connect-webviews/attaching-custom-data-to-the-connect-webview), [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts/adding-custom-metadata-to-a-connected-account), or [device](https://docs.seam.co/latest/core-concepts/devices/adding-custom-metadata-to-a-device), enables you to store custom information, like customer details or internal IDs from your application. */
98931
99018
  custom_metadata: Record<string, string | boolean>;
98932
99019
  can_remotely_unlock?: boolean | undefined;
98933
99020
  can_remotely_lock?: boolean | undefined;
@@ -105220,6 +105307,7 @@ interface Routes {
105220
105307
  created_at: string;
105221
105308
  /** Indicates whether Seam manages the device. */
105222
105309
  is_managed: true;
105310
+ /** Set of key:value pairs. Adding custom metadata to a resource, such as a [Connect Webview](https://docs.seam.co/latest/core-concepts/connect-webviews/attaching-custom-data-to-the-connect-webview), [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts/adding-custom-metadata-to-a-connected-account), or [device](https://docs.seam.co/latest/core-concepts/devices/adding-custom-metadata-to-a-device), enables you to store custom information, like customer details or internal IDs from your application. */
105223
105311
  custom_metadata: Record<string, string | boolean>;
105224
105312
  can_remotely_unlock?: boolean | undefined;
105225
105313
  can_remotely_lock?: boolean | undefined;
@@ -105975,6 +106063,7 @@ interface Routes {
105975
106063
  created_at: string;
105976
106064
  /** Indicates whether Seam manages the device. */
105977
106065
  is_managed: true;
106066
+ /** Set of key:value pairs. Adding custom metadata to a resource, such as a [Connect Webview](https://docs.seam.co/latest/core-concepts/connect-webviews/attaching-custom-data-to-the-connect-webview), [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts/adding-custom-metadata-to-a-connected-account), or [device](https://docs.seam.co/latest/core-concepts/devices/adding-custom-metadata-to-a-device), enables you to store custom information, like customer details or internal IDs from your application. */
105978
106067
  custom_metadata: Record<string, string | boolean>;
105979
106068
  can_remotely_unlock?: boolean | undefined;
105980
106069
  can_remotely_lock?: boolean | undefined;
@@ -6,14 +6,29 @@ export const connect_webview_device_selection_mode = z.enum([
6
6
  'multiple',
7
7
  ]);
8
8
  export const connect_webview = z.object({
9
- connect_webview_id: z.string().uuid(),
10
- workspace_id: z.string().uuid(),
11
- created_at: z.string().datetime(),
12
- connected_account_id: z.string().uuid().nullable(),
13
- url: z.string().url(),
9
+ connect_webview_id: z.string().uuid().describe('ID of the Connect Webview.'),
10
+ workspace_id: z
11
+ .string()
12
+ .uuid()
13
+ .describe('ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the Connect Webview.'),
14
+ created_at: z
15
+ .string()
16
+ .datetime()
17
+ .describe('Date and time at which the Connect Webview was created.'),
18
+ connected_account_id: z
19
+ .string()
20
+ .uuid()
21
+ .nullable()
22
+ .describe('ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the Connect Webview.'),
23
+ url: z
24
+ .string()
25
+ .url()
26
+ .describe('URL for the Connect Webview. You use the URL to display the Connect Webview flow to your user.'),
14
27
  device_selection_mode: connect_webview_device_selection_mode,
15
28
  // TODO: Use enum value.
16
- accepted_providers: z.array(z.string()),
29
+ accepted_providers: z
30
+ .array(z.string())
31
+ .describe('List of accepted [provider keys](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-brands-to-display-in-your-connect-webviews).'),
17
32
  accepted_devices: z.array(z.string()).describe(`
18
33
  ---
19
34
  undocumented: Unused. Will be removed.
@@ -26,16 +41,41 @@ export const connect_webview = z.object({
26
41
  deprecated: Unused. Will be removed.
27
42
  ---
28
43
  `),
29
- any_provider_allowed: z.boolean(),
30
- login_successful: z.boolean(),
31
- status: z.enum(['pending', 'failed', 'authorized']),
32
- custom_redirect_url: z.string().url().nullable(),
33
- custom_redirect_failure_url: z.string().url().nullable(),
44
+ any_provider_allowed: z
45
+ .boolean()
46
+ .describe('Indicates whether any provider is allowed.'),
47
+ login_successful: z
48
+ .boolean()
49
+ .describe('Indicates whether the user logged in successfully using the Connect Webview.'),
50
+ status: z
51
+ .enum(['pending', 'failed', 'authorized'])
52
+ .describe('Status of the Connect Webview. `authorized` indicates that the user has successfully logged into their device or system account, thereby completing the Connect Webview.'),
53
+ custom_redirect_url: z
54
+ .string()
55
+ .url()
56
+ .nullable()
57
+ .describe('URL to which the Connect Webview should redirect when the user successfully pairs a device or system. If you do not set the `custom_redirect_failure_url`, the Connect Webview redirects to the `custom_redirect_url` when an unexpected error occurs.'),
58
+ custom_redirect_failure_url: z
59
+ .string()
60
+ .url()
61
+ .nullable()
62
+ .describe('URL to which the Connect Webview should redirect when an unexpected error occurs.'),
34
63
  custom_metadata,
35
- automatically_manage_new_devices: z.boolean(),
36
- wait_for_device_creation: z.boolean(),
37
- authorized_at: z.string().datetime().nullable(),
38
- selected_provider: z.string().nullable(),
64
+ automatically_manage_new_devices: z
65
+ .boolean()
66
+ .describe('Indicates whether Seam should [import all new devices](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#automatically_manage_new_devices) for the connected account to make these devices available for use and management by the Seam API.'),
67
+ wait_for_device_creation: z
68
+ .boolean()
69
+ .describe('Indicates whether Seam should [finish syncing all devices](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#wait_for_device_creation) in a newly-connected account before completing the associated Connect Webview.'),
70
+ authorized_at: z
71
+ .string()
72
+ .datetime()
73
+ .nullable()
74
+ .describe('Date and time at which the user authorized (through the Connect Webview) the management of their devices.'),
75
+ selected_provider: z
76
+ .string()
77
+ .nullable()
78
+ .describe('Selected provider of the Connect Webview, one of the [provider keys](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-brands-to-display-in-your-connect-webviews).'),
39
79
  }).describe(`
40
80
  ---
41
81
  route_path: /connect_webviews
@@ -1 +1 @@
1
- {"version":3,"file":"connect-webview.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/connect-webviews/connect-webview.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,eAAe,EAAE,MAAM,uBAAuB,CAAA;AAEvD,MAAM,CAAC,MAAM,qCAAqC,GAAG,CAAC,CAAC,IAAI,CAAC;IAC1D,MAAM;IACN,QAAQ;IACR,UAAU;CACX,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,eAAe,GAAG,CAAC,CAAC,MAAM,CAAC;IACtC,kBAAkB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IACrC,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAC/B,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,oBAAoB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,EAAE;IAClD,GAAG,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE;IACrB,qBAAqB,EAAE,qCAAqC;IAE5D,wBAAwB;IACxB,kBAAkB,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;IAEvC,gBAAgB,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,CAC5C;;;;;OAKG,CACJ;IACD,kBAAkB,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,CACtC;;;;;OAKG,CACJ;IAED,oBAAoB,EAAE,CAAC,CAAC,OAAO,EAAE;IACjC,gBAAgB,EAAE,CAAC,CAAC,OAAO,EAAE;IAC7B,MAAM,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,EAAE,QAAQ,EAAE,YAAY,CAAC,CAAC;IACnD,mBAAmB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,QAAQ,EAAE;IAChD,2BAA2B,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,QAAQ,EAAE;IACxD,eAAe;IACf,gCAAgC,EAAE,CAAC,CAAC,OAAO,EAAE;IAC7C,wBAAwB,EAAE,CAAC,CAAC,OAAO,EAAE;IACrC,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;IAC/C,iBAAiB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CACzC,CAAC,CAAC,QAAQ,CAAC;;;;;;;;;;;;;;;CAeX,CAAC,CAAA"}
1
+ {"version":3,"file":"connect-webview.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/connect-webviews/connect-webview.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,eAAe,EAAE,MAAM,uBAAuB,CAAA;AAEvD,MAAM,CAAC,MAAM,qCAAqC,GAAG,CAAC,CAAC,IAAI,CAAC;IAC1D,MAAM;IACN,QAAQ;IACR,UAAU;CACX,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,eAAe,GAAG,CAAC,CAAC,MAAM,CAAC;IACtC,kBAAkB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,CAAC,4BAA4B,CAAC;IAC5E,YAAY,EAAE,CAAC;SACZ,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,CACP,gHAAgH,CACjH;IACH,UAAU,EAAE,CAAC;SACV,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,yDAAyD,CAAC;IACtE,oBAAoB,EAAE,CAAC;SACpB,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,EAAE;SACV,QAAQ,CACP,kIAAkI,CACnI;IACH,GAAG,EAAE,CAAC;SACH,MAAM,EAAE;SACR,GAAG,EAAE;SACL,QAAQ,CACP,gGAAgG,CACjG;IACH,qBAAqB,EAAE,qCAAqC;IAE5D,wBAAwB;IACxB,kBAAkB,EAAE,CAAC;SAClB,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;SACjB,QAAQ,CACP,qLAAqL,CACtL;IAEH,gBAAgB,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,CAC5C;;;;;OAKG,CACJ;IACD,kBAAkB,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,CACtC;;;;;OAKG,CACJ;IAED,oBAAoB,EAAE,CAAC;SACpB,OAAO,EAAE;SACT,QAAQ,CAAC,4CAA4C,CAAC;IACzD,gBAAgB,EAAE,CAAC;SAChB,OAAO,EAAE;SACT,QAAQ,CACP,8EAA8E,CAC/E;IACH,MAAM,EAAE,CAAC;SACN,IAAI,CAAC,CAAC,SAAS,EAAE,QAAQ,EAAE,YAAY,CAAC,CAAC;SACzC,QAAQ,CACP,0KAA0K,CAC3K;IACH,mBAAmB,EAAE,CAAC;SACnB,MAAM,EAAE;SACR,GAAG,EAAE;SACL,QAAQ,EAAE;SACV,QAAQ,CACP,wPAAwP,CACzP;IACH,2BAA2B,EAAE,CAAC;SAC3B,MAAM,EAAE;SACR,GAAG,EAAE;SACL,QAAQ,EAAE;SACV,QAAQ,CACP,mFAAmF,CACpF;IACH,eAAe;IACf,gCAAgC,EAAE,CAAC;SAChC,OAAO,EAAE;SACT,QAAQ,CACP,oRAAoR,CACrR;IACH,wBAAwB,EAAE,CAAC;SACxB,OAAO,EAAE;SACT,QAAQ,CACP,6PAA6P,CAC9P;IACH,aAAa,EAAE,CAAC;SACb,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,EAAE;SACV,QAAQ,CACP,2GAA2G,CAC5G;IACH,iBAAiB,EAAE,CAAC;SACjB,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CACP,yNAAyN,CAC1N;CACJ,CAAC,CAAC,QAAQ,CAAC;;;;;;;;;;;;;;;CAeX,CAAC,CAAA"}
@@ -3,6 +3,9 @@ export const custom_metadata_input = z
3
3
  .record(z.string().max(40), z.union([z.string().max(500), z.boolean(), z.null()]))
4
4
  .refine((val) => Object.keys(val).length <= 50, {
5
5
  message: 'Custom metadata is limited to a maximum of 50 keys',
6
- });
7
- export const custom_metadata = z.record(z.string(), z.union([z.string(), z.boolean()]));
6
+ })
7
+ .describe('Set of up to 50 key:value pairs, with key names up to 40 characters long. Accepts string or Boolean values. Strings are limited to 500 characters. Adding custom metadata to a resource, such as a [Connect Webview](https://docs.seam.co/latest/core-concepts/connect-webviews/attaching-custom-data-to-the-connect-webview), [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts/adding-custom-metadata-to-a-connected-account), or [device](https://docs.seam.co/latest/core-concepts/devices/adding-custom-metadata-to-a-device), enables you to store custom information, like customer details or internal IDs from your application.');
8
+ export const custom_metadata = z
9
+ .record(z.string(), z.union([z.string(), z.boolean()]))
10
+ .describe('Set of key:value pairs. Adding custom metadata to a resource, such as a [Connect Webview](https://docs.seam.co/latest/core-concepts/connect-webviews/attaching-custom-data-to-the-connect-webview), [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts/adding-custom-metadata-to-a-connected-account), or [device](https://docs.seam.co/latest/core-concepts/devices/adding-custom-metadata-to-a-device), enables you to store custom information, like customer details or internal IDs from your application.');
8
11
  //# sourceMappingURL=custom-metadata.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"custom-metadata.js","sourceRoot":"","sources":["../../../../src/lib/seam/connect/models/custom-metadata.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,CAAC,MAAM,qBAAqB,GAAG,CAAC;KACnC,MAAM,CACL,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC,EAClB,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,OAAO,EAAE,EAAE,CAAC,CAAC,IAAI,EAAE,CAAC,CAAC,CACtD;KACA,MAAM,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,MAAM,IAAI,EAAE,EAAE;IAC9C,OAAO,EAAE,oDAAoD;CAC9D,CAAC,CAAA;AAEJ,MAAM,CAAC,MAAM,eAAe,GAAG,CAAC,CAAC,MAAM,CACrC,CAAC,CAAC,MAAM,EAAE,EACV,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,CAAC,CACnC,CAAA"}
1
+ {"version":3,"file":"custom-metadata.js","sourceRoot":"","sources":["../../../../src/lib/seam/connect/models/custom-metadata.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,CAAC,MAAM,qBAAqB,GAAG,CAAC;KACnC,MAAM,CACL,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC,EAClB,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,OAAO,EAAE,EAAE,CAAC,CAAC,IAAI,EAAE,CAAC,CAAC,CACtD;KACA,MAAM,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,MAAM,IAAI,EAAE,EAAE;IAC9C,OAAO,EAAE,oDAAoD;CAC9D,CAAC;KACD,QAAQ,CACP,2oBAA2oB,CAC5oB,CAAA;AAEH,MAAM,CAAC,MAAM,eAAe,GAAG,CAAC;KAC7B,MAAM,CAAC,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC;KACtD,QAAQ,CACP,+gBAA+gB,CAChhB,CAAA"}
@@ -2925,6 +2925,7 @@ declare const _default: {
2925
2925
  'x-undocumented': string;
2926
2926
  };
2927
2927
  accepted_providers: {
2928
+ description: string;
2928
2929
  items: {
2929
2930
  type: string;
2930
2931
  };
@@ -2937,26 +2938,32 @@ declare const _default: {
2937
2938
  'x-undocumented': string;
2938
2939
  };
2939
2940
  any_provider_allowed: {
2941
+ description: string;
2940
2942
  type: string;
2941
2943
  };
2942
2944
  authorized_at: {
2945
+ description: string;
2943
2946
  format: string;
2944
2947
  nullable: boolean;
2945
2948
  type: string;
2946
2949
  };
2947
2950
  automatically_manage_new_devices: {
2951
+ description: string;
2948
2952
  type: string;
2949
2953
  };
2950
2954
  connect_webview_id: {
2955
+ description: string;
2951
2956
  format: string;
2952
2957
  type: string;
2953
2958
  };
2954
2959
  connected_account_id: {
2960
+ description: string;
2955
2961
  format: string;
2956
2962
  nullable: boolean;
2957
2963
  type: string;
2958
2964
  };
2959
2965
  created_at: {
2966
+ description: string;
2960
2967
  format: string;
2961
2968
  type: string;
2962
2969
  };
@@ -2966,14 +2973,17 @@ declare const _default: {
2966
2973
  type: string;
2967
2974
  }[];
2968
2975
  };
2976
+ description: string;
2969
2977
  type: string;
2970
2978
  };
2971
2979
  custom_redirect_failure_url: {
2980
+ description: string;
2972
2981
  format: string;
2973
2982
  nullable: boolean;
2974
2983
  type: string;
2975
2984
  };
2976
2985
  custom_redirect_url: {
2986
+ description: string;
2977
2987
  format: string;
2978
2988
  nullable: boolean;
2979
2989
  type: string;
@@ -2983,24 +2993,30 @@ declare const _default: {
2983
2993
  type: string;
2984
2994
  };
2985
2995
  login_successful: {
2996
+ description: string;
2986
2997
  type: string;
2987
2998
  };
2988
2999
  selected_provider: {
3000
+ description: string;
2989
3001
  nullable: boolean;
2990
3002
  type: string;
2991
3003
  };
2992
3004
  status: {
3005
+ description: string;
2993
3006
  enum: string[];
2994
3007
  type: string;
2995
3008
  };
2996
3009
  url: {
3010
+ description: string;
2997
3011
  format: string;
2998
3012
  type: string;
2999
3013
  };
3000
3014
  wait_for_device_creation: {
3015
+ description: string;
3001
3016
  type: string;
3002
3017
  };
3003
3018
  workspace_id: {
3019
+ description: string;
3004
3020
  format: string;
3005
3021
  type: string;
3006
3022
  };
@@ -3035,6 +3051,7 @@ declare const _default: {
3035
3051
  type: string;
3036
3052
  }[];
3037
3053
  };
3054
+ description: string;
3038
3055
  type: string;
3039
3056
  };
3040
3057
  errors: {
@@ -3289,6 +3306,7 @@ declare const _default: {
3289
3306
  type: string;
3290
3307
  }[];
3291
3308
  };
3309
+ description: string;
3292
3310
  type: string;
3293
3311
  };
3294
3312
  device_id: {
@@ -16965,6 +16983,11 @@ declare const _default: {
16965
16983
  format: string;
16966
16984
  type: string;
16967
16985
  };
16986
+ user_identity_id: {
16987
+ description: string;
16988
+ format: string;
16989
+ type: string;
16990
+ };
16968
16991
  };
16969
16992
  required: string[];
16970
16993
  type: string;