@seamapi/types 1.564.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/index.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
  }
@@ -51769,7 +51897,20 @@ var openapi_default = {
51769
51897
  reservation: {
51770
51898
  properties: {
51771
51899
  access_methods: {
51772
- items: { $ref: "#/components/schemas/access_method" },
51900
+ items: {
51901
+ properties: {
51902
+ access_method_id: {
51903
+ format: "uuid",
51904
+ type: "string"
51905
+ },
51906
+ code: { nullable: true, type: "string" },
51907
+ is_card_encoding_required: { type: "boolean" },
51908
+ is_issued: { type: "boolean" },
51909
+ mode: { type: "string" }
51910
+ },
51911
+ required: ["access_method_id", "mode", "is_issued"],
51912
+ type: "object"
51913
+ },
51773
51914
  type: "array"
51774
51915
  },
51775
51916
  created_at: { format: "date-time", type: "string" },
@@ -51782,6 +51923,22 @@ var openapi_default = {
51782
51923
  name: { nullable: true, type: "string" },
51783
51924
  reservation_id: { format: "uuid", type: "string" },
51784
51925
  reservation_key: { type: "string" },
51926
+ spaces: {
51927
+ items: {
51928
+ properties: {
51929
+ name: { nullable: true, type: "string" },
51930
+ space_id: {
51931
+ format: "uuid",
51932
+ nullable: true,
51933
+ type: "string"
51934
+ },
51935
+ space_key: { type: "string" }
51936
+ },
51937
+ required: ["space_id", "space_key", "name"],
51938
+ type: "object"
51939
+ },
51940
+ type: "array"
51941
+ },
51785
51942
  starts_at: {
51786
51943
  format: "date-time",
51787
51944
  nullable: true,
@@ -51796,6 +51953,7 @@ var openapi_default = {
51796
51953
  "ends_at",
51797
51954
  "created_at",
51798
51955
  "guest_name",
51956
+ "spaces",
51799
51957
  "access_methods"
51800
51958
  ],
51801
51959
  type: "object"
@@ -51854,7 +52012,20 @@ var openapi_default = {
51854
52012
  reservation: {
51855
52013
  properties: {
51856
52014
  access_methods: {
51857
- items: { $ref: "#/components/schemas/access_method" },
52015
+ items: {
52016
+ properties: {
52017
+ access_method_id: {
52018
+ format: "uuid",
52019
+ type: "string"
52020
+ },
52021
+ code: { nullable: true, type: "string" },
52022
+ is_card_encoding_required: { type: "boolean" },
52023
+ is_issued: { type: "boolean" },
52024
+ mode: { type: "string" }
52025
+ },
52026
+ required: ["access_method_id", "mode", "is_issued"],
52027
+ type: "object"
52028
+ },
51858
52029
  type: "array"
51859
52030
  },
51860
52031
  created_at: { format: "date-time", type: "string" },
@@ -51867,6 +52038,22 @@ var openapi_default = {
51867
52038
  name: { nullable: true, type: "string" },
51868
52039
  reservation_id: { format: "uuid", type: "string" },
51869
52040
  reservation_key: { type: "string" },
52041
+ spaces: {
52042
+ items: {
52043
+ properties: {
52044
+ name: { nullable: true, type: "string" },
52045
+ space_id: {
52046
+ format: "uuid",
52047
+ nullable: true,
52048
+ type: "string"
52049
+ },
52050
+ space_key: { type: "string" }
52051
+ },
52052
+ required: ["space_id", "space_key", "name"],
52053
+ type: "object"
52054
+ },
52055
+ type: "array"
52056
+ },
51870
52057
  starts_at: {
51871
52058
  format: "date-time",
51872
52059
  nullable: true,
@@ -51881,6 +52068,7 @@ var openapi_default = {
51881
52068
  "ends_at",
51882
52069
  "created_at",
51883
52070
  "guest_name",
52071
+ "spaces",
51884
52072
  "access_methods"
51885
52073
  ],
51886
52074
  type: "object"
@@ -51986,6 +52174,18 @@ var openapi_default = {
51986
52174
  name: { nullable: true, type: "string" },
51987
52175
  reservation_id: { format: "uuid", type: "string" },
51988
52176
  reservation_key: { type: "string" },
52177
+ spaces: {
52178
+ items: {
52179
+ properties: {
52180
+ name: { nullable: true, type: "string" },
52181
+ space_id: { nullable: true, type: "string" },
52182
+ space_key: { type: "string" }
52183
+ },
52184
+ required: ["space_id", "space_key", "name"],
52185
+ type: "object"
52186
+ },
52187
+ type: "array"
52188
+ },
51989
52189
  starts_at: {
51990
52190
  format: "date-time",
51991
52191
  nullable: true,
@@ -52000,7 +52200,8 @@ var openapi_default = {
52000
52200
  "ends_at",
52001
52201
  "created_at",
52002
52202
  "guest_name",
52003
- "access_methods"
52203
+ "access_methods",
52204
+ "spaces"
52004
52205
  ],
52005
52206
  type: "object"
52006
52207
  },
@@ -52094,6 +52295,18 @@ var openapi_default = {
52094
52295
  name: { nullable: true, type: "string" },
52095
52296
  reservation_id: { format: "uuid", type: "string" },
52096
52297
  reservation_key: { type: "string" },
52298
+ spaces: {
52299
+ items: {
52300
+ properties: {
52301
+ name: { nullable: true, type: "string" },
52302
+ space_id: { nullable: true, type: "string" },
52303
+ space_key: { type: "string" }
52304
+ },
52305
+ required: ["space_id", "space_key", "name"],
52306
+ type: "object"
52307
+ },
52308
+ type: "array"
52309
+ },
52097
52310
  starts_at: {
52098
52311
  format: "date-time",
52099
52312
  nullable: true,
@@ -52108,7 +52321,8 @@ var openapi_default = {
52108
52321
  "ends_at",
52109
52322
  "created_at",
52110
52323
  "guest_name",
52111
- "access_methods"
52324
+ "access_methods",
52325
+ "spaces"
52112
52326
  ],
52113
52327
  type: "object"
52114
52328
  },