@seamapi/types 1.565.0 → 1.566.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.
@@ -36258,6 +36258,8 @@ export type Routes = {
36258
36258
  connect?: {
36259
36259
  /** Whether to exclude this feature from the portal. */
36260
36260
  exclude?: boolean
36261
+ /** List of provider keys to exclude from the connect feature. These providers will not be shown when the customer tries to connect an account. */
36262
+ excluded_providers?: string[] | undefined
36261
36263
  }
36262
36264
  /** Configuration for the manage devices feature. */
36263
36265
  manage_devices?: {
@@ -36286,33 +36288,46 @@ export type Routes = {
36286
36288
  | {
36287
36289
  manage?:
36288
36290
  | (
36289
- | {
36290
- space_key: string
36291
- }
36292
- | {
36293
- property_key: string
36294
- }
36295
- | {
36296
- room_key: string
36297
- }
36298
- | {
36299
- common_area_key: string
36300
- }
36301
- | {
36302
- unit_key: string
36303
- }
36304
- | {
36305
- facility_key: string
36306
- }
36307
- | {
36308
- building_key: string
36309
- }
36310
- | {
36311
- listing_key: string
36312
- }
36313
- | {
36314
- property_listing_key: string
36315
- }
36291
+ | (
36292
+ | {
36293
+ space_key: string
36294
+ }
36295
+ | {
36296
+ property_key: string
36297
+ }
36298
+ | {
36299
+ room_key: string
36300
+ }
36301
+ | {
36302
+ common_area_key: string
36303
+ }
36304
+ | {
36305
+ unit_key: string
36306
+ }
36307
+ | {
36308
+ facility_key: string
36309
+ }
36310
+ | {
36311
+ building_key: string
36312
+ }
36313
+ | {
36314
+ listing_key: string
36315
+ }
36316
+ | {
36317
+ property_listing_key: string
36318
+ }
36319
+ )
36320
+ | (
36321
+ | {
36322
+ reservation_key: string
36323
+ }
36324
+ | {
36325
+ booking_key: string
36326
+ }
36327
+ | {
36328
+ access_grant_key: string
36329
+ }
36330
+ )
36316
36331
  )
36317
36332
  | undefined
36318
36333
  }
@@ -69259,6 +69274,7 @@ export type Routes = {
69259
69274
  connect?:
69260
69275
  | {
69261
69276
  exclude?: boolean | undefined
69277
+ excluded_providers?: string[] | undefined
69262
69278
  }
69263
69279
  | undefined
69264
69280
  manage_devices?:
@@ -69287,33 +69303,46 @@ export type Routes = {
69287
69303
  | {
69288
69304
  manage?:
69289
69305
  | (
69290
- | {
69291
- space_key: string
69292
- }
69293
- | {
69294
- property_key: string
69295
- }
69296
- | {
69297
- room_key: string
69298
- }
69299
- | {
69300
- common_area_key: string
69301
- }
69302
- | {
69303
- unit_key: string
69304
- }
69305
- | {
69306
- facility_key: string
69307
- }
69308
- | {
69309
- building_key: string
69310
- }
69311
- | {
69312
- listing_key: string
69313
- }
69314
- | {
69315
- property_listing_key: string
69316
- }
69306
+ | (
69307
+ | {
69308
+ space_key: string
69309
+ }
69310
+ | {
69311
+ property_key: string
69312
+ }
69313
+ | {
69314
+ room_key: string
69315
+ }
69316
+ | {
69317
+ common_area_key: string
69318
+ }
69319
+ | {
69320
+ unit_key: string
69321
+ }
69322
+ | {
69323
+ facility_key: string
69324
+ }
69325
+ | {
69326
+ building_key: string
69327
+ }
69328
+ | {
69329
+ listing_key: string
69330
+ }
69331
+ | {
69332
+ property_listing_key: string
69333
+ }
69334
+ )
69335
+ | (
69336
+ | {
69337
+ reservation_key: string
69338
+ }
69339
+ | {
69340
+ booking_key: string
69341
+ }
69342
+ | {
69343
+ access_grant_key: string
69344
+ }
69345
+ )
69317
69346
  )
69318
69347
  | undefined
69319
69348
  }