@seamapi/types 1.617.0 → 1.618.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.
Files changed (26) hide show
  1. package/dist/connect.cjs +75 -6
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +62 -0
  4. package/dist/index.cjs +75 -6
  5. package/dist/index.cjs.map +1 -1
  6. package/lib/seam/connect/models/customer/access-grant-resources.d.ts +6 -6
  7. package/lib/seam/connect/models/customer/access-grant-resources.js +15 -1
  8. package/lib/seam/connect/models/customer/access-grant-resources.js.map +1 -1
  9. package/lib/seam/connect/models/customer/customer-data.d.ts +22 -22
  10. package/lib/seam/connect/models/customer/customer-data.js +7 -1
  11. package/lib/seam/connect/models/customer/customer-data.js.map +1 -1
  12. package/lib/seam/connect/models/customer/location-resources.d.ts +26 -26
  13. package/lib/seam/connect/models/customer/location-resources.js +76 -8
  14. package/lib/seam/connect/models/customer/location-resources.js.map +1 -1
  15. package/lib/seam/connect/models/customer/user-identity-resources.d.ts +10 -10
  16. package/lib/seam/connect/models/customer/user-identity-resources.js +32 -4
  17. package/lib/seam/connect/models/customer/user-identity-resources.js.map +1 -1
  18. package/lib/seam/connect/openapi.d.ts +62 -0
  19. package/lib/seam/connect/openapi.js +60 -1
  20. package/lib/seam/connect/openapi.js.map +1 -1
  21. package/package.json +1 -1
  22. package/src/lib/seam/connect/models/customer/access-grant-resources.ts +15 -1
  23. package/src/lib/seam/connect/models/customer/customer-data.ts +7 -1
  24. package/src/lib/seam/connect/models/customer/location-resources.ts +76 -8
  25. package/src/lib/seam/connect/models/customer/user-identity-resources.ts +32 -4
  26. package/src/lib/seam/connect/openapi.ts +60 -1
@@ -28518,6 +28518,7 @@ export default {
28518
28518
  access_grant_key: {
28519
28519
  description:
28520
28520
  'Unique key for the access grant within the workspace.',
28521
+ minLength: 1,
28521
28522
  type: 'string',
28522
28523
  },
28523
28524
  acs_entrance_ids: {
@@ -28621,7 +28622,7 @@ export default {
28621
28622
  space_keys: {
28622
28623
  description:
28623
28624
  'Set of keys of existing spaces to which access is being granted.',
28624
- items: { type: 'string' },
28625
+ items: { minLength: 1, type: 'string' },
28625
28626
  type: 'array',
28626
28627
  },
28627
28628
  starts_at: {
@@ -38879,6 +38880,7 @@ export default {
38879
38880
  customer_key: {
38880
38881
  description:
38881
38882
  'Customer key that you want to associate with the new client session.',
38883
+ minLength: 1,
38882
38884
  type: 'string',
38883
38885
  },
38884
38886
  expires_at: {
@@ -38979,6 +38981,7 @@ export default {
38979
38981
  customer_key: {
38980
38982
  description:
38981
38983
  'Customer key that you want to associate with the new client session.',
38984
+ minLength: 1,
38982
38985
  type: 'string',
38983
38986
  },
38984
38987
  expires_at: {
@@ -39868,6 +39871,7 @@ export default {
39868
39871
  customer_key: {
39869
39872
  description:
39870
39873
  'Associate the Connect Webview, the connected account, and all resources under the connected account with a customer. If the connected account already exists, it will be associated with the customer. If the connected account already exists, but is already associated with a customer, the Connect Webview will show an error.',
39874
+ minLength: 1,
39871
39875
  type: 'string',
39872
39876
  },
39873
39877
  device_selection_mode: {
@@ -41278,6 +41282,7 @@ export default {
41278
41282
  access_grant_key: {
41279
41283
  description:
41280
41284
  'Your unique identifier for the access grant.',
41285
+ minLength: 1,
41281
41286
  type: 'string',
41282
41287
  },
41283
41288
  building_keys: {
@@ -41386,6 +41391,7 @@ export default {
41386
41391
  booking_key: {
41387
41392
  description:
41388
41393
  'Your unique identifier for the booking.',
41394
+ minLength: 1,
41389
41395
  type: 'string',
41390
41396
  },
41391
41397
  building_keys: {
@@ -41494,6 +41500,7 @@ export default {
41494
41500
  building_key: {
41495
41501
  description:
41496
41502
  'Your unique identifier for the building.',
41503
+ minLength: 1,
41497
41504
  type: 'string',
41498
41505
  },
41499
41506
  name: {
@@ -41514,6 +41521,7 @@ export default {
41514
41521
  common_area_key: {
41515
41522
  description:
41516
41523
  'Your unique identifier for the common area.',
41524
+ minLength: 1,
41517
41525
  type: 'string',
41518
41526
  },
41519
41527
  name: {
@@ -41524,6 +41532,7 @@ export default {
41524
41532
  parent_site_key: {
41525
41533
  description:
41526
41534
  'Your unique identifier for the site.',
41535
+ minLength: 1,
41527
41536
  type: 'string',
41528
41537
  },
41529
41538
  },
@@ -41535,6 +41544,7 @@ export default {
41535
41544
  customer_key: {
41536
41545
  description:
41537
41546
  'Your unique identifier for the customer.',
41547
+ minLength: 1,
41538
41548
  type: 'string',
41539
41549
  },
41540
41550
  facilities: {
@@ -41544,6 +41554,7 @@ export default {
41544
41554
  facility_key: {
41545
41555
  description:
41546
41556
  'Your unique identifier for the facility.',
41557
+ minLength: 1,
41547
41558
  type: 'string',
41548
41559
  },
41549
41560
  name: {
@@ -41569,6 +41580,7 @@ export default {
41569
41580
  guest_key: {
41570
41581
  description:
41571
41582
  'Your unique identifier for the guest.',
41583
+ minLength: 1,
41572
41584
  type: 'string',
41573
41585
  },
41574
41586
  name: {
@@ -41594,6 +41606,7 @@ export default {
41594
41606
  listing_key: {
41595
41607
  description:
41596
41608
  'Your unique identifier for the listing.',
41609
+ minLength: 1,
41597
41610
  type: 'string',
41598
41611
  },
41599
41612
  name: {
@@ -41620,6 +41633,7 @@ export default {
41620
41633
  property_key: {
41621
41634
  description:
41622
41635
  'Your unique identifier for the property.',
41636
+ minLength: 1,
41623
41637
  type: 'string',
41624
41638
  },
41625
41639
  },
@@ -41640,6 +41654,7 @@ export default {
41640
41654
  property_listing_key: {
41641
41655
  description:
41642
41656
  'Your unique identifier for the property listing.',
41657
+ minLength: 1,
41643
41658
  type: 'string',
41644
41659
  },
41645
41660
  },
@@ -41705,6 +41720,7 @@ export default {
41705
41720
  reservation_key: {
41706
41721
  description:
41707
41722
  'Your unique identifier for the reservation.',
41723
+ minLength: 1,
41708
41724
  type: 'string',
41709
41725
  },
41710
41726
  resident_key: {
@@ -41778,6 +41794,7 @@ export default {
41778
41794
  resident_key: {
41779
41795
  description:
41780
41796
  'Your unique identifier for the resident.',
41797
+ minLength: 1,
41781
41798
  type: 'string',
41782
41799
  },
41783
41800
  },
@@ -41798,11 +41815,13 @@ export default {
41798
41815
  parent_site_key: {
41799
41816
  description:
41800
41817
  'Your unique identifier for the site.',
41818
+ minLength: 1,
41801
41819
  type: 'string',
41802
41820
  },
41803
41821
  room_key: {
41804
41822
  description:
41805
41823
  'Your unique identifier for the room.',
41824
+ minLength: 1,
41806
41825
  type: 'string',
41807
41826
  },
41808
41827
  },
@@ -41823,6 +41842,7 @@ export default {
41823
41842
  site_key: {
41824
41843
  description:
41825
41844
  'Your unique identifier for the site.',
41845
+ minLength: 1,
41826
41846
  type: 'string',
41827
41847
  },
41828
41848
  },
@@ -41843,6 +41863,7 @@ export default {
41843
41863
  space_key: {
41844
41864
  description:
41845
41865
  'Your unique identifier for the space.',
41866
+ minLength: 1,
41846
41867
  type: 'string',
41847
41868
  },
41848
41869
  },
@@ -41916,6 +41937,7 @@ export default {
41916
41937
  tenant_key: {
41917
41938
  description:
41918
41939
  'Your unique identifier for the tenant.',
41940
+ minLength: 1,
41919
41941
  type: 'string',
41920
41942
  },
41921
41943
  },
@@ -41937,11 +41959,13 @@ export default {
41937
41959
  parent_site_key: {
41938
41960
  description:
41939
41961
  'Your unique identifier for the site.',
41962
+ minLength: 1,
41940
41963
  type: 'string',
41941
41964
  },
41942
41965
  unit_key: {
41943
41966
  description:
41944
41967
  'Your unique identifier for the unit.',
41968
+ minLength: 1,
41945
41969
  type: 'string',
41946
41970
  },
41947
41971
  },
@@ -41972,6 +41996,7 @@ export default {
41972
41996
  user_identity_key: {
41973
41997
  description:
41974
41998
  'Your unique identifier for the user identity.',
41999
+ minLength: 1,
41975
42000
  type: 'string',
41976
42001
  },
41977
42002
  },
@@ -42002,6 +42027,7 @@ export default {
42002
42027
  user_key: {
42003
42028
  description:
42004
42029
  'Your unique identifier for the user.',
42030
+ minLength: 1,
42005
42031
  type: 'string',
42006
42032
  },
42007
42033
  },
@@ -42404,6 +42430,7 @@ export default {
42404
42430
  access_grant_key: {
42405
42431
  description:
42406
42432
  'Your unique identifier for the access grant.',
42433
+ minLength: 1,
42407
42434
  type: 'string',
42408
42435
  },
42409
42436
  building_keys: {
@@ -42512,6 +42539,7 @@ export default {
42512
42539
  booking_key: {
42513
42540
  description:
42514
42541
  'Your unique identifier for the booking.',
42542
+ minLength: 1,
42515
42543
  type: 'string',
42516
42544
  },
42517
42545
  building_keys: {
@@ -42620,6 +42648,7 @@ export default {
42620
42648
  building_key: {
42621
42649
  description:
42622
42650
  'Your unique identifier for the building.',
42651
+ minLength: 1,
42623
42652
  type: 'string',
42624
42653
  },
42625
42654
  name: {
@@ -42640,6 +42669,7 @@ export default {
42640
42669
  common_area_key: {
42641
42670
  description:
42642
42671
  'Your unique identifier for the common area.',
42672
+ minLength: 1,
42643
42673
  type: 'string',
42644
42674
  },
42645
42675
  name: {
@@ -42649,6 +42679,7 @@ export default {
42649
42679
  },
42650
42680
  parent_site_key: {
42651
42681
  description: 'Your unique identifier for the site.',
42682
+ minLength: 1,
42652
42683
  type: 'string',
42653
42684
  },
42654
42685
  },
@@ -42659,6 +42690,7 @@ export default {
42659
42690
  },
42660
42691
  customer_key: {
42661
42692
  description: 'Your unique identifier for the customer.',
42693
+ minLength: 1,
42662
42694
  type: 'string',
42663
42695
  },
42664
42696
  facilities: {
@@ -42668,6 +42700,7 @@ export default {
42668
42700
  facility_key: {
42669
42701
  description:
42670
42702
  'Your unique identifier for the facility.',
42703
+ minLength: 1,
42671
42704
  type: 'string',
42672
42705
  },
42673
42706
  name: {
@@ -42692,6 +42725,7 @@ export default {
42692
42725
  },
42693
42726
  guest_key: {
42694
42727
  description: 'Your unique identifier for the guest.',
42728
+ minLength: 1,
42695
42729
  type: 'string',
42696
42730
  },
42697
42731
  name: {
@@ -42717,6 +42751,7 @@ export default {
42717
42751
  listing_key: {
42718
42752
  description:
42719
42753
  'Your unique identifier for the listing.',
42754
+ minLength: 1,
42720
42755
  type: 'string',
42721
42756
  },
42722
42757
  name: {
@@ -42742,6 +42777,7 @@ export default {
42742
42777
  property_key: {
42743
42778
  description:
42744
42779
  'Your unique identifier for the property.',
42780
+ minLength: 1,
42745
42781
  type: 'string',
42746
42782
  },
42747
42783
  },
@@ -42762,6 +42798,7 @@ export default {
42762
42798
  property_listing_key: {
42763
42799
  description:
42764
42800
  'Your unique identifier for the property listing.',
42801
+ minLength: 1,
42765
42802
  type: 'string',
42766
42803
  },
42767
42804
  },
@@ -42827,6 +42864,7 @@ export default {
42827
42864
  reservation_key: {
42828
42865
  description:
42829
42866
  'Your unique identifier for the reservation.',
42867
+ minLength: 1,
42830
42868
  type: 'string',
42831
42869
  },
42832
42870
  resident_key: {
@@ -42900,6 +42938,7 @@ export default {
42900
42938
  resident_key: {
42901
42939
  description:
42902
42940
  'Your unique identifier for the resident.',
42941
+ minLength: 1,
42903
42942
  type: 'string',
42904
42943
  },
42905
42944
  },
@@ -42919,10 +42958,12 @@ export default {
42919
42958
  },
42920
42959
  parent_site_key: {
42921
42960
  description: 'Your unique identifier for the site.',
42961
+ minLength: 1,
42922
42962
  type: 'string',
42923
42963
  },
42924
42964
  room_key: {
42925
42965
  description: 'Your unique identifier for the room.',
42966
+ minLength: 1,
42926
42967
  type: 'string',
42927
42968
  },
42928
42969
  },
@@ -42942,6 +42983,7 @@ export default {
42942
42983
  },
42943
42984
  site_key: {
42944
42985
  description: 'Your unique identifier for the site.',
42986
+ minLength: 1,
42945
42987
  type: 'string',
42946
42988
  },
42947
42989
  },
@@ -42961,6 +43003,7 @@ export default {
42961
43003
  },
42962
43004
  space_key: {
42963
43005
  description: 'Your unique identifier for the space.',
43006
+ minLength: 1,
42964
43007
  type: 'string',
42965
43008
  },
42966
43009
  },
@@ -43028,6 +43071,7 @@ export default {
43028
43071
  },
43029
43072
  tenant_key: {
43030
43073
  description: 'Your unique identifier for the tenant.',
43074
+ minLength: 1,
43031
43075
  type: 'string',
43032
43076
  },
43033
43077
  },
@@ -43047,10 +43091,12 @@ export default {
43047
43091
  },
43048
43092
  parent_site_key: {
43049
43093
  description: 'Your unique identifier for the site.',
43094
+ minLength: 1,
43050
43095
  type: 'string',
43051
43096
  },
43052
43097
  unit_key: {
43053
43098
  description: 'Your unique identifier for the unit.',
43099
+ minLength: 1,
43054
43100
  type: 'string',
43055
43101
  },
43056
43102
  },
@@ -43081,6 +43127,7 @@ export default {
43081
43127
  user_identity_key: {
43082
43128
  description:
43083
43129
  'Your unique identifier for the user identity.',
43130
+ minLength: 1,
43084
43131
  type: 'string',
43085
43132
  },
43086
43133
  },
@@ -43110,6 +43157,7 @@ export default {
43110
43157
  },
43111
43158
  user_key: {
43112
43159
  description: 'Your unique identifier for the user.',
43160
+ minLength: 1,
43113
43161
  type: 'string',
43114
43162
  },
43115
43163
  },
@@ -55248,6 +55296,7 @@ export default {
55248
55296
  customer_key: {
55249
55297
  description:
55250
55298
  'Customer key for which you want to create the space.',
55299
+ minLength: 1,
55251
55300
  type: 'string',
55252
55301
  },
55253
55302
  device_ids: {
@@ -56166,6 +56215,7 @@ export default {
56166
56215
  customer_key: {
56167
56216
  description:
56168
56217
  'Customer key for which you want to update the space.',
56218
+ minLength: 1,
56169
56219
  type: 'string',
56170
56220
  },
56171
56221
  device_ids: {
@@ -56242,6 +56292,7 @@ export default {
56242
56292
  customer_key: {
56243
56293
  description:
56244
56294
  'Customer key for which you want to update the space.',
56295
+ minLength: 1,
56245
56296
  type: 'string',
56246
56297
  },
56247
56298
  device_ids: {
@@ -59659,6 +59710,7 @@ export default {
59659
59710
  customer_key: {
59660
59711
  description:
59661
59712
  'Customer key for which you want to connect accounts.',
59713
+ minLength: 1,
59662
59714
  type: 'string',
59663
59715
  },
59664
59716
  },
@@ -59730,6 +59782,7 @@ export default {
59730
59782
  schema: {
59731
59783
  description:
59732
59784
  'Customer key for which you want to create a new building block magic link.',
59785
+ minLength: 1,
59733
59786
  type: 'string',
59734
59787
  },
59735
59788
  },
@@ -59749,6 +59802,7 @@ export default {
59749
59802
  },
59750
59803
  space_key: {
59751
59804
  description: 'Your unique identifier for the space.',
59805
+ minLength: 1,
59752
59806
  type: 'string',
59753
59807
  },
59754
59808
  },
@@ -59814,6 +59868,7 @@ export default {
59814
59868
  customer_key: {
59815
59869
  description:
59816
59870
  'Customer key for which you want to create a new building block magic link.',
59871
+ minLength: 1,
59817
59872
  type: 'string',
59818
59873
  },
59819
59874
  spaces: {
@@ -59828,6 +59883,7 @@ export default {
59828
59883
  },
59829
59884
  space_key: {
59830
59885
  description: 'Your unique identifier for the space.',
59886
+ minLength: 1,
59831
59887
  type: 'string',
59832
59888
  },
59833
59889
  },
@@ -59890,6 +59946,7 @@ export default {
59890
59946
  customer_key: {
59891
59947
  description:
59892
59948
  'Customer key for which you want to manage devices.',
59949
+ minLength: 1,
59893
59950
  type: 'string',
59894
59951
  },
59895
59952
  },
@@ -59946,6 +60003,7 @@ export default {
59946
60003
  customer_key: {
59947
60004
  description:
59948
60005
  'Customer key for which you want to organize spaces.',
60006
+ minLength: 1,
59949
60007
  type: 'string',
59950
60008
  },
59951
60009
  spaces: {
@@ -59960,6 +60018,7 @@ export default {
59960
60018
  },
59961
60019
  space_key: {
59962
60020
  description: 'Your unique identifier for the space.',
60021
+ minLength: 1,
59963
60022
  type: 'string',
59964
60023
  },
59965
60024
  },