@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.
package/dist/connect.cjs CHANGED
@@ -41022,6 +41022,11 @@ var openapi_default = {
41022
41022
  default: false,
41023
41023
  description: "Whether to exclude this feature from the portal.",
41024
41024
  type: "boolean"
41025
+ },
41026
+ excluded_providers: {
41027
+ description: "List of provider keys to exclude from the connect feature. These providers will not be shown when the customer tries to connect an account.",
41028
+ items: { type: "string" },
41029
+ type: "array"
41025
41030
  }
41026
41031
  },
41027
41032
  type: "object"
@@ -41064,59 +41069,96 @@ var openapi_default = {
41064
41069
  manage: {
41065
41070
  oneOf: [
41066
41071
  {
41067
- properties: { space_key: { type: "string" } },
41068
- required: ["space_key"],
41069
- type: "object"
41070
- },
41071
- {
41072
- properties: {
41073
- property_key: { type: "string" }
41074
- },
41075
- required: ["property_key"],
41076
- type: "object"
41077
- },
41078
- {
41079
- properties: { room_key: { type: "string" } },
41080
- required: ["room_key"],
41081
- type: "object"
41082
- },
41083
- {
41084
- properties: {
41085
- common_area_key: { type: "string" }
41086
- },
41087
- required: ["common_area_key"],
41088
- type: "object"
41089
- },
41090
- {
41091
- properties: { unit_key: { type: "string" } },
41092
- required: ["unit_key"],
41093
- type: "object"
41094
- },
41095
- {
41096
- properties: {
41097
- facility_key: { type: "string" }
41098
- },
41099
- required: ["facility_key"],
41100
- type: "object"
41101
- },
41102
- {
41103
- properties: {
41104
- building_key: { type: "string" }
41105
- },
41106
- required: ["building_key"],
41107
- type: "object"
41108
- },
41109
- {
41110
- properties: { listing_key: { type: "string" } },
41111
- required: ["listing_key"],
41112
- type: "object"
41072
+ oneOf: [
41073
+ {
41074
+ properties: {
41075
+ space_key: { type: "string" }
41076
+ },
41077
+ required: ["space_key"],
41078
+ type: "object"
41079
+ },
41080
+ {
41081
+ properties: {
41082
+ property_key: { type: "string" }
41083
+ },
41084
+ required: ["property_key"],
41085
+ type: "object"
41086
+ },
41087
+ {
41088
+ properties: {
41089
+ room_key: { type: "string" }
41090
+ },
41091
+ required: ["room_key"],
41092
+ type: "object"
41093
+ },
41094
+ {
41095
+ properties: {
41096
+ common_area_key: { type: "string" }
41097
+ },
41098
+ required: ["common_area_key"],
41099
+ type: "object"
41100
+ },
41101
+ {
41102
+ properties: {
41103
+ unit_key: { type: "string" }
41104
+ },
41105
+ required: ["unit_key"],
41106
+ type: "object"
41107
+ },
41108
+ {
41109
+ properties: {
41110
+ facility_key: { type: "string" }
41111
+ },
41112
+ required: ["facility_key"],
41113
+ type: "object"
41114
+ },
41115
+ {
41116
+ properties: {
41117
+ building_key: { type: "string" }
41118
+ },
41119
+ required: ["building_key"],
41120
+ type: "object"
41121
+ },
41122
+ {
41123
+ properties: {
41124
+ listing_key: { type: "string" }
41125
+ },
41126
+ required: ["listing_key"],
41127
+ type: "object"
41128
+ },
41129
+ {
41130
+ properties: {
41131
+ property_listing_key: { type: "string" }
41132
+ },
41133
+ required: ["property_listing_key"],
41134
+ type: "object"
41135
+ }
41136
+ ]
41113
41137
  },
41114
41138
  {
41115
- properties: {
41116
- property_listing_key: { type: "string" }
41117
- },
41118
- required: ["property_listing_key"],
41119
- type: "object"
41139
+ oneOf: [
41140
+ {
41141
+ properties: {
41142
+ reservation_key: { type: "string" }
41143
+ },
41144
+ required: ["reservation_key"],
41145
+ type: "object"
41146
+ },
41147
+ {
41148
+ properties: {
41149
+ booking_key: { type: "string" }
41150
+ },
41151
+ required: ["booking_key"],
41152
+ type: "object"
41153
+ },
41154
+ {
41155
+ properties: {
41156
+ access_grant_key: { type: "string" }
41157
+ },
41158
+ required: ["access_grant_key"],
41159
+ type: "object"
41160
+ }
41161
+ ]
41120
41162
  }
41121
41163
  ]
41122
41164
  }
@@ -51469,7 +51511,13 @@ var openapi_default = {
51469
51511
  type: "object"
51470
51512
  },
51471
51513
  connect: {
51472
- properties: { exclude: { type: "boolean" } },
51514
+ properties: {
51515
+ exclude: { type: "boolean" },
51516
+ excluded_providers: {
51517
+ items: { type: "string" },
51518
+ type: "array"
51519
+ }
51520
+ },
51473
51521
  type: "object"
51474
51522
  },
51475
51523
  manage_devices: {
@@ -51489,61 +51537,98 @@ var openapi_default = {
51489
51537
  manage: {
51490
51538
  oneOf: [
51491
51539
  {
51492
- properties: { space_key: { type: "string" } },
51493
- required: ["space_key"],
51494
- type: "object"
51495
- },
51496
- {
51497
- properties: {
51498
- property_key: { type: "string" }
51499
- },
51500
- required: ["property_key"],
51501
- type: "object"
51502
- },
51503
- {
51504
- properties: { room_key: { type: "string" } },
51505
- required: ["room_key"],
51506
- type: "object"
51507
- },
51508
- {
51509
- properties: {
51510
- common_area_key: { type: "string" }
51511
- },
51512
- required: ["common_area_key"],
51513
- type: "object"
51514
- },
51515
- {
51516
- properties: { unit_key: { type: "string" } },
51517
- required: ["unit_key"],
51518
- type: "object"
51519
- },
51520
- {
51521
- properties: {
51522
- facility_key: { type: "string" }
51523
- },
51524
- required: ["facility_key"],
51525
- type: "object"
51526
- },
51527
- {
51528
- properties: {
51529
- building_key: { type: "string" }
51530
- },
51531
- required: ["building_key"],
51532
- type: "object"
51533
- },
51534
- {
51535
- properties: {
51536
- listing_key: { type: "string" }
51537
- },
51538
- required: ["listing_key"],
51539
- type: "object"
51540
+ oneOf: [
51541
+ {
51542
+ properties: {
51543
+ space_key: { type: "string" }
51544
+ },
51545
+ required: ["space_key"],
51546
+ type: "object"
51547
+ },
51548
+ {
51549
+ properties: {
51550
+ property_key: { type: "string" }
51551
+ },
51552
+ required: ["property_key"],
51553
+ type: "object"
51554
+ },
51555
+ {
51556
+ properties: {
51557
+ room_key: { type: "string" }
51558
+ },
51559
+ required: ["room_key"],
51560
+ type: "object"
51561
+ },
51562
+ {
51563
+ properties: {
51564
+ common_area_key: { type: "string" }
51565
+ },
51566
+ required: ["common_area_key"],
51567
+ type: "object"
51568
+ },
51569
+ {
51570
+ properties: {
51571
+ unit_key: { type: "string" }
51572
+ },
51573
+ required: ["unit_key"],
51574
+ type: "object"
51575
+ },
51576
+ {
51577
+ properties: {
51578
+ facility_key: { type: "string" }
51579
+ },
51580
+ required: ["facility_key"],
51581
+ type: "object"
51582
+ },
51583
+ {
51584
+ properties: {
51585
+ building_key: { type: "string" }
51586
+ },
51587
+ required: ["building_key"],
51588
+ type: "object"
51589
+ },
51590
+ {
51591
+ properties: {
51592
+ listing_key: { type: "string" }
51593
+ },
51594
+ required: ["listing_key"],
51595
+ type: "object"
51596
+ },
51597
+ {
51598
+ properties: {
51599
+ property_listing_key: {
51600
+ type: "string"
51601
+ }
51602
+ },
51603
+ required: ["property_listing_key"],
51604
+ type: "object"
51605
+ }
51606
+ ]
51540
51607
  },
51541
51608
  {
51542
- properties: {
51543
- property_listing_key: { type: "string" }
51544
- },
51545
- required: ["property_listing_key"],
51546
- type: "object"
51609
+ oneOf: [
51610
+ {
51611
+ properties: {
51612
+ reservation_key: { type: "string" }
51613
+ },
51614
+ required: ["reservation_key"],
51615
+ type: "object"
51616
+ },
51617
+ {
51618
+ properties: {
51619
+ booking_key: { type: "string" }
51620
+ },
51621
+ required: ["booking_key"],
51622
+ type: "object"
51623
+ },
51624
+ {
51625
+ properties: {
51626
+ access_grant_key: { type: "string" }
51627
+ },
51628
+ required: ["access_grant_key"],
51629
+ type: "object"
51630
+ }
51631
+ ]
51547
51632
  }
51548
51633
  ]
51549
51634
  }
@@ -51629,7 +51714,13 @@ var openapi_default = {
51629
51714
  type: "object"
51630
51715
  },
51631
51716
  connect: {
51632
- properties: { exclude: { type: "boolean" } },
51717
+ properties: {
51718
+ exclude: { type: "boolean" },
51719
+ excluded_providers: {
51720
+ items: { type: "string" },
51721
+ type: "array"
51722
+ }
51723
+ },
51633
51724
  type: "object"
51634
51725
  },
51635
51726
  manage_devices: {
@@ -51649,61 +51740,98 @@ var openapi_default = {
51649
51740
  manage: {
51650
51741
  oneOf: [
51651
51742
  {
51652
- properties: { space_key: { type: "string" } },
51653
- required: ["space_key"],
51654
- type: "object"
51655
- },
51656
- {
51657
- properties: {
51658
- property_key: { type: "string" }
51659
- },
51660
- required: ["property_key"],
51661
- type: "object"
51662
- },
51663
- {
51664
- properties: { room_key: { type: "string" } },
51665
- required: ["room_key"],
51666
- type: "object"
51667
- },
51668
- {
51669
- properties: {
51670
- common_area_key: { type: "string" }
51671
- },
51672
- required: ["common_area_key"],
51673
- type: "object"
51674
- },
51675
- {
51676
- properties: { unit_key: { type: "string" } },
51677
- required: ["unit_key"],
51678
- type: "object"
51679
- },
51680
- {
51681
- properties: {
51682
- facility_key: { type: "string" }
51683
- },
51684
- required: ["facility_key"],
51685
- type: "object"
51686
- },
51687
- {
51688
- properties: {
51689
- building_key: { type: "string" }
51690
- },
51691
- required: ["building_key"],
51692
- type: "object"
51693
- },
51694
- {
51695
- properties: {
51696
- listing_key: { type: "string" }
51697
- },
51698
- required: ["listing_key"],
51699
- type: "object"
51743
+ oneOf: [
51744
+ {
51745
+ properties: {
51746
+ space_key: { type: "string" }
51747
+ },
51748
+ required: ["space_key"],
51749
+ type: "object"
51750
+ },
51751
+ {
51752
+ properties: {
51753
+ property_key: { type: "string" }
51754
+ },
51755
+ required: ["property_key"],
51756
+ type: "object"
51757
+ },
51758
+ {
51759
+ properties: {
51760
+ room_key: { type: "string" }
51761
+ },
51762
+ required: ["room_key"],
51763
+ type: "object"
51764
+ },
51765
+ {
51766
+ properties: {
51767
+ common_area_key: { type: "string" }
51768
+ },
51769
+ required: ["common_area_key"],
51770
+ type: "object"
51771
+ },
51772
+ {
51773
+ properties: {
51774
+ unit_key: { type: "string" }
51775
+ },
51776
+ required: ["unit_key"],
51777
+ type: "object"
51778
+ },
51779
+ {
51780
+ properties: {
51781
+ facility_key: { type: "string" }
51782
+ },
51783
+ required: ["facility_key"],
51784
+ type: "object"
51785
+ },
51786
+ {
51787
+ properties: {
51788
+ building_key: { type: "string" }
51789
+ },
51790
+ required: ["building_key"],
51791
+ type: "object"
51792
+ },
51793
+ {
51794
+ properties: {
51795
+ listing_key: { type: "string" }
51796
+ },
51797
+ required: ["listing_key"],
51798
+ type: "object"
51799
+ },
51800
+ {
51801
+ properties: {
51802
+ property_listing_key: {
51803
+ type: "string"
51804
+ }
51805
+ },
51806
+ required: ["property_listing_key"],
51807
+ type: "object"
51808
+ }
51809
+ ]
51700
51810
  },
51701
51811
  {
51702
- properties: {
51703
- property_listing_key: { type: "string" }
51704
- },
51705
- required: ["property_listing_key"],
51706
- type: "object"
51812
+ oneOf: [
51813
+ {
51814
+ properties: {
51815
+ reservation_key: { type: "string" }
51816
+ },
51817
+ required: ["reservation_key"],
51818
+ type: "object"
51819
+ },
51820
+ {
51821
+ properties: {
51822
+ booking_key: { type: "string" }
51823
+ },
51824
+ required: ["booking_key"],
51825
+ type: "object"
51826
+ },
51827
+ {
51828
+ properties: {
51829
+ access_grant_key: { type: "string" }
51830
+ },
51831
+ required: ["access_grant_key"],
51832
+ type: "object"
51833
+ }
51834
+ ]
51707
51835
  }
51708
51836
  ]
51709
51837
  }