@seamapi/types 1.406.6 → 1.406.8

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 (37) hide show
  1. package/dist/connect.cjs +485 -223
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +472 -192
  4. package/lib/seam/connect/internal/schemas.d.ts +1 -1
  5. package/lib/seam/connect/internal/schemas.js +1 -1
  6. package/lib/seam/connect/internal/schemas.js.map +1 -1
  7. package/lib/seam/connect/models/acs/acs-access-group.d.ts +6 -0
  8. package/lib/seam/connect/models/acs/acs-access-group.js +5 -1
  9. package/lib/seam/connect/models/acs/acs-access-group.js.map +1 -1
  10. package/lib/seam/connect/models/acs/acs-encoder.d.ts +3 -0
  11. package/lib/seam/connect/models/acs/acs-encoder.js +4 -0
  12. package/lib/seam/connect/models/acs/acs-encoder.js.map +1 -1
  13. package/lib/seam/connect/models/noise-sensors/noise-threshold.js +23 -7
  14. package/lib/seam/connect/models/noise-sensors/noise-threshold.js.map +1 -1
  15. package/lib/seam/connect/models/partner/index.d.ts +1 -0
  16. package/lib/seam/connect/models/partner/index.js +1 -0
  17. package/lib/seam/connect/models/partner/index.js.map +1 -1
  18. package/lib/seam/connect/models/partner/magic-link.d.ts +24 -0
  19. package/lib/seam/connect/models/partner/magic-link.js +19 -0
  20. package/lib/seam/connect/models/partner/magic-link.js.map +1 -0
  21. package/lib/seam/connect/models/partner/resources.d.ts +18 -2
  22. package/lib/seam/connect/models/partner/resources.js +17 -1
  23. package/lib/seam/connect/models/partner/resources.js.map +1 -1
  24. package/lib/seam/connect/openapi.d.ts +351 -145
  25. package/lib/seam/connect/openapi.js +450 -201
  26. package/lib/seam/connect/openapi.js.map +1 -1
  27. package/lib/seam/connect/route-types.d.ts +112 -47
  28. package/package.json +1 -1
  29. package/src/lib/seam/connect/internal/schemas.ts +3 -0
  30. package/src/lib/seam/connect/models/acs/acs-access-group.ts +7 -1
  31. package/src/lib/seam/connect/models/acs/acs-encoder.ts +6 -0
  32. package/src/lib/seam/connect/models/noise-sensors/noise-threshold.ts +29 -7
  33. package/src/lib/seam/connect/models/partner/index.ts +1 -0
  34. package/src/lib/seam/connect/models/partner/magic-link.ts +21 -0
  35. package/src/lib/seam/connect/models/partner/resources.ts +19 -1
  36. package/src/lib/seam/connect/openapi.ts +503 -211
  37. package/src/lib/seam/connect/route-types.ts +119 -51
@@ -282,6 +282,11 @@ declare const _default: {
282
282
  format: string;
283
283
  type: string;
284
284
  };
285
+ connected_account_id: {
286
+ description: string;
287
+ format: string;
288
+ type: string;
289
+ };
285
290
  created_at: {
286
291
  description: string;
287
292
  format: string;
@@ -649,6 +654,11 @@ declare const _default: {
649
654
  format: string;
650
655
  type: string;
651
656
  };
657
+ connected_account_id: {
658
+ description: string;
659
+ format: string;
660
+ type: string;
661
+ };
652
662
  created_at: {
653
663
  description: string;
654
664
  format: string;
@@ -8662,6 +8672,37 @@ declare const _default: {
8662
8672
  'x-route-path': string;
8663
8673
  'x-undocumented': string;
8664
8674
  };
8675
+ magic_link: {
8676
+ properties: {
8677
+ building_block_type: {
8678
+ enum: string[];
8679
+ type: string;
8680
+ };
8681
+ created_at: {
8682
+ format: string;
8683
+ type: string;
8684
+ };
8685
+ customer_key: {
8686
+ type: string;
8687
+ };
8688
+ expires_at: {
8689
+ format: string;
8690
+ type: string;
8691
+ };
8692
+ url: {
8693
+ format: string;
8694
+ type: string;
8695
+ };
8696
+ workspace_id: {
8697
+ format: string;
8698
+ type: string;
8699
+ };
8700
+ };
8701
+ required: string[];
8702
+ type: string;
8703
+ 'x-route-path': string;
8704
+ 'x-undocumented': string;
8705
+ };
8665
8706
  network: {
8666
8707
  properties: {
8667
8708
  created_at: {
@@ -8685,30 +8726,38 @@ declare const _default: {
8685
8726
  'x-route-path': string;
8686
8727
  };
8687
8728
  noise_threshold: {
8729
+ description: string;
8688
8730
  properties: {
8689
8731
  device_id: {
8732
+ description: string;
8690
8733
  format: string;
8691
8734
  type: string;
8692
8735
  };
8693
8736
  ends_daily_at: {
8737
+ description: string;
8694
8738
  type: string;
8695
8739
  };
8696
8740
  name: {
8741
+ description: string;
8697
8742
  type: string;
8698
8743
  };
8699
8744
  noise_threshold_decibels: {
8745
+ description: string;
8700
8746
  format: string;
8701
8747
  type: string;
8702
8748
  };
8703
8749
  noise_threshold_id: {
8750
+ description: string;
8704
8751
  format: string;
8705
8752
  type: string;
8706
8753
  };
8707
8754
  noise_threshold_nrs: {
8755
+ description: string;
8708
8756
  format: string;
8709
8757
  type: string;
8710
8758
  };
8711
8759
  starts_daily_at: {
8760
+ description: string;
8712
8761
  type: string;
8713
8762
  };
8714
8763
  };
@@ -9652,6 +9701,11 @@ declare const _default: {
9652
9701
  format: string;
9653
9702
  type: string;
9654
9703
  };
9704
+ connected_account_id: {
9705
+ description: string;
9706
+ format: string;
9707
+ type: string;
9708
+ };
9655
9709
  created_at: {
9656
9710
  description: string;
9657
9711
  format: string;
@@ -11123,22 +11177,32 @@ declare const _default: {
11123
11177
  };
11124
11178
  };
11125
11179
  security: ({
11180
+ client_session_with_customer: never[];
11181
+ client_session?: never;
11182
+ pat_with_workspace?: never;
11183
+ console_session_with_workspace?: never;
11184
+ api_key?: never;
11185
+ } | {
11126
11186
  client_session: never[];
11187
+ client_session_with_customer?: never;
11127
11188
  pat_with_workspace?: never;
11128
11189
  console_session_with_workspace?: never;
11129
11190
  api_key?: never;
11130
11191
  } | {
11131
11192
  pat_with_workspace: never[];
11193
+ client_session_with_customer?: never;
11132
11194
  client_session?: never;
11133
11195
  console_session_with_workspace?: never;
11134
11196
  api_key?: never;
11135
11197
  } | {
11136
11198
  console_session_with_workspace: never[];
11199
+ client_session_with_customer?: never;
11137
11200
  client_session?: never;
11138
11201
  pat_with_workspace?: never;
11139
11202
  api_key?: never;
11140
11203
  } | {
11141
11204
  api_key: never[];
11205
+ client_session_with_customer?: never;
11142
11206
  client_session?: never;
11143
11207
  pat_with_workspace?: never;
11144
11208
  console_session_with_workspace?: never;
@@ -11511,22 +11575,32 @@ declare const _default: {
11511
11575
  };
11512
11576
  security: ({
11513
11577
  client_session: never[];
11578
+ client_session_with_customer?: never;
11579
+ pat_with_workspace?: never;
11580
+ console_session_with_workspace?: never;
11581
+ api_key?: never;
11582
+ } | {
11583
+ client_session_with_customer: never[];
11584
+ client_session?: never;
11514
11585
  pat_with_workspace?: never;
11515
11586
  console_session_with_workspace?: never;
11516
11587
  api_key?: never;
11517
11588
  } | {
11518
11589
  pat_with_workspace: never[];
11519
11590
  client_session?: never;
11591
+ client_session_with_customer?: never;
11520
11592
  console_session_with_workspace?: never;
11521
11593
  api_key?: never;
11522
11594
  } | {
11523
11595
  console_session_with_workspace: never[];
11524
11596
  client_session?: never;
11597
+ client_session_with_customer?: never;
11525
11598
  pat_with_workspace?: never;
11526
11599
  api_key?: never;
11527
11600
  } | {
11528
11601
  api_key: never[];
11529
11602
  client_session?: never;
11603
+ client_session_with_customer?: never;
11530
11604
  pat_with_workspace?: never;
11531
11605
  console_session_with_workspace?: never;
11532
11606
  })[];
@@ -11678,21 +11752,31 @@ declare const _default: {
11678
11752
  access_token?: never;
11679
11753
  console_session_with_workspace?: never;
11680
11754
  client_session?: never;
11755
+ client_session_with_customer?: never;
11681
11756
  } | {
11682
11757
  access_token: never[];
11683
11758
  api_key?: never;
11684
11759
  console_session_with_workspace?: never;
11685
11760
  client_session?: never;
11761
+ client_session_with_customer?: never;
11686
11762
  } | {
11687
11763
  console_session_with_workspace: never[];
11688
11764
  api_key?: never;
11689
11765
  access_token?: never;
11690
11766
  client_session?: never;
11767
+ client_session_with_customer?: never;
11691
11768
  } | {
11692
11769
  client_session: never[];
11693
11770
  api_key?: never;
11694
11771
  access_token?: never;
11695
11772
  console_session_with_workspace?: never;
11773
+ client_session_with_customer?: never;
11774
+ } | {
11775
+ client_session_with_customer: never[];
11776
+ api_key?: never;
11777
+ access_token?: never;
11778
+ console_session_with_workspace?: never;
11779
+ client_session?: never;
11696
11780
  })[];
11697
11781
  summary: string;
11698
11782
  tags: string[];
@@ -11720,6 +11804,13 @@ declare const _default: {
11720
11804
  };
11721
11805
  type: string;
11722
11806
  };
11807
+ customer_ids: {
11808
+ items: {
11809
+ format: string;
11810
+ type: string;
11811
+ };
11812
+ type: string;
11813
+ };
11723
11814
  device_id: {
11724
11815
  description: string;
11725
11816
  format: string;
@@ -11781,22 +11872,32 @@ declare const _default: {
11781
11872
  };
11782
11873
  security: ({
11783
11874
  client_session: never[];
11875
+ client_session_with_customer?: never;
11876
+ pat_with_workspace?: never;
11877
+ console_session_with_workspace?: never;
11878
+ api_key?: never;
11879
+ } | {
11880
+ client_session_with_customer: never[];
11881
+ client_session?: never;
11784
11882
  pat_with_workspace?: never;
11785
11883
  console_session_with_workspace?: never;
11786
11884
  api_key?: never;
11787
11885
  } | {
11788
11886
  pat_with_workspace: never[];
11789
11887
  client_session?: never;
11888
+ client_session_with_customer?: never;
11790
11889
  console_session_with_workspace?: never;
11791
11890
  api_key?: never;
11792
11891
  } | {
11793
11892
  console_session_with_workspace: never[];
11794
11893
  client_session?: never;
11894
+ client_session_with_customer?: never;
11795
11895
  pat_with_workspace?: never;
11796
11896
  api_key?: never;
11797
11897
  } | {
11798
11898
  api_key: never[];
11799
11899
  client_session?: never;
11900
+ client_session_with_customer?: never;
11800
11901
  pat_with_workspace?: never;
11801
11902
  console_session_with_workspace?: never;
11802
11903
  })[];
@@ -21931,22 +22032,32 @@ declare const _default: {
21931
22032
  };
21932
22033
  security: ({
21933
22034
  client_session: never[];
22035
+ client_session_with_customer?: never;
22036
+ pat_with_workspace?: never;
22037
+ console_session_with_workspace?: never;
22038
+ api_key?: never;
22039
+ } | {
22040
+ client_session_with_customer: never[];
22041
+ client_session?: never;
21934
22042
  pat_with_workspace?: never;
21935
22043
  console_session_with_workspace?: never;
21936
22044
  api_key?: never;
21937
22045
  } | {
21938
22046
  pat_with_workspace: never[];
21939
22047
  client_session?: never;
22048
+ client_session_with_customer?: never;
21940
22049
  console_session_with_workspace?: never;
21941
22050
  api_key?: never;
21942
22051
  } | {
21943
22052
  console_session_with_workspace: never[];
21944
22053
  client_session?: never;
22054
+ client_session_with_customer?: never;
21945
22055
  pat_with_workspace?: never;
21946
22056
  api_key?: never;
21947
22057
  } | {
21948
22058
  api_key: never[];
21949
22059
  client_session?: never;
22060
+ client_session_with_customer?: never;
21950
22061
  pat_with_workspace?: never;
21951
22062
  console_session_with_workspace?: never;
21952
22063
  })[];
@@ -22161,22 +22272,32 @@ declare const _default: {
22161
22272
  };
22162
22273
  security: ({
22163
22274
  client_session: never[];
22275
+ client_session_with_customer?: never;
22276
+ pat_with_workspace?: never;
22277
+ console_session_with_workspace?: never;
22278
+ api_key?: never;
22279
+ } | {
22280
+ client_session_with_customer: never[];
22281
+ client_session?: never;
22164
22282
  pat_with_workspace?: never;
22165
22283
  console_session_with_workspace?: never;
22166
22284
  api_key?: never;
22167
22285
  } | {
22168
22286
  pat_with_workspace: never[];
22169
22287
  client_session?: never;
22288
+ client_session_with_customer?: never;
22170
22289
  console_session_with_workspace?: never;
22171
22290
  api_key?: never;
22172
22291
  } | {
22173
22292
  console_session_with_workspace: never[];
22174
22293
  client_session?: never;
22294
+ client_session_with_customer?: never;
22175
22295
  pat_with_workspace?: never;
22176
22296
  api_key?: never;
22177
22297
  } | {
22178
22298
  api_key: never[];
22179
22299
  client_session?: never;
22300
+ client_session_with_customer?: never;
22180
22301
  pat_with_workspace?: never;
22181
22302
  console_session_with_workspace?: never;
22182
22303
  })[];
@@ -22327,6 +22448,7 @@ declare const _default: {
22327
22448
  };
22328
22449
  '/noise_sensors/list': {
22329
22450
  post: {
22451
+ description: string;
22330
22452
  operationId: string;
22331
22453
  requestBody: {
22332
22454
  content: {
@@ -22506,10 +22628,12 @@ declare const _default: {
22506
22628
  'x-fern-sdk-method-name': string;
22507
22629
  'x-fern-sdk-return-value': string;
22508
22630
  'x-response-key': string;
22631
+ 'x-title': string;
22509
22632
  };
22510
22633
  };
22511
22634
  '/noise_sensors/noise_thresholds/create': {
22512
22635
  post: {
22636
+ description: string;
22513
22637
  operationId: string;
22514
22638
  requestBody: {
22515
22639
  content: {
@@ -22517,29 +22641,36 @@ declare const _default: {
22517
22641
  schema: {
22518
22642
  properties: {
22519
22643
  device_id: {
22644
+ description: string;
22520
22645
  format: string;
22521
22646
  type: string;
22522
22647
  };
22523
22648
  ends_daily_at: {
22649
+ description: string;
22524
22650
  type: string;
22525
22651
  };
22526
22652
  name: {
22653
+ description: string;
22527
22654
  type: string;
22528
22655
  };
22529
22656
  noise_threshold_decibels: {
22657
+ description: string;
22530
22658
  format: string;
22531
22659
  type: string;
22532
22660
  };
22533
22661
  noise_threshold_nrs: {
22662
+ description: string;
22534
22663
  format: string;
22535
22664
  type: string;
22536
22665
  };
22537
22666
  starts_daily_at: {
22667
+ description: string;
22538
22668
  type: string;
22539
22669
  };
22540
22670
  sync: {
22541
22671
  default: boolean;
22542
22672
  type: string;
22673
+ 'x-undocumented': string;
22543
22674
  };
22544
22675
  };
22545
22676
  required: string[];
@@ -22598,10 +22729,12 @@ declare const _default: {
22598
22729
  'x-fern-sdk-method-name': string;
22599
22730
  'x-fern-sdk-return-value': string;
22600
22731
  'x-response-key': string;
22732
+ 'x-title': string;
22601
22733
  };
22602
22734
  };
22603
22735
  '/noise_sensors/noise_thresholds/delete': {
22604
22736
  post: {
22737
+ description: string;
22605
22738
  operationId: string;
22606
22739
  requestBody: {
22607
22740
  content: {
@@ -22609,16 +22742,19 @@ declare const _default: {
22609
22742
  schema: {
22610
22743
  properties: {
22611
22744
  device_id: {
22745
+ description: string;
22612
22746
  format: string;
22613
22747
  type: string;
22614
22748
  };
22615
22749
  noise_threshold_id: {
22750
+ description: string;
22616
22751
  format: string;
22617
22752
  type: string;
22618
22753
  };
22619
22754
  sync: {
22620
22755
  default: boolean;
22621
22756
  type: string;
22757
+ 'x-undocumented': string;
22622
22758
  };
22623
22759
  };
22624
22760
  required: string[];
@@ -22673,10 +22809,12 @@ declare const _default: {
22673
22809
  'x-fern-sdk-group-name': string[];
22674
22810
  'x-fern-sdk-method-name': string;
22675
22811
  'x-response-key': null;
22812
+ 'x-title': string;
22676
22813
  };
22677
22814
  };
22678
22815
  '/noise_sensors/noise_thresholds/get': {
22679
22816
  post: {
22817
+ description: string;
22680
22818
  operationId: string;
22681
22819
  requestBody: {
22682
22820
  content: {
@@ -22684,6 +22822,7 @@ declare const _default: {
22684
22822
  schema: {
22685
22823
  properties: {
22686
22824
  noise_threshold_id: {
22825
+ description: string;
22687
22826
  format: string;
22688
22827
  type: string;
22689
22828
  };
@@ -22740,10 +22879,12 @@ declare const _default: {
22740
22879
  'x-fern-sdk-method-name': string;
22741
22880
  'x-fern-sdk-return-value': string;
22742
22881
  'x-response-key': string;
22882
+ 'x-title': string;
22743
22883
  };
22744
22884
  };
22745
22885
  '/noise_sensors/noise_thresholds/list': {
22746
22886
  post: {
22887
+ description: string;
22747
22888
  operationId: string;
22748
22889
  requestBody: {
22749
22890
  content: {
@@ -22751,11 +22892,14 @@ declare const _default: {
22751
22892
  schema: {
22752
22893
  properties: {
22753
22894
  device_id: {
22895
+ description: string;
22754
22896
  format: string;
22755
22897
  type: string;
22756
22898
  };
22757
22899
  is_programmed: {
22900
+ description: string;
22758
22901
  type: string;
22902
+ 'x-undocumented': string;
22759
22903
  };
22760
22904
  };
22761
22905
  required: string[];
@@ -22821,10 +22965,12 @@ declare const _default: {
22821
22965
  'x-fern-sdk-method-name': string;
22822
22966
  'x-fern-sdk-return-value': string;
22823
22967
  'x-response-key': string;
22968
+ 'x-title': string;
22824
22969
  };
22825
22970
  };
22826
22971
  '/noise_sensors/noise_thresholds/update': {
22827
22972
  patch: {
22973
+ description: string;
22828
22974
  operationId: string;
22829
22975
  requestBody: {
22830
22976
  content: {
@@ -22832,33 +22978,41 @@ declare const _default: {
22832
22978
  schema: {
22833
22979
  properties: {
22834
22980
  device_id: {
22981
+ description: string;
22835
22982
  format: string;
22836
22983
  type: string;
22837
22984
  };
22838
22985
  ends_daily_at: {
22986
+ description: string;
22839
22987
  type: string;
22840
22988
  };
22841
22989
  name: {
22990
+ description: string;
22842
22991
  type: string;
22843
22992
  };
22844
22993
  noise_threshold_decibels: {
22994
+ description: string;
22845
22995
  format: string;
22846
22996
  type: string;
22847
22997
  };
22848
22998
  noise_threshold_id: {
22999
+ description: string;
22849
23000
  format: string;
22850
23001
  type: string;
22851
23002
  };
22852
23003
  noise_threshold_nrs: {
23004
+ description: string;
22853
23005
  format: string;
22854
23006
  type: string;
22855
23007
  };
22856
23008
  starts_daily_at: {
23009
+ description: string;
22857
23010
  type: string;
22858
23011
  };
22859
23012
  sync: {
22860
23013
  default: boolean;
22861
23014
  type: string;
23015
+ 'x-undocumented': string;
22862
23016
  };
22863
23017
  };
22864
23018
  required: string[];
@@ -22912,8 +23066,10 @@ declare const _default: {
22912
23066
  'x-action-attempt-type': string;
22913
23067
  'x-fern-ignore': boolean;
22914
23068
  'x-response-key': null;
23069
+ 'x-title': string;
22915
23070
  };
22916
23071
  post: {
23072
+ description: string;
22917
23073
  operationId: string;
22918
23074
  requestBody: {
22919
23075
  content: {
@@ -22921,33 +23077,41 @@ declare const _default: {
22921
23077
  schema: {
22922
23078
  properties: {
22923
23079
  device_id: {
23080
+ description: string;
22924
23081
  format: string;
22925
23082
  type: string;
22926
23083
  };
22927
23084
  ends_daily_at: {
23085
+ description: string;
22928
23086
  type: string;
22929
23087
  };
22930
23088
  name: {
23089
+ description: string;
22931
23090
  type: string;
22932
23091
  };
22933
23092
  noise_threshold_decibels: {
23093
+ description: string;
22934
23094
  format: string;
22935
23095
  type: string;
22936
23096
  };
22937
23097
  noise_threshold_id: {
23098
+ description: string;
22938
23099
  format: string;
22939
23100
  type: string;
22940
23101
  };
22941
23102
  noise_threshold_nrs: {
23103
+ description: string;
22942
23104
  format: string;
22943
23105
  type: string;
22944
23106
  };
22945
23107
  starts_daily_at: {
23108
+ description: string;
22946
23109
  type: string;
22947
23110
  };
22948
23111
  sync: {
22949
23112
  default: boolean;
22950
23113
  type: string;
23114
+ 'x-undocumented': string;
22951
23115
  };
22952
23116
  };
22953
23117
  required: string[];
@@ -23002,8 +23166,10 @@ declare const _default: {
23002
23166
  'x-fern-sdk-group-name': string[];
23003
23167
  'x-fern-sdk-method-name': string;
23004
23168
  'x-response-key': null;
23169
+ 'x-title': string;
23005
23170
  };
23006
23171
  put: {
23172
+ description: string;
23007
23173
  operationId: string;
23008
23174
  requestBody: {
23009
23175
  content: {
@@ -23011,33 +23177,41 @@ declare const _default: {
23011
23177
  schema: {
23012
23178
  properties: {
23013
23179
  device_id: {
23180
+ description: string;
23014
23181
  format: string;
23015
23182
  type: string;
23016
23183
  };
23017
23184
  ends_daily_at: {
23185
+ description: string;
23018
23186
  type: string;
23019
23187
  };
23020
23188
  name: {
23189
+ description: string;
23021
23190
  type: string;
23022
23191
  };
23023
23192
  noise_threshold_decibels: {
23193
+ description: string;
23024
23194
  format: string;
23025
23195
  type: string;
23026
23196
  };
23027
23197
  noise_threshold_id: {
23198
+ description: string;
23028
23199
  format: string;
23029
23200
  type: string;
23030
23201
  };
23031
23202
  noise_threshold_nrs: {
23203
+ description: string;
23032
23204
  format: string;
23033
23205
  type: string;
23034
23206
  };
23035
23207
  starts_daily_at: {
23208
+ description: string;
23036
23209
  type: string;
23037
23210
  };
23038
23211
  sync: {
23039
23212
  default: boolean;
23040
23213
  type: string;
23214
+ 'x-undocumented': string;
23041
23215
  };
23042
23216
  };
23043
23217
  required: string[];
@@ -23091,10 +23265,12 @@ declare const _default: {
23091
23265
  'x-action-attempt-type': string;
23092
23266
  'x-fern-ignore': boolean;
23093
23267
  'x-response-key': null;
23268
+ 'x-title': string;
23094
23269
  };
23095
23270
  };
23096
23271
  '/noise_sensors/simulate/trigger_noise_threshold': {
23097
23272
  post: {
23273
+ description: string;
23098
23274
  operationId: string;
23099
23275
  requestBody: {
23100
23276
  content: {
@@ -23102,6 +23278,7 @@ declare const _default: {
23102
23278
  schema: {
23103
23279
  properties: {
23104
23280
  device_id: {
23281
+ description: string;
23105
23282
  format: string;
23106
23283
  type: string;
23107
23284
  };
@@ -23154,6 +23331,7 @@ declare const _default: {
23154
23331
  'x-fern-sdk-group-name': string[];
23155
23332
  'x-fern-sdk-method-name': string;
23156
23333
  'x-response-key': null;
23334
+ 'x-title': string;
23157
23335
  };
23158
23336
  };
23159
23337
  '/phones/deactivate': {
@@ -24817,6 +24995,114 @@ declare const _default: {
24817
24995
  'x-undocumented': string;
24818
24996
  };
24819
24997
  };
24998
+ '/seam/partner/v1/building_blocks/spaces/auto_map': {
24999
+ post: {
25000
+ description: string;
25001
+ operationId: string;
25002
+ requestBody: {
25003
+ content: {
25004
+ 'application/json': {
25005
+ schema: {
25006
+ properties: {
25007
+ collection_key: {
25008
+ type: string;
25009
+ };
25010
+ };
25011
+ required: string[];
25012
+ type: string;
25013
+ };
25014
+ };
25015
+ };
25016
+ };
25017
+ responses: {
25018
+ 200: {
25019
+ content: {
25020
+ 'application/json': {
25021
+ schema: {
25022
+ properties: {
25023
+ ok: {
25024
+ type: string;
25025
+ };
25026
+ spaces: {
25027
+ items: {
25028
+ properties: {
25029
+ acs_entrances: {
25030
+ items: {
25031
+ properties: {
25032
+ acs_entrance_id: {
25033
+ type: string;
25034
+ };
25035
+ name: {
25036
+ type: string;
25037
+ };
25038
+ };
25039
+ required: string[];
25040
+ type: string;
25041
+ };
25042
+ type: string;
25043
+ };
25044
+ devices: {
25045
+ items: {
25046
+ properties: {
25047
+ device_id: {
25048
+ type: string;
25049
+ };
25050
+ device_type: {
25051
+ enum: string[];
25052
+ type: string;
25053
+ };
25054
+ name: {
25055
+ type: string;
25056
+ };
25057
+ };
25058
+ required: string[];
25059
+ type: string;
25060
+ };
25061
+ type: string;
25062
+ };
25063
+ name: {
25064
+ type: string;
25065
+ };
25066
+ needs_review: {
25067
+ type: string;
25068
+ };
25069
+ partner_resource_key: {
25070
+ type: string;
25071
+ };
25072
+ };
25073
+ required: string[];
25074
+ type: string;
25075
+ };
25076
+ type: string;
25077
+ };
25078
+ };
25079
+ required: string[];
25080
+ type: string;
25081
+ };
25082
+ };
25083
+ };
25084
+ description: string;
25085
+ };
25086
+ 400: {
25087
+ description: string;
25088
+ };
25089
+ 401: {
25090
+ description: string;
25091
+ };
25092
+ };
25093
+ security: {
25094
+ client_session_with_customer: never[];
25095
+ }[];
25096
+ summary: string;
25097
+ tags: never[];
25098
+ 'x-fern-sdk-group-name': string[];
25099
+ 'x-fern-sdk-method-name': string;
25100
+ 'x-fern-sdk-return-value': string;
25101
+ 'x-response-key': string;
25102
+ 'x-title': string;
25103
+ 'x-undocumented': string;
25104
+ };
25105
+ };
24820
25106
  '/seam/partner/v1/resources/list': {
24821
25107
  post: {
24822
25108
  description: string;
@@ -24893,6 +25179,8 @@ declare const _default: {
24893
25179
  };
24894
25180
  required: string[];
24895
25181
  type: string;
25182
+ 'x-route-path': string;
25183
+ 'x-undocumented': string;
24896
25184
  };
24897
25185
  type: string;
24898
25186
  };
@@ -30125,7 +30413,7 @@ declare const _default: {
30125
30413
  'x-undocumented': string;
30126
30414
  };
30127
30415
  };
30128
- '/unstable_partner/building_blocks/generate_link': {
30416
+ '/unstable_partner/building_blocks/generate_magic_link': {
30129
30417
  post: {
30130
30418
  description: string;
30131
30419
  operationId: string;
@@ -30133,19 +30421,61 @@ declare const _default: {
30133
30421
  content: {
30134
30422
  'application/json': {
30135
30423
  schema: {
30136
- properties: {
30137
- bridge_client_machine_identifier_key: {
30138
- type: string;
30139
- };
30140
- bridge_client_name: {
30141
- type: string;
30424
+ discriminator: {
30425
+ propertyName: string;
30426
+ };
30427
+ oneOf: ({
30428
+ properties: {
30429
+ building_block_type: {
30430
+ enum: string[];
30431
+ type: string;
30432
+ };
30433
+ customer_key: {
30434
+ type: string;
30435
+ };
30436
+ partner_resources?: never;
30142
30437
  };
30143
- bridge_client_time_zone: {
30144
- type: string;
30438
+ required: string[];
30439
+ type: string;
30440
+ } | {
30441
+ properties: {
30442
+ building_block_type: {
30443
+ enum: string[];
30444
+ type: string;
30445
+ };
30446
+ customer_key: {
30447
+ type: string;
30448
+ };
30449
+ partner_resources: {
30450
+ items: {
30451
+ properties: {
30452
+ custom_metadata: {
30453
+ additionalProperties: {
30454
+ type: string;
30455
+ };
30456
+ type: string;
30457
+ };
30458
+ description: {
30459
+ type: string;
30460
+ };
30461
+ name: {
30462
+ type: string;
30463
+ };
30464
+ partner_resource_key: {
30465
+ type: string;
30466
+ };
30467
+ };
30468
+ required: string[];
30469
+ type: string;
30470
+ 'x-route-path': string;
30471
+ 'x-undocumented': string;
30472
+ };
30473
+ type: string;
30474
+ };
30145
30475
  };
30146
- };
30147
- required: string[];
30148
- type: string;
30476
+ required: string[];
30477
+ type: string;
30478
+ })[];
30149
30479
  };
30150
30480
  };
30151
30481
  };
@@ -30156,138 +30486,8 @@ declare const _default: {
30156
30486
  'application/json': {
30157
30487
  schema: {
30158
30488
  properties: {
30159
- bridge_client_session: {
30160
- properties: {
30161
- bridge_client_machine_identifier_key: {
30162
- type: string;
30163
- };
30164
- bridge_client_name: {
30165
- type: string;
30166
- };
30167
- bridge_client_session_id: {
30168
- format: string;
30169
- type: string;
30170
- };
30171
- bridge_client_session_token: {
30172
- type: string;
30173
- };
30174
- bridge_client_time_zone: {
30175
- type: string;
30176
- };
30177
- created_at: {
30178
- format: string;
30179
- type: string;
30180
- };
30181
- errors: {
30182
- items: {
30183
- description: string;
30184
- discriminator: {
30185
- propertyName: string;
30186
- };
30187
- oneOf: ({
30188
- description: string;
30189
- properties: {
30190
- can_tailscale_proxy_reach_bridge: {
30191
- description: string;
30192
- nullable: boolean;
30193
- type: string;
30194
- };
30195
- can_tailscale_proxy_reach_tailscale_network: {
30196
- description: string;
30197
- nullable: boolean;
30198
- type: string;
30199
- };
30200
- created_at: {
30201
- format: string;
30202
- type: string;
30203
- };
30204
- error_code: {
30205
- description: string;
30206
- enum: string[];
30207
- type: string;
30208
- };
30209
- is_bridge_socks_server_healthy: {
30210
- description: string;
30211
- nullable: boolean;
30212
- type: string;
30213
- };
30214
- is_tailscale_proxy_reachable: {
30215
- description: string;
30216
- nullable: boolean;
30217
- type: string;
30218
- };
30219
- is_tailscale_proxy_socks_server_healthy: {
30220
- description: string;
30221
- nullable: boolean;
30222
- type: string;
30223
- };
30224
- message: {
30225
- type: string;
30226
- };
30227
- };
30228
- required: string[];
30229
- type: string;
30230
- } | {
30231
- description: string;
30232
- properties: {
30233
- created_at: {
30234
- format: string;
30235
- type: string;
30236
- };
30237
- error_code: {
30238
- description: string;
30239
- enum: string[];
30240
- type: string;
30241
- };
30242
- message: {
30243
- type: string;
30244
- };
30245
- can_tailscale_proxy_reach_bridge?: never;
30246
- can_tailscale_proxy_reach_tailscale_network?: never;
30247
- is_bridge_socks_server_healthy?: never;
30248
- is_tailscale_proxy_reachable?: never;
30249
- is_tailscale_proxy_socks_server_healthy?: never;
30250
- };
30251
- required: string[];
30252
- type: string;
30253
- })[];
30254
- };
30255
- type: string;
30256
- };
30257
- pairing_code: {
30258
- maxLength: number;
30259
- minLength: number;
30260
- type: string;
30261
- };
30262
- pairing_code_expires_at: {
30263
- format: string;
30264
- type: string;
30265
- };
30266
- tailscale_auth_key: {
30267
- nullable: boolean;
30268
- type: string;
30269
- };
30270
- tailscale_hostname: {
30271
- type: string;
30272
- };
30273
- telemetry_token: {
30274
- nullable: boolean;
30275
- type: string;
30276
- };
30277
- telemetry_token_expires_at: {
30278
- format: string;
30279
- nullable: boolean;
30280
- type: string;
30281
- };
30282
- telemetry_url: {
30283
- nullable: boolean;
30284
- type: string;
30285
- };
30286
- };
30287
- required: string[];
30288
- type: string;
30289
- 'x-route-path': string;
30290
- 'x-undocumented': string;
30489
+ magic_link: {
30490
+ $ref: string;
30291
30491
  };
30292
30492
  ok: {
30293
30493
  type: string;
@@ -30308,7 +30508,7 @@ declare const _default: {
30308
30508
  };
30309
30509
  };
30310
30510
  security: {
30311
- certified_client: never[];
30511
+ api_key: never[];
30312
30512
  }[];
30313
30513
  summary: string;
30314
30514
  tags: never[];
@@ -30375,9 +30575,13 @@ declare const _default: {
30375
30575
  };
30376
30576
  };
30377
30577
  type: string;
30578
+ 'x-route-path': string;
30579
+ 'x-undocumented': string;
30378
30580
  };
30379
30581
  type: string;
30380
30582
  properties?: never;
30583
+ 'x-route-path'?: never;
30584
+ 'x-undocumented'?: never;
30381
30585
  } | {
30382
30586
  properties: {
30383
30587
  custom_metadata: {
@@ -30424,6 +30628,8 @@ declare const _default: {
30424
30628
  };
30425
30629
  };
30426
30630
  type: string;
30631
+ 'x-route-path': string;
30632
+ 'x-undocumented': string;
30427
30633
  items?: never;
30428
30634
  })[];
30429
30635
  };