@seamapi/types 1.421.1 → 1.422.1

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 (55) hide show
  1. package/dist/connect.cjs +1638 -591
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +2655 -1028
  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/customer/access-grant-resources.d.ts +420 -0
  8. package/lib/seam/connect/models/customer/access-grant-resources.js +111 -0
  9. package/lib/seam/connect/models/customer/access-grant-resources.js.map +1 -0
  10. package/lib/seam/connect/models/customer/business-vertical.d.ts +3 -0
  11. package/lib/seam/connect/models/customer/business-vertical.js +11 -0
  12. package/lib/seam/connect/models/customer/business-vertical.js.map +1 -0
  13. package/lib/seam/connect/models/customer/customer-data.d.ts +597 -0
  14. package/lib/seam/connect/models/customer/customer-data.js +67 -0
  15. package/lib/seam/connect/models/customer/customer-data.js.map +1 -0
  16. package/lib/seam/connect/models/customer/customer-portal.d.ts +71 -0
  17. package/lib/seam/connect/models/customer/customer-portal.js +34 -0
  18. package/lib/seam/connect/models/customer/customer-portal.js.map +1 -0
  19. package/lib/seam/connect/models/customer/index.d.ts +3 -0
  20. package/lib/seam/connect/models/customer/index.js +4 -0
  21. package/lib/seam/connect/models/customer/index.js.map +1 -0
  22. package/lib/seam/connect/models/customer/location-resources.d.ts +229 -0
  23. package/lib/seam/connect/models/customer/location-resources.js +55 -0
  24. package/lib/seam/connect/models/customer/location-resources.js.map +1 -0
  25. package/lib/seam/connect/models/customer/user-identity-resources.d.ts +205 -0
  26. package/lib/seam/connect/models/customer/user-identity-resources.js +50 -0
  27. package/lib/seam/connect/models/customer/user-identity-resources.js.map +1 -0
  28. package/lib/seam/connect/models/index.d.ts +4 -0
  29. package/lib/seam/connect/models/index.js +4 -0
  30. package/lib/seam/connect/models/index.js.map +1 -1
  31. package/lib/seam/connect/models/partner/index.d.ts +0 -1
  32. package/lib/seam/connect/models/partner/index.js +0 -1
  33. package/lib/seam/connect/models/partner/index.js.map +1 -1
  34. package/lib/seam/connect/models/partner/magic-link.d.ts +2 -2
  35. package/lib/seam/connect/openapi.d.ts +1821 -658
  36. package/lib/seam/connect/openapi.js +1647 -600
  37. package/lib/seam/connect/openapi.js.map +1 -1
  38. package/lib/seam/connect/route-types.d.ts +580 -116
  39. package/package.json +2 -2
  40. package/src/lib/seam/connect/internal/schemas.ts +21 -3
  41. package/src/lib/seam/connect/models/customer/access-grant-resources.ts +129 -0
  42. package/src/lib/seam/connect/models/customer/business-vertical.ts +13 -0
  43. package/src/lib/seam/connect/models/customer/customer-data.ts +93 -0
  44. package/src/lib/seam/connect/models/customer/customer-portal.ts +39 -0
  45. package/src/lib/seam/connect/models/customer/index.ts +3 -0
  46. package/src/lib/seam/connect/models/customer/location-resources.ts +77 -0
  47. package/src/lib/seam/connect/models/customer/user-identity-resources.ts +68 -0
  48. package/src/lib/seam/connect/models/index.ts +4 -0
  49. package/src/lib/seam/connect/models/partner/index.ts +0 -1
  50. package/src/lib/seam/connect/openapi.ts +1802 -609
  51. package/src/lib/seam/connect/route-types.ts +670 -118
  52. package/lib/seam/connect/models/partner/resources.d.ts +0 -76
  53. package/lib/seam/connect/models/partner/resources.js +0 -87
  54. package/lib/seam/connect/models/partner/resources.js.map +0 -1
  55. package/src/lib/seam/connect/models/partner/resources.ts +0 -112
@@ -21428,14 +21428,14 @@ declare const magic_link: z.ZodObject<{
21428
21428
  url: string;
21429
21429
  customer_key: string;
21430
21430
  expires_at: string;
21431
- building_block_type: "connect_accounts" | "manage_devices" | "organize_spaces" | "console";
21431
+ building_block_type: "manage_devices" | "connect_accounts" | "organize_spaces" | "console";
21432
21432
  }, {
21433
21433
  workspace_id: string;
21434
21434
  created_at: string;
21435
21435
  url: string;
21436
21436
  customer_key: string;
21437
21437
  expires_at: string;
21438
- building_block_type: "connect_accounts" | "manage_devices" | "organize_spaces" | "console";
21438
+ building_block_type: "manage_devices" | "connect_accounts" | "organize_spaces" | "console";
21439
21439
  }>;
21440
21440
  type MagicLink = z.infer<typeof magic_link>;
21441
21441
 
@@ -31713,69 +31713,6 @@ declare const _default: {
31713
31713
  required: string[];
31714
31714
  type: string;
31715
31715
  };
31716
- partner_resource: {
31717
- description: string;
31718
- properties: {
31719
- custom_metadata: {
31720
- additionalProperties: {
31721
- type: string;
31722
- };
31723
- description: string;
31724
- type: string;
31725
- };
31726
- customer_key: {
31727
- description: string;
31728
- type: string;
31729
- };
31730
- description: {
31731
- description: string;
31732
- type: string;
31733
- };
31734
- email_address: {
31735
- description: string;
31736
- type: string;
31737
- };
31738
- ends_at: {
31739
- description: string;
31740
- type: string;
31741
- };
31742
- location_keys: {
31743
- description: string;
31744
- items: {
31745
- type: string;
31746
- };
31747
- type: string;
31748
- };
31749
- name: {
31750
- description: string;
31751
- type: string;
31752
- };
31753
- partner_resource_key: {
31754
- description: string;
31755
- type: string;
31756
- };
31757
- partner_resource_type: {
31758
- description: string;
31759
- type: string;
31760
- };
31761
- phone_number: {
31762
- description: string;
31763
- type: string;
31764
- };
31765
- starts_at: {
31766
- description: string;
31767
- type: string;
31768
- };
31769
- user_identity_key: {
31770
- description: string;
31771
- type: string;
31772
- };
31773
- };
31774
- required: string[];
31775
- type: string;
31776
- 'x-route-path': string;
31777
- 'x-undocumented': string;
31778
- };
31779
31716
  phone: {
31780
31717
  description: string;
31781
31718
  properties: {
@@ -48674,66 +48611,7 @@ declare const _default: {
48674
48611
  'x-title': string;
48675
48612
  };
48676
48613
  };
48677
- '/devices/delete': {
48678
- delete: {
48679
- description: string;
48680
- operationId: string;
48681
- parameters: {
48682
- in: string;
48683
- name: string;
48684
- required: boolean;
48685
- schema: {
48686
- description: string;
48687
- format: string;
48688
- type: string;
48689
- };
48690
- }[];
48691
- responses: {
48692
- 200: {
48693
- content: {
48694
- 'application/json': {
48695
- schema: {
48696
- properties: {
48697
- ok: {
48698
- type: string;
48699
- };
48700
- };
48701
- required: string[];
48702
- type: string;
48703
- };
48704
- };
48705
- };
48706
- description: string;
48707
- };
48708
- 400: {
48709
- description: string;
48710
- };
48711
- 401: {
48712
- description: string;
48713
- };
48714
- };
48715
- security: ({
48716
- api_key: never[];
48717
- pat_with_workspace?: never;
48718
- console_session_with_workspace?: never;
48719
- } | {
48720
- pat_with_workspace: never[];
48721
- api_key?: never;
48722
- console_session_with_workspace?: never;
48723
- } | {
48724
- console_session_with_workspace: never[];
48725
- api_key?: never;
48726
- pat_with_workspace?: never;
48727
- })[];
48728
- summary: string;
48729
- tags: string[];
48730
- 'x-deprecated': string;
48731
- 'x-fern-sdk-group-name': string[];
48732
- 'x-fern-sdk-method-name': string;
48733
- 'x-response-key': null;
48734
- 'x-title': string;
48735
- 'x-undocumented': string;
48736
- };
48614
+ '/customers/create_portal': {
48737
48615
  post: {
48738
48616
  description: string;
48739
48617
  operationId: string;
@@ -48741,376 +48619,1800 @@ declare const _default: {
48741
48619
  content: {
48742
48620
  'application/json': {
48743
48621
  schema: {
48744
- properties: {
48745
- device_id: {
48746
- description: string;
48747
- format: string;
48748
- type: string;
48749
- };
48750
- };
48751
- required: string[];
48752
- type: string;
48753
- };
48754
- };
48755
- };
48756
- };
48757
- responses: {
48758
- 200: {
48759
- content: {
48760
- 'application/json': {
48761
- schema: {
48762
- properties: {
48763
- ok: {
48764
- type: string;
48622
+ allOf: ({
48623
+ default: {
48624
+ features: {
48625
+ connect: {
48626
+ exclude: boolean;
48627
+ };
48628
+ manage_devices: {
48629
+ exclude: boolean;
48630
+ };
48631
+ organize: {
48632
+ exclude: boolean;
48633
+ };
48765
48634
  };
48766
48635
  };
48767
- required: string[];
48768
- type: string;
48769
- };
48770
- };
48771
- };
48772
- description: string;
48773
- };
48774
- 400: {
48775
- description: string;
48776
- };
48777
- 401: {
48778
- description: string;
48779
- };
48780
- };
48781
- security: ({
48782
- api_key: never[];
48783
- pat_with_workspace?: never;
48784
- console_session_with_workspace?: never;
48785
- } | {
48786
- pat_with_workspace: never[];
48787
- api_key?: never;
48788
- console_session_with_workspace?: never;
48789
- } | {
48790
- console_session_with_workspace: never[];
48791
- api_key?: never;
48792
- pat_with_workspace?: never;
48793
- })[];
48794
- summary: string;
48795
- tags: string[];
48796
- 'x-deprecated': string;
48797
- 'x-fern-sdk-group-name': string[];
48798
- 'x-fern-sdk-method-name': string;
48799
- 'x-response-key': null;
48800
- 'x-title': string;
48801
- 'x-undocumented': string;
48802
- };
48803
- };
48804
- '/devices/get': {
48805
- get: {
48806
- description: string;
48807
- operationId: string;
48808
- parameters: ({
48809
- in: string;
48810
- name: string;
48811
- schema: {
48812
- description: string;
48813
- format: string;
48814
- type: string;
48815
- };
48816
- } | {
48817
- in: string;
48818
- name: string;
48819
- schema: {
48820
- description: string;
48821
- type: string;
48822
- format?: never;
48823
- };
48824
- })[];
48825
- responses: {
48826
- 200: {
48827
- content: {
48828
- 'application/json': {
48829
- schema: {
48636
+ description: string;
48830
48637
  properties: {
48831
- device: {
48832
- $ref: string;
48833
- };
48834
- ok: {
48638
+ features: {
48639
+ default: {};
48640
+ properties: {
48641
+ connect: {
48642
+ default: {};
48643
+ description: string;
48644
+ properties: {
48645
+ exclude: {
48646
+ default: boolean;
48647
+ description: string;
48648
+ type: string;
48649
+ };
48650
+ };
48651
+ type: string;
48652
+ };
48653
+ manage_devices: {
48654
+ default: {};
48655
+ description: string;
48656
+ properties: {
48657
+ exclude: {
48658
+ default: boolean;
48659
+ description: string;
48660
+ type: string;
48661
+ };
48662
+ };
48663
+ type: string;
48664
+ };
48665
+ organize: {
48666
+ default: {};
48667
+ description: string;
48668
+ properties: {
48669
+ exclude: {
48670
+ default: boolean;
48671
+ description: string;
48672
+ type: string;
48673
+ };
48674
+ };
48675
+ type: string;
48676
+ };
48677
+ };
48835
48678
  type: string;
48836
48679
  };
48680
+ customer_data?: never;
48837
48681
  };
48838
- required: string[];
48839
48682
  type: string;
48840
- };
48841
- };
48842
- };
48843
- description: string;
48844
- };
48845
- 400: {
48846
- description: string;
48847
- };
48848
- 401: {
48849
- description: string;
48850
- };
48851
- };
48852
- security: ({
48853
- client_session: never[];
48854
- client_session_with_customer?: never;
48855
- pat_with_workspace?: never;
48856
- console_session_with_workspace?: never;
48857
- api_key?: never;
48858
- } | {
48859
- client_session_with_customer: never[];
48860
- client_session?: never;
48861
- pat_with_workspace?: never;
48862
- console_session_with_workspace?: never;
48863
- api_key?: never;
48864
- } | {
48865
- pat_with_workspace: never[];
48866
- client_session?: never;
48867
- client_session_with_customer?: never;
48868
- console_session_with_workspace?: never;
48869
- api_key?: never;
48870
- } | {
48871
- console_session_with_workspace: never[];
48872
- client_session?: never;
48873
- client_session_with_customer?: never;
48874
- pat_with_workspace?: never;
48875
- api_key?: never;
48876
- } | {
48877
- api_key: never[];
48878
- client_session?: never;
48879
- client_session_with_customer?: never;
48880
- pat_with_workspace?: never;
48881
- console_session_with_workspace?: never;
48882
- })[];
48883
- summary: string;
48884
- tags: string[];
48885
- 'x-fern-sdk-group-name': string[];
48886
- 'x-fern-sdk-method-name': string;
48887
- 'x-fern-sdk-return-value': string;
48888
- 'x-response-key': string;
48889
- 'x-title': string;
48890
- };
48891
- post: {
48892
- description: string;
48893
- operationId: string;
48894
- requestBody: {
48895
- content: {
48896
- 'application/json': {
48897
- schema: {
48898
- properties: {
48899
- device_id: {
48900
- description: string;
48901
- format: string;
48902
- type: string;
48903
- };
48904
- name: {
48905
- description: string;
48906
- type: string;
48907
- };
48908
- };
48909
- type: string;
48910
- };
48911
- };
48912
- };
48913
- };
48914
- responses: {
48915
- 200: {
48916
- content: {
48917
- 'application/json': {
48918
- schema: {
48683
+ } | {
48919
48684
  properties: {
48920
- device: {
48921
- $ref: string;
48922
- };
48923
- ok: {
48924
- type: string;
48925
- };
48926
- };
48927
- required: string[];
48928
- type: string;
48929
- };
48930
- };
48931
- };
48932
- description: string;
48933
- };
48934
- 400: {
48935
- description: string;
48936
- };
48937
- 401: {
48938
- description: string;
48939
- };
48940
- };
48941
- security: ({
48942
- client_session: never[];
48943
- client_session_with_customer?: never;
48944
- pat_with_workspace?: never;
48945
- console_session_with_workspace?: never;
48946
- api_key?: never;
48947
- } | {
48948
- client_session_with_customer: never[];
48949
- client_session?: never;
48950
- pat_with_workspace?: never;
48951
- console_session_with_workspace?: never;
48952
- api_key?: never;
48953
- } | {
48954
- pat_with_workspace: never[];
48955
- client_session?: never;
48956
- client_session_with_customer?: never;
48957
- console_session_with_workspace?: never;
48958
- api_key?: never;
48959
- } | {
48960
- console_session_with_workspace: never[];
48961
- client_session?: never;
48962
- client_session_with_customer?: never;
48963
- pat_with_workspace?: never;
48964
- api_key?: never;
48965
- } | {
48966
- api_key: never[];
48967
- client_session?: never;
48968
- client_session_with_customer?: never;
48969
- pat_with_workspace?: never;
48970
- console_session_with_workspace?: never;
48971
- })[];
48972
- summary: string;
48973
- tags: string[];
48974
- 'x-fern-sdk-group-name': string[];
48975
- 'x-fern-sdk-method-name': string;
48976
- 'x-fern-sdk-return-value': string;
48977
- 'x-response-key': string;
48978
- 'x-title': string;
48979
- };
48980
- };
48981
- '/devices/list': {
48982
- get: {
48983
- description: string;
48984
- operationId: string;
48985
- parameters: ({
48986
- in: string;
48987
- name: string;
48988
- schema: {
48989
- items: {
48990
- format: string;
48991
- type: string;
48992
- oneOf?: never;
48993
- enum?: never;
48994
- };
48995
- type: string;
48996
- description?: never;
48997
- format?: never;
48998
- oneOf?: never;
48999
- enum?: never;
49000
- default?: never;
49001
- additionalProperties?: never;
49002
- nullable?: never;
49003
- 'x-undocumented'?: never;
49004
- deprecated?: never;
49005
- 'x-deprecated'?: never;
49006
- };
49007
- } | {
49008
- in: string;
49009
- name: string;
49010
- schema: {
49011
- description: string;
49012
- format: string;
49013
- type: string;
49014
- items?: never;
49015
- oneOf?: never;
49016
- enum?: never;
49017
- default?: never;
49018
- additionalProperties?: never;
49019
- nullable?: never;
49020
- 'x-undocumented'?: never;
49021
- deprecated?: never;
49022
- 'x-deprecated'?: never;
49023
- };
49024
- } | {
49025
- in: string;
49026
- name: string;
49027
- schema: {
49028
- description: string;
49029
- items: {
49030
- format: string;
49031
- type: string;
49032
- oneOf?: never;
49033
- enum?: never;
49034
- };
49035
- type: string;
49036
- format?: never;
49037
- oneOf?: never;
49038
- enum?: never;
49039
- default?: never;
49040
- additionalProperties?: never;
49041
- nullable?: never;
49042
- 'x-undocumented'?: never;
49043
- deprecated?: never;
49044
- 'x-deprecated'?: never;
49045
- };
49046
- } | {
49047
- in: string;
49048
- name: string;
49049
- schema: {
49050
- description: string;
49051
- oneOf: {
49052
- description: string;
49053
- enum: string[];
49054
- type: string;
49055
- }[];
49056
- items?: never;
49057
- type?: never;
49058
- format?: never;
49059
- enum?: never;
49060
- default?: never;
49061
- additionalProperties?: never;
49062
- nullable?: never;
49063
- 'x-undocumented'?: never;
49064
- deprecated?: never;
49065
- 'x-deprecated'?: never;
49066
- };
49067
- } | {
49068
- in: string;
49069
- name: string;
49070
- schema: {
49071
- description: string;
49072
- items: {
49073
- oneOf: {
49074
- description: string;
49075
- enum: string[];
49076
- type: string;
49077
- }[];
49078
- format?: never;
49079
- type?: never;
49080
- enum?: never;
49081
- };
49082
- type: string;
49083
- format?: never;
49084
- oneOf?: never;
49085
- enum?: never;
49086
- default?: never;
49087
- additionalProperties?: never;
49088
- nullable?: never;
49089
- 'x-undocumented'?: never;
49090
- deprecated?: never;
49091
- 'x-deprecated'?: never;
49092
- };
49093
- } | {
49094
- in: string;
49095
- name: string;
49096
- schema: {
49097
- description: string;
49098
- enum: string[];
49099
- type: string;
49100
- items?: never;
49101
- format?: never;
49102
- oneOf?: never;
49103
- default?: never;
49104
- additionalProperties?: never;
49105
- nullable?: never;
49106
- 'x-undocumented'?: never;
49107
- deprecated?: never;
49108
- 'x-deprecated'?: never;
49109
- };
49110
- } | {
49111
- in: string;
49112
- name: string;
49113
- schema: {
48685
+ customer_data: {
48686
+ properties: {
48687
+ access_grants: {
48688
+ description: string;
48689
+ items: {
48690
+ properties: {
48691
+ access_grant_key: {
48692
+ description: string;
48693
+ type: string;
48694
+ };
48695
+ building_keys: {
48696
+ description: string;
48697
+ items: {
48698
+ type: string;
48699
+ };
48700
+ type: string;
48701
+ };
48702
+ common_area_keys: {
48703
+ description: string;
48704
+ items: {
48705
+ type: string;
48706
+ };
48707
+ type: string;
48708
+ };
48709
+ ends_at: {
48710
+ description: string;
48711
+ type: string;
48712
+ };
48713
+ facility_keys: {
48714
+ description: string;
48715
+ items: {
48716
+ type: string;
48717
+ };
48718
+ type: string;
48719
+ };
48720
+ guest_key: {
48721
+ description: string;
48722
+ type: string;
48723
+ };
48724
+ listing_keys: {
48725
+ description: string;
48726
+ items: {
48727
+ type: string;
48728
+ };
48729
+ type: string;
48730
+ };
48731
+ name: {
48732
+ description: string;
48733
+ type: string;
48734
+ };
48735
+ property_keys: {
48736
+ description: string;
48737
+ items: {
48738
+ type: string;
48739
+ };
48740
+ type: string;
48741
+ };
48742
+ resident_key: {
48743
+ description: string;
48744
+ type: string;
48745
+ };
48746
+ room_keys: {
48747
+ description: string;
48748
+ items: {
48749
+ type: string;
48750
+ };
48751
+ type: string;
48752
+ };
48753
+ space_keys: {
48754
+ description: string;
48755
+ items: {
48756
+ type: string;
48757
+ };
48758
+ type: string;
48759
+ };
48760
+ starts_at: {
48761
+ description: string;
48762
+ type: string;
48763
+ };
48764
+ tenant_key: {
48765
+ description: string;
48766
+ type: string;
48767
+ };
48768
+ unit_keys: {
48769
+ description: string;
48770
+ items: {
48771
+ type: string;
48772
+ };
48773
+ type: string;
48774
+ };
48775
+ user_identity_key: {
48776
+ description: string;
48777
+ type: string;
48778
+ };
48779
+ user_key: {
48780
+ description: string;
48781
+ type: string;
48782
+ };
48783
+ };
48784
+ required: string[];
48785
+ type: string;
48786
+ };
48787
+ type: string;
48788
+ };
48789
+ bookings: {
48790
+ description: string;
48791
+ items: {
48792
+ properties: {
48793
+ booking_key: {
48794
+ description: string;
48795
+ type: string;
48796
+ };
48797
+ building_keys: {
48798
+ description: string;
48799
+ items: {
48800
+ type: string;
48801
+ };
48802
+ type: string;
48803
+ };
48804
+ common_area_keys: {
48805
+ description: string;
48806
+ items: {
48807
+ type: string;
48808
+ };
48809
+ type: string;
48810
+ };
48811
+ ends_at: {
48812
+ description: string;
48813
+ type: string;
48814
+ };
48815
+ facility_keys: {
48816
+ description: string;
48817
+ items: {
48818
+ type: string;
48819
+ };
48820
+ type: string;
48821
+ };
48822
+ guest_key: {
48823
+ description: string;
48824
+ type: string;
48825
+ };
48826
+ listing_keys: {
48827
+ description: string;
48828
+ items: {
48829
+ type: string;
48830
+ };
48831
+ type: string;
48832
+ };
48833
+ name: {
48834
+ description: string;
48835
+ type: string;
48836
+ };
48837
+ property_keys: {
48838
+ description: string;
48839
+ items: {
48840
+ type: string;
48841
+ };
48842
+ type: string;
48843
+ };
48844
+ resident_key: {
48845
+ description: string;
48846
+ type: string;
48847
+ };
48848
+ room_keys: {
48849
+ description: string;
48850
+ items: {
48851
+ type: string;
48852
+ };
48853
+ type: string;
48854
+ };
48855
+ space_keys: {
48856
+ description: string;
48857
+ items: {
48858
+ type: string;
48859
+ };
48860
+ type: string;
48861
+ };
48862
+ starts_at: {
48863
+ description: string;
48864
+ type: string;
48865
+ };
48866
+ tenant_key: {
48867
+ description: string;
48868
+ type: string;
48869
+ };
48870
+ unit_keys: {
48871
+ description: string;
48872
+ items: {
48873
+ type: string;
48874
+ };
48875
+ type: string;
48876
+ };
48877
+ user_identity_key: {
48878
+ description: string;
48879
+ type: string;
48880
+ };
48881
+ user_key: {
48882
+ description: string;
48883
+ type: string;
48884
+ };
48885
+ };
48886
+ required: string[];
48887
+ type: string;
48888
+ };
48889
+ type: string;
48890
+ };
48891
+ buildings: {
48892
+ description: string;
48893
+ items: {
48894
+ properties: {
48895
+ building_key: {
48896
+ description: string;
48897
+ type: string;
48898
+ };
48899
+ name: {
48900
+ description: string;
48901
+ type: string;
48902
+ };
48903
+ };
48904
+ required: string[];
48905
+ type: string;
48906
+ };
48907
+ type: string;
48908
+ };
48909
+ common_areas: {
48910
+ description: string;
48911
+ items: {
48912
+ properties: {
48913
+ common_area_key: {
48914
+ description: string;
48915
+ type: string;
48916
+ };
48917
+ name: {
48918
+ description: string;
48919
+ type: string;
48920
+ };
48921
+ };
48922
+ required: string[];
48923
+ type: string;
48924
+ };
48925
+ type: string;
48926
+ };
48927
+ customer_key: {
48928
+ description: string;
48929
+ type: string;
48930
+ };
48931
+ facilities: {
48932
+ description: string;
48933
+ items: {
48934
+ properties: {
48935
+ facility_key: {
48936
+ description: string;
48937
+ type: string;
48938
+ };
48939
+ name: {
48940
+ description: string;
48941
+ type: string;
48942
+ };
48943
+ };
48944
+ required: string[];
48945
+ type: string;
48946
+ };
48947
+ type: string;
48948
+ };
48949
+ guests: {
48950
+ description: string;
48951
+ items: {
48952
+ properties: {
48953
+ email_address: {
48954
+ description: string;
48955
+ type: string;
48956
+ };
48957
+ guest_key: {
48958
+ description: string;
48959
+ type: string;
48960
+ };
48961
+ name: {
48962
+ description: string;
48963
+ type: string;
48964
+ };
48965
+ phone_number: {
48966
+ description: string;
48967
+ type: string;
48968
+ };
48969
+ };
48970
+ required: string[];
48971
+ type: string;
48972
+ };
48973
+ type: string;
48974
+ };
48975
+ listings: {
48976
+ description: string;
48977
+ items: {
48978
+ properties: {
48979
+ listing_key: {
48980
+ description: string;
48981
+ type: string;
48982
+ };
48983
+ name: {
48984
+ description: string;
48985
+ type: string;
48986
+ };
48987
+ };
48988
+ required: string[];
48989
+ type: string;
48990
+ };
48991
+ type: string;
48992
+ };
48993
+ properties: {
48994
+ description: string;
48995
+ items: {
48996
+ properties: {
48997
+ name: {
48998
+ description: string;
48999
+ type: string;
49000
+ };
49001
+ property_key: {
49002
+ description: string;
49003
+ type: string;
49004
+ };
49005
+ };
49006
+ required: string[];
49007
+ type: string;
49008
+ };
49009
+ type: string;
49010
+ };
49011
+ reservations: {
49012
+ description: string;
49013
+ items: {
49014
+ properties: {
49015
+ building_keys: {
49016
+ description: string;
49017
+ items: {
49018
+ type: string;
49019
+ };
49020
+ type: string;
49021
+ };
49022
+ common_area_keys: {
49023
+ description: string;
49024
+ items: {
49025
+ type: string;
49026
+ };
49027
+ type: string;
49028
+ };
49029
+ ends_at: {
49030
+ description: string;
49031
+ type: string;
49032
+ };
49033
+ facility_keys: {
49034
+ description: string;
49035
+ items: {
49036
+ type: string;
49037
+ };
49038
+ type: string;
49039
+ };
49040
+ guest_key: {
49041
+ description: string;
49042
+ type: string;
49043
+ };
49044
+ listing_keys: {
49045
+ description: string;
49046
+ items: {
49047
+ type: string;
49048
+ };
49049
+ type: string;
49050
+ };
49051
+ name: {
49052
+ description: string;
49053
+ type: string;
49054
+ };
49055
+ property_keys: {
49056
+ description: string;
49057
+ items: {
49058
+ type: string;
49059
+ };
49060
+ type: string;
49061
+ };
49062
+ reservation_key: {
49063
+ description: string;
49064
+ type: string;
49065
+ };
49066
+ resident_key: {
49067
+ description: string;
49068
+ type: string;
49069
+ };
49070
+ room_keys: {
49071
+ description: string;
49072
+ items: {
49073
+ type: string;
49074
+ };
49075
+ type: string;
49076
+ };
49077
+ space_keys: {
49078
+ description: string;
49079
+ items: {
49080
+ type: string;
49081
+ };
49082
+ type: string;
49083
+ };
49084
+ starts_at: {
49085
+ description: string;
49086
+ type: string;
49087
+ };
49088
+ tenant_key: {
49089
+ description: string;
49090
+ type: string;
49091
+ };
49092
+ unit_keys: {
49093
+ description: string;
49094
+ items: {
49095
+ type: string;
49096
+ };
49097
+ type: string;
49098
+ };
49099
+ user_identity_key: {
49100
+ description: string;
49101
+ type: string;
49102
+ };
49103
+ user_key: {
49104
+ description: string;
49105
+ type: string;
49106
+ };
49107
+ };
49108
+ required: string[];
49109
+ type: string;
49110
+ };
49111
+ type: string;
49112
+ };
49113
+ residents: {
49114
+ description: string;
49115
+ items: {
49116
+ properties: {
49117
+ email_address: {
49118
+ description: string;
49119
+ type: string;
49120
+ };
49121
+ name: {
49122
+ description: string;
49123
+ type: string;
49124
+ };
49125
+ phone_number: {
49126
+ description: string;
49127
+ type: string;
49128
+ };
49129
+ resident_key: {
49130
+ description: string;
49131
+ type: string;
49132
+ };
49133
+ };
49134
+ required: string[];
49135
+ type: string;
49136
+ };
49137
+ type: string;
49138
+ };
49139
+ rooms: {
49140
+ description: string;
49141
+ items: {
49142
+ properties: {
49143
+ name: {
49144
+ description: string;
49145
+ type: string;
49146
+ };
49147
+ room_key: {
49148
+ description: string;
49149
+ type: string;
49150
+ };
49151
+ };
49152
+ required: string[];
49153
+ type: string;
49154
+ };
49155
+ type: string;
49156
+ };
49157
+ spaces: {
49158
+ description: string;
49159
+ items: {
49160
+ properties: {
49161
+ name: {
49162
+ description: string;
49163
+ type: string;
49164
+ };
49165
+ space_key: {
49166
+ description: string;
49167
+ type: string;
49168
+ };
49169
+ };
49170
+ required: string[];
49171
+ type: string;
49172
+ };
49173
+ type: string;
49174
+ };
49175
+ tenants: {
49176
+ description: string;
49177
+ items: {
49178
+ properties: {
49179
+ email_address: {
49180
+ description: string;
49181
+ type: string;
49182
+ };
49183
+ name: {
49184
+ description: string;
49185
+ type: string;
49186
+ };
49187
+ phone_number: {
49188
+ description: string;
49189
+ type: string;
49190
+ };
49191
+ tenant_key: {
49192
+ description: string;
49193
+ type: string;
49194
+ };
49195
+ };
49196
+ required: string[];
49197
+ type: string;
49198
+ };
49199
+ type: string;
49200
+ };
49201
+ units: {
49202
+ description: string;
49203
+ items: {
49204
+ properties: {
49205
+ name: {
49206
+ description: string;
49207
+ type: string;
49208
+ };
49209
+ unit_key: {
49210
+ description: string;
49211
+ type: string;
49212
+ };
49213
+ };
49214
+ required: string[];
49215
+ type: string;
49216
+ };
49217
+ type: string;
49218
+ };
49219
+ user_identities: {
49220
+ description: string;
49221
+ items: {
49222
+ properties: {
49223
+ email_address: {
49224
+ description: string;
49225
+ type: string;
49226
+ };
49227
+ name: {
49228
+ description: string;
49229
+ type: string;
49230
+ };
49231
+ phone_number: {
49232
+ description: string;
49233
+ type: string;
49234
+ };
49235
+ user_identity_key: {
49236
+ description: string;
49237
+ type: string;
49238
+ };
49239
+ };
49240
+ required: string[];
49241
+ type: string;
49242
+ };
49243
+ type: string;
49244
+ };
49245
+ users: {
49246
+ description: string;
49247
+ items: {
49248
+ properties: {
49249
+ email_address: {
49250
+ description: string;
49251
+ type: string;
49252
+ };
49253
+ name: {
49254
+ description: string;
49255
+ type: string;
49256
+ };
49257
+ phone_number: {
49258
+ description: string;
49259
+ type: string;
49260
+ };
49261
+ user_key: {
49262
+ description: string;
49263
+ type: string;
49264
+ };
49265
+ };
49266
+ required: string[];
49267
+ type: string;
49268
+ };
49269
+ type: string;
49270
+ };
49271
+ };
49272
+ required: string[];
49273
+ type: string;
49274
+ };
49275
+ features?: never;
49276
+ };
49277
+ type: string;
49278
+ default?: never;
49279
+ description?: never;
49280
+ })[];
49281
+ };
49282
+ };
49283
+ };
49284
+ };
49285
+ responses: {
49286
+ 200: {
49287
+ content: {
49288
+ 'application/json': {
49289
+ schema: {
49290
+ properties: {
49291
+ magic_link: {
49292
+ $ref: string;
49293
+ };
49294
+ ok: {
49295
+ type: string;
49296
+ };
49297
+ };
49298
+ required: string[];
49299
+ type: string;
49300
+ };
49301
+ };
49302
+ };
49303
+ description: string;
49304
+ };
49305
+ 400: {
49306
+ description: string;
49307
+ };
49308
+ 401: {
49309
+ description: string;
49310
+ };
49311
+ };
49312
+ security: ({
49313
+ pat_with_workspace: never[];
49314
+ console_session_with_workspace?: never;
49315
+ api_key?: never;
49316
+ } | {
49317
+ console_session_with_workspace: never[];
49318
+ pat_with_workspace?: never;
49319
+ api_key?: never;
49320
+ } | {
49321
+ api_key: never[];
49322
+ pat_with_workspace?: never;
49323
+ console_session_with_workspace?: never;
49324
+ })[];
49325
+ summary: string;
49326
+ tags: never[];
49327
+ 'x-fern-sdk-group-name': string[];
49328
+ 'x-fern-sdk-method-name': string;
49329
+ 'x-fern-sdk-return-value': string;
49330
+ 'x-response-key': string;
49331
+ 'x-title': string;
49332
+ };
49333
+ };
49334
+ '/customers/push_data': {
49335
+ post: {
49336
+ description: string;
49337
+ operationId: string;
49338
+ requestBody: {
49339
+ content: {
49340
+ 'application/json': {
49341
+ schema: {
49342
+ properties: {
49343
+ access_grants: {
49344
+ description: string;
49345
+ items: {
49346
+ properties: {
49347
+ access_grant_key: {
49348
+ description: string;
49349
+ type: string;
49350
+ };
49351
+ building_keys: {
49352
+ description: string;
49353
+ items: {
49354
+ type: string;
49355
+ };
49356
+ type: string;
49357
+ };
49358
+ common_area_keys: {
49359
+ description: string;
49360
+ items: {
49361
+ type: string;
49362
+ };
49363
+ type: string;
49364
+ };
49365
+ ends_at: {
49366
+ description: string;
49367
+ type: string;
49368
+ };
49369
+ facility_keys: {
49370
+ description: string;
49371
+ items: {
49372
+ type: string;
49373
+ };
49374
+ type: string;
49375
+ };
49376
+ guest_key: {
49377
+ description: string;
49378
+ type: string;
49379
+ };
49380
+ listing_keys: {
49381
+ description: string;
49382
+ items: {
49383
+ type: string;
49384
+ };
49385
+ type: string;
49386
+ };
49387
+ name: {
49388
+ description: string;
49389
+ type: string;
49390
+ };
49391
+ property_keys: {
49392
+ description: string;
49393
+ items: {
49394
+ type: string;
49395
+ };
49396
+ type: string;
49397
+ };
49398
+ resident_key: {
49399
+ description: string;
49400
+ type: string;
49401
+ };
49402
+ room_keys: {
49403
+ description: string;
49404
+ items: {
49405
+ type: string;
49406
+ };
49407
+ type: string;
49408
+ };
49409
+ space_keys: {
49410
+ description: string;
49411
+ items: {
49412
+ type: string;
49413
+ };
49414
+ type: string;
49415
+ };
49416
+ starts_at: {
49417
+ description: string;
49418
+ type: string;
49419
+ };
49420
+ tenant_key: {
49421
+ description: string;
49422
+ type: string;
49423
+ };
49424
+ unit_keys: {
49425
+ description: string;
49426
+ items: {
49427
+ type: string;
49428
+ };
49429
+ type: string;
49430
+ };
49431
+ user_identity_key: {
49432
+ description: string;
49433
+ type: string;
49434
+ };
49435
+ user_key: {
49436
+ description: string;
49437
+ type: string;
49438
+ };
49439
+ };
49440
+ required: string[];
49441
+ type: string;
49442
+ };
49443
+ type: string;
49444
+ };
49445
+ bookings: {
49446
+ description: string;
49447
+ items: {
49448
+ properties: {
49449
+ booking_key: {
49450
+ description: string;
49451
+ type: string;
49452
+ };
49453
+ building_keys: {
49454
+ description: string;
49455
+ items: {
49456
+ type: string;
49457
+ };
49458
+ type: string;
49459
+ };
49460
+ common_area_keys: {
49461
+ description: string;
49462
+ items: {
49463
+ type: string;
49464
+ };
49465
+ type: string;
49466
+ };
49467
+ ends_at: {
49468
+ description: string;
49469
+ type: string;
49470
+ };
49471
+ facility_keys: {
49472
+ description: string;
49473
+ items: {
49474
+ type: string;
49475
+ };
49476
+ type: string;
49477
+ };
49478
+ guest_key: {
49479
+ description: string;
49480
+ type: string;
49481
+ };
49482
+ listing_keys: {
49483
+ description: string;
49484
+ items: {
49485
+ type: string;
49486
+ };
49487
+ type: string;
49488
+ };
49489
+ name: {
49490
+ description: string;
49491
+ type: string;
49492
+ };
49493
+ property_keys: {
49494
+ description: string;
49495
+ items: {
49496
+ type: string;
49497
+ };
49498
+ type: string;
49499
+ };
49500
+ resident_key: {
49501
+ description: string;
49502
+ type: string;
49503
+ };
49504
+ room_keys: {
49505
+ description: string;
49506
+ items: {
49507
+ type: string;
49508
+ };
49509
+ type: string;
49510
+ };
49511
+ space_keys: {
49512
+ description: string;
49513
+ items: {
49514
+ type: string;
49515
+ };
49516
+ type: string;
49517
+ };
49518
+ starts_at: {
49519
+ description: string;
49520
+ type: string;
49521
+ };
49522
+ tenant_key: {
49523
+ description: string;
49524
+ type: string;
49525
+ };
49526
+ unit_keys: {
49527
+ description: string;
49528
+ items: {
49529
+ type: string;
49530
+ };
49531
+ type: string;
49532
+ };
49533
+ user_identity_key: {
49534
+ description: string;
49535
+ type: string;
49536
+ };
49537
+ user_key: {
49538
+ description: string;
49539
+ type: string;
49540
+ };
49541
+ };
49542
+ required: string[];
49543
+ type: string;
49544
+ };
49545
+ type: string;
49546
+ };
49547
+ buildings: {
49548
+ description: string;
49549
+ items: {
49550
+ properties: {
49551
+ building_key: {
49552
+ description: string;
49553
+ type: string;
49554
+ };
49555
+ name: {
49556
+ description: string;
49557
+ type: string;
49558
+ };
49559
+ };
49560
+ required: string[];
49561
+ type: string;
49562
+ };
49563
+ type: string;
49564
+ };
49565
+ common_areas: {
49566
+ description: string;
49567
+ items: {
49568
+ properties: {
49569
+ common_area_key: {
49570
+ description: string;
49571
+ type: string;
49572
+ };
49573
+ name: {
49574
+ description: string;
49575
+ type: string;
49576
+ };
49577
+ };
49578
+ required: string[];
49579
+ type: string;
49580
+ };
49581
+ type: string;
49582
+ };
49583
+ customer_key: {
49584
+ description: string;
49585
+ type: string;
49586
+ };
49587
+ facilities: {
49588
+ description: string;
49589
+ items: {
49590
+ properties: {
49591
+ facility_key: {
49592
+ description: string;
49593
+ type: string;
49594
+ };
49595
+ name: {
49596
+ description: string;
49597
+ type: string;
49598
+ };
49599
+ };
49600
+ required: string[];
49601
+ type: string;
49602
+ };
49603
+ type: string;
49604
+ };
49605
+ guests: {
49606
+ description: string;
49607
+ items: {
49608
+ properties: {
49609
+ email_address: {
49610
+ description: string;
49611
+ type: string;
49612
+ };
49613
+ guest_key: {
49614
+ description: string;
49615
+ type: string;
49616
+ };
49617
+ name: {
49618
+ description: string;
49619
+ type: string;
49620
+ };
49621
+ phone_number: {
49622
+ description: string;
49623
+ type: string;
49624
+ };
49625
+ };
49626
+ required: string[];
49627
+ type: string;
49628
+ };
49629
+ type: string;
49630
+ };
49631
+ listings: {
49632
+ description: string;
49633
+ items: {
49634
+ properties: {
49635
+ listing_key: {
49636
+ description: string;
49637
+ type: string;
49638
+ };
49639
+ name: {
49640
+ description: string;
49641
+ type: string;
49642
+ };
49643
+ };
49644
+ required: string[];
49645
+ type: string;
49646
+ };
49647
+ type: string;
49648
+ };
49649
+ properties: {
49650
+ description: string;
49651
+ items: {
49652
+ properties: {
49653
+ name: {
49654
+ description: string;
49655
+ type: string;
49656
+ };
49657
+ property_key: {
49658
+ description: string;
49659
+ type: string;
49660
+ };
49661
+ };
49662
+ required: string[];
49663
+ type: string;
49664
+ };
49665
+ type: string;
49666
+ };
49667
+ reservations: {
49668
+ description: string;
49669
+ items: {
49670
+ properties: {
49671
+ building_keys: {
49672
+ description: string;
49673
+ items: {
49674
+ type: string;
49675
+ };
49676
+ type: string;
49677
+ };
49678
+ common_area_keys: {
49679
+ description: string;
49680
+ items: {
49681
+ type: string;
49682
+ };
49683
+ type: string;
49684
+ };
49685
+ ends_at: {
49686
+ description: string;
49687
+ type: string;
49688
+ };
49689
+ facility_keys: {
49690
+ description: string;
49691
+ items: {
49692
+ type: string;
49693
+ };
49694
+ type: string;
49695
+ };
49696
+ guest_key: {
49697
+ description: string;
49698
+ type: string;
49699
+ };
49700
+ listing_keys: {
49701
+ description: string;
49702
+ items: {
49703
+ type: string;
49704
+ };
49705
+ type: string;
49706
+ };
49707
+ name: {
49708
+ description: string;
49709
+ type: string;
49710
+ };
49711
+ property_keys: {
49712
+ description: string;
49713
+ items: {
49714
+ type: string;
49715
+ };
49716
+ type: string;
49717
+ };
49718
+ reservation_key: {
49719
+ description: string;
49720
+ type: string;
49721
+ };
49722
+ resident_key: {
49723
+ description: string;
49724
+ type: string;
49725
+ };
49726
+ room_keys: {
49727
+ description: string;
49728
+ items: {
49729
+ type: string;
49730
+ };
49731
+ type: string;
49732
+ };
49733
+ space_keys: {
49734
+ description: string;
49735
+ items: {
49736
+ type: string;
49737
+ };
49738
+ type: string;
49739
+ };
49740
+ starts_at: {
49741
+ description: string;
49742
+ type: string;
49743
+ };
49744
+ tenant_key: {
49745
+ description: string;
49746
+ type: string;
49747
+ };
49748
+ unit_keys: {
49749
+ description: string;
49750
+ items: {
49751
+ type: string;
49752
+ };
49753
+ type: string;
49754
+ };
49755
+ user_identity_key: {
49756
+ description: string;
49757
+ type: string;
49758
+ };
49759
+ user_key: {
49760
+ description: string;
49761
+ type: string;
49762
+ };
49763
+ };
49764
+ required: string[];
49765
+ type: string;
49766
+ };
49767
+ type: string;
49768
+ };
49769
+ residents: {
49770
+ description: string;
49771
+ items: {
49772
+ properties: {
49773
+ email_address: {
49774
+ description: string;
49775
+ type: string;
49776
+ };
49777
+ name: {
49778
+ description: string;
49779
+ type: string;
49780
+ };
49781
+ phone_number: {
49782
+ description: string;
49783
+ type: string;
49784
+ };
49785
+ resident_key: {
49786
+ description: string;
49787
+ type: string;
49788
+ };
49789
+ };
49790
+ required: string[];
49791
+ type: string;
49792
+ };
49793
+ type: string;
49794
+ };
49795
+ rooms: {
49796
+ description: string;
49797
+ items: {
49798
+ properties: {
49799
+ name: {
49800
+ description: string;
49801
+ type: string;
49802
+ };
49803
+ room_key: {
49804
+ description: string;
49805
+ type: string;
49806
+ };
49807
+ };
49808
+ required: string[];
49809
+ type: string;
49810
+ };
49811
+ type: string;
49812
+ };
49813
+ spaces: {
49814
+ description: string;
49815
+ items: {
49816
+ properties: {
49817
+ name: {
49818
+ description: string;
49819
+ type: string;
49820
+ };
49821
+ space_key: {
49822
+ description: string;
49823
+ type: string;
49824
+ };
49825
+ };
49826
+ required: string[];
49827
+ type: string;
49828
+ };
49829
+ type: string;
49830
+ };
49831
+ tenants: {
49832
+ description: string;
49833
+ items: {
49834
+ properties: {
49835
+ email_address: {
49836
+ description: string;
49837
+ type: string;
49838
+ };
49839
+ name: {
49840
+ description: string;
49841
+ type: string;
49842
+ };
49843
+ phone_number: {
49844
+ description: string;
49845
+ type: string;
49846
+ };
49847
+ tenant_key: {
49848
+ description: string;
49849
+ type: string;
49850
+ };
49851
+ };
49852
+ required: string[];
49853
+ type: string;
49854
+ };
49855
+ type: string;
49856
+ };
49857
+ units: {
49858
+ description: string;
49859
+ items: {
49860
+ properties: {
49861
+ name: {
49862
+ description: string;
49863
+ type: string;
49864
+ };
49865
+ unit_key: {
49866
+ description: string;
49867
+ type: string;
49868
+ };
49869
+ };
49870
+ required: string[];
49871
+ type: string;
49872
+ };
49873
+ type: string;
49874
+ };
49875
+ user_identities: {
49876
+ description: string;
49877
+ items: {
49878
+ properties: {
49879
+ email_address: {
49880
+ description: string;
49881
+ type: string;
49882
+ };
49883
+ name: {
49884
+ description: string;
49885
+ type: string;
49886
+ };
49887
+ phone_number: {
49888
+ description: string;
49889
+ type: string;
49890
+ };
49891
+ user_identity_key: {
49892
+ description: string;
49893
+ type: string;
49894
+ };
49895
+ };
49896
+ required: string[];
49897
+ type: string;
49898
+ };
49899
+ type: string;
49900
+ };
49901
+ users: {
49902
+ description: string;
49903
+ items: {
49904
+ properties: {
49905
+ email_address: {
49906
+ description: string;
49907
+ type: string;
49908
+ };
49909
+ name: {
49910
+ description: string;
49911
+ type: string;
49912
+ };
49913
+ phone_number: {
49914
+ description: string;
49915
+ type: string;
49916
+ };
49917
+ user_key: {
49918
+ description: string;
49919
+ type: string;
49920
+ };
49921
+ };
49922
+ required: string[];
49923
+ type: string;
49924
+ };
49925
+ type: string;
49926
+ };
49927
+ };
49928
+ required: string[];
49929
+ type: string;
49930
+ };
49931
+ };
49932
+ };
49933
+ };
49934
+ responses: {
49935
+ 200: {
49936
+ content: {
49937
+ 'application/json': {
49938
+ schema: {
49939
+ properties: {
49940
+ ok: {
49941
+ type: string;
49942
+ };
49943
+ };
49944
+ required: string[];
49945
+ type: string;
49946
+ };
49947
+ };
49948
+ };
49949
+ description: string;
49950
+ };
49951
+ 400: {
49952
+ description: string;
49953
+ };
49954
+ 401: {
49955
+ description: string;
49956
+ };
49957
+ };
49958
+ security: ({
49959
+ pat_with_workspace: never[];
49960
+ console_session_with_workspace?: never;
49961
+ api_key?: never;
49962
+ } | {
49963
+ console_session_with_workspace: never[];
49964
+ pat_with_workspace?: never;
49965
+ api_key?: never;
49966
+ } | {
49967
+ api_key: never[];
49968
+ pat_with_workspace?: never;
49969
+ console_session_with_workspace?: never;
49970
+ })[];
49971
+ summary: string;
49972
+ tags: never[];
49973
+ 'x-fern-sdk-group-name': string[];
49974
+ 'x-fern-sdk-method-name': string;
49975
+ 'x-response-key': null;
49976
+ 'x-title': string;
49977
+ };
49978
+ };
49979
+ '/devices/delete': {
49980
+ delete: {
49981
+ description: string;
49982
+ operationId: string;
49983
+ parameters: {
49984
+ in: string;
49985
+ name: string;
49986
+ required: boolean;
49987
+ schema: {
49988
+ description: string;
49989
+ format: string;
49990
+ type: string;
49991
+ };
49992
+ }[];
49993
+ responses: {
49994
+ 200: {
49995
+ content: {
49996
+ 'application/json': {
49997
+ schema: {
49998
+ properties: {
49999
+ ok: {
50000
+ type: string;
50001
+ };
50002
+ };
50003
+ required: string[];
50004
+ type: string;
50005
+ };
50006
+ };
50007
+ };
50008
+ description: string;
50009
+ };
50010
+ 400: {
50011
+ description: string;
50012
+ };
50013
+ 401: {
50014
+ description: string;
50015
+ };
50016
+ };
50017
+ security: ({
50018
+ api_key: never[];
50019
+ pat_with_workspace?: never;
50020
+ console_session_with_workspace?: never;
50021
+ } | {
50022
+ pat_with_workspace: never[];
50023
+ api_key?: never;
50024
+ console_session_with_workspace?: never;
50025
+ } | {
50026
+ console_session_with_workspace: never[];
50027
+ api_key?: never;
50028
+ pat_with_workspace?: never;
50029
+ })[];
50030
+ summary: string;
50031
+ tags: string[];
50032
+ 'x-deprecated': string;
50033
+ 'x-fern-sdk-group-name': string[];
50034
+ 'x-fern-sdk-method-name': string;
50035
+ 'x-response-key': null;
50036
+ 'x-title': string;
50037
+ 'x-undocumented': string;
50038
+ };
50039
+ post: {
50040
+ description: string;
50041
+ operationId: string;
50042
+ requestBody: {
50043
+ content: {
50044
+ 'application/json': {
50045
+ schema: {
50046
+ properties: {
50047
+ device_id: {
50048
+ description: string;
50049
+ format: string;
50050
+ type: string;
50051
+ };
50052
+ };
50053
+ required: string[];
50054
+ type: string;
50055
+ };
50056
+ };
50057
+ };
50058
+ };
50059
+ responses: {
50060
+ 200: {
50061
+ content: {
50062
+ 'application/json': {
50063
+ schema: {
50064
+ properties: {
50065
+ ok: {
50066
+ type: string;
50067
+ };
50068
+ };
50069
+ required: string[];
50070
+ type: string;
50071
+ };
50072
+ };
50073
+ };
50074
+ description: string;
50075
+ };
50076
+ 400: {
50077
+ description: string;
50078
+ };
50079
+ 401: {
50080
+ description: string;
50081
+ };
50082
+ };
50083
+ security: ({
50084
+ api_key: never[];
50085
+ pat_with_workspace?: never;
50086
+ console_session_with_workspace?: never;
50087
+ } | {
50088
+ pat_with_workspace: never[];
50089
+ api_key?: never;
50090
+ console_session_with_workspace?: never;
50091
+ } | {
50092
+ console_session_with_workspace: never[];
50093
+ api_key?: never;
50094
+ pat_with_workspace?: never;
50095
+ })[];
50096
+ summary: string;
50097
+ tags: string[];
50098
+ 'x-deprecated': string;
50099
+ 'x-fern-sdk-group-name': string[];
50100
+ 'x-fern-sdk-method-name': string;
50101
+ 'x-response-key': null;
50102
+ 'x-title': string;
50103
+ 'x-undocumented': string;
50104
+ };
50105
+ };
50106
+ '/devices/get': {
50107
+ get: {
50108
+ description: string;
50109
+ operationId: string;
50110
+ parameters: ({
50111
+ in: string;
50112
+ name: string;
50113
+ schema: {
50114
+ description: string;
50115
+ format: string;
50116
+ type: string;
50117
+ };
50118
+ } | {
50119
+ in: string;
50120
+ name: string;
50121
+ schema: {
50122
+ description: string;
50123
+ type: string;
50124
+ format?: never;
50125
+ };
50126
+ })[];
50127
+ responses: {
50128
+ 200: {
50129
+ content: {
50130
+ 'application/json': {
50131
+ schema: {
50132
+ properties: {
50133
+ device: {
50134
+ $ref: string;
50135
+ };
50136
+ ok: {
50137
+ type: string;
50138
+ };
50139
+ };
50140
+ required: string[];
50141
+ type: string;
50142
+ };
50143
+ };
50144
+ };
50145
+ description: string;
50146
+ };
50147
+ 400: {
50148
+ description: string;
50149
+ };
50150
+ 401: {
50151
+ description: string;
50152
+ };
50153
+ };
50154
+ security: ({
50155
+ client_session: never[];
50156
+ client_session_with_customer?: never;
50157
+ pat_with_workspace?: never;
50158
+ console_session_with_workspace?: never;
50159
+ api_key?: never;
50160
+ } | {
50161
+ client_session_with_customer: never[];
50162
+ client_session?: never;
50163
+ pat_with_workspace?: never;
50164
+ console_session_with_workspace?: never;
50165
+ api_key?: never;
50166
+ } | {
50167
+ pat_with_workspace: never[];
50168
+ client_session?: never;
50169
+ client_session_with_customer?: never;
50170
+ console_session_with_workspace?: never;
50171
+ api_key?: never;
50172
+ } | {
50173
+ console_session_with_workspace: never[];
50174
+ client_session?: never;
50175
+ client_session_with_customer?: never;
50176
+ pat_with_workspace?: never;
50177
+ api_key?: never;
50178
+ } | {
50179
+ api_key: never[];
50180
+ client_session?: never;
50181
+ client_session_with_customer?: never;
50182
+ pat_with_workspace?: never;
50183
+ console_session_with_workspace?: never;
50184
+ })[];
50185
+ summary: string;
50186
+ tags: string[];
50187
+ 'x-fern-sdk-group-name': string[];
50188
+ 'x-fern-sdk-method-name': string;
50189
+ 'x-fern-sdk-return-value': string;
50190
+ 'x-response-key': string;
50191
+ 'x-title': string;
50192
+ };
50193
+ post: {
50194
+ description: string;
50195
+ operationId: string;
50196
+ requestBody: {
50197
+ content: {
50198
+ 'application/json': {
50199
+ schema: {
50200
+ properties: {
50201
+ device_id: {
50202
+ description: string;
50203
+ format: string;
50204
+ type: string;
50205
+ };
50206
+ name: {
50207
+ description: string;
50208
+ type: string;
50209
+ };
50210
+ };
50211
+ type: string;
50212
+ };
50213
+ };
50214
+ };
50215
+ };
50216
+ responses: {
50217
+ 200: {
50218
+ content: {
50219
+ 'application/json': {
50220
+ schema: {
50221
+ properties: {
50222
+ device: {
50223
+ $ref: string;
50224
+ };
50225
+ ok: {
50226
+ type: string;
50227
+ };
50228
+ };
50229
+ required: string[];
50230
+ type: string;
50231
+ };
50232
+ };
50233
+ };
50234
+ description: string;
50235
+ };
50236
+ 400: {
50237
+ description: string;
50238
+ };
50239
+ 401: {
50240
+ description: string;
50241
+ };
50242
+ };
50243
+ security: ({
50244
+ client_session: never[];
50245
+ client_session_with_customer?: never;
50246
+ pat_with_workspace?: never;
50247
+ console_session_with_workspace?: never;
50248
+ api_key?: never;
50249
+ } | {
50250
+ client_session_with_customer: never[];
50251
+ client_session?: never;
50252
+ pat_with_workspace?: never;
50253
+ console_session_with_workspace?: never;
50254
+ api_key?: never;
50255
+ } | {
50256
+ pat_with_workspace: never[];
50257
+ client_session?: never;
50258
+ client_session_with_customer?: never;
50259
+ console_session_with_workspace?: never;
50260
+ api_key?: never;
50261
+ } | {
50262
+ console_session_with_workspace: never[];
50263
+ client_session?: never;
50264
+ client_session_with_customer?: never;
50265
+ pat_with_workspace?: never;
50266
+ api_key?: never;
50267
+ } | {
50268
+ api_key: never[];
50269
+ client_session?: never;
50270
+ client_session_with_customer?: never;
50271
+ pat_with_workspace?: never;
50272
+ console_session_with_workspace?: never;
50273
+ })[];
50274
+ summary: string;
50275
+ tags: string[];
50276
+ 'x-fern-sdk-group-name': string[];
50277
+ 'x-fern-sdk-method-name': string;
50278
+ 'x-fern-sdk-return-value': string;
50279
+ 'x-response-key': string;
50280
+ 'x-title': string;
50281
+ };
50282
+ };
50283
+ '/devices/list': {
50284
+ get: {
50285
+ description: string;
50286
+ operationId: string;
50287
+ parameters: ({
50288
+ in: string;
50289
+ name: string;
50290
+ schema: {
50291
+ items: {
50292
+ format: string;
50293
+ type: string;
50294
+ oneOf?: never;
50295
+ enum?: never;
50296
+ };
50297
+ type: string;
50298
+ description?: never;
50299
+ format?: never;
50300
+ oneOf?: never;
50301
+ enum?: never;
50302
+ default?: never;
50303
+ additionalProperties?: never;
50304
+ nullable?: never;
50305
+ 'x-undocumented'?: never;
50306
+ deprecated?: never;
50307
+ 'x-deprecated'?: never;
50308
+ };
50309
+ } | {
50310
+ in: string;
50311
+ name: string;
50312
+ schema: {
50313
+ description: string;
50314
+ format: string;
50315
+ type: string;
50316
+ items?: never;
50317
+ oneOf?: never;
50318
+ enum?: never;
50319
+ default?: never;
50320
+ additionalProperties?: never;
50321
+ nullable?: never;
50322
+ 'x-undocumented'?: never;
50323
+ deprecated?: never;
50324
+ 'x-deprecated'?: never;
50325
+ };
50326
+ } | {
50327
+ in: string;
50328
+ name: string;
50329
+ schema: {
50330
+ description: string;
50331
+ items: {
50332
+ format: string;
50333
+ type: string;
50334
+ oneOf?: never;
50335
+ enum?: never;
50336
+ };
50337
+ type: string;
50338
+ format?: never;
50339
+ oneOf?: never;
50340
+ enum?: never;
50341
+ default?: never;
50342
+ additionalProperties?: never;
50343
+ nullable?: never;
50344
+ 'x-undocumented'?: never;
50345
+ deprecated?: never;
50346
+ 'x-deprecated'?: never;
50347
+ };
50348
+ } | {
50349
+ in: string;
50350
+ name: string;
50351
+ schema: {
50352
+ description: string;
50353
+ oneOf: {
50354
+ description: string;
50355
+ enum: string[];
50356
+ type: string;
50357
+ }[];
50358
+ items?: never;
50359
+ type?: never;
50360
+ format?: never;
50361
+ enum?: never;
50362
+ default?: never;
50363
+ additionalProperties?: never;
50364
+ nullable?: never;
50365
+ 'x-undocumented'?: never;
50366
+ deprecated?: never;
50367
+ 'x-deprecated'?: never;
50368
+ };
50369
+ } | {
50370
+ in: string;
50371
+ name: string;
50372
+ schema: {
50373
+ description: string;
50374
+ items: {
50375
+ oneOf: {
50376
+ description: string;
50377
+ enum: string[];
50378
+ type: string;
50379
+ }[];
50380
+ format?: never;
50381
+ type?: never;
50382
+ enum?: never;
50383
+ };
50384
+ type: string;
50385
+ format?: never;
50386
+ oneOf?: never;
50387
+ enum?: never;
50388
+ default?: never;
50389
+ additionalProperties?: never;
50390
+ nullable?: never;
50391
+ 'x-undocumented'?: never;
50392
+ deprecated?: never;
50393
+ 'x-deprecated'?: never;
50394
+ };
50395
+ } | {
50396
+ in: string;
50397
+ name: string;
50398
+ schema: {
50399
+ description: string;
50400
+ enum: string[];
50401
+ type: string;
50402
+ items?: never;
50403
+ format?: never;
50404
+ oneOf?: never;
50405
+ default?: never;
50406
+ additionalProperties?: never;
50407
+ nullable?: never;
50408
+ 'x-undocumented'?: never;
50409
+ deprecated?: never;
50410
+ 'x-deprecated'?: never;
50411
+ };
50412
+ } | {
50413
+ in: string;
50414
+ name: string;
50415
+ schema: {
49114
50416
  default: number;
49115
50417
  description: string;
49116
50418
  format: string;
@@ -55161,9 +56463,250 @@ declare const _default: {
55161
56463
  description: string;
55162
56464
  };
55163
56465
  };
55164
- security: {
55165
- bridge_client_session: never[];
55166
- }[];
56466
+ security: {
56467
+ bridge_client_session: never[];
56468
+ }[];
56469
+ summary: string;
56470
+ tags: never[];
56471
+ 'x-fern-sdk-group-name': string[];
56472
+ 'x-fern-sdk-method-name': string;
56473
+ 'x-response-key': null;
56474
+ 'x-title': string;
56475
+ 'x-undocumented': string;
56476
+ };
56477
+ };
56478
+ '/seam/bridge/v1/bridge_connected_systems/list': {
56479
+ get: {
56480
+ description: string;
56481
+ operationId: string;
56482
+ responses: {
56483
+ 200: {
56484
+ content: {
56485
+ 'application/json': {
56486
+ schema: {
56487
+ properties: {
56488
+ bridge_connected_systems: {
56489
+ items: {
56490
+ $ref: string;
56491
+ };
56492
+ type: string;
56493
+ };
56494
+ ok: {
56495
+ type: string;
56496
+ };
56497
+ };
56498
+ required: string[];
56499
+ type: string;
56500
+ };
56501
+ };
56502
+ };
56503
+ description: string;
56504
+ };
56505
+ 400: {
56506
+ description: string;
56507
+ };
56508
+ 401: {
56509
+ description: string;
56510
+ };
56511
+ };
56512
+ security: {
56513
+ bridge_client_session: never[];
56514
+ }[];
56515
+ summary: string;
56516
+ tags: never[];
56517
+ 'x-fern-sdk-group-name': string[];
56518
+ 'x-fern-sdk-method-name': string;
56519
+ 'x-fern-sdk-return-value': string;
56520
+ 'x-response-key': string;
56521
+ 'x-title': string;
56522
+ 'x-undocumented': string;
56523
+ };
56524
+ post: {
56525
+ description: string;
56526
+ operationId: string;
56527
+ responses: {
56528
+ 200: {
56529
+ content: {
56530
+ 'application/json': {
56531
+ schema: {
56532
+ properties: {
56533
+ bridge_connected_systems: {
56534
+ items: {
56535
+ $ref: string;
56536
+ };
56537
+ type: string;
56538
+ };
56539
+ ok: {
56540
+ type: string;
56541
+ };
56542
+ };
56543
+ required: string[];
56544
+ type: string;
56545
+ };
56546
+ };
56547
+ };
56548
+ description: string;
56549
+ };
56550
+ 400: {
56551
+ description: string;
56552
+ };
56553
+ 401: {
56554
+ description: string;
56555
+ };
56556
+ };
56557
+ security: {
56558
+ bridge_client_session: never[];
56559
+ }[];
56560
+ summary: string;
56561
+ tags: never[];
56562
+ 'x-fern-sdk-group-name': string[];
56563
+ 'x-fern-sdk-method-name': string;
56564
+ 'x-fern-sdk-return-value': string;
56565
+ 'x-response-key': string;
56566
+ 'x-title': string;
56567
+ 'x-undocumented': string;
56568
+ };
56569
+ };
56570
+ '/seam/customer/v1/portals/get': {
56571
+ get: {
56572
+ description: string;
56573
+ operationId: string;
56574
+ parameters: {
56575
+ in: string;
56576
+ name: string;
56577
+ required: boolean;
56578
+ schema: {
56579
+ description: string;
56580
+ type: string;
56581
+ };
56582
+ }[];
56583
+ responses: {
56584
+ 200: {
56585
+ content: {
56586
+ 'application/json': {
56587
+ schema: {
56588
+ properties: {
56589
+ customer_portal: {
56590
+ properties: {
56591
+ business_vertical: {
56592
+ description: string;
56593
+ enum: string[];
56594
+ type: string;
56595
+ };
56596
+ features: {
56597
+ properties: {
56598
+ connect: {
56599
+ properties: {
56600
+ exclude: {
56601
+ type: string;
56602
+ };
56603
+ };
56604
+ type: string;
56605
+ };
56606
+ manage_devices: {
56607
+ properties: {
56608
+ exclude: {
56609
+ type: string;
56610
+ };
56611
+ };
56612
+ type: string;
56613
+ };
56614
+ organize: {
56615
+ properties: {
56616
+ exclude: {
56617
+ type: string;
56618
+ };
56619
+ };
56620
+ type: string;
56621
+ };
56622
+ };
56623
+ type: string;
56624
+ };
56625
+ };
56626
+ type: string;
56627
+ };
56628
+ ok: {
56629
+ type: string;
56630
+ };
56631
+ };
56632
+ required: string[];
56633
+ type: string;
56634
+ };
56635
+ };
56636
+ };
56637
+ description: string;
56638
+ };
56639
+ 400: {
56640
+ description: string;
56641
+ };
56642
+ 401: {
56643
+ description: string;
56644
+ };
56645
+ };
56646
+ security: {
56647
+ client_session_with_customer: never[];
56648
+ }[];
56649
+ summary: string;
56650
+ tags: never[];
56651
+ 'x-fern-sdk-group-name': string[];
56652
+ 'x-fern-sdk-method-name': string;
56653
+ 'x-fern-sdk-return-value': string;
56654
+ 'x-response-key': string;
56655
+ 'x-title': string;
56656
+ 'x-undocumented': string;
56657
+ };
56658
+ };
56659
+ '/seam/customer/v1/settings/update': {
56660
+ patch: {
56661
+ description: string;
56662
+ operationId: string;
56663
+ requestBody: {
56664
+ content: {
56665
+ 'application/json': {
56666
+ schema: {
56667
+ properties: {
56668
+ business_vertical: {
56669
+ description: string;
56670
+ enum: string[];
56671
+ type: string;
56672
+ };
56673
+ };
56674
+ type: string;
56675
+ };
56676
+ };
56677
+ };
56678
+ };
56679
+ responses: {
56680
+ 200: {
56681
+ content: {
56682
+ 'application/json': {
56683
+ schema: {
56684
+ properties: {
56685
+ ok: {
56686
+ type: string;
56687
+ };
56688
+ };
56689
+ required: string[];
56690
+ type: string;
56691
+ };
56692
+ };
56693
+ };
56694
+ description: string;
56695
+ };
56696
+ 400: {
56697
+ description: string;
56698
+ };
56699
+ 401: {
56700
+ description: string;
56701
+ };
56702
+ };
56703
+ security: ({
56704
+ console_session_with_workspace: never[];
56705
+ api_key?: never;
56706
+ } | {
56707
+ api_key: never[];
56708
+ console_session_with_workspace?: never;
56709
+ })[];
55167
56710
  summary: string;
55168
56711
  tags: never[];
55169
56712
  'x-fern-sdk-group-name': string[];
@@ -55172,68 +56715,31 @@ declare const _default: {
55172
56715
  'x-title': string;
55173
56716
  'x-undocumented': string;
55174
56717
  };
55175
- };
55176
- '/seam/bridge/v1/bridge_connected_systems/list': {
55177
- get: {
56718
+ post: {
55178
56719
  description: string;
55179
56720
  operationId: string;
55180
- responses: {
55181
- 200: {
55182
- content: {
55183
- 'application/json': {
55184
- schema: {
55185
- properties: {
55186
- bridge_connected_systems: {
55187
- items: {
55188
- $ref: string;
55189
- };
55190
- type: string;
55191
- };
55192
- ok: {
55193
- type: string;
55194
- };
56721
+ requestBody: {
56722
+ content: {
56723
+ 'application/json': {
56724
+ schema: {
56725
+ properties: {
56726
+ business_vertical: {
56727
+ description: string;
56728
+ enum: string[];
56729
+ type: string;
55195
56730
  };
55196
- required: string[];
55197
- type: string;
55198
56731
  };
56732
+ type: string;
55199
56733
  };
55200
56734
  };
55201
- description: string;
55202
- };
55203
- 400: {
55204
- description: string;
55205
- };
55206
- 401: {
55207
- description: string;
55208
56735
  };
55209
56736
  };
55210
- security: {
55211
- bridge_client_session: never[];
55212
- }[];
55213
- summary: string;
55214
- tags: never[];
55215
- 'x-fern-sdk-group-name': string[];
55216
- 'x-fern-sdk-method-name': string;
55217
- 'x-fern-sdk-return-value': string;
55218
- 'x-response-key': string;
55219
- 'x-title': string;
55220
- 'x-undocumented': string;
55221
- };
55222
- post: {
55223
- description: string;
55224
- operationId: string;
55225
56737
  responses: {
55226
56738
  200: {
55227
56739
  content: {
55228
56740
  'application/json': {
55229
56741
  schema: {
55230
56742
  properties: {
55231
- bridge_connected_systems: {
55232
- items: {
55233
- $ref: string;
55234
- };
55235
- type: string;
55236
- };
55237
56743
  ok: {
55238
56744
  type: string;
55239
56745
  };
@@ -55252,15 +56758,18 @@ declare const _default: {
55252
56758
  description: string;
55253
56759
  };
55254
56760
  };
55255
- security: {
55256
- bridge_client_session: never[];
55257
- }[];
56761
+ security: ({
56762
+ console_session_with_workspace: never[];
56763
+ api_key?: never;
56764
+ } | {
56765
+ api_key: never[];
56766
+ console_session_with_workspace?: never;
56767
+ })[];
55258
56768
  summary: string;
55259
56769
  tags: never[];
55260
56770
  'x-fern-sdk-group-name': string[];
55261
56771
  'x-fern-sdk-method-name': string;
55262
- 'x-fern-sdk-return-value': string;
55263
- 'x-response-key': string;
56772
+ 'x-response-key': null;
55264
56773
  'x-title': string;
55265
56774
  'x-undocumented': string;
55266
56775
  };
@@ -55715,121 +57224,6 @@ declare const _default: {
55715
57224
  'x-undocumented': string;
55716
57225
  };
55717
57226
  };
55718
- '/seam/partner/v1/resources/list': {
55719
- get: {
55720
- description: string;
55721
- operationId: string;
55722
- parameters: {
55723
- in: string;
55724
- name: string;
55725
- schema: {
55726
- description: string;
55727
- type: string;
55728
- };
55729
- }[];
55730
- responses: {
55731
- 200: {
55732
- content: {
55733
- 'application/json': {
55734
- schema: {
55735
- properties: {
55736
- ok: {
55737
- type: string;
55738
- };
55739
- partner_resources: {
55740
- items: {
55741
- $ref: string;
55742
- };
55743
- type: string;
55744
- };
55745
- };
55746
- required: string[];
55747
- type: string;
55748
- };
55749
- };
55750
- };
55751
- description: string;
55752
- };
55753
- 400: {
55754
- description: string;
55755
- };
55756
- 401: {
55757
- description: string;
55758
- };
55759
- };
55760
- security: {
55761
- client_session_with_customer: never[];
55762
- }[];
55763
- summary: string;
55764
- tags: never[];
55765
- 'x-fern-sdk-group-name': string[];
55766
- 'x-fern-sdk-method-name': string;
55767
- 'x-fern-sdk-return-value': string;
55768
- 'x-response-key': string;
55769
- 'x-title': string;
55770
- 'x-undocumented': string;
55771
- };
55772
- post: {
55773
- description: string;
55774
- operationId: string;
55775
- requestBody: {
55776
- content: {
55777
- 'application/json': {
55778
- schema: {
55779
- properties: {
55780
- resource_type_alias: {
55781
- description: string;
55782
- type: string;
55783
- };
55784
- };
55785
- type: string;
55786
- };
55787
- };
55788
- };
55789
- };
55790
- responses: {
55791
- 200: {
55792
- content: {
55793
- 'application/json': {
55794
- schema: {
55795
- properties: {
55796
- ok: {
55797
- type: string;
55798
- };
55799
- partner_resources: {
55800
- items: {
55801
- $ref: string;
55802
- };
55803
- type: string;
55804
- };
55805
- };
55806
- required: string[];
55807
- type: string;
55808
- };
55809
- };
55810
- };
55811
- description: string;
55812
- };
55813
- 400: {
55814
- description: string;
55815
- };
55816
- 401: {
55817
- description: string;
55818
- };
55819
- };
55820
- security: {
55821
- client_session_with_customer: never[];
55822
- }[];
55823
- summary: string;
55824
- tags: never[];
55825
- 'x-fern-sdk-group-name': string[];
55826
- 'x-fern-sdk-method-name': string;
55827
- 'x-fern-sdk-return-value': string;
55828
- 'x-response-key': string;
55829
- 'x-title': string;
55830
- 'x-undocumented': string;
55831
- };
55832
- };
55833
57227
  '/spaces/add_acs_entrances': {
55834
57228
  post: {
55835
57229
  description: string;
@@ -63161,19 +64555,7 @@ declare const _default: {
63161
64555
  schema: {
63162
64556
  description: string;
63163
64557
  items: {
63164
- description: string;
63165
64558
  properties: {
63166
- custom_metadata: {
63167
- additionalProperties: {
63168
- type: string;
63169
- };
63170
- description: string;
63171
- type: string;
63172
- };
63173
- description: {
63174
- description: string;
63175
- type: string;
63176
- };
63177
64559
  name: {
63178
64560
  description: string;
63179
64561
  type: string;
@@ -63185,8 +64567,6 @@ declare const _default: {
63185
64567
  };
63186
64568
  required: string[];
63187
64569
  type: string;
63188
- 'x-route-path': string;
63189
- 'x-undocumented': string;
63190
64570
  };
63191
64571
  type: string;
63192
64572
  enum?: never;
@@ -63261,19 +64641,7 @@ declare const _default: {
63261
64641
  spaces: {
63262
64642
  description: string;
63263
64643
  items: {
63264
- description: string;
63265
64644
  properties: {
63266
- custom_metadata: {
63267
- additionalProperties: {
63268
- type: string;
63269
- };
63270
- description: string;
63271
- type: string;
63272
- };
63273
- description: {
63274
- description: string;
63275
- type: string;
63276
- };
63277
64645
  name: {
63278
64646
  description: string;
63279
64647
  type: string;
@@ -63285,8 +64653,6 @@ declare const _default: {
63285
64653
  };
63286
64654
  required: string[];
63287
64655
  type: string;
63288
- 'x-route-path': string;
63289
- 'x-undocumented': string;
63290
64656
  };
63291
64657
  type: string;
63292
64658
  };
@@ -63417,109 +64783,7 @@ declare const _default: {
63417
64783
  'x-undocumented': string;
63418
64784
  };
63419
64785
  };
63420
- '/unstable_partner/building_blocks/organize_spaces': {
63421
- post: {
63422
- description: string;
63423
- operationId: string;
63424
- requestBody: {
63425
- content: {
63426
- 'application/json': {
63427
- schema: {
63428
- properties: {
63429
- customer_key: {
63430
- description: string;
63431
- type: string;
63432
- };
63433
- spaces: {
63434
- description: string;
63435
- items: {
63436
- description: string;
63437
- properties: {
63438
- custom_metadata: {
63439
- additionalProperties: {
63440
- type: string;
63441
- };
63442
- description: string;
63443
- type: string;
63444
- };
63445
- description: {
63446
- description: string;
63447
- type: string;
63448
- };
63449
- name: {
63450
- description: string;
63451
- type: string;
63452
- };
63453
- space_key: {
63454
- description: string;
63455
- type: string;
63456
- };
63457
- };
63458
- required: string[];
63459
- type: string;
63460
- 'x-route-path': string;
63461
- 'x-undocumented': string;
63462
- };
63463
- type: string;
63464
- };
63465
- };
63466
- required: string[];
63467
- type: string;
63468
- };
63469
- };
63470
- };
63471
- };
63472
- responses: {
63473
- 200: {
63474
- content: {
63475
- 'application/json': {
63476
- schema: {
63477
- properties: {
63478
- magic_link: {
63479
- $ref: string;
63480
- };
63481
- ok: {
63482
- type: string;
63483
- };
63484
- };
63485
- required: string[];
63486
- type: string;
63487
- };
63488
- };
63489
- };
63490
- description: string;
63491
- };
63492
- 400: {
63493
- description: string;
63494
- };
63495
- 401: {
63496
- description: string;
63497
- };
63498
- };
63499
- security: ({
63500
- pat_with_workspace: never[];
63501
- console_session_with_workspace?: never;
63502
- api_key?: never;
63503
- } | {
63504
- console_session_with_workspace: never[];
63505
- pat_with_workspace?: never;
63506
- api_key?: never;
63507
- } | {
63508
- api_key: never[];
63509
- pat_with_workspace?: never;
63510
- console_session_with_workspace?: never;
63511
- })[];
63512
- summary: string;
63513
- tags: never[];
63514
- 'x-fern-sdk-group-name': string[];
63515
- 'x-fern-sdk-method-name': string;
63516
- 'x-fern-sdk-return-value': string;
63517
- 'x-response-key': string;
63518
- 'x-title': string;
63519
- 'x-undocumented': string;
63520
- };
63521
- };
63522
- '/unstable_partner/resources/push': {
64786
+ '/unstable_partner/building_blocks/organize_spaces': {
63523
64787
  post: {
63524
64788
  description: string;
63525
64789
  operationId: string;
@@ -63527,137 +64791,32 @@ declare const _default: {
63527
64791
  content: {
63528
64792
  'application/json': {
63529
64793
  schema: {
63530
- oneOf: ({
63531
- items: {
64794
+ properties: {
64795
+ customer_key: {
63532
64796
  description: string;
63533
- properties: {
63534
- custom_metadata: {
63535
- additionalProperties: {
64797
+ type: string;
64798
+ };
64799
+ spaces: {
64800
+ description: string;
64801
+ items: {
64802
+ properties: {
64803
+ name: {
64804
+ description: string;
63536
64805
  type: string;
63537
64806
  };
63538
- description: string;
63539
- type: string;
63540
- };
63541
- customer_key: {
63542
- description: string;
63543
- type: string;
63544
- };
63545
- description: {
63546
- description: string;
63547
- type: string;
63548
- };
63549
- email_address: {
63550
- description: string;
63551
- type: string;
63552
- };
63553
- ends_at: {
63554
- description: string;
63555
- type: string;
63556
- };
63557
- location_keys: {
63558
- description: string;
63559
- items: {
64807
+ space_key: {
64808
+ description: string;
63560
64809
  type: string;
63561
64810
  };
63562
- type: string;
63563
- };
63564
- name: {
63565
- description: string;
63566
- type: string;
63567
- };
63568
- partner_resource_key: {
63569
- description: string;
63570
- type: string;
63571
- };
63572
- partner_resource_type: {
63573
- description: string;
63574
- type: string;
63575
- };
63576
- phone_number: {
63577
- description: string;
63578
- type: string;
63579
- };
63580
- starts_at: {
63581
- description: string;
63582
- type: string;
63583
- };
63584
- user_identity_key: {
63585
- description: string;
63586
- type: string;
63587
- };
63588
- };
63589
- type: string;
63590
- 'x-route-path': string;
63591
- 'x-undocumented': string;
63592
- };
63593
- type: string;
63594
- description?: never;
63595
- properties?: never;
63596
- 'x-route-path'?: never;
63597
- 'x-undocumented'?: never;
63598
- } | {
63599
- description: string;
63600
- properties: {
63601
- custom_metadata: {
63602
- additionalProperties: {
63603
- type: string;
63604
- };
63605
- description: string;
63606
- type: string;
63607
- };
63608
- customer_key: {
63609
- description: string;
63610
- type: string;
63611
- };
63612
- description: {
63613
- description: string;
63614
- type: string;
63615
- };
63616
- email_address: {
63617
- description: string;
63618
- type: string;
63619
- };
63620
- ends_at: {
63621
- description: string;
63622
- type: string;
63623
- };
63624
- location_keys: {
63625
- description: string;
63626
- items: {
63627
- type: string;
63628
64811
  };
64812
+ required: string[];
63629
64813
  type: string;
63630
64814
  };
63631
- name: {
63632
- description: string;
63633
- type: string;
63634
- };
63635
- partner_resource_key: {
63636
- description: string;
63637
- type: string;
63638
- };
63639
- partner_resource_type: {
63640
- description: string;
63641
- type: string;
63642
- };
63643
- phone_number: {
63644
- description: string;
63645
- type: string;
63646
- };
63647
- starts_at: {
63648
- description: string;
63649
- type: string;
63650
- };
63651
- user_identity_key: {
63652
- description: string;
63653
- type: string;
63654
- };
64815
+ type: string;
63655
64816
  };
63656
- type: string;
63657
- 'x-route-path': string;
63658
- 'x-undocumented': string;
63659
- items?: never;
63660
- })[];
64817
+ };
64818
+ required: string[];
64819
+ type: string;
63661
64820
  };
63662
64821
  };
63663
64822
  };
@@ -63668,6 +64827,9 @@ declare const _default: {
63668
64827
  'application/json': {
63669
64828
  schema: {
63670
64829
  properties: {
64830
+ magic_link: {
64831
+ $ref: string;
64832
+ };
63671
64833
  ok: {
63672
64834
  type: string;
63673
64835
  };
@@ -63703,7 +64865,8 @@ declare const _default: {
63703
64865
  tags: never[];
63704
64866
  'x-fern-sdk-group-name': string[];
63705
64867
  'x-fern-sdk-method-name': string;
63706
- 'x-response-key': null;
64868
+ 'x-fern-sdk-return-value': string;
64869
+ 'x-response-key': string;
63707
64870
  'x-title': string;
63708
64871
  'x-undocumented': string;
63709
64872
  };
@@ -67225,7 +68388,13 @@ interface Routes {
67225
68388
  jsonBody: {
67226
68389
  /** ID of the device for which you want to create the new access code. */
67227
68390
  device_id: string;
67228
- /** Name of the new access code. Enables administrators and users to identify the access code easily, especially when there are numerous access codes. Note that the name provided on Seam is used to identify the code on Seam and is not necessarily the name that will appear in the lock provider's app or on the device. This is because lock providers may have constraints on names, such as length, uniqueness, or characters that can be used. In addition, some lock providers may break down names into components such as `first_name` and `last_name`. To provide a consistent experience, Seam identifies the code on Seam by its name but may modify the name that appears on the lock provider's app or on the device. For example, Seam may add additional characters or truncate the name to meet provider constraints. To help your users identify codes set by Seam, Seam provides the name exactly as it appears on the lock provider's app or on the device as a separate property called `appearance`. This is an object with a `name` property and, optionally, `first_name` and `last_name` properties (for providers that break down a name into components). */
68391
+ /** Name of the new access code. Enables administrators and users to identify the access code easily, especially when there are numerous access codes.
68392
+
68393
+ Note that the name provided on Seam is used to identify the code on Seam and is not necessarily the name that will appear in the lock provider's app or on the device. This is because lock providers may have constraints on names, such as length, uniqueness, or characters that can be used. In addition, some lock providers may break down names into components such as `first_name` and `last_name`.
68394
+
68395
+ To provide a consistent experience, Seam identifies the code on Seam by its name but may modify the name that appears on the lock provider's app or on the device. For example, Seam may add additional characters or truncate the name to meet provider constraints.
68396
+
68397
+ To help your users identify codes set by Seam, Seam provides the name exactly as it appears on the lock provider's app or on the device as a separate property called `appearance`. This is an object with a `name` property and, optionally, `first_name` and `last_name` properties (for providers that break down a name into components). */
67229
68398
  name?: string | undefined;
67230
68399
  /** Date and time at which the validity of the new access code starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
67231
68400
  starts_at?: string | undefined;
@@ -69084,7 +70253,13 @@ interface Routes {
69084
70253
  behavior_when_code_cannot_be_shared?: 'throw' | 'create_random_code';
69085
70254
  /** Preferred code length. Only applicable if you do not specify a `code`. If the affected device does not support the preferred code length, Seam reverts to using the shortest supported code length. */
69086
70255
  preferred_code_length?: number | undefined;
69087
- /** Name of the new access code. Enables administrators and users to identify the access code easily, especially when there are numerous access codes. Note that the name provided on Seam is used to identify the code on Seam and is not necessarily the name that will appear in the lock provider's app or on the device. This is because lock providers may have constraints on names, such as length, uniqueness, or characters that can be used. In addition, some lock providers may break down names into components such as `first_name` and `last_name`. To provide a consistent experience, Seam identifies the code on Seam by its name but may modify the name that appears on the lock provider's app or on the device. For example, Seam may add additional characters or truncate the name to meet provider constraints. To help your users identify codes set by Seam, Seam provides the name exactly as it appears on the lock provider's app or on the device as a separate property called `appearance`. This is an object with a `name` property and, optionally, `first_name` and `last_name` properties (for providers that break down a name into components). */
70256
+ /** Name of the new access code. Enables administrators and users to identify the access code easily, especially when there are numerous access codes.
70257
+
70258
+ Note that the name provided on Seam is used to identify the code on Seam and is not necessarily the name that will appear in the lock provider's app or on the device. This is because lock providers may have constraints on names, such as length, uniqueness, or characters that can be used. In addition, some lock providers may break down names into components such as `first_name` and `last_name`.
70259
+
70260
+ To provide a consistent experience, Seam identifies the code on Seam by its name but may modify the name that appears on the lock provider's app or on the device. For example, Seam may add additional characters or truncate the name to meet provider constraints.
70261
+
70262
+ To help your users identify codes set by Seam, Seam provides the name exactly as it appears on the lock provider's app or on the device as a separate property called `appearance`. This is an object with a `name` property and, optionally, `first_name` and `last_name` properties (for providers that break down a name into components). */
69088
70263
  name?: string | undefined;
69089
70264
  /** Date and time at which the validity of the new access code starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
69090
70265
  starts_at?: string | undefined;
@@ -75964,7 +77139,13 @@ interface Routes {
75964
77139
  method: 'POST' | 'PATCH' | 'PUT';
75965
77140
  queryParams: {};
75966
77141
  jsonBody: {
75967
- /** Name of the new access code. Enables administrators and users to identify the access code easily, especially when there are numerous access codes. Note that the name provided on Seam is used to identify the code on Seam and is not necessarily the name that will appear in the lock provider's app or on the device. This is because lock providers may have constraints on names, such as length, uniqueness, or characters that can be used. In addition, some lock providers may break down names into components such as `first_name` and `last_name`. To provide a consistent experience, Seam identifies the code on Seam by its name but may modify the name that appears on the lock provider's app or on the device. For example, Seam may add additional characters or truncate the name to meet provider constraints. To help your users identify codes set by Seam, Seam provides the name exactly as it appears on the lock provider's app or on the device as a separate property called `appearance`. This is an object with a `name` property and, optionally, `first_name` and `last_name` properties (for providers that break down a name into components). */
77142
+ /** Name of the new access code. Enables administrators and users to identify the access code easily, especially when there are numerous access codes.
77143
+
77144
+ Note that the name provided on Seam is used to identify the code on Seam and is not necessarily the name that will appear in the lock provider's app or on the device. This is because lock providers may have constraints on names, such as length, uniqueness, or characters that can be used. In addition, some lock providers may break down names into components such as `first_name` and `last_name`.
77145
+
77146
+ To provide a consistent experience, Seam identifies the code on Seam by its name but may modify the name that appears on the lock provider's app or on the device. For example, Seam may add additional characters or truncate the name to meet provider constraints.
77147
+
77148
+ To help your users identify codes set by Seam, Seam provides the name exactly as it appears on the lock provider's app or on the device as a separate property called `appearance`. This is an object with a `name` property and, optionally, `first_name` and `last_name` properties (for providers that break down a name into components). */
75968
77149
  name?: string | undefined;
75969
77150
  /** Date and time at which the validity of the new access code starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
75970
77151
  starts_at?: string | undefined;
@@ -77315,7 +78496,13 @@ interface Routes {
77315
78496
  ends_at?: string | undefined;
77316
78497
  /** Date and time at which the validity of the new access code starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
77317
78498
  starts_at?: string | undefined;
77318
- /** Name of the new access code. Enables administrators and users to identify the access code easily, especially when there are numerous access codes. Note that the name provided on Seam is used to identify the code on Seam and is not necessarily the name that will appear in the lock provider's app or on the device. This is because lock providers may have constraints on names, such as length, uniqueness, or characters that can be used. In addition, some lock providers may break down names into components such as `first_name` and `last_name`. To provide a consistent experience, Seam identifies the code on Seam by its name but may modify the name that appears on the lock provider's app or on the device. For example, Seam may add additional characters or truncate the name to meet provider constraints. To help your users identify codes set by Seam, Seam provides the name exactly as it appears on the lock provider's app or on the device as a separate property called `appearance`. This is an object with a `name` property and, optionally, `first_name` and `last_name` properties (for providers that break down a name into components). */
78499
+ /** Name of the new access code. Enables administrators and users to identify the access code easily, especially when there are numerous access codes.
78500
+
78501
+ Note that the name provided on Seam is used to identify the code on Seam and is not necessarily the name that will appear in the lock provider's app or on the device. This is because lock providers may have constraints on names, such as length, uniqueness, or characters that can be used. In addition, some lock providers may break down names into components such as `first_name` and `last_name`.
78502
+
78503
+ To provide a consistent experience, Seam identifies the code on Seam by its name but may modify the name that appears on the lock provider's app or on the device. For example, Seam may add additional characters or truncate the name to meet provider constraints.
78504
+
78505
+ To help your users identify codes set by Seam, Seam provides the name exactly as it appears on the lock provider's app or on the device as a separate property called `appearance`. This is an object with a `name` property and, optionally, `first_name` and `last_name` properties (for providers that break down a name into components). */
77319
78506
  name?: string | undefined;
77320
78507
  /** Key that links the group of access codes, assigned on creation by `/access_codes/create_multiple`. */
77321
78508
  common_code_key: string;
@@ -89705,6 +90892,512 @@ interface Routes {
89705
90892
  };
89706
90893
  };
89707
90894
  };
90895
+ '/customers/create_portal': {
90896
+ route: '/customers/create_portal';
90897
+ method: 'POST';
90898
+ queryParams: {};
90899
+ jsonBody: {};
90900
+ commonParams: {
90901
+ features?: {
90902
+ /** Configuration for the connect accounts feature. */
90903
+ connect?: {
90904
+ /** Whether to exclude this feature from the portal. */
90905
+ exclude?: boolean;
90906
+ };
90907
+ /** Configuration for the manage devices feature. */
90908
+ manage_devices?: {
90909
+ /** Whether to exclude this feature from the portal. */
90910
+ exclude?: boolean;
90911
+ };
90912
+ /** Configuration for the organize feature. */
90913
+ organize?: {
90914
+ /** Whether to exclude this feature from the portal. */
90915
+ exclude?: boolean;
90916
+ };
90917
+ };
90918
+ } & {
90919
+ customer_data?: {
90920
+ /** Your unique identifier for the customer. */
90921
+ customer_key: string;
90922
+ /** List of general spaces or areas. */
90923
+ spaces?: Array<{
90924
+ /** Your display name for this location resource. */
90925
+ name: string;
90926
+ /** Your unique identifier for the space. */
90927
+ space_key: string;
90928
+ }> | undefined;
90929
+ /** List of short-term rental properties. */
90930
+ properties?: Array<{
90931
+ /** Your display name for this location resource. */
90932
+ name: string;
90933
+ /** Your unique identifier for the property. */
90934
+ property_key: string;
90935
+ }> | undefined;
90936
+ /** List of hotel or hospitality rooms. */
90937
+ rooms?: Array<{
90938
+ /** Your display name for this location resource. */
90939
+ name: string;
90940
+ /** Your unique identifier for the room. */
90941
+ room_key: string;
90942
+ }> | undefined;
90943
+ /** List of shared common areas. */
90944
+ common_areas?: Array<{
90945
+ /** Your display name for this location resource. */
90946
+ name: string;
90947
+ /** Your unique identifier for the common area. */
90948
+ common_area_key: string;
90949
+ }> | undefined;
90950
+ /** List of multi-family residential units. */
90951
+ units?: Array<{
90952
+ /** Your display name for this location resource. */
90953
+ name: string;
90954
+ /** Your unique identifier for the unit. */
90955
+ unit_key: string;
90956
+ }> | undefined;
90957
+ /** List of gym or fitness facilities. */
90958
+ facilities?: Array<{
90959
+ /** Your display name for this location resource. */
90960
+ name: string;
90961
+ /** Your unique identifier for the facility. */
90962
+ facility_key: string;
90963
+ }> | undefined;
90964
+ /** List of buildings. */
90965
+ buildings?: Array<{
90966
+ /** Your display name for this location resource. */
90967
+ name: string;
90968
+ /** Your unique identifier for the building. */
90969
+ building_key: string;
90970
+ }> | undefined;
90971
+ /** List of property listings. */
90972
+ listings?: Array<{
90973
+ /** Your display name for this location resource. */
90974
+ name: string;
90975
+ /** Your unique identifier for the listing. */
90976
+ listing_key: string;
90977
+ }> | undefined;
90978
+ /** List of guests. */
90979
+ guests?: Array<{
90980
+ /** Your display name for this user identity resource. */
90981
+ name: string;
90982
+ /** Email address associated with the user identity. */
90983
+ email_address?: string | undefined;
90984
+ /** Phone number associated with the user identity. */
90985
+ phone_number?: string | undefined;
90986
+ /** Your unique identifier for the guest. */
90987
+ guest_key: string;
90988
+ }> | undefined;
90989
+ /** List of tenants. */
90990
+ tenants?: Array<{
90991
+ /** Your display name for this user identity resource. */
90992
+ name: string;
90993
+ /** Email address associated with the user identity. */
90994
+ email_address?: string | undefined;
90995
+ /** Phone number associated with the user identity. */
90996
+ phone_number?: string | undefined;
90997
+ /** Your unique identifier for the tenant. */
90998
+ tenant_key: string;
90999
+ }> | undefined;
91000
+ /** List of residents. */
91001
+ residents?: Array<{
91002
+ /** Your display name for this user identity resource. */
91003
+ name: string;
91004
+ /** Email address associated with the user identity. */
91005
+ email_address?: string | undefined;
91006
+ /** Phone number associated with the user identity. */
91007
+ phone_number?: string | undefined;
91008
+ /** Your unique identifier for the resident. */
91009
+ resident_key: string;
91010
+ }> | undefined;
91011
+ /** List of users. */
91012
+ users?: Array<{
91013
+ /** Your display name for this user identity resource. */
91014
+ name: string;
91015
+ /** Email address associated with the user identity. */
91016
+ email_address?: string | undefined;
91017
+ /** Phone number associated with the user identity. */
91018
+ phone_number?: string | undefined;
91019
+ /** Your unique identifier for the user. */
91020
+ user_key: string;
91021
+ }> | undefined;
91022
+ /** List of user identities. */
91023
+ user_identities?: Array<{
91024
+ /** Your display name for this user identity resource. */
91025
+ name: string;
91026
+ /** Email address associated with the user identity. */
91027
+ email_address?: string | undefined;
91028
+ /** Phone number associated with the user identity. */
91029
+ phone_number?: string | undefined;
91030
+ /** Your unique identifier for the user identity. */
91031
+ user_identity_key: string;
91032
+ }> | undefined;
91033
+ /** List of reservations. */
91034
+ reservations?: Array<{
91035
+ /** Your display name for this access grant resource. */
91036
+ name: string;
91037
+ /** Starting date and time for the access grant. */
91038
+ starts_at?: string | undefined;
91039
+ /** Ending date and time for the access grant. */
91040
+ ends_at?: string | undefined;
91041
+ /** Your unique identifier for the reservation. */
91042
+ reservation_key: string;
91043
+ /** Guest key associated with the access grant. */
91044
+ guest_key?: string | undefined;
91045
+ /** Tenant key associated with the access grant. */
91046
+ tenant_key?: string | undefined;
91047
+ /** Resident key associated with the access grant. */
91048
+ resident_key?: string | undefined;
91049
+ /** User key associated with the access grant. */
91050
+ user_key?: string | undefined;
91051
+ /** User identity key associated with the access grant. */
91052
+ user_identity_key?: string | undefined;
91053
+ /** Space keys associated with the access grant. */
91054
+ space_keys?: string[] | undefined;
91055
+ /** Property keys associated with the access grant. */
91056
+ property_keys?: string[] | undefined;
91057
+ /** Room keys associated with the access grant. */
91058
+ room_keys?: string[] | undefined;
91059
+ /** Common area keys associated with the access grant. */
91060
+ common_area_keys?: string[] | undefined;
91061
+ /** Unit keys associated with the access grant. */
91062
+ unit_keys?: string[] | undefined;
91063
+ /** Facility keys associated with the access grant. */
91064
+ facility_keys?: string[] | undefined;
91065
+ /** Building keys associated with the access grant. */
91066
+ building_keys?: string[] | undefined;
91067
+ /** Listing keys associated with the access grant. */
91068
+ listing_keys?: string[] | undefined;
91069
+ }> | undefined;
91070
+ /** List of bookings. */
91071
+ bookings?: Array<{
91072
+ /** Your display name for this access grant resource. */
91073
+ name: string;
91074
+ /** Starting date and time for the access grant. */
91075
+ starts_at?: string | undefined;
91076
+ /** Ending date and time for the access grant. */
91077
+ ends_at?: string | undefined;
91078
+ /** Your unique identifier for the booking. */
91079
+ booking_key: string;
91080
+ /** Guest key associated with the access grant. */
91081
+ guest_key?: string | undefined;
91082
+ /** Tenant key associated with the access grant. */
91083
+ tenant_key?: string | undefined;
91084
+ /** Resident key associated with the access grant. */
91085
+ resident_key?: string | undefined;
91086
+ /** User key associated with the access grant. */
91087
+ user_key?: string | undefined;
91088
+ /** User identity key associated with the access grant. */
91089
+ user_identity_key?: string | undefined;
91090
+ /** Space keys associated with the access grant. */
91091
+ space_keys?: string[] | undefined;
91092
+ /** Property keys associated with the access grant. */
91093
+ property_keys?: string[] | undefined;
91094
+ /** Room keys associated with the access grant. */
91095
+ room_keys?: string[] | undefined;
91096
+ /** Common area keys associated with the access grant. */
91097
+ common_area_keys?: string[] | undefined;
91098
+ /** Unit keys associated with the access grant. */
91099
+ unit_keys?: string[] | undefined;
91100
+ /** Facility keys associated with the access grant. */
91101
+ facility_keys?: string[] | undefined;
91102
+ /** Building keys associated with the access grant. */
91103
+ building_keys?: string[] | undefined;
91104
+ /** Listing keys associated with the access grant. */
91105
+ listing_keys?: string[] | undefined;
91106
+ }> | undefined;
91107
+ /** List of access grants. */
91108
+ access_grants?: Array<{
91109
+ /** Your display name for this access grant resource. */
91110
+ name: string;
91111
+ /** Starting date and time for the access grant. */
91112
+ starts_at?: string | undefined;
91113
+ /** Ending date and time for the access grant. */
91114
+ ends_at?: string | undefined;
91115
+ /** Your unique identifier for the access grant. */
91116
+ access_grant_key: string;
91117
+ /** Guest key associated with the access grant. */
91118
+ guest_key?: string | undefined;
91119
+ /** Tenant key associated with the access grant. */
91120
+ tenant_key?: string | undefined;
91121
+ /** Resident key associated with the access grant. */
91122
+ resident_key?: string | undefined;
91123
+ /** User key associated with the access grant. */
91124
+ user_key?: string | undefined;
91125
+ /** User identity key associated with the access grant. */
91126
+ user_identity_key?: string | undefined;
91127
+ /** Space keys associated with the access grant. */
91128
+ space_keys?: string[] | undefined;
91129
+ /** Property keys associated with the access grant. */
91130
+ property_keys?: string[] | undefined;
91131
+ /** Room keys associated with the access grant. */
91132
+ room_keys?: string[] | undefined;
91133
+ /** Common area keys associated with the access grant. */
91134
+ common_area_keys?: string[] | undefined;
91135
+ /** Unit keys associated with the access grant. */
91136
+ unit_keys?: string[] | undefined;
91137
+ /** Facility keys associated with the access grant. */
91138
+ facility_keys?: string[] | undefined;
91139
+ /** Building keys associated with the access grant. */
91140
+ building_keys?: string[] | undefined;
91141
+ /** Listing keys associated with the access grant. */
91142
+ listing_keys?: string[] | undefined;
91143
+ }> | undefined;
91144
+ } | undefined;
91145
+ };
91146
+ formData: {};
91147
+ jsonResponse: {
91148
+ /** Represents a Customer Portal. Customer Portal is a hosted, customizable interface for managing device access. It enables you to embed secure, pre-authenticated access flows into your product—either by sharing a link with users or embedding a view in an iframe.
91149
+
91150
+ With Customer Portal, you no longer need to build out frontend experiences for physical access, thermostats, and sensors. Instead, you can ship enterprise-grade access control experiences in a fraction of the time, while maintaining your product's branding and user experience.
91151
+
91152
+ Seam hosts these flows, handling everything from account connection and device mapping to full-featured device control. */
91153
+ magic_link: {
91154
+ /** URL for the magic link. */
91155
+ url: string;
91156
+ /** Customer key for the magic link. */
91157
+ customer_key: string;
91158
+ /** Date and time at which the magic link expires. */
91159
+ expires_at: string;
91160
+ /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) associated with the magic link. */
91161
+ workspace_id: string;
91162
+ /** Date and time at which the magic link was created. */
91163
+ created_at: string;
91164
+ };
91165
+ };
91166
+ };
91167
+ '/customers/push_data': {
91168
+ route: '/customers/push_data';
91169
+ method: 'POST';
91170
+ queryParams: {};
91171
+ jsonBody: {};
91172
+ commonParams: {
91173
+ /** Your unique identifier for the customer. */
91174
+ customer_key: string;
91175
+ /** List of general spaces or areas. */
91176
+ spaces?: Array<{
91177
+ /** Your display name for this location resource. */
91178
+ name: string;
91179
+ /** Your unique identifier for the space. */
91180
+ space_key: string;
91181
+ }> | undefined;
91182
+ /** List of short-term rental properties. */
91183
+ properties?: Array<{
91184
+ /** Your display name for this location resource. */
91185
+ name: string;
91186
+ /** Your unique identifier for the property. */
91187
+ property_key: string;
91188
+ }> | undefined;
91189
+ /** List of hotel or hospitality rooms. */
91190
+ rooms?: Array<{
91191
+ /** Your display name for this location resource. */
91192
+ name: string;
91193
+ /** Your unique identifier for the room. */
91194
+ room_key: string;
91195
+ }> | undefined;
91196
+ /** List of shared common areas. */
91197
+ common_areas?: Array<{
91198
+ /** Your display name for this location resource. */
91199
+ name: string;
91200
+ /** Your unique identifier for the common area. */
91201
+ common_area_key: string;
91202
+ }> | undefined;
91203
+ /** List of multi-family residential units. */
91204
+ units?: Array<{
91205
+ /** Your display name for this location resource. */
91206
+ name: string;
91207
+ /** Your unique identifier for the unit. */
91208
+ unit_key: string;
91209
+ }> | undefined;
91210
+ /** List of gym or fitness facilities. */
91211
+ facilities?: Array<{
91212
+ /** Your display name for this location resource. */
91213
+ name: string;
91214
+ /** Your unique identifier for the facility. */
91215
+ facility_key: string;
91216
+ }> | undefined;
91217
+ /** List of buildings. */
91218
+ buildings?: Array<{
91219
+ /** Your display name for this location resource. */
91220
+ name: string;
91221
+ /** Your unique identifier for the building. */
91222
+ building_key: string;
91223
+ }> | undefined;
91224
+ /** List of property listings. */
91225
+ listings?: Array<{
91226
+ /** Your display name for this location resource. */
91227
+ name: string;
91228
+ /** Your unique identifier for the listing. */
91229
+ listing_key: string;
91230
+ }> | undefined;
91231
+ /** List of guests. */
91232
+ guests?: Array<{
91233
+ /** Your display name for this user identity resource. */
91234
+ name: string;
91235
+ /** Email address associated with the user identity. */
91236
+ email_address?: string | undefined;
91237
+ /** Phone number associated with the user identity. */
91238
+ phone_number?: string | undefined;
91239
+ /** Your unique identifier for the guest. */
91240
+ guest_key: string;
91241
+ }> | undefined;
91242
+ /** List of tenants. */
91243
+ tenants?: Array<{
91244
+ /** Your display name for this user identity resource. */
91245
+ name: string;
91246
+ /** Email address associated with the user identity. */
91247
+ email_address?: string | undefined;
91248
+ /** Phone number associated with the user identity. */
91249
+ phone_number?: string | undefined;
91250
+ /** Your unique identifier for the tenant. */
91251
+ tenant_key: string;
91252
+ }> | undefined;
91253
+ /** List of residents. */
91254
+ residents?: Array<{
91255
+ /** Your display name for this user identity resource. */
91256
+ name: string;
91257
+ /** Email address associated with the user identity. */
91258
+ email_address?: string | undefined;
91259
+ /** Phone number associated with the user identity. */
91260
+ phone_number?: string | undefined;
91261
+ /** Your unique identifier for the resident. */
91262
+ resident_key: string;
91263
+ }> | undefined;
91264
+ /** List of users. */
91265
+ users?: Array<{
91266
+ /** Your display name for this user identity resource. */
91267
+ name: string;
91268
+ /** Email address associated with the user identity. */
91269
+ email_address?: string | undefined;
91270
+ /** Phone number associated with the user identity. */
91271
+ phone_number?: string | undefined;
91272
+ /** Your unique identifier for the user. */
91273
+ user_key: string;
91274
+ }> | undefined;
91275
+ /** List of user identities. */
91276
+ user_identities?: Array<{
91277
+ /** Your display name for this user identity resource. */
91278
+ name: string;
91279
+ /** Email address associated with the user identity. */
91280
+ email_address?: string | undefined;
91281
+ /** Phone number associated with the user identity. */
91282
+ phone_number?: string | undefined;
91283
+ /** Your unique identifier for the user identity. */
91284
+ user_identity_key: string;
91285
+ }> | undefined;
91286
+ /** List of reservations. */
91287
+ reservations?: Array<{
91288
+ /** Your display name for this access grant resource. */
91289
+ name: string;
91290
+ /** Starting date and time for the access grant. */
91291
+ starts_at?: string | undefined;
91292
+ /** Ending date and time for the access grant. */
91293
+ ends_at?: string | undefined;
91294
+ /** Your unique identifier for the reservation. */
91295
+ reservation_key: string;
91296
+ /** Guest key associated with the access grant. */
91297
+ guest_key?: string | undefined;
91298
+ /** Tenant key associated with the access grant. */
91299
+ tenant_key?: string | undefined;
91300
+ /** Resident key associated with the access grant. */
91301
+ resident_key?: string | undefined;
91302
+ /** User key associated with the access grant. */
91303
+ user_key?: string | undefined;
91304
+ /** User identity key associated with the access grant. */
91305
+ user_identity_key?: string | undefined;
91306
+ /** Space keys associated with the access grant. */
91307
+ space_keys?: string[] | undefined;
91308
+ /** Property keys associated with the access grant. */
91309
+ property_keys?: string[] | undefined;
91310
+ /** Room keys associated with the access grant. */
91311
+ room_keys?: string[] | undefined;
91312
+ /** Common area keys associated with the access grant. */
91313
+ common_area_keys?: string[] | undefined;
91314
+ /** Unit keys associated with the access grant. */
91315
+ unit_keys?: string[] | undefined;
91316
+ /** Facility keys associated with the access grant. */
91317
+ facility_keys?: string[] | undefined;
91318
+ /** Building keys associated with the access grant. */
91319
+ building_keys?: string[] | undefined;
91320
+ /** Listing keys associated with the access grant. */
91321
+ listing_keys?: string[] | undefined;
91322
+ }> | undefined;
91323
+ /** List of bookings. */
91324
+ bookings?: Array<{
91325
+ /** Your display name for this access grant resource. */
91326
+ name: string;
91327
+ /** Starting date and time for the access grant. */
91328
+ starts_at?: string | undefined;
91329
+ /** Ending date and time for the access grant. */
91330
+ ends_at?: string | undefined;
91331
+ /** Your unique identifier for the booking. */
91332
+ booking_key: string;
91333
+ /** Guest key associated with the access grant. */
91334
+ guest_key?: string | undefined;
91335
+ /** Tenant key associated with the access grant. */
91336
+ tenant_key?: string | undefined;
91337
+ /** Resident key associated with the access grant. */
91338
+ resident_key?: string | undefined;
91339
+ /** User key associated with the access grant. */
91340
+ user_key?: string | undefined;
91341
+ /** User identity key associated with the access grant. */
91342
+ user_identity_key?: string | undefined;
91343
+ /** Space keys associated with the access grant. */
91344
+ space_keys?: string[] | undefined;
91345
+ /** Property keys associated with the access grant. */
91346
+ property_keys?: string[] | undefined;
91347
+ /** Room keys associated with the access grant. */
91348
+ room_keys?: string[] | undefined;
91349
+ /** Common area keys associated with the access grant. */
91350
+ common_area_keys?: string[] | undefined;
91351
+ /** Unit keys associated with the access grant. */
91352
+ unit_keys?: string[] | undefined;
91353
+ /** Facility keys associated with the access grant. */
91354
+ facility_keys?: string[] | undefined;
91355
+ /** Building keys associated with the access grant. */
91356
+ building_keys?: string[] | undefined;
91357
+ /** Listing keys associated with the access grant. */
91358
+ listing_keys?: string[] | undefined;
91359
+ }> | undefined;
91360
+ /** List of access grants. */
91361
+ access_grants?: Array<{
91362
+ /** Your display name for this access grant resource. */
91363
+ name: string;
91364
+ /** Starting date and time for the access grant. */
91365
+ starts_at?: string | undefined;
91366
+ /** Ending date and time for the access grant. */
91367
+ ends_at?: string | undefined;
91368
+ /** Your unique identifier for the access grant. */
91369
+ access_grant_key: string;
91370
+ /** Guest key associated with the access grant. */
91371
+ guest_key?: string | undefined;
91372
+ /** Tenant key associated with the access grant. */
91373
+ tenant_key?: string | undefined;
91374
+ /** Resident key associated with the access grant. */
91375
+ resident_key?: string | undefined;
91376
+ /** User key associated with the access grant. */
91377
+ user_key?: string | undefined;
91378
+ /** User identity key associated with the access grant. */
91379
+ user_identity_key?: string | undefined;
91380
+ /** Space keys associated with the access grant. */
91381
+ space_keys?: string[] | undefined;
91382
+ /** Property keys associated with the access grant. */
91383
+ property_keys?: string[] | undefined;
91384
+ /** Room keys associated with the access grant. */
91385
+ room_keys?: string[] | undefined;
91386
+ /** Common area keys associated with the access grant. */
91387
+ common_area_keys?: string[] | undefined;
91388
+ /** Unit keys associated with the access grant. */
91389
+ unit_keys?: string[] | undefined;
91390
+ /** Facility keys associated with the access grant. */
91391
+ facility_keys?: string[] | undefined;
91392
+ /** Building keys associated with the access grant. */
91393
+ building_keys?: string[] | undefined;
91394
+ /** Listing keys associated with the access grant. */
91395
+ listing_keys?: string[] | undefined;
91396
+ }> | undefined;
91397
+ };
91398
+ formData: {};
91399
+ jsonResponse: {};
91400
+ };
89708
91401
  '/devices/delete': {
89709
91402
  route: '/devices/delete';
89710
91403
  method: 'DELETE' | 'POST';
@@ -112440,6 +114133,46 @@ interface Routes {
112440
114133
  }>;
112441
114134
  };
112442
114135
  };
114136
+ '/seam/customer/v1/portals/get': {
114137
+ route: '/seam/customer/v1/portals/get';
114138
+ method: 'GET';
114139
+ queryParams: {};
114140
+ jsonBody: {};
114141
+ commonParams: {
114142
+ /** Customer portal ID. */
114143
+ customer_portal_id: string;
114144
+ };
114145
+ formData: {};
114146
+ jsonResponse: {
114147
+ customer_portal: {
114148
+ features?: {
114149
+ connect?: {
114150
+ exclude?: boolean | undefined;
114151
+ } | undefined;
114152
+ manage_devices?: {
114153
+ exclude?: boolean | undefined;
114154
+ } | undefined;
114155
+ organize?: {
114156
+ exclude?: boolean | undefined;
114157
+ } | undefined;
114158
+ } | undefined;
114159
+ /** Business vertical of the customer portal. */
114160
+ business_vertical?: ('short_term_rental' | 'hospitality' | 'multi_family' | 'gym_management' | 'property_tours') | undefined;
114161
+ };
114162
+ };
114163
+ };
114164
+ '/seam/customer/v1/settings/update': {
114165
+ route: '/seam/customer/v1/settings/update';
114166
+ method: 'POST' | 'PATCH';
114167
+ queryParams: {};
114168
+ jsonBody: {
114169
+ /** Business vertical to set on the workspace. */
114170
+ business_vertical?: ('short_term_rental' | 'hospitality' | 'multi_family' | 'gym_management' | 'property_tours') | undefined;
114171
+ };
114172
+ commonParams: {};
114173
+ formData: {};
114174
+ jsonResponse: {};
114175
+ };
112443
114176
  '/seam/instant_key/v1/client_sessions/exchange_short_code': {
112444
114177
  route: '/seam/instant_key/v1/client_sessions/exchange_short_code';
112445
114178
  method: 'POST';
@@ -112908,45 +114641,6 @@ interface Routes {
112908
114641
  }>;
112909
114642
  };
112910
114643
  };
112911
- '/seam/partner/v1/resources/list': {
112912
- route: '/seam/partner/v1/resources/list';
112913
- method: 'GET' | 'POST';
112914
- queryParams: {};
112915
- jsonBody: {};
112916
- commonParams: {
112917
- /** Resource type alias by which you want to filter partner resources. */
112918
- resource_type_alias?: string | undefined;
112919
- };
112920
- formData: {};
112921
- jsonResponse: {
112922
- partner_resources: Array<{
112923
- /** Type of the partner resource. */
112924
- partner_resource_type: string;
112925
- /** Key of the partner resource. */
112926
- partner_resource_key: string;
112927
- /** Customer key associated with the partner resource. */
112928
- customer_key: string;
112929
- /** Email address associated with the user identity partner resource. */
112930
- email_address?: string | undefined;
112931
- /** Phone number associated with the user identity partner resource. */
112932
- phone_number?: string | undefined;
112933
- /** Starting date and time associated with the access grant partner resource. */
112934
- starts_at?: string | undefined;
112935
- /** Ending date and time associated with the access grant partner resource. */
112936
- ends_at?: string | undefined;
112937
- /** User identity key associated with the access grant partner resource. */
112938
- user_identity_key?: string | undefined;
112939
- /** Location keys associated with the access grant partner resource. */
112940
- location_keys?: string[] | undefined;
112941
- /** Name of the partner resource. */
112942
- name?: string | undefined;
112943
- /** Description of the partner resource. */
112944
- description?: string | undefined;
112945
- /** Custom metadata associated with the partner resource. */
112946
- custom_metadata?: Record<string, string> | undefined;
112947
- }>;
112948
- };
112949
- };
112950
114644
  '/spaces/add_acs_entrances': {
112951
114645
  route: '/spaces/add_acs_entrances';
112952
114646
  method: 'POST' | 'PUT';
@@ -129345,14 +131039,10 @@ interface Routes {
129345
131039
  customer_key: string;
129346
131040
  /** Optional list of spaces that you want to include in the new building block magic link. */
129347
131041
  spaces?: Array<{
129348
- /** Key of the space for the resource. */
129349
- space_key: string;
129350
- /** Name of the space resource. */
131042
+ /** Your display name for this location resource. */
129351
131043
  name: string;
129352
- /** Description of the space resource. */
129353
- description?: string | undefined;
129354
- /** Custom metadata associated with the space resource. */
129355
- custom_metadata?: Record<string, string> | undefined;
131044
+ /** Your unique identifier for the space. */
131045
+ space_key: string;
129356
131046
  }> | undefined;
129357
131047
  };
129358
131048
  formData: {};
@@ -129420,14 +131110,10 @@ interface Routes {
129420
131110
  customer_key: string;
129421
131111
  /** Optional list of spaces that you want to include in the new building block magic link. */
129422
131112
  spaces?: Array<{
129423
- /** Key of the space for the resource. */
129424
- space_key: string;
129425
- /** Name of the space resource. */
131113
+ /** Your display name for this location resource. */
129426
131114
  name: string;
129427
- /** Description of the space resource. */
129428
- description?: string | undefined;
129429
- /** Custom metadata associated with the space resource. */
129430
- custom_metadata?: Record<string, string> | undefined;
131115
+ /** Your unique identifier for the space. */
131116
+ space_key: string;
129431
131117
  }> | undefined;
129432
131118
  };
129433
131119
  formData: {};
@@ -129453,65 +131139,6 @@ interface Routes {
129453
131139
  };
129454
131140
  };
129455
131141
  };
129456
- '/unstable_partner/resources/push': {
129457
- route: '/unstable_partner/resources/push';
129458
- method: 'POST';
129459
- queryParams: {};
129460
- jsonBody: Array<{
129461
- /** Type of the resource that you want to push to Seam. */
129462
- partner_resource_type?: string | undefined;
129463
- /** Key of the resource that you want to push to Seam. */
129464
- partner_resource_key?: string | undefined;
129465
- /** Customer key associated with the resource that you want to push to Seam. */
129466
- customer_key?: string | undefined;
129467
- /** Email address associated with the user identity partner resource. */
129468
- email_address?: string | undefined;
129469
- /** Phone number associated with the user identity partner resource. */
129470
- phone_number?: string | undefined;
129471
- /** Starting date and time associated with the access grant partner resource. */
129472
- starts_at?: string | undefined;
129473
- /** Ending date and time associated with the access grant partner resource. */
129474
- ends_at?: string | undefined;
129475
- /** User identity key associated with the access grant partner resource. */
129476
- user_identity_key?: string | undefined;
129477
- /** Location keys associated with the access grant partner resource. */
129478
- location_keys?: string[] | undefined;
129479
- /** Name of the partner resource. */
129480
- name?: string | undefined;
129481
- /** Description of the partner resource. */
129482
- description?: string | undefined;
129483
- /** Custom metadata associated with the partner resource. */
129484
- custom_metadata?: Record<string, string> | undefined;
129485
- }> | {
129486
- /** Type of the resource that you want to push to Seam. */
129487
- partner_resource_type?: string | undefined;
129488
- /** Key of the resource that you want to push to Seam. */
129489
- partner_resource_key?: string | undefined;
129490
- /** Customer key associated with the resource that you want to push to Seam. */
129491
- customer_key?: string | undefined;
129492
- /** Email address associated with the user identity partner resource. */
129493
- email_address?: string | undefined;
129494
- /** Phone number associated with the user identity partner resource. */
129495
- phone_number?: string | undefined;
129496
- /** Starting date and time associated with the access grant partner resource. */
129497
- starts_at?: string | undefined;
129498
- /** Ending date and time associated with the access grant partner resource. */
129499
- ends_at?: string | undefined;
129500
- /** User identity key associated with the access grant partner resource. */
129501
- user_identity_key?: string | undefined;
129502
- /** Location keys associated with the access grant partner resource. */
129503
- location_keys?: string[] | undefined;
129504
- /** Name of the partner resource. */
129505
- name?: string | undefined;
129506
- /** Description of the partner resource. */
129507
- description?: string | undefined;
129508
- /** Custom metadata associated with the partner resource. */
129509
- custom_metadata?: Record<string, string> | undefined;
129510
- };
129511
- commonParams: {};
129512
- formData: {};
129513
- jsonResponse: {};
129514
- };
129515
131142
  '/user_identities/add_acs_user': {
129516
131143
  route: '/user_identities/add_acs_user';
129517
131144
  method: 'POST' | 'PUT';