@seamapi/types 1.838.0 → 1.839.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.
@@ -68012,6 +68012,8 @@ export type Routes = {
68012
68012
  device_ids?: string[] | undefined;
68013
68013
  /** IDs of the entrances that you want to add to the new space. */
68014
68014
  acs_entrance_ids?: string[] | undefined;
68015
+ /** IDs of connected accounts (third-party accounts) to associate with the new space. Persisted on seam.location_third_party_account so the UI can show which provider account a space came from. */
68016
+ connected_account_ids?: string[] | undefined;
68015
68017
  /** Space key of the parent space for this space. */
68016
68018
  parent_space_key?: string | undefined;
68017
68019
  /** Name of the parent space for this space. */
@@ -69091,6 +69093,7 @@ export type Routes = {
69091
69093
  needs_review?: boolean | undefined;
69092
69094
  is_draft?: boolean | undefined;
69093
69095
  is_common_area?: boolean | undefined;
69096
+ connected_account_ids: string[];
69094
69097
  }[];
69095
69098
  };
69096
69099
  maxDuration: undefined;
@@ -69153,6 +69156,8 @@ export type Routes = {
69153
69156
  device_ids?: string[] | undefined;
69154
69157
  /** IDs of the entrances that you want to add to the new space. */
69155
69158
  acs_entrance_ids?: string[] | undefined;
69159
+ /** IDs of connected accounts to associate with the new space. Persisted on seam.location_third_party_account so the UI can show which provider account(s) a space came from. */
69160
+ connected_account_ids?: string[] | undefined;
69156
69161
  /** Customer key for which you want to create the space. */
69157
69162
  customer_key?: string | undefined;
69158
69163
  /** Reservation/stay-related defaults for the space. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.838.0",
3
+ "version": "1.839.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -72025,6 +72025,12 @@ const openapi: OpenAPISpec = {
72025
72025
  items: { format: 'uuid', type: 'string' },
72026
72026
  type: 'array',
72027
72027
  },
72028
+ connected_account_ids: {
72029
+ description:
72030
+ 'IDs of connected accounts (third-party accounts) to associate with the new space. Persisted on seam.location_third_party_account so the UI can show which provider account a space came from.',
72031
+ items: { format: 'uuid', type: 'string' },
72032
+ type: 'array',
72033
+ },
72028
72034
  device_ids: {
72029
72035
  description:
72030
72036
  'IDs of the devices that you want to add to the new space.',
@@ -73631,6 +73637,10 @@ const openapi: OpenAPISpec = {
73631
73637
  },
73632
73638
  type: 'array',
73633
73639
  },
73640
+ connected_account_ids: {
73641
+ items: { format: 'uuid', type: 'string' },
73642
+ type: 'array',
73643
+ },
73634
73644
  devices: {
73635
73645
  items: {
73636
73646
  properties: {
@@ -73664,6 +73674,7 @@ const openapi: OpenAPISpec = {
73664
73674
  'partner_resource_key',
73665
73675
  'devices',
73666
73676
  'acs_entrances',
73677
+ 'connected_account_ids',
73667
73678
  ],
73668
73679
  type: 'object',
73669
73680
  },
@@ -73761,6 +73772,10 @@ const openapi: OpenAPISpec = {
73761
73772
  },
73762
73773
  type: 'array',
73763
73774
  },
73775
+ connected_account_ids: {
73776
+ items: { format: 'uuid', type: 'string' },
73777
+ type: 'array',
73778
+ },
73764
73779
  devices: {
73765
73780
  items: {
73766
73781
  properties: {
@@ -73794,6 +73809,7 @@ const openapi: OpenAPISpec = {
73794
73809
  'partner_resource_key',
73795
73810
  'devices',
73796
73811
  'acs_entrances',
73812
+ 'connected_account_ids',
73797
73813
  ],
73798
73814
  type: 'object',
73799
73815
  },
@@ -74196,6 +74212,12 @@ const openapi: OpenAPISpec = {
74196
74212
  items: { format: 'uuid', type: 'string' },
74197
74213
  type: 'array',
74198
74214
  },
74215
+ connected_account_ids: {
74216
+ description:
74217
+ 'IDs of connected accounts to associate with the new space. Persisted on seam.location_third_party_account so the UI can show which provider account(s) a space came from.',
74218
+ items: { format: 'uuid', type: 'string' },
74219
+ type: 'array',
74220
+ },
74199
74221
  customer_data: {
74200
74222
  description:
74201
74223
  'Reservation/stay-related defaults for the space.',
@@ -81295,6 +81295,8 @@ export type Routes = {
81295
81295
  device_ids?: string[] | undefined
81296
81296
  /** IDs of the entrances that you want to add to the new space. */
81297
81297
  acs_entrance_ids?: string[] | undefined
81298
+ /** IDs of connected accounts (third-party accounts) to associate with the new space. Persisted on seam.location_third_party_account so the UI can show which provider account a space came from. */
81299
+ connected_account_ids?: string[] | undefined
81298
81300
  /** Space key of the parent space for this space. */
81299
81301
  parent_space_key?: string | undefined
81300
81302
  /** Name of the parent space for this space. */
@@ -82497,6 +82499,7 @@ export type Routes = {
82497
82499
  needs_review?: boolean | undefined
82498
82500
  is_draft?: boolean | undefined
82499
82501
  is_common_area?: boolean | undefined
82502
+ connected_account_ids: string[]
82500
82503
  }[]
82501
82504
  }
82502
82505
  maxDuration: undefined
@@ -82559,6 +82562,8 @@ export type Routes = {
82559
82562
  device_ids?: string[] | undefined
82560
82563
  /** IDs of the entrances that you want to add to the new space. */
82561
82564
  acs_entrance_ids?: string[] | undefined
82565
+ /** IDs of connected accounts to associate with the new space. Persisted on seam.location_third_party_account so the UI can show which provider account(s) a space came from. */
82566
+ connected_account_ids?: string[] | undefined
82562
82567
  /** Customer key for which you want to create the space. */
82563
82568
  customer_key?: string | undefined
82564
82569
  /** Reservation/stay-related defaults for the space. */