@seamapi/types 1.421.1 → 1.422.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/connect.cjs +1630 -583
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +2627 -1024
- package/lib/seam/connect/internal/schemas.d.ts +1 -1
- package/lib/seam/connect/internal/schemas.js +1 -1
- package/lib/seam/connect/internal/schemas.js.map +1 -1
- package/lib/seam/connect/models/customer/access-grant-resources.d.ts +420 -0
- package/lib/seam/connect/models/customer/access-grant-resources.js +111 -0
- package/lib/seam/connect/models/customer/access-grant-resources.js.map +1 -0
- package/lib/seam/connect/models/customer/business-vertical.d.ts +3 -0
- package/lib/seam/connect/models/customer/business-vertical.js +11 -0
- package/lib/seam/connect/models/customer/business-vertical.js.map +1 -0
- package/lib/seam/connect/models/customer/customer-data.d.ts +597 -0
- package/lib/seam/connect/models/customer/customer-data.js +67 -0
- package/lib/seam/connect/models/customer/customer-data.js.map +1 -0
- package/lib/seam/connect/models/customer/customer-portal.d.ts +71 -0
- package/lib/seam/connect/models/customer/customer-portal.js +34 -0
- package/lib/seam/connect/models/customer/customer-portal.js.map +1 -0
- package/lib/seam/connect/models/customer/index.d.ts +3 -0
- package/lib/seam/connect/models/customer/index.js +4 -0
- package/lib/seam/connect/models/customer/index.js.map +1 -0
- package/lib/seam/connect/models/customer/location-resources.d.ts +229 -0
- package/lib/seam/connect/models/customer/location-resources.js +55 -0
- package/lib/seam/connect/models/customer/location-resources.js.map +1 -0
- package/lib/seam/connect/models/customer/user-identity-resources.d.ts +205 -0
- package/lib/seam/connect/models/customer/user-identity-resources.js +50 -0
- package/lib/seam/connect/models/customer/user-identity-resources.js.map +1 -0
- package/lib/seam/connect/models/index.d.ts +4 -0
- package/lib/seam/connect/models/index.js +4 -0
- package/lib/seam/connect/models/index.js.map +1 -1
- package/lib/seam/connect/models/partner/index.d.ts +0 -1
- package/lib/seam/connect/models/partner/index.js +0 -1
- package/lib/seam/connect/models/partner/index.js.map +1 -1
- package/lib/seam/connect/models/partner/magic-link.d.ts +2 -2
- package/lib/seam/connect/openapi.d.ts +1821 -658
- package/lib/seam/connect/openapi.js +1639 -592
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +552 -112
- package/package.json +1 -1
- package/src/lib/seam/connect/internal/schemas.ts +21 -3
- package/src/lib/seam/connect/models/customer/access-grant-resources.ts +129 -0
- package/src/lib/seam/connect/models/customer/business-vertical.ts +13 -0
- package/src/lib/seam/connect/models/customer/customer-data.ts +93 -0
- package/src/lib/seam/connect/models/customer/customer-portal.ts +39 -0
- package/src/lib/seam/connect/models/customer/index.ts +3 -0
- package/src/lib/seam/connect/models/customer/location-resources.ts +77 -0
- package/src/lib/seam/connect/models/customer/user-identity-resources.ts +68 -0
- package/src/lib/seam/connect/models/index.ts +4 -0
- package/src/lib/seam/connect/models/partner/index.ts +0 -1
- package/src/lib/seam/connect/openapi.ts +1794 -601
- package/src/lib/seam/connect/route-types.ts +642 -114
- package/lib/seam/connect/models/partner/resources.d.ts +0 -76
- package/lib/seam/connect/models/partner/resources.js +0 -87
- package/lib/seam/connect/models/partner/resources.js.map +0 -1
- package/src/lib/seam/connect/models/partner/resources.ts +0 -112
package/dist/connect.d.cts
CHANGED
|
@@ -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: "
|
|
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: "
|
|
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
|
-
'/
|
|
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
|
-
|
|
48745
|
-
|
|
48746
|
-
|
|
48747
|
-
|
|
48748
|
-
|
|
48749
|
-
|
|
48750
|
-
|
|
48751
|
-
|
|
48752
|
-
|
|
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
|
-
|
|
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
|
-
|
|
48832
|
-
|
|
48833
|
-
|
|
48834
|
-
|
|
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
|
-
|
|
48921
|
-
|
|
48922
|
-
|
|
48923
|
-
|
|
48924
|
-
|
|
48925
|
-
|
|
48926
|
-
|
|
48927
|
-
|
|
48928
|
-
|
|
48929
|
-
|
|
48930
|
-
|
|
48931
|
-
|
|
48932
|
-
|
|
48933
|
-
|
|
48934
|
-
|
|
48935
|
-
|
|
48936
|
-
|
|
48937
|
-
|
|
48938
|
-
|
|
48939
|
-
|
|
48940
|
-
|
|
48941
|
-
|
|
48942
|
-
|
|
48943
|
-
|
|
48944
|
-
|
|
48945
|
-
|
|
48946
|
-
|
|
48947
|
-
|
|
48948
|
-
|
|
48949
|
-
|
|
48950
|
-
|
|
48951
|
-
|
|
48952
|
-
|
|
48953
|
-
|
|
48954
|
-
|
|
48955
|
-
|
|
48956
|
-
|
|
48957
|
-
|
|
48958
|
-
|
|
48959
|
-
|
|
48960
|
-
|
|
48961
|
-
|
|
48962
|
-
|
|
48963
|
-
|
|
48964
|
-
|
|
48965
|
-
|
|
48966
|
-
|
|
48967
|
-
|
|
48968
|
-
|
|
48969
|
-
|
|
48970
|
-
|
|
48971
|
-
|
|
48972
|
-
|
|
48973
|
-
|
|
48974
|
-
|
|
48975
|
-
|
|
48976
|
-
|
|
48977
|
-
|
|
48978
|
-
|
|
48979
|
-
|
|
48980
|
-
|
|
48981
|
-
|
|
48982
|
-
|
|
48983
|
-
|
|
48984
|
-
|
|
48985
|
-
|
|
48986
|
-
|
|
48987
|
-
|
|
48988
|
-
|
|
48989
|
-
|
|
48990
|
-
|
|
48991
|
-
|
|
48992
|
-
|
|
48993
|
-
|
|
48994
|
-
|
|
48995
|
-
|
|
48996
|
-
|
|
48997
|
-
|
|
48998
|
-
|
|
48999
|
-
|
|
49000
|
-
|
|
49001
|
-
|
|
49002
|
-
|
|
49003
|
-
|
|
49004
|
-
|
|
49005
|
-
|
|
49006
|
-
|
|
49007
|
-
|
|
49008
|
-
|
|
49009
|
-
|
|
49010
|
-
|
|
49011
|
-
|
|
49012
|
-
|
|
49013
|
-
|
|
49014
|
-
|
|
49015
|
-
|
|
49016
|
-
|
|
49017
|
-
|
|
49018
|
-
|
|
49019
|
-
|
|
49020
|
-
|
|
49021
|
-
|
|
49022
|
-
|
|
49023
|
-
|
|
49024
|
-
|
|
49025
|
-
|
|
49026
|
-
|
|
49027
|
-
|
|
49028
|
-
|
|
49029
|
-
|
|
49030
|
-
|
|
49031
|
-
|
|
49032
|
-
|
|
49033
|
-
|
|
49034
|
-
|
|
49035
|
-
|
|
49036
|
-
|
|
49037
|
-
|
|
49038
|
-
|
|
49039
|
-
|
|
49040
|
-
|
|
49041
|
-
|
|
49042
|
-
|
|
49043
|
-
|
|
49044
|
-
|
|
49045
|
-
|
|
49046
|
-
|
|
49047
|
-
|
|
49048
|
-
|
|
49049
|
-
|
|
49050
|
-
|
|
49051
|
-
|
|
49052
|
-
|
|
49053
|
-
|
|
49054
|
-
|
|
49055
|
-
|
|
49056
|
-
|
|
49057
|
-
|
|
49058
|
-
|
|
49059
|
-
|
|
49060
|
-
|
|
49061
|
-
|
|
49062
|
-
|
|
49063
|
-
|
|
49064
|
-
|
|
49065
|
-
|
|
49066
|
-
|
|
49067
|
-
|
|
49068
|
-
|
|
49069
|
-
|
|
49070
|
-
|
|
49071
|
-
|
|
49072
|
-
|
|
49073
|
-
|
|
49074
|
-
|
|
49075
|
-
|
|
49076
|
-
|
|
49077
|
-
|
|
49078
|
-
|
|
49079
|
-
|
|
49080
|
-
|
|
49081
|
-
|
|
49082
|
-
|
|
49083
|
-
|
|
49084
|
-
|
|
49085
|
-
|
|
49086
|
-
|
|
49087
|
-
|
|
49088
|
-
|
|
49089
|
-
|
|
49090
|
-
|
|
49091
|
-
|
|
49092
|
-
|
|
49093
|
-
|
|
49094
|
-
|
|
49095
|
-
|
|
49096
|
-
|
|
49097
|
-
|
|
49098
|
-
|
|
49099
|
-
|
|
49100
|
-
|
|
49101
|
-
|
|
49102
|
-
|
|
49103
|
-
|
|
49104
|
-
|
|
49105
|
-
|
|
49106
|
-
|
|
49107
|
-
|
|
49108
|
-
|
|
49109
|
-
|
|
49110
|
-
|
|
49111
|
-
|
|
49112
|
-
|
|
49113
|
-
|
|
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
|
-
|
|
55181
|
-
|
|
55182
|
-
|
|
55183
|
-
|
|
55184
|
-
|
|
55185
|
-
|
|
55186
|
-
|
|
55187
|
-
|
|
55188
|
-
|
|
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
|
-
|
|
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-
|
|
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
|
-
|
|
63531
|
-
|
|
64794
|
+
properties: {
|
|
64795
|
+
customer_key: {
|
|
63532
64796
|
description: string;
|
|
63533
|
-
|
|
63534
|
-
|
|
63535
|
-
|
|
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
|
-
|
|
63539
|
-
|
|
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
|
-
|
|
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
|
-
|
|
63657
|
-
|
|
63658
|
-
|
|
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-
|
|
64868
|
+
'x-fern-sdk-return-value': string;
|
|
64869
|
+
'x-response-key': string;
|
|
63707
64870
|
'x-title': string;
|
|
63708
64871
|
'x-undocumented': string;
|
|
63709
64872
|
};
|
|
@@ -89705,6 +90868,512 @@ interface Routes {
|
|
|
89705
90868
|
};
|
|
89706
90869
|
};
|
|
89707
90870
|
};
|
|
90871
|
+
'/customers/create_portal': {
|
|
90872
|
+
route: '/customers/create_portal';
|
|
90873
|
+
method: 'POST';
|
|
90874
|
+
queryParams: {};
|
|
90875
|
+
jsonBody: {};
|
|
90876
|
+
commonParams: {
|
|
90877
|
+
features?: {
|
|
90878
|
+
/** Configuration for the connect accounts feature. */
|
|
90879
|
+
connect?: {
|
|
90880
|
+
/** Whether to exclude this feature from the portal. */
|
|
90881
|
+
exclude?: boolean;
|
|
90882
|
+
};
|
|
90883
|
+
/** Configuration for the manage devices feature. */
|
|
90884
|
+
manage_devices?: {
|
|
90885
|
+
/** Whether to exclude this feature from the portal. */
|
|
90886
|
+
exclude?: boolean;
|
|
90887
|
+
};
|
|
90888
|
+
/** Configuration for the organize feature. */
|
|
90889
|
+
organize?: {
|
|
90890
|
+
/** Whether to exclude this feature from the portal. */
|
|
90891
|
+
exclude?: boolean;
|
|
90892
|
+
};
|
|
90893
|
+
};
|
|
90894
|
+
} & {
|
|
90895
|
+
customer_data?: {
|
|
90896
|
+
/** Your unique identifier for the customer. */
|
|
90897
|
+
customer_key: string;
|
|
90898
|
+
/** List of general spaces or areas. */
|
|
90899
|
+
spaces?: Array<{
|
|
90900
|
+
/** Your display name for this location resource. */
|
|
90901
|
+
name: string;
|
|
90902
|
+
/** Your unique identifier for the space. */
|
|
90903
|
+
space_key: string;
|
|
90904
|
+
}> | undefined;
|
|
90905
|
+
/** List of short-term rental properties. */
|
|
90906
|
+
properties?: Array<{
|
|
90907
|
+
/** Your display name for this location resource. */
|
|
90908
|
+
name: string;
|
|
90909
|
+
/** Your unique identifier for the property. */
|
|
90910
|
+
property_key: string;
|
|
90911
|
+
}> | undefined;
|
|
90912
|
+
/** List of hotel or hospitality rooms. */
|
|
90913
|
+
rooms?: Array<{
|
|
90914
|
+
/** Your display name for this location resource. */
|
|
90915
|
+
name: string;
|
|
90916
|
+
/** Your unique identifier for the room. */
|
|
90917
|
+
room_key: string;
|
|
90918
|
+
}> | undefined;
|
|
90919
|
+
/** List of shared common areas. */
|
|
90920
|
+
common_areas?: Array<{
|
|
90921
|
+
/** Your display name for this location resource. */
|
|
90922
|
+
name: string;
|
|
90923
|
+
/** Your unique identifier for the common area. */
|
|
90924
|
+
common_area_key: string;
|
|
90925
|
+
}> | undefined;
|
|
90926
|
+
/** List of multi-family residential units. */
|
|
90927
|
+
units?: Array<{
|
|
90928
|
+
/** Your display name for this location resource. */
|
|
90929
|
+
name: string;
|
|
90930
|
+
/** Your unique identifier for the unit. */
|
|
90931
|
+
unit_key: string;
|
|
90932
|
+
}> | undefined;
|
|
90933
|
+
/** List of gym or fitness facilities. */
|
|
90934
|
+
facilities?: Array<{
|
|
90935
|
+
/** Your display name for this location resource. */
|
|
90936
|
+
name: string;
|
|
90937
|
+
/** Your unique identifier for the facility. */
|
|
90938
|
+
facility_key: string;
|
|
90939
|
+
}> | undefined;
|
|
90940
|
+
/** List of buildings. */
|
|
90941
|
+
buildings?: Array<{
|
|
90942
|
+
/** Your display name for this location resource. */
|
|
90943
|
+
name: string;
|
|
90944
|
+
/** Your unique identifier for the building. */
|
|
90945
|
+
building_key: string;
|
|
90946
|
+
}> | undefined;
|
|
90947
|
+
/** List of property listings. */
|
|
90948
|
+
listings?: Array<{
|
|
90949
|
+
/** Your display name for this location resource. */
|
|
90950
|
+
name: string;
|
|
90951
|
+
/** Your unique identifier for the listing. */
|
|
90952
|
+
listing_key: string;
|
|
90953
|
+
}> | undefined;
|
|
90954
|
+
/** List of guests. */
|
|
90955
|
+
guests?: Array<{
|
|
90956
|
+
/** Your display name for this user identity resource. */
|
|
90957
|
+
name: string;
|
|
90958
|
+
/** Email address associated with the user identity. */
|
|
90959
|
+
email_address?: string | undefined;
|
|
90960
|
+
/** Phone number associated with the user identity. */
|
|
90961
|
+
phone_number?: string | undefined;
|
|
90962
|
+
/** Your unique identifier for the guest. */
|
|
90963
|
+
guest_key: string;
|
|
90964
|
+
}> | undefined;
|
|
90965
|
+
/** List of tenants. */
|
|
90966
|
+
tenants?: Array<{
|
|
90967
|
+
/** Your display name for this user identity resource. */
|
|
90968
|
+
name: string;
|
|
90969
|
+
/** Email address associated with the user identity. */
|
|
90970
|
+
email_address?: string | undefined;
|
|
90971
|
+
/** Phone number associated with the user identity. */
|
|
90972
|
+
phone_number?: string | undefined;
|
|
90973
|
+
/** Your unique identifier for the tenant. */
|
|
90974
|
+
tenant_key: string;
|
|
90975
|
+
}> | undefined;
|
|
90976
|
+
/** List of residents. */
|
|
90977
|
+
residents?: Array<{
|
|
90978
|
+
/** Your display name for this user identity resource. */
|
|
90979
|
+
name: string;
|
|
90980
|
+
/** Email address associated with the user identity. */
|
|
90981
|
+
email_address?: string | undefined;
|
|
90982
|
+
/** Phone number associated with the user identity. */
|
|
90983
|
+
phone_number?: string | undefined;
|
|
90984
|
+
/** Your unique identifier for the resident. */
|
|
90985
|
+
resident_key: string;
|
|
90986
|
+
}> | undefined;
|
|
90987
|
+
/** List of users. */
|
|
90988
|
+
users?: Array<{
|
|
90989
|
+
/** Your display name for this user identity resource. */
|
|
90990
|
+
name: string;
|
|
90991
|
+
/** Email address associated with the user identity. */
|
|
90992
|
+
email_address?: string | undefined;
|
|
90993
|
+
/** Phone number associated with the user identity. */
|
|
90994
|
+
phone_number?: string | undefined;
|
|
90995
|
+
/** Your unique identifier for the user. */
|
|
90996
|
+
user_key: string;
|
|
90997
|
+
}> | undefined;
|
|
90998
|
+
/** List of user identities. */
|
|
90999
|
+
user_identities?: Array<{
|
|
91000
|
+
/** Your display name for this user identity resource. */
|
|
91001
|
+
name: string;
|
|
91002
|
+
/** Email address associated with the user identity. */
|
|
91003
|
+
email_address?: string | undefined;
|
|
91004
|
+
/** Phone number associated with the user identity. */
|
|
91005
|
+
phone_number?: string | undefined;
|
|
91006
|
+
/** Your unique identifier for the user identity. */
|
|
91007
|
+
user_identity_key: string;
|
|
91008
|
+
}> | undefined;
|
|
91009
|
+
/** List of reservations. */
|
|
91010
|
+
reservations?: Array<{
|
|
91011
|
+
/** Your display name for this access grant resource. */
|
|
91012
|
+
name: string;
|
|
91013
|
+
/** Starting date and time for the access grant. */
|
|
91014
|
+
starts_at?: string | undefined;
|
|
91015
|
+
/** Ending date and time for the access grant. */
|
|
91016
|
+
ends_at?: string | undefined;
|
|
91017
|
+
/** Your unique identifier for the reservation. */
|
|
91018
|
+
reservation_key: string;
|
|
91019
|
+
/** Guest key associated with the access grant. */
|
|
91020
|
+
guest_key?: string | undefined;
|
|
91021
|
+
/** Tenant key associated with the access grant. */
|
|
91022
|
+
tenant_key?: string | undefined;
|
|
91023
|
+
/** Resident key associated with the access grant. */
|
|
91024
|
+
resident_key?: string | undefined;
|
|
91025
|
+
/** User key associated with the access grant. */
|
|
91026
|
+
user_key?: string | undefined;
|
|
91027
|
+
/** User identity key associated with the access grant. */
|
|
91028
|
+
user_identity_key?: string | undefined;
|
|
91029
|
+
/** Space keys associated with the access grant. */
|
|
91030
|
+
space_keys?: string[] | undefined;
|
|
91031
|
+
/** Property keys associated with the access grant. */
|
|
91032
|
+
property_keys?: string[] | undefined;
|
|
91033
|
+
/** Room keys associated with the access grant. */
|
|
91034
|
+
room_keys?: string[] | undefined;
|
|
91035
|
+
/** Common area keys associated with the access grant. */
|
|
91036
|
+
common_area_keys?: string[] | undefined;
|
|
91037
|
+
/** Unit keys associated with the access grant. */
|
|
91038
|
+
unit_keys?: string[] | undefined;
|
|
91039
|
+
/** Facility keys associated with the access grant. */
|
|
91040
|
+
facility_keys?: string[] | undefined;
|
|
91041
|
+
/** Building keys associated with the access grant. */
|
|
91042
|
+
building_keys?: string[] | undefined;
|
|
91043
|
+
/** Listing keys associated with the access grant. */
|
|
91044
|
+
listing_keys?: string[] | undefined;
|
|
91045
|
+
}> | undefined;
|
|
91046
|
+
/** List of bookings. */
|
|
91047
|
+
bookings?: Array<{
|
|
91048
|
+
/** Your display name for this access grant resource. */
|
|
91049
|
+
name: string;
|
|
91050
|
+
/** Starting date and time for the access grant. */
|
|
91051
|
+
starts_at?: string | undefined;
|
|
91052
|
+
/** Ending date and time for the access grant. */
|
|
91053
|
+
ends_at?: string | undefined;
|
|
91054
|
+
/** Your unique identifier for the booking. */
|
|
91055
|
+
booking_key: string;
|
|
91056
|
+
/** Guest key associated with the access grant. */
|
|
91057
|
+
guest_key?: string | undefined;
|
|
91058
|
+
/** Tenant key associated with the access grant. */
|
|
91059
|
+
tenant_key?: string | undefined;
|
|
91060
|
+
/** Resident key associated with the access grant. */
|
|
91061
|
+
resident_key?: string | undefined;
|
|
91062
|
+
/** User key associated with the access grant. */
|
|
91063
|
+
user_key?: string | undefined;
|
|
91064
|
+
/** User identity key associated with the access grant. */
|
|
91065
|
+
user_identity_key?: string | undefined;
|
|
91066
|
+
/** Space keys associated with the access grant. */
|
|
91067
|
+
space_keys?: string[] | undefined;
|
|
91068
|
+
/** Property keys associated with the access grant. */
|
|
91069
|
+
property_keys?: string[] | undefined;
|
|
91070
|
+
/** Room keys associated with the access grant. */
|
|
91071
|
+
room_keys?: string[] | undefined;
|
|
91072
|
+
/** Common area keys associated with the access grant. */
|
|
91073
|
+
common_area_keys?: string[] | undefined;
|
|
91074
|
+
/** Unit keys associated with the access grant. */
|
|
91075
|
+
unit_keys?: string[] | undefined;
|
|
91076
|
+
/** Facility keys associated with the access grant. */
|
|
91077
|
+
facility_keys?: string[] | undefined;
|
|
91078
|
+
/** Building keys associated with the access grant. */
|
|
91079
|
+
building_keys?: string[] | undefined;
|
|
91080
|
+
/** Listing keys associated with the access grant. */
|
|
91081
|
+
listing_keys?: string[] | undefined;
|
|
91082
|
+
}> | undefined;
|
|
91083
|
+
/** List of access grants. */
|
|
91084
|
+
access_grants?: Array<{
|
|
91085
|
+
/** Your display name for this access grant resource. */
|
|
91086
|
+
name: string;
|
|
91087
|
+
/** Starting date and time for the access grant. */
|
|
91088
|
+
starts_at?: string | undefined;
|
|
91089
|
+
/** Ending date and time for the access grant. */
|
|
91090
|
+
ends_at?: string | undefined;
|
|
91091
|
+
/** Your unique identifier for the access grant. */
|
|
91092
|
+
access_grant_key: string;
|
|
91093
|
+
/** Guest key associated with the access grant. */
|
|
91094
|
+
guest_key?: string | undefined;
|
|
91095
|
+
/** Tenant key associated with the access grant. */
|
|
91096
|
+
tenant_key?: string | undefined;
|
|
91097
|
+
/** Resident key associated with the access grant. */
|
|
91098
|
+
resident_key?: string | undefined;
|
|
91099
|
+
/** User key associated with the access grant. */
|
|
91100
|
+
user_key?: string | undefined;
|
|
91101
|
+
/** User identity key associated with the access grant. */
|
|
91102
|
+
user_identity_key?: string | undefined;
|
|
91103
|
+
/** Space keys associated with the access grant. */
|
|
91104
|
+
space_keys?: string[] | undefined;
|
|
91105
|
+
/** Property keys associated with the access grant. */
|
|
91106
|
+
property_keys?: string[] | undefined;
|
|
91107
|
+
/** Room keys associated with the access grant. */
|
|
91108
|
+
room_keys?: string[] | undefined;
|
|
91109
|
+
/** Common area keys associated with the access grant. */
|
|
91110
|
+
common_area_keys?: string[] | undefined;
|
|
91111
|
+
/** Unit keys associated with the access grant. */
|
|
91112
|
+
unit_keys?: string[] | undefined;
|
|
91113
|
+
/** Facility keys associated with the access grant. */
|
|
91114
|
+
facility_keys?: string[] | undefined;
|
|
91115
|
+
/** Building keys associated with the access grant. */
|
|
91116
|
+
building_keys?: string[] | undefined;
|
|
91117
|
+
/** Listing keys associated with the access grant. */
|
|
91118
|
+
listing_keys?: string[] | undefined;
|
|
91119
|
+
}> | undefined;
|
|
91120
|
+
} | undefined;
|
|
91121
|
+
};
|
|
91122
|
+
formData: {};
|
|
91123
|
+
jsonResponse: {
|
|
91124
|
+
/** 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.
|
|
91125
|
+
|
|
91126
|
+
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.
|
|
91127
|
+
|
|
91128
|
+
Seam hosts these flows, handling everything from account connection and device mapping to full-featured device control. */
|
|
91129
|
+
magic_link: {
|
|
91130
|
+
/** URL for the magic link. */
|
|
91131
|
+
url: string;
|
|
91132
|
+
/** Customer key for the magic link. */
|
|
91133
|
+
customer_key: string;
|
|
91134
|
+
/** Date and time at which the magic link expires. */
|
|
91135
|
+
expires_at: string;
|
|
91136
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) associated with the magic link. */
|
|
91137
|
+
workspace_id: string;
|
|
91138
|
+
/** Date and time at which the magic link was created. */
|
|
91139
|
+
created_at: string;
|
|
91140
|
+
};
|
|
91141
|
+
};
|
|
91142
|
+
};
|
|
91143
|
+
'/customers/push_data': {
|
|
91144
|
+
route: '/customers/push_data';
|
|
91145
|
+
method: 'POST';
|
|
91146
|
+
queryParams: {};
|
|
91147
|
+
jsonBody: {};
|
|
91148
|
+
commonParams: {
|
|
91149
|
+
/** Your unique identifier for the customer. */
|
|
91150
|
+
customer_key: string;
|
|
91151
|
+
/** List of general spaces or areas. */
|
|
91152
|
+
spaces?: Array<{
|
|
91153
|
+
/** Your display name for this location resource. */
|
|
91154
|
+
name: string;
|
|
91155
|
+
/** Your unique identifier for the space. */
|
|
91156
|
+
space_key: string;
|
|
91157
|
+
}> | undefined;
|
|
91158
|
+
/** List of short-term rental properties. */
|
|
91159
|
+
properties?: Array<{
|
|
91160
|
+
/** Your display name for this location resource. */
|
|
91161
|
+
name: string;
|
|
91162
|
+
/** Your unique identifier for the property. */
|
|
91163
|
+
property_key: string;
|
|
91164
|
+
}> | undefined;
|
|
91165
|
+
/** List of hotel or hospitality rooms. */
|
|
91166
|
+
rooms?: Array<{
|
|
91167
|
+
/** Your display name for this location resource. */
|
|
91168
|
+
name: string;
|
|
91169
|
+
/** Your unique identifier for the room. */
|
|
91170
|
+
room_key: string;
|
|
91171
|
+
}> | undefined;
|
|
91172
|
+
/** List of shared common areas. */
|
|
91173
|
+
common_areas?: Array<{
|
|
91174
|
+
/** Your display name for this location resource. */
|
|
91175
|
+
name: string;
|
|
91176
|
+
/** Your unique identifier for the common area. */
|
|
91177
|
+
common_area_key: string;
|
|
91178
|
+
}> | undefined;
|
|
91179
|
+
/** List of multi-family residential units. */
|
|
91180
|
+
units?: Array<{
|
|
91181
|
+
/** Your display name for this location resource. */
|
|
91182
|
+
name: string;
|
|
91183
|
+
/** Your unique identifier for the unit. */
|
|
91184
|
+
unit_key: string;
|
|
91185
|
+
}> | undefined;
|
|
91186
|
+
/** List of gym or fitness facilities. */
|
|
91187
|
+
facilities?: Array<{
|
|
91188
|
+
/** Your display name for this location resource. */
|
|
91189
|
+
name: string;
|
|
91190
|
+
/** Your unique identifier for the facility. */
|
|
91191
|
+
facility_key: string;
|
|
91192
|
+
}> | undefined;
|
|
91193
|
+
/** List of buildings. */
|
|
91194
|
+
buildings?: Array<{
|
|
91195
|
+
/** Your display name for this location resource. */
|
|
91196
|
+
name: string;
|
|
91197
|
+
/** Your unique identifier for the building. */
|
|
91198
|
+
building_key: string;
|
|
91199
|
+
}> | undefined;
|
|
91200
|
+
/** List of property listings. */
|
|
91201
|
+
listings?: Array<{
|
|
91202
|
+
/** Your display name for this location resource. */
|
|
91203
|
+
name: string;
|
|
91204
|
+
/** Your unique identifier for the listing. */
|
|
91205
|
+
listing_key: string;
|
|
91206
|
+
}> | undefined;
|
|
91207
|
+
/** List of guests. */
|
|
91208
|
+
guests?: Array<{
|
|
91209
|
+
/** Your display name for this user identity resource. */
|
|
91210
|
+
name: string;
|
|
91211
|
+
/** Email address associated with the user identity. */
|
|
91212
|
+
email_address?: string | undefined;
|
|
91213
|
+
/** Phone number associated with the user identity. */
|
|
91214
|
+
phone_number?: string | undefined;
|
|
91215
|
+
/** Your unique identifier for the guest. */
|
|
91216
|
+
guest_key: string;
|
|
91217
|
+
}> | undefined;
|
|
91218
|
+
/** List of tenants. */
|
|
91219
|
+
tenants?: Array<{
|
|
91220
|
+
/** Your display name for this user identity resource. */
|
|
91221
|
+
name: string;
|
|
91222
|
+
/** Email address associated with the user identity. */
|
|
91223
|
+
email_address?: string | undefined;
|
|
91224
|
+
/** Phone number associated with the user identity. */
|
|
91225
|
+
phone_number?: string | undefined;
|
|
91226
|
+
/** Your unique identifier for the tenant. */
|
|
91227
|
+
tenant_key: string;
|
|
91228
|
+
}> | undefined;
|
|
91229
|
+
/** List of residents. */
|
|
91230
|
+
residents?: Array<{
|
|
91231
|
+
/** Your display name for this user identity resource. */
|
|
91232
|
+
name: string;
|
|
91233
|
+
/** Email address associated with the user identity. */
|
|
91234
|
+
email_address?: string | undefined;
|
|
91235
|
+
/** Phone number associated with the user identity. */
|
|
91236
|
+
phone_number?: string | undefined;
|
|
91237
|
+
/** Your unique identifier for the resident. */
|
|
91238
|
+
resident_key: string;
|
|
91239
|
+
}> | undefined;
|
|
91240
|
+
/** List of users. */
|
|
91241
|
+
users?: Array<{
|
|
91242
|
+
/** Your display name for this user identity resource. */
|
|
91243
|
+
name: string;
|
|
91244
|
+
/** Email address associated with the user identity. */
|
|
91245
|
+
email_address?: string | undefined;
|
|
91246
|
+
/** Phone number associated with the user identity. */
|
|
91247
|
+
phone_number?: string | undefined;
|
|
91248
|
+
/** Your unique identifier for the user. */
|
|
91249
|
+
user_key: string;
|
|
91250
|
+
}> | undefined;
|
|
91251
|
+
/** List of user identities. */
|
|
91252
|
+
user_identities?: Array<{
|
|
91253
|
+
/** Your display name for this user identity resource. */
|
|
91254
|
+
name: string;
|
|
91255
|
+
/** Email address associated with the user identity. */
|
|
91256
|
+
email_address?: string | undefined;
|
|
91257
|
+
/** Phone number associated with the user identity. */
|
|
91258
|
+
phone_number?: string | undefined;
|
|
91259
|
+
/** Your unique identifier for the user identity. */
|
|
91260
|
+
user_identity_key: string;
|
|
91261
|
+
}> | undefined;
|
|
91262
|
+
/** List of reservations. */
|
|
91263
|
+
reservations?: Array<{
|
|
91264
|
+
/** Your display name for this access grant resource. */
|
|
91265
|
+
name: string;
|
|
91266
|
+
/** Starting date and time for the access grant. */
|
|
91267
|
+
starts_at?: string | undefined;
|
|
91268
|
+
/** Ending date and time for the access grant. */
|
|
91269
|
+
ends_at?: string | undefined;
|
|
91270
|
+
/** Your unique identifier for the reservation. */
|
|
91271
|
+
reservation_key: string;
|
|
91272
|
+
/** Guest key associated with the access grant. */
|
|
91273
|
+
guest_key?: string | undefined;
|
|
91274
|
+
/** Tenant key associated with the access grant. */
|
|
91275
|
+
tenant_key?: string | undefined;
|
|
91276
|
+
/** Resident key associated with the access grant. */
|
|
91277
|
+
resident_key?: string | undefined;
|
|
91278
|
+
/** User key associated with the access grant. */
|
|
91279
|
+
user_key?: string | undefined;
|
|
91280
|
+
/** User identity key associated with the access grant. */
|
|
91281
|
+
user_identity_key?: string | undefined;
|
|
91282
|
+
/** Space keys associated with the access grant. */
|
|
91283
|
+
space_keys?: string[] | undefined;
|
|
91284
|
+
/** Property keys associated with the access grant. */
|
|
91285
|
+
property_keys?: string[] | undefined;
|
|
91286
|
+
/** Room keys associated with the access grant. */
|
|
91287
|
+
room_keys?: string[] | undefined;
|
|
91288
|
+
/** Common area keys associated with the access grant. */
|
|
91289
|
+
common_area_keys?: string[] | undefined;
|
|
91290
|
+
/** Unit keys associated with the access grant. */
|
|
91291
|
+
unit_keys?: string[] | undefined;
|
|
91292
|
+
/** Facility keys associated with the access grant. */
|
|
91293
|
+
facility_keys?: string[] | undefined;
|
|
91294
|
+
/** Building keys associated with the access grant. */
|
|
91295
|
+
building_keys?: string[] | undefined;
|
|
91296
|
+
/** Listing keys associated with the access grant. */
|
|
91297
|
+
listing_keys?: string[] | undefined;
|
|
91298
|
+
}> | undefined;
|
|
91299
|
+
/** List of bookings. */
|
|
91300
|
+
bookings?: Array<{
|
|
91301
|
+
/** Your display name for this access grant resource. */
|
|
91302
|
+
name: string;
|
|
91303
|
+
/** Starting date and time for the access grant. */
|
|
91304
|
+
starts_at?: string | undefined;
|
|
91305
|
+
/** Ending date and time for the access grant. */
|
|
91306
|
+
ends_at?: string | undefined;
|
|
91307
|
+
/** Your unique identifier for the booking. */
|
|
91308
|
+
booking_key: string;
|
|
91309
|
+
/** Guest key associated with the access grant. */
|
|
91310
|
+
guest_key?: string | undefined;
|
|
91311
|
+
/** Tenant key associated with the access grant. */
|
|
91312
|
+
tenant_key?: string | undefined;
|
|
91313
|
+
/** Resident key associated with the access grant. */
|
|
91314
|
+
resident_key?: string | undefined;
|
|
91315
|
+
/** User key associated with the access grant. */
|
|
91316
|
+
user_key?: string | undefined;
|
|
91317
|
+
/** User identity key associated with the access grant. */
|
|
91318
|
+
user_identity_key?: string | undefined;
|
|
91319
|
+
/** Space keys associated with the access grant. */
|
|
91320
|
+
space_keys?: string[] | undefined;
|
|
91321
|
+
/** Property keys associated with the access grant. */
|
|
91322
|
+
property_keys?: string[] | undefined;
|
|
91323
|
+
/** Room keys associated with the access grant. */
|
|
91324
|
+
room_keys?: string[] | undefined;
|
|
91325
|
+
/** Common area keys associated with the access grant. */
|
|
91326
|
+
common_area_keys?: string[] | undefined;
|
|
91327
|
+
/** Unit keys associated with the access grant. */
|
|
91328
|
+
unit_keys?: string[] | undefined;
|
|
91329
|
+
/** Facility keys associated with the access grant. */
|
|
91330
|
+
facility_keys?: string[] | undefined;
|
|
91331
|
+
/** Building keys associated with the access grant. */
|
|
91332
|
+
building_keys?: string[] | undefined;
|
|
91333
|
+
/** Listing keys associated with the access grant. */
|
|
91334
|
+
listing_keys?: string[] | undefined;
|
|
91335
|
+
}> | undefined;
|
|
91336
|
+
/** List of access grants. */
|
|
91337
|
+
access_grants?: Array<{
|
|
91338
|
+
/** Your display name for this access grant resource. */
|
|
91339
|
+
name: string;
|
|
91340
|
+
/** Starting date and time for the access grant. */
|
|
91341
|
+
starts_at?: string | undefined;
|
|
91342
|
+
/** Ending date and time for the access grant. */
|
|
91343
|
+
ends_at?: string | undefined;
|
|
91344
|
+
/** Your unique identifier for the access grant. */
|
|
91345
|
+
access_grant_key: string;
|
|
91346
|
+
/** Guest key associated with the access grant. */
|
|
91347
|
+
guest_key?: string | undefined;
|
|
91348
|
+
/** Tenant key associated with the access grant. */
|
|
91349
|
+
tenant_key?: string | undefined;
|
|
91350
|
+
/** Resident key associated with the access grant. */
|
|
91351
|
+
resident_key?: string | undefined;
|
|
91352
|
+
/** User key associated with the access grant. */
|
|
91353
|
+
user_key?: string | undefined;
|
|
91354
|
+
/** User identity key associated with the access grant. */
|
|
91355
|
+
user_identity_key?: string | undefined;
|
|
91356
|
+
/** Space keys associated with the access grant. */
|
|
91357
|
+
space_keys?: string[] | undefined;
|
|
91358
|
+
/** Property keys associated with the access grant. */
|
|
91359
|
+
property_keys?: string[] | undefined;
|
|
91360
|
+
/** Room keys associated with the access grant. */
|
|
91361
|
+
room_keys?: string[] | undefined;
|
|
91362
|
+
/** Common area keys associated with the access grant. */
|
|
91363
|
+
common_area_keys?: string[] | undefined;
|
|
91364
|
+
/** Unit keys associated with the access grant. */
|
|
91365
|
+
unit_keys?: string[] | undefined;
|
|
91366
|
+
/** Facility keys associated with the access grant. */
|
|
91367
|
+
facility_keys?: string[] | undefined;
|
|
91368
|
+
/** Building keys associated with the access grant. */
|
|
91369
|
+
building_keys?: string[] | undefined;
|
|
91370
|
+
/** Listing keys associated with the access grant. */
|
|
91371
|
+
listing_keys?: string[] | undefined;
|
|
91372
|
+
}> | undefined;
|
|
91373
|
+
};
|
|
91374
|
+
formData: {};
|
|
91375
|
+
jsonResponse: {};
|
|
91376
|
+
};
|
|
89708
91377
|
'/devices/delete': {
|
|
89709
91378
|
route: '/devices/delete';
|
|
89710
91379
|
method: 'DELETE' | 'POST';
|
|
@@ -112440,6 +114109,46 @@ interface Routes {
|
|
|
112440
114109
|
}>;
|
|
112441
114110
|
};
|
|
112442
114111
|
};
|
|
114112
|
+
'/seam/customer/v1/portals/get': {
|
|
114113
|
+
route: '/seam/customer/v1/portals/get';
|
|
114114
|
+
method: 'GET';
|
|
114115
|
+
queryParams: {};
|
|
114116
|
+
jsonBody: {};
|
|
114117
|
+
commonParams: {
|
|
114118
|
+
/** Customer portal ID. */
|
|
114119
|
+
customer_portal_id: string;
|
|
114120
|
+
};
|
|
114121
|
+
formData: {};
|
|
114122
|
+
jsonResponse: {
|
|
114123
|
+
customer_portal: {
|
|
114124
|
+
features?: {
|
|
114125
|
+
connect?: {
|
|
114126
|
+
exclude?: boolean | undefined;
|
|
114127
|
+
} | undefined;
|
|
114128
|
+
manage_devices?: {
|
|
114129
|
+
exclude?: boolean | undefined;
|
|
114130
|
+
} | undefined;
|
|
114131
|
+
organize?: {
|
|
114132
|
+
exclude?: boolean | undefined;
|
|
114133
|
+
} | undefined;
|
|
114134
|
+
} | undefined;
|
|
114135
|
+
/** Business vertical of the customer portal. */
|
|
114136
|
+
business_vertical?: ('short_term_rental' | 'hospitality' | 'multi_family' | 'gym_management' | 'property_tours') | undefined;
|
|
114137
|
+
};
|
|
114138
|
+
};
|
|
114139
|
+
};
|
|
114140
|
+
'/seam/customer/v1/settings/update': {
|
|
114141
|
+
route: '/seam/customer/v1/settings/update';
|
|
114142
|
+
method: 'POST' | 'PATCH';
|
|
114143
|
+
queryParams: {};
|
|
114144
|
+
jsonBody: {
|
|
114145
|
+
/** Business vertical to set on the workspace. */
|
|
114146
|
+
business_vertical?: ('short_term_rental' | 'hospitality' | 'multi_family' | 'gym_management' | 'property_tours') | undefined;
|
|
114147
|
+
};
|
|
114148
|
+
commonParams: {};
|
|
114149
|
+
formData: {};
|
|
114150
|
+
jsonResponse: {};
|
|
114151
|
+
};
|
|
112443
114152
|
'/seam/instant_key/v1/client_sessions/exchange_short_code': {
|
|
112444
114153
|
route: '/seam/instant_key/v1/client_sessions/exchange_short_code';
|
|
112445
114154
|
method: 'POST';
|
|
@@ -112908,45 +114617,6 @@ interface Routes {
|
|
|
112908
114617
|
}>;
|
|
112909
114618
|
};
|
|
112910
114619
|
};
|
|
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
114620
|
'/spaces/add_acs_entrances': {
|
|
112951
114621
|
route: '/spaces/add_acs_entrances';
|
|
112952
114622
|
method: 'POST' | 'PUT';
|
|
@@ -129345,14 +131015,10 @@ interface Routes {
|
|
|
129345
131015
|
customer_key: string;
|
|
129346
131016
|
/** Optional list of spaces that you want to include in the new building block magic link. */
|
|
129347
131017
|
spaces?: Array<{
|
|
129348
|
-
/**
|
|
129349
|
-
space_key: string;
|
|
129350
|
-
/** Name of the space resource. */
|
|
131018
|
+
/** Your display name for this location resource. */
|
|
129351
131019
|
name: string;
|
|
129352
|
-
/**
|
|
129353
|
-
|
|
129354
|
-
/** Custom metadata associated with the space resource. */
|
|
129355
|
-
custom_metadata?: Record<string, string> | undefined;
|
|
131020
|
+
/** Your unique identifier for the space. */
|
|
131021
|
+
space_key: string;
|
|
129356
131022
|
}> | undefined;
|
|
129357
131023
|
};
|
|
129358
131024
|
formData: {};
|
|
@@ -129420,14 +131086,10 @@ interface Routes {
|
|
|
129420
131086
|
customer_key: string;
|
|
129421
131087
|
/** Optional list of spaces that you want to include in the new building block magic link. */
|
|
129422
131088
|
spaces?: Array<{
|
|
129423
|
-
/**
|
|
129424
|
-
space_key: string;
|
|
129425
|
-
/** Name of the space resource. */
|
|
131089
|
+
/** Your display name for this location resource. */
|
|
129426
131090
|
name: string;
|
|
129427
|
-
/**
|
|
129428
|
-
|
|
129429
|
-
/** Custom metadata associated with the space resource. */
|
|
129430
|
-
custom_metadata?: Record<string, string> | undefined;
|
|
131091
|
+
/** Your unique identifier for the space. */
|
|
131092
|
+
space_key: string;
|
|
129431
131093
|
}> | undefined;
|
|
129432
131094
|
};
|
|
129433
131095
|
formData: {};
|
|
@@ -129453,65 +131115,6 @@ interface Routes {
|
|
|
129453
131115
|
};
|
|
129454
131116
|
};
|
|
129455
131117
|
};
|
|
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
131118
|
'/user_identities/add_acs_user': {
|
|
129516
131119
|
route: '/user_identities/add_acs_user';
|
|
129517
131120
|
method: 'POST' | 'PUT';
|