@seamapi/types 1.617.0 → 1.619.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 (28) hide show
  1. package/dist/connect.cjs +327 -6
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +387 -0
  4. package/dist/index.cjs +327 -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 +342 -0
  19. package/lib/seam/connect/openapi.js +312 -1
  20. package/lib/seam/connect/openapi.js.map +1 -1
  21. package/lib/seam/connect/route-types.d.ts +45 -0
  22. package/package.json +1 -1
  23. package/src/lib/seam/connect/models/customer/access-grant-resources.ts +15 -1
  24. package/src/lib/seam/connect/models/customer/customer-data.ts +7 -1
  25. package/src/lib/seam/connect/models/customer/location-resources.ts +76 -8
  26. package/src/lib/seam/connect/models/customer/user-identity-resources.ts +32 -4
  27. package/src/lib/seam/connect/openapi.ts +312 -1
  28. package/src/lib/seam/connect/route-types.ts +67 -0
@@ -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
  },
@@ -51411,6 +51459,69 @@ export default {
51411
51459
  },
51412
51460
  type: 'object',
51413
51461
  },
51462
+ climate_rules: {
51463
+ properties: {
51464
+ rules: {
51465
+ properties: {
51466
+ delete_on_reservation_end: {
51467
+ properties: { enabled: { type: 'boolean' } },
51468
+ required: ['enabled'],
51469
+ type: 'object',
51470
+ },
51471
+ reservation_created: {
51472
+ properties: {
51473
+ enabled: { type: 'boolean' },
51474
+ fallback_preset: {
51475
+ properties: {
51476
+ fan_mode: {
51477
+ enum: ['on', 'auto', 'circulate'],
51478
+ type: 'string',
51479
+ },
51480
+ is_override_allowed: { type: 'boolean' },
51481
+ mode: {
51482
+ enum: ['heat', 'cool', 'auto'],
51483
+ type: 'string',
51484
+ },
51485
+ override_period_minutes: {
51486
+ format: 'float',
51487
+ type: 'number',
51488
+ },
51489
+ temperature: {
51490
+ format: 'float',
51491
+ type: 'number',
51492
+ },
51493
+ temperature_unit: {
51494
+ enum: ['celsius', 'fahrenheit'],
51495
+ type: 'string',
51496
+ },
51497
+ },
51498
+ required: [
51499
+ 'mode',
51500
+ 'temperature',
51501
+ 'temperature_unit',
51502
+ 'fan_mode',
51503
+ 'is_override_allowed',
51504
+ 'override_period_minutes',
51505
+ ],
51506
+ type: 'object',
51507
+ },
51508
+ occupied_preset_key: { type: 'string' },
51509
+ },
51510
+ required: ['enabled'],
51511
+ type: 'object',
51512
+ },
51513
+ update_on_time_change: {
51514
+ properties: { enabled: { type: 'boolean' } },
51515
+ required: ['enabled'],
51516
+ type: 'object',
51517
+ },
51518
+ },
51519
+ type: 'object',
51520
+ },
51521
+ },
51522
+ required: ['rules'],
51523
+ type: 'object',
51524
+ },
51414
51525
  ok: { type: 'boolean' },
51415
51526
  },
51416
51527
  required: ['ok'],
@@ -51538,6 +51649,69 @@ export default {
51538
51649
  },
51539
51650
  type: 'object',
51540
51651
  },
51652
+ climate_rules: {
51653
+ properties: {
51654
+ rules: {
51655
+ properties: {
51656
+ delete_on_reservation_end: {
51657
+ properties: { enabled: { type: 'boolean' } },
51658
+ required: ['enabled'],
51659
+ type: 'object',
51660
+ },
51661
+ reservation_created: {
51662
+ properties: {
51663
+ enabled: { type: 'boolean' },
51664
+ fallback_preset: {
51665
+ properties: {
51666
+ fan_mode: {
51667
+ enum: ['on', 'auto', 'circulate'],
51668
+ type: 'string',
51669
+ },
51670
+ is_override_allowed: { type: 'boolean' },
51671
+ mode: {
51672
+ enum: ['heat', 'cool', 'auto'],
51673
+ type: 'string',
51674
+ },
51675
+ override_period_minutes: {
51676
+ format: 'float',
51677
+ type: 'number',
51678
+ },
51679
+ temperature: {
51680
+ format: 'float',
51681
+ type: 'number',
51682
+ },
51683
+ temperature_unit: {
51684
+ enum: ['celsius', 'fahrenheit'],
51685
+ type: 'string',
51686
+ },
51687
+ },
51688
+ required: [
51689
+ 'mode',
51690
+ 'temperature',
51691
+ 'temperature_unit',
51692
+ 'fan_mode',
51693
+ 'is_override_allowed',
51694
+ 'override_period_minutes',
51695
+ ],
51696
+ type: 'object',
51697
+ },
51698
+ occupied_preset_key: { type: 'string' },
51699
+ },
51700
+ required: ['enabled'],
51701
+ type: 'object',
51702
+ },
51703
+ update_on_time_change: {
51704
+ properties: { enabled: { type: 'boolean' } },
51705
+ required: ['enabled'],
51706
+ type: 'object',
51707
+ },
51708
+ },
51709
+ type: 'object',
51710
+ },
51711
+ },
51712
+ required: ['rules'],
51713
+ type: 'object',
51714
+ },
51541
51715
  ok: { type: 'boolean' },
51542
51716
  },
51543
51717
  required: ['ok'],
@@ -51659,6 +51833,69 @@ export default {
51659
51833
  },
51660
51834
  type: 'object',
51661
51835
  },
51836
+ climate_rules: {
51837
+ description: 'Climate automation rules configuration.',
51838
+ properties: {
51839
+ rules: {
51840
+ properties: {
51841
+ delete_on_reservation_end: {
51842
+ properties: { enabled: { type: 'boolean' } },
51843
+ required: ['enabled'],
51844
+ type: 'object',
51845
+ },
51846
+ reservation_created: {
51847
+ properties: {
51848
+ enabled: { type: 'boolean' },
51849
+ fallback_preset: {
51850
+ properties: {
51851
+ fan_mode: {
51852
+ enum: ['on', 'auto', 'circulate'],
51853
+ type: 'string',
51854
+ },
51855
+ is_override_allowed: { type: 'boolean' },
51856
+ mode: {
51857
+ enum: ['heat', 'cool', 'auto'],
51858
+ type: 'string',
51859
+ },
51860
+ override_period_minutes: {
51861
+ format: 'float',
51862
+ type: 'number',
51863
+ },
51864
+ temperature: {
51865
+ format: 'float',
51866
+ type: 'number',
51867
+ },
51868
+ temperature_unit: {
51869
+ enum: ['celsius', 'fahrenheit'],
51870
+ type: 'string',
51871
+ },
51872
+ },
51873
+ required: [
51874
+ 'mode',
51875
+ 'temperature',
51876
+ 'temperature_unit',
51877
+ 'fan_mode',
51878
+ 'is_override_allowed',
51879
+ 'override_period_minutes',
51880
+ ],
51881
+ type: 'object',
51882
+ },
51883
+ occupied_preset_key: { type: 'string' },
51884
+ },
51885
+ required: ['enabled'],
51886
+ type: 'object',
51887
+ },
51888
+ update_on_time_change: {
51889
+ properties: { enabled: { type: 'boolean' } },
51890
+ required: ['enabled'],
51891
+ type: 'object',
51892
+ },
51893
+ },
51894
+ type: 'object',
51895
+ },
51896
+ },
51897
+ type: 'object',
51898
+ },
51662
51899
  },
51663
51900
  type: 'object',
51664
51901
  },
@@ -51788,6 +52025,69 @@ export default {
51788
52025
  },
51789
52026
  type: 'object',
51790
52027
  },
52028
+ climate_rules: {
52029
+ description: 'Climate automation rules configuration.',
52030
+ properties: {
52031
+ rules: {
52032
+ properties: {
52033
+ delete_on_reservation_end: {
52034
+ properties: { enabled: { type: 'boolean' } },
52035
+ required: ['enabled'],
52036
+ type: 'object',
52037
+ },
52038
+ reservation_created: {
52039
+ properties: {
52040
+ enabled: { type: 'boolean' },
52041
+ fallback_preset: {
52042
+ properties: {
52043
+ fan_mode: {
52044
+ enum: ['on', 'auto', 'circulate'],
52045
+ type: 'string',
52046
+ },
52047
+ is_override_allowed: { type: 'boolean' },
52048
+ mode: {
52049
+ enum: ['heat', 'cool', 'auto'],
52050
+ type: 'string',
52051
+ },
52052
+ override_period_minutes: {
52053
+ format: 'float',
52054
+ type: 'number',
52055
+ },
52056
+ temperature: {
52057
+ format: 'float',
52058
+ type: 'number',
52059
+ },
52060
+ temperature_unit: {
52061
+ enum: ['celsius', 'fahrenheit'],
52062
+ type: 'string',
52063
+ },
52064
+ },
52065
+ required: [
52066
+ 'mode',
52067
+ 'temperature',
52068
+ 'temperature_unit',
52069
+ 'fan_mode',
52070
+ 'is_override_allowed',
52071
+ 'override_period_minutes',
52072
+ ],
52073
+ type: 'object',
52074
+ },
52075
+ occupied_preset_key: { type: 'string' },
52076
+ },
52077
+ required: ['enabled'],
52078
+ type: 'object',
52079
+ },
52080
+ update_on_time_change: {
52081
+ properties: { enabled: { type: 'boolean' } },
52082
+ required: ['enabled'],
52083
+ type: 'object',
52084
+ },
52085
+ },
52086
+ type: 'object',
52087
+ },
52088
+ },
52089
+ type: 'object',
52090
+ },
51791
52091
  },
51792
52092
  type: 'object',
51793
52093
  },
@@ -55248,6 +55548,7 @@ export default {
55248
55548
  customer_key: {
55249
55549
  description:
55250
55550
  'Customer key for which you want to create the space.',
55551
+ minLength: 1,
55251
55552
  type: 'string',
55252
55553
  },
55253
55554
  device_ids: {
@@ -56166,6 +56467,7 @@ export default {
56166
56467
  customer_key: {
56167
56468
  description:
56168
56469
  'Customer key for which you want to update the space.',
56470
+ minLength: 1,
56169
56471
  type: 'string',
56170
56472
  },
56171
56473
  device_ids: {
@@ -56242,6 +56544,7 @@ export default {
56242
56544
  customer_key: {
56243
56545
  description:
56244
56546
  'Customer key for which you want to update the space.',
56547
+ minLength: 1,
56245
56548
  type: 'string',
56246
56549
  },
56247
56550
  device_ids: {
@@ -59659,6 +59962,7 @@ export default {
59659
59962
  customer_key: {
59660
59963
  description:
59661
59964
  'Customer key for which you want to connect accounts.',
59965
+ minLength: 1,
59662
59966
  type: 'string',
59663
59967
  },
59664
59968
  },
@@ -59730,6 +60034,7 @@ export default {
59730
60034
  schema: {
59731
60035
  description:
59732
60036
  'Customer key for which you want to create a new building block magic link.',
60037
+ minLength: 1,
59733
60038
  type: 'string',
59734
60039
  },
59735
60040
  },
@@ -59749,6 +60054,7 @@ export default {
59749
60054
  },
59750
60055
  space_key: {
59751
60056
  description: 'Your unique identifier for the space.',
60057
+ minLength: 1,
59752
60058
  type: 'string',
59753
60059
  },
59754
60060
  },
@@ -59814,6 +60120,7 @@ export default {
59814
60120
  customer_key: {
59815
60121
  description:
59816
60122
  'Customer key for which you want to create a new building block magic link.',
60123
+ minLength: 1,
59817
60124
  type: 'string',
59818
60125
  },
59819
60126
  spaces: {
@@ -59828,6 +60135,7 @@ export default {
59828
60135
  },
59829
60136
  space_key: {
59830
60137
  description: 'Your unique identifier for the space.',
60138
+ minLength: 1,
59831
60139
  type: 'string',
59832
60140
  },
59833
60141
  },
@@ -59890,6 +60198,7 @@ export default {
59890
60198
  customer_key: {
59891
60199
  description:
59892
60200
  'Customer key for which you want to manage devices.',
60201
+ minLength: 1,
59893
60202
  type: 'string',
59894
60203
  },
59895
60204
  },
@@ -59946,6 +60255,7 @@ export default {
59946
60255
  customer_key: {
59947
60256
  description:
59948
60257
  'Customer key for which you want to organize spaces.',
60258
+ minLength: 1,
59949
60259
  type: 'string',
59950
60260
  },
59951
60261
  spaces: {
@@ -59960,6 +60270,7 @@ export default {
59960
60270
  },
59961
60271
  space_key: {
59962
60272
  description: 'Your unique identifier for the space.',
60273
+ minLength: 1,
59963
60274
  type: 'string',
59964
60275
  },
59965
60276
  },