@seamapi/types 1.1064.0 → 1.1065.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.
@@ -42790,6 +42790,9 @@ export type Routes = {
42790
42790
  } | {
42791
42791
  resource_type: 'device';
42792
42792
  resource_id: string;
42793
+ } | {
42794
+ resource_type: 'acs_entrance';
42795
+ resource_id: string;
42793
42796
  }) | undefined;
42794
42797
  /** Whether the portal is in developer mode. Only available for Seam employees. */
42795
42798
  _dev?: boolean;
@@ -87200,6 +87203,9 @@ export type Routes = {
87200
87203
  } | {
87201
87204
  resource_type: 'device';
87202
87205
  resource_id: string;
87206
+ } | {
87207
+ resource_type: 'acs_entrance';
87208
+ resource_id: string;
87203
87209
  }) | undefined;
87204
87210
  /** Business vertical of the customer portal. */
87205
87211
  business_vertical?: ('neutral' | 'short_term_rental' | 'hospitality' | 'multi_family' | 'gym_management' | 'property_tours') | undefined;
@@ -87348,6 +87354,9 @@ export type Routes = {
87348
87354
  } | {
87349
87355
  resource_type: 'device';
87350
87356
  resource_id: string;
87357
+ } | {
87358
+ resource_type: 'acs_entrance';
87359
+ resource_id: string;
87351
87360
  }) | undefined) | undefined;
87352
87361
  };
87353
87362
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.1064.0",
3
+ "version": "1.1065.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -222,6 +222,10 @@ export const portal_configuration_base = z.object({
222
222
  resource_type: z.literal('device'),
223
223
  resource_id: z.string(),
224
224
  }),
225
+ z.object({
226
+ resource_type: z.literal('acs_entrance'),
227
+ resource_id: z.string(),
228
+ }),
225
229
  ])
226
230
  .optional().describe(`
227
231
  ---
@@ -47844,6 +47844,17 @@ const openapi: OpenAPISpec = {
47844
47844
  required: ['resource_type', 'resource_id'],
47845
47845
  type: 'object',
47846
47846
  },
47847
+ {
47848
+ properties: {
47849
+ resource_id: { type: 'string' },
47850
+ resource_type: {
47851
+ enum: ['acs_entrance'],
47852
+ type: 'string',
47853
+ },
47854
+ },
47855
+ required: ['resource_type', 'resource_id'],
47856
+ type: 'object',
47857
+ },
47847
47858
  ],
47848
47859
  'x-undocumented':
47849
47860
  'Internal endpoint for customer portals.',
@@ -61874,6 +61885,17 @@ const openapi: OpenAPISpec = {
61874
61885
  required: ['resource_type', 'resource_id'],
61875
61886
  type: 'object',
61876
61887
  },
61888
+ {
61889
+ properties: {
61890
+ resource_id: { type: 'string' },
61891
+ resource_type: {
61892
+ enum: ['acs_entrance'],
61893
+ type: 'string',
61894
+ },
61895
+ },
61896
+ required: ['resource_type', 'resource_id'],
61897
+ type: 'object',
61898
+ },
61877
61899
  ],
61878
61900
  'x-undocumented':
61879
61901
  'Internal endpoint for customer portals.',
@@ -62341,6 +62363,17 @@ const openapi: OpenAPISpec = {
62341
62363
  required: ['resource_type', 'resource_id'],
62342
62364
  type: 'object',
62343
62365
  },
62366
+ {
62367
+ properties: {
62368
+ resource_id: { type: 'string' },
62369
+ resource_type: {
62370
+ enum: ['acs_entrance'],
62371
+ type: 'string',
62372
+ },
62373
+ },
62374
+ required: ['resource_type', 'resource_id'],
62375
+ type: 'object',
62376
+ },
62344
62377
  ],
62345
62378
  'x-undocumented':
62346
62379
  'Internal endpoint for customer portals.',
@@ -50179,6 +50179,10 @@ export type Routes = {
50179
50179
  resource_type: 'device'
50180
50180
  resource_id: string
50181
50181
  }
50182
+ | {
50183
+ resource_type: 'acs_entrance'
50184
+ resource_id: string
50185
+ }
50182
50186
  )
50183
50187
  | undefined
50184
50188
  /** Whether the portal is in developer mode. Only available for Seam employees. */
@@ -104657,6 +104661,10 @@ export type Routes = {
104657
104661
  resource_type: 'device'
104658
104662
  resource_id: string
104659
104663
  }
104664
+ | {
104665
+ resource_type: 'acs_entrance'
104666
+ resource_id: string
104667
+ }
104660
104668
  )
104661
104669
  | undefined
104662
104670
  /** Business vertical of the customer portal. */
@@ -104875,6 +104883,10 @@ export type Routes = {
104875
104883
  resource_type: 'device'
104876
104884
  resource_id: string
104877
104885
  }
104886
+ | {
104887
+ resource_type: 'acs_entrance'
104888
+ resource_id: string
104889
+ }
104878
104890
  )
104879
104891
  | undefined
104880
104892
  )