@seamapi/types 1.565.0 → 1.567.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 +308 -779
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +643 -1002
- package/dist/index.cjs +308 -779
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/acs/acs-entrance.d.ts +3 -0
- package/lib/seam/connect/models/acs/acs-entrance.js +3 -0
- package/lib/seam/connect/models/acs/acs-entrance.js.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +552 -118
- package/lib/seam/connect/models/batch.js +5 -6
- package/lib/seam/connect/models/batch.js.map +1 -1
- package/lib/seam/connect/models/customer/customer-portal.d.ts +52 -2
- package/lib/seam/connect/models/customer/customer-portal.js +10 -2
- package/lib/seam/connect/models/customer/customer-portal.js.map +1 -1
- package/lib/seam/connect/models/phones/phone-session.d.ts +16 -0
- package/lib/seam/connect/openapi.d.ts +538 -939
- package/lib/seam/connect/openapi.js +301 -775
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +39 -5
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-entrance.ts +3 -0
- package/src/lib/seam/connect/models/batch.ts +5 -6
- package/src/lib/seam/connect/models/customer/customer-portal.ts +12 -2
- package/src/lib/seam/connect/openapi.ts +303 -877
- package/src/lib/seam/connect/route-types.ts +103 -55
package/dist/connect.d.cts
CHANGED
|
@@ -4591,6 +4591,7 @@ type AcsEncoder = z.infer<typeof acs_encoder>;
|
|
|
4591
4591
|
declare const acs_entrance: z.ZodObject<{
|
|
4592
4592
|
acs_system_id: z.ZodString;
|
|
4593
4593
|
acs_entrance_id: z.ZodString;
|
|
4594
|
+
space_ids: z.ZodArray<z.ZodString, "many">;
|
|
4594
4595
|
created_at: z.ZodString;
|
|
4595
4596
|
display_name: z.ZodString;
|
|
4596
4597
|
connected_account_id: z.ZodString;
|
|
@@ -4759,6 +4760,7 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
4759
4760
|
error_code: string;
|
|
4760
4761
|
}[];
|
|
4761
4762
|
connected_account_id: string;
|
|
4763
|
+
space_ids: string[];
|
|
4762
4764
|
acs_system_id: string;
|
|
4763
4765
|
acs_entrance_id: string;
|
|
4764
4766
|
salto_ks_metadata?: {
|
|
@@ -4823,6 +4825,7 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
4823
4825
|
error_code: string;
|
|
4824
4826
|
}[];
|
|
4825
4827
|
connected_account_id: string;
|
|
4828
|
+
space_ids: string[];
|
|
4826
4829
|
acs_system_id: string;
|
|
4827
4830
|
acs_entrance_id: string;
|
|
4828
4831
|
salto_ks_metadata?: {
|
|
@@ -14604,6 +14607,7 @@ declare const batch: z.ZodObject<{
|
|
|
14604
14607
|
acs_entrances: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14605
14608
|
acs_system_id: z.ZodString;
|
|
14606
14609
|
acs_entrance_id: z.ZodString;
|
|
14610
|
+
space_ids: z.ZodArray<z.ZodString, "many">;
|
|
14607
14611
|
created_at: z.ZodString;
|
|
14608
14612
|
display_name: z.ZodString;
|
|
14609
14613
|
connected_account_id: z.ZodString;
|
|
@@ -14772,6 +14776,7 @@ declare const batch: z.ZodObject<{
|
|
|
14772
14776
|
error_code: string;
|
|
14773
14777
|
}[];
|
|
14774
14778
|
connected_account_id: string;
|
|
14779
|
+
space_ids: string[];
|
|
14775
14780
|
acs_system_id: string;
|
|
14776
14781
|
acs_entrance_id: string;
|
|
14777
14782
|
salto_ks_metadata?: {
|
|
@@ -14836,6 +14841,7 @@ declare const batch: z.ZodObject<{
|
|
|
14836
14841
|
error_code: string;
|
|
14837
14842
|
}[];
|
|
14838
14843
|
connected_account_id: string;
|
|
14844
|
+
space_ids: string[];
|
|
14839
14845
|
acs_system_id: string;
|
|
14840
14846
|
acs_entrance_id: string;
|
|
14841
14847
|
salto_ks_metadata?: {
|
|
@@ -31644,6 +31650,7 @@ declare const batch: z.ZodObject<{
|
|
|
31644
31650
|
error_code: string;
|
|
31645
31651
|
}[];
|
|
31646
31652
|
connected_account_id: string;
|
|
31653
|
+
space_ids: string[];
|
|
31647
31654
|
acs_system_id: string;
|
|
31648
31655
|
acs_entrance_id: string;
|
|
31649
31656
|
salto_ks_metadata?: {
|
|
@@ -31861,6 +31868,35 @@ declare const batch: z.ZodObject<{
|
|
|
31861
31868
|
customization_profile_id?: string | undefined;
|
|
31862
31869
|
is_encoding_required?: boolean | undefined;
|
|
31863
31870
|
}[] | undefined;
|
|
31871
|
+
instant_keys?: {
|
|
31872
|
+
workspace_id: string;
|
|
31873
|
+
created_at: string;
|
|
31874
|
+
user_identity_id: string;
|
|
31875
|
+
instant_key_url: string;
|
|
31876
|
+
client_session_id: string;
|
|
31877
|
+
expires_at: string;
|
|
31878
|
+
instant_key_id: string;
|
|
31879
|
+
customization_profile_id?: string | undefined;
|
|
31880
|
+
customization?: {
|
|
31881
|
+
logo_url?: string | undefined;
|
|
31882
|
+
primary_color?: string | undefined;
|
|
31883
|
+
secondary_color?: string | undefined;
|
|
31884
|
+
} | undefined;
|
|
31885
|
+
}[] | undefined;
|
|
31886
|
+
client_sessions?: {
|
|
31887
|
+
workspace_id: string;
|
|
31888
|
+
created_at: string;
|
|
31889
|
+
connected_account_ids: string[];
|
|
31890
|
+
client_session_id: string;
|
|
31891
|
+
expires_at: string;
|
|
31892
|
+
token: string;
|
|
31893
|
+
user_identifier_key: string | null;
|
|
31894
|
+
device_count: number;
|
|
31895
|
+
connect_webview_ids: string[];
|
|
31896
|
+
user_identity_ids: string[];
|
|
31897
|
+
customer_key?: string | undefined;
|
|
31898
|
+
user_identity_id?: string | undefined;
|
|
31899
|
+
}[] | undefined;
|
|
31864
31900
|
workspaces?: {
|
|
31865
31901
|
name: string;
|
|
31866
31902
|
workspace_id: string;
|
|
@@ -32880,20 +32916,6 @@ declare const batch: z.ZodObject<{
|
|
|
32880
32916
|
result: null;
|
|
32881
32917
|
action_type: "UNLOCK_DOOR";
|
|
32882
32918
|
})[] | undefined;
|
|
32883
|
-
client_sessions?: {
|
|
32884
|
-
workspace_id: string;
|
|
32885
|
-
created_at: string;
|
|
32886
|
-
connected_account_ids: string[];
|
|
32887
|
-
client_session_id: string;
|
|
32888
|
-
expires_at: string;
|
|
32889
|
-
token: string;
|
|
32890
|
-
user_identifier_key: string | null;
|
|
32891
|
-
device_count: number;
|
|
32892
|
-
connect_webview_ids: string[];
|
|
32893
|
-
user_identity_ids: string[];
|
|
32894
|
-
customer_key?: string | undefined;
|
|
32895
|
-
user_identity_id?: string | undefined;
|
|
32896
|
-
}[] | undefined;
|
|
32897
32919
|
unmanaged_acs_users?: {
|
|
32898
32920
|
display_name: string;
|
|
32899
32921
|
workspace_id: string;
|
|
@@ -34217,21 +34239,6 @@ declare const batch: z.ZodObject<{
|
|
|
34217
34239
|
event_type: "phone.deactivated";
|
|
34218
34240
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
34219
34241
|
})[] | undefined;
|
|
34220
|
-
instant_keys?: {
|
|
34221
|
-
workspace_id: string;
|
|
34222
|
-
created_at: string;
|
|
34223
|
-
user_identity_id: string;
|
|
34224
|
-
instant_key_url: string;
|
|
34225
|
-
client_session_id: string;
|
|
34226
|
-
expires_at: string;
|
|
34227
|
-
instant_key_id: string;
|
|
34228
|
-
customization_profile_id?: string | undefined;
|
|
34229
|
-
customization?: {
|
|
34230
|
-
logo_url?: string | undefined;
|
|
34231
|
-
primary_color?: string | undefined;
|
|
34232
|
-
secondary_color?: string | undefined;
|
|
34233
|
-
} | undefined;
|
|
34234
|
-
}[] | undefined;
|
|
34235
34242
|
access_codes?: {
|
|
34236
34243
|
code: string | null;
|
|
34237
34244
|
type: "time_bound" | "ongoing";
|
|
@@ -35543,6 +35550,7 @@ declare const batch: z.ZodObject<{
|
|
|
35543
35550
|
error_code: string;
|
|
35544
35551
|
}[];
|
|
35545
35552
|
connected_account_id: string;
|
|
35553
|
+
space_ids: string[];
|
|
35546
35554
|
acs_system_id: string;
|
|
35547
35555
|
acs_entrance_id: string;
|
|
35548
35556
|
salto_ks_metadata?: {
|
|
@@ -35760,6 +35768,35 @@ declare const batch: z.ZodObject<{
|
|
|
35760
35768
|
customization_profile_id?: string | undefined;
|
|
35761
35769
|
is_encoding_required?: boolean | undefined;
|
|
35762
35770
|
}[] | undefined;
|
|
35771
|
+
instant_keys?: {
|
|
35772
|
+
workspace_id: string;
|
|
35773
|
+
created_at: string;
|
|
35774
|
+
user_identity_id: string;
|
|
35775
|
+
instant_key_url: string;
|
|
35776
|
+
client_session_id: string;
|
|
35777
|
+
expires_at: string;
|
|
35778
|
+
instant_key_id: string;
|
|
35779
|
+
customization_profile_id?: string | undefined;
|
|
35780
|
+
customization?: {
|
|
35781
|
+
logo_url?: string | undefined;
|
|
35782
|
+
primary_color?: string | undefined;
|
|
35783
|
+
secondary_color?: string | undefined;
|
|
35784
|
+
} | undefined;
|
|
35785
|
+
}[] | undefined;
|
|
35786
|
+
client_sessions?: {
|
|
35787
|
+
workspace_id: string;
|
|
35788
|
+
created_at: string;
|
|
35789
|
+
connected_account_ids: string[];
|
|
35790
|
+
client_session_id: string;
|
|
35791
|
+
expires_at: string;
|
|
35792
|
+
token: string;
|
|
35793
|
+
user_identifier_key: string | null;
|
|
35794
|
+
device_count: number;
|
|
35795
|
+
connect_webview_ids: string[];
|
|
35796
|
+
user_identity_ids: string[];
|
|
35797
|
+
customer_key?: string | undefined;
|
|
35798
|
+
user_identity_id?: string | undefined;
|
|
35799
|
+
}[] | undefined;
|
|
35763
35800
|
workspaces?: {
|
|
35764
35801
|
name: string;
|
|
35765
35802
|
workspace_id: string;
|
|
@@ -36779,20 +36816,6 @@ declare const batch: z.ZodObject<{
|
|
|
36779
36816
|
result: null;
|
|
36780
36817
|
action_type: "UNLOCK_DOOR";
|
|
36781
36818
|
})[] | undefined;
|
|
36782
|
-
client_sessions?: {
|
|
36783
|
-
workspace_id: string;
|
|
36784
|
-
created_at: string;
|
|
36785
|
-
connected_account_ids: string[];
|
|
36786
|
-
client_session_id: string;
|
|
36787
|
-
expires_at: string;
|
|
36788
|
-
token: string;
|
|
36789
|
-
user_identifier_key: string | null;
|
|
36790
|
-
device_count: number;
|
|
36791
|
-
connect_webview_ids: string[];
|
|
36792
|
-
user_identity_ids: string[];
|
|
36793
|
-
customer_key?: string | undefined;
|
|
36794
|
-
user_identity_id?: string | undefined;
|
|
36795
|
-
}[] | undefined;
|
|
36796
36819
|
unmanaged_acs_users?: {
|
|
36797
36820
|
display_name: string;
|
|
36798
36821
|
workspace_id: string;
|
|
@@ -38116,21 +38139,6 @@ declare const batch: z.ZodObject<{
|
|
|
38116
38139
|
event_type: "phone.deactivated";
|
|
38117
38140
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
38118
38141
|
})[] | undefined;
|
|
38119
|
-
instant_keys?: {
|
|
38120
|
-
workspace_id: string;
|
|
38121
|
-
created_at: string;
|
|
38122
|
-
user_identity_id: string;
|
|
38123
|
-
instant_key_url: string;
|
|
38124
|
-
client_session_id: string;
|
|
38125
|
-
expires_at: string;
|
|
38126
|
-
instant_key_id: string;
|
|
38127
|
-
customization_profile_id?: string | undefined;
|
|
38128
|
-
customization?: {
|
|
38129
|
-
logo_url?: string | undefined;
|
|
38130
|
-
primary_color?: string | undefined;
|
|
38131
|
-
secondary_color?: string | undefined;
|
|
38132
|
-
} | undefined;
|
|
38133
|
-
}[] | undefined;
|
|
38134
38142
|
access_codes?: {
|
|
38135
38143
|
code: string | null;
|
|
38136
38144
|
type: "time_bound" | "ongoing";
|
|
@@ -52692,6 +52700,14 @@ declare const _default: {
|
|
|
52692
52700
|
};
|
|
52693
52701
|
type: string;
|
|
52694
52702
|
};
|
|
52703
|
+
space_ids: {
|
|
52704
|
+
description: string;
|
|
52705
|
+
items: {
|
|
52706
|
+
format: string;
|
|
52707
|
+
type: string;
|
|
52708
|
+
};
|
|
52709
|
+
type: string;
|
|
52710
|
+
};
|
|
52695
52711
|
visionline_metadata: {
|
|
52696
52712
|
description: string;
|
|
52697
52713
|
properties: {
|
|
@@ -63002,6 +63018,14 @@ declare const _default: {
|
|
|
63002
63018
|
};
|
|
63003
63019
|
type: string;
|
|
63004
63020
|
};
|
|
63021
|
+
space_ids: {
|
|
63022
|
+
description: string;
|
|
63023
|
+
items: {
|
|
63024
|
+
format: string;
|
|
63025
|
+
type: string;
|
|
63026
|
+
};
|
|
63027
|
+
type: string;
|
|
63028
|
+
};
|
|
63005
63029
|
visionline_metadata: {
|
|
63006
63030
|
description: string;
|
|
63007
63031
|
properties: {
|
|
@@ -80997,6 +81021,13 @@ declare const _default: {
|
|
|
80997
81021
|
description: string;
|
|
80998
81022
|
type: string;
|
|
80999
81023
|
};
|
|
81024
|
+
excluded_providers: {
|
|
81025
|
+
description: string;
|
|
81026
|
+
items: {
|
|
81027
|
+
type: string;
|
|
81028
|
+
};
|
|
81029
|
+
type: string;
|
|
81030
|
+
};
|
|
81000
81031
|
};
|
|
81001
81032
|
type: string;
|
|
81002
81033
|
};
|
|
@@ -81037,149 +81068,183 @@ declare const _default: {
|
|
|
81037
81068
|
properties: {
|
|
81038
81069
|
manage: {
|
|
81039
81070
|
oneOf: ({
|
|
81040
|
-
|
|
81041
|
-
|
|
81042
|
-
|
|
81071
|
+
oneOf: ({
|
|
81072
|
+
properties: {
|
|
81073
|
+
space_key: {
|
|
81074
|
+
type: string;
|
|
81075
|
+
};
|
|
81076
|
+
property_key?: never;
|
|
81077
|
+
room_key?: never;
|
|
81078
|
+
common_area_key?: never;
|
|
81079
|
+
unit_key?: never;
|
|
81080
|
+
facility_key?: never;
|
|
81081
|
+
building_key?: never;
|
|
81082
|
+
listing_key?: never;
|
|
81083
|
+
property_listing_key?: never;
|
|
81043
81084
|
};
|
|
81044
|
-
|
|
81045
|
-
|
|
81046
|
-
|
|
81047
|
-
|
|
81048
|
-
|
|
81049
|
-
|
|
81050
|
-
|
|
81051
|
-
|
|
81052
|
-
|
|
81053
|
-
|
|
81054
|
-
|
|
81055
|
-
|
|
81056
|
-
|
|
81057
|
-
|
|
81058
|
-
|
|
81085
|
+
required: string[];
|
|
81086
|
+
type: string;
|
|
81087
|
+
} | {
|
|
81088
|
+
properties: {
|
|
81089
|
+
property_key: {
|
|
81090
|
+
type: string;
|
|
81091
|
+
};
|
|
81092
|
+
space_key?: never;
|
|
81093
|
+
room_key?: never;
|
|
81094
|
+
common_area_key?: never;
|
|
81095
|
+
unit_key?: never;
|
|
81096
|
+
facility_key?: never;
|
|
81097
|
+
building_key?: never;
|
|
81098
|
+
listing_key?: never;
|
|
81099
|
+
property_listing_key?: never;
|
|
81059
81100
|
};
|
|
81060
|
-
|
|
81061
|
-
|
|
81062
|
-
|
|
81063
|
-
|
|
81064
|
-
|
|
81065
|
-
|
|
81066
|
-
|
|
81067
|
-
|
|
81068
|
-
|
|
81069
|
-
|
|
81070
|
-
|
|
81071
|
-
|
|
81072
|
-
|
|
81073
|
-
|
|
81074
|
-
|
|
81101
|
+
required: string[];
|
|
81102
|
+
type: string;
|
|
81103
|
+
} | {
|
|
81104
|
+
properties: {
|
|
81105
|
+
room_key: {
|
|
81106
|
+
type: string;
|
|
81107
|
+
};
|
|
81108
|
+
space_key?: never;
|
|
81109
|
+
property_key?: never;
|
|
81110
|
+
common_area_key?: never;
|
|
81111
|
+
unit_key?: never;
|
|
81112
|
+
facility_key?: never;
|
|
81113
|
+
building_key?: never;
|
|
81114
|
+
listing_key?: never;
|
|
81115
|
+
property_listing_key?: never;
|
|
81075
81116
|
};
|
|
81076
|
-
|
|
81077
|
-
|
|
81078
|
-
|
|
81079
|
-
|
|
81080
|
-
|
|
81081
|
-
|
|
81082
|
-
|
|
81083
|
-
|
|
81084
|
-
|
|
81085
|
-
|
|
81086
|
-
|
|
81087
|
-
|
|
81088
|
-
|
|
81089
|
-
|
|
81090
|
-
|
|
81117
|
+
required: string[];
|
|
81118
|
+
type: string;
|
|
81119
|
+
} | {
|
|
81120
|
+
properties: {
|
|
81121
|
+
common_area_key: {
|
|
81122
|
+
type: string;
|
|
81123
|
+
};
|
|
81124
|
+
space_key?: never;
|
|
81125
|
+
property_key?: never;
|
|
81126
|
+
room_key?: never;
|
|
81127
|
+
unit_key?: never;
|
|
81128
|
+
facility_key?: never;
|
|
81129
|
+
building_key?: never;
|
|
81130
|
+
listing_key?: never;
|
|
81131
|
+
property_listing_key?: never;
|
|
81091
81132
|
};
|
|
81092
|
-
|
|
81093
|
-
|
|
81094
|
-
|
|
81095
|
-
|
|
81096
|
-
|
|
81097
|
-
|
|
81098
|
-
|
|
81099
|
-
|
|
81100
|
-
|
|
81101
|
-
|
|
81102
|
-
|
|
81103
|
-
|
|
81104
|
-
|
|
81105
|
-
|
|
81106
|
-
|
|
81133
|
+
required: string[];
|
|
81134
|
+
type: string;
|
|
81135
|
+
} | {
|
|
81136
|
+
properties: {
|
|
81137
|
+
unit_key: {
|
|
81138
|
+
type: string;
|
|
81139
|
+
};
|
|
81140
|
+
space_key?: never;
|
|
81141
|
+
property_key?: never;
|
|
81142
|
+
room_key?: never;
|
|
81143
|
+
common_area_key?: never;
|
|
81144
|
+
facility_key?: never;
|
|
81145
|
+
building_key?: never;
|
|
81146
|
+
listing_key?: never;
|
|
81147
|
+
property_listing_key?: never;
|
|
81107
81148
|
};
|
|
81108
|
-
|
|
81109
|
-
|
|
81110
|
-
|
|
81111
|
-
|
|
81112
|
-
|
|
81113
|
-
|
|
81114
|
-
|
|
81115
|
-
|
|
81116
|
-
|
|
81117
|
-
|
|
81118
|
-
|
|
81119
|
-
|
|
81120
|
-
|
|
81121
|
-
|
|
81122
|
-
|
|
81149
|
+
required: string[];
|
|
81150
|
+
type: string;
|
|
81151
|
+
} | {
|
|
81152
|
+
properties: {
|
|
81153
|
+
facility_key: {
|
|
81154
|
+
type: string;
|
|
81155
|
+
};
|
|
81156
|
+
space_key?: never;
|
|
81157
|
+
property_key?: never;
|
|
81158
|
+
room_key?: never;
|
|
81159
|
+
common_area_key?: never;
|
|
81160
|
+
unit_key?: never;
|
|
81161
|
+
building_key?: never;
|
|
81162
|
+
listing_key?: never;
|
|
81163
|
+
property_listing_key?: never;
|
|
81123
81164
|
};
|
|
81124
|
-
|
|
81125
|
-
|
|
81126
|
-
|
|
81127
|
-
|
|
81128
|
-
|
|
81129
|
-
|
|
81130
|
-
|
|
81131
|
-
|
|
81132
|
-
|
|
81133
|
-
|
|
81134
|
-
|
|
81135
|
-
|
|
81136
|
-
|
|
81137
|
-
|
|
81138
|
-
|
|
81165
|
+
required: string[];
|
|
81166
|
+
type: string;
|
|
81167
|
+
} | {
|
|
81168
|
+
properties: {
|
|
81169
|
+
building_key: {
|
|
81170
|
+
type: string;
|
|
81171
|
+
};
|
|
81172
|
+
space_key?: never;
|
|
81173
|
+
property_key?: never;
|
|
81174
|
+
room_key?: never;
|
|
81175
|
+
common_area_key?: never;
|
|
81176
|
+
unit_key?: never;
|
|
81177
|
+
facility_key?: never;
|
|
81178
|
+
listing_key?: never;
|
|
81179
|
+
property_listing_key?: never;
|
|
81139
81180
|
};
|
|
81140
|
-
|
|
81141
|
-
|
|
81142
|
-
|
|
81143
|
-
|
|
81144
|
-
|
|
81145
|
-
|
|
81146
|
-
|
|
81147
|
-
|
|
81148
|
-
|
|
81149
|
-
|
|
81150
|
-
|
|
81151
|
-
|
|
81152
|
-
|
|
81153
|
-
|
|
81154
|
-
|
|
81181
|
+
required: string[];
|
|
81182
|
+
type: string;
|
|
81183
|
+
} | {
|
|
81184
|
+
properties: {
|
|
81185
|
+
listing_key: {
|
|
81186
|
+
type: string;
|
|
81187
|
+
};
|
|
81188
|
+
space_key?: never;
|
|
81189
|
+
property_key?: never;
|
|
81190
|
+
room_key?: never;
|
|
81191
|
+
common_area_key?: never;
|
|
81192
|
+
unit_key?: never;
|
|
81193
|
+
facility_key?: never;
|
|
81194
|
+
building_key?: never;
|
|
81195
|
+
property_listing_key?: never;
|
|
81155
81196
|
};
|
|
81156
|
-
|
|
81157
|
-
|
|
81158
|
-
|
|
81159
|
-
|
|
81160
|
-
|
|
81161
|
-
|
|
81162
|
-
|
|
81163
|
-
|
|
81164
|
-
|
|
81165
|
-
|
|
81166
|
-
|
|
81197
|
+
required: string[];
|
|
81198
|
+
type: string;
|
|
81199
|
+
} | {
|
|
81200
|
+
properties: {
|
|
81201
|
+
property_listing_key: {
|
|
81202
|
+
type: string;
|
|
81203
|
+
};
|
|
81204
|
+
space_key?: never;
|
|
81205
|
+
property_key?: never;
|
|
81206
|
+
room_key?: never;
|
|
81207
|
+
common_area_key?: never;
|
|
81208
|
+
unit_key?: never;
|
|
81209
|
+
facility_key?: never;
|
|
81210
|
+
building_key?: never;
|
|
81211
|
+
listing_key?: never;
|
|
81212
|
+
};
|
|
81213
|
+
required: string[];
|
|
81214
|
+
type: string;
|
|
81215
|
+
})[];
|
|
81167
81216
|
} | {
|
|
81168
|
-
|
|
81169
|
-
|
|
81170
|
-
|
|
81217
|
+
oneOf: ({
|
|
81218
|
+
properties: {
|
|
81219
|
+
reservation_key: {
|
|
81220
|
+
type: string;
|
|
81221
|
+
};
|
|
81222
|
+
booking_key?: never;
|
|
81223
|
+
access_grant_key?: never;
|
|
81171
81224
|
};
|
|
81172
|
-
|
|
81173
|
-
|
|
81174
|
-
|
|
81175
|
-
|
|
81176
|
-
|
|
81177
|
-
|
|
81178
|
-
|
|
81179
|
-
|
|
81180
|
-
|
|
81181
|
-
|
|
81182
|
-
|
|
81225
|
+
required: string[];
|
|
81226
|
+
type: string;
|
|
81227
|
+
} | {
|
|
81228
|
+
properties: {
|
|
81229
|
+
booking_key: {
|
|
81230
|
+
type: string;
|
|
81231
|
+
};
|
|
81232
|
+
reservation_key?: never;
|
|
81233
|
+
access_grant_key?: never;
|
|
81234
|
+
};
|
|
81235
|
+
required: string[];
|
|
81236
|
+
type: string;
|
|
81237
|
+
} | {
|
|
81238
|
+
properties: {
|
|
81239
|
+
access_grant_key: {
|
|
81240
|
+
type: string;
|
|
81241
|
+
};
|
|
81242
|
+
reservation_key?: never;
|
|
81243
|
+
booking_key?: never;
|
|
81244
|
+
};
|
|
81245
|
+
required: string[];
|
|
81246
|
+
type: string;
|
|
81247
|
+
})[];
|
|
81183
81248
|
})[];
|
|
81184
81249
|
};
|
|
81185
81250
|
};
|
|
@@ -91510,6 +91575,12 @@ declare const _default: {
|
|
|
91510
91575
|
exclude: {
|
|
91511
91576
|
type: string;
|
|
91512
91577
|
};
|
|
91578
|
+
excluded_providers: {
|
|
91579
|
+
items: {
|
|
91580
|
+
type: string;
|
|
91581
|
+
};
|
|
91582
|
+
type: string;
|
|
91583
|
+
};
|
|
91513
91584
|
};
|
|
91514
91585
|
type: string;
|
|
91515
91586
|
};
|
|
@@ -91539,149 +91610,183 @@ declare const _default: {
|
|
|
91539
91610
|
properties: {
|
|
91540
91611
|
manage: {
|
|
91541
91612
|
oneOf: ({
|
|
91542
|
-
|
|
91543
|
-
|
|
91544
|
-
|
|
91613
|
+
oneOf: ({
|
|
91614
|
+
properties: {
|
|
91615
|
+
space_key: {
|
|
91616
|
+
type: string;
|
|
91617
|
+
};
|
|
91618
|
+
property_key?: never;
|
|
91619
|
+
room_key?: never;
|
|
91620
|
+
common_area_key?: never;
|
|
91621
|
+
unit_key?: never;
|
|
91622
|
+
facility_key?: never;
|
|
91623
|
+
building_key?: never;
|
|
91624
|
+
listing_key?: never;
|
|
91625
|
+
property_listing_key?: never;
|
|
91545
91626
|
};
|
|
91546
|
-
|
|
91547
|
-
|
|
91548
|
-
|
|
91549
|
-
|
|
91550
|
-
|
|
91551
|
-
|
|
91552
|
-
|
|
91553
|
-
|
|
91554
|
-
|
|
91555
|
-
|
|
91556
|
-
|
|
91557
|
-
|
|
91558
|
-
|
|
91559
|
-
|
|
91560
|
-
|
|
91627
|
+
required: string[];
|
|
91628
|
+
type: string;
|
|
91629
|
+
} | {
|
|
91630
|
+
properties: {
|
|
91631
|
+
property_key: {
|
|
91632
|
+
type: string;
|
|
91633
|
+
};
|
|
91634
|
+
space_key?: never;
|
|
91635
|
+
room_key?: never;
|
|
91636
|
+
common_area_key?: never;
|
|
91637
|
+
unit_key?: never;
|
|
91638
|
+
facility_key?: never;
|
|
91639
|
+
building_key?: never;
|
|
91640
|
+
listing_key?: never;
|
|
91641
|
+
property_listing_key?: never;
|
|
91561
91642
|
};
|
|
91562
|
-
|
|
91563
|
-
|
|
91564
|
-
|
|
91565
|
-
|
|
91566
|
-
|
|
91567
|
-
|
|
91568
|
-
|
|
91569
|
-
|
|
91570
|
-
|
|
91571
|
-
|
|
91572
|
-
|
|
91573
|
-
|
|
91574
|
-
|
|
91575
|
-
|
|
91576
|
-
|
|
91643
|
+
required: string[];
|
|
91644
|
+
type: string;
|
|
91645
|
+
} | {
|
|
91646
|
+
properties: {
|
|
91647
|
+
room_key: {
|
|
91648
|
+
type: string;
|
|
91649
|
+
};
|
|
91650
|
+
space_key?: never;
|
|
91651
|
+
property_key?: never;
|
|
91652
|
+
common_area_key?: never;
|
|
91653
|
+
unit_key?: never;
|
|
91654
|
+
facility_key?: never;
|
|
91655
|
+
building_key?: never;
|
|
91656
|
+
listing_key?: never;
|
|
91657
|
+
property_listing_key?: never;
|
|
91577
91658
|
};
|
|
91578
|
-
|
|
91579
|
-
|
|
91580
|
-
|
|
91581
|
-
|
|
91582
|
-
|
|
91583
|
-
|
|
91584
|
-
|
|
91585
|
-
|
|
91586
|
-
|
|
91587
|
-
|
|
91588
|
-
|
|
91589
|
-
|
|
91590
|
-
|
|
91591
|
-
|
|
91592
|
-
|
|
91659
|
+
required: string[];
|
|
91660
|
+
type: string;
|
|
91661
|
+
} | {
|
|
91662
|
+
properties: {
|
|
91663
|
+
common_area_key: {
|
|
91664
|
+
type: string;
|
|
91665
|
+
};
|
|
91666
|
+
space_key?: never;
|
|
91667
|
+
property_key?: never;
|
|
91668
|
+
room_key?: never;
|
|
91669
|
+
unit_key?: never;
|
|
91670
|
+
facility_key?: never;
|
|
91671
|
+
building_key?: never;
|
|
91672
|
+
listing_key?: never;
|
|
91673
|
+
property_listing_key?: never;
|
|
91593
91674
|
};
|
|
91594
|
-
|
|
91595
|
-
|
|
91596
|
-
|
|
91597
|
-
|
|
91598
|
-
|
|
91599
|
-
|
|
91600
|
-
|
|
91601
|
-
|
|
91602
|
-
|
|
91603
|
-
|
|
91604
|
-
|
|
91605
|
-
|
|
91606
|
-
|
|
91607
|
-
|
|
91608
|
-
|
|
91675
|
+
required: string[];
|
|
91676
|
+
type: string;
|
|
91677
|
+
} | {
|
|
91678
|
+
properties: {
|
|
91679
|
+
unit_key: {
|
|
91680
|
+
type: string;
|
|
91681
|
+
};
|
|
91682
|
+
space_key?: never;
|
|
91683
|
+
property_key?: never;
|
|
91684
|
+
room_key?: never;
|
|
91685
|
+
common_area_key?: never;
|
|
91686
|
+
facility_key?: never;
|
|
91687
|
+
building_key?: never;
|
|
91688
|
+
listing_key?: never;
|
|
91689
|
+
property_listing_key?: never;
|
|
91609
91690
|
};
|
|
91610
|
-
|
|
91611
|
-
|
|
91612
|
-
|
|
91613
|
-
|
|
91614
|
-
|
|
91615
|
-
|
|
91616
|
-
|
|
91617
|
-
|
|
91618
|
-
|
|
91619
|
-
|
|
91620
|
-
|
|
91621
|
-
|
|
91622
|
-
|
|
91623
|
-
|
|
91624
|
-
|
|
91691
|
+
required: string[];
|
|
91692
|
+
type: string;
|
|
91693
|
+
} | {
|
|
91694
|
+
properties: {
|
|
91695
|
+
facility_key: {
|
|
91696
|
+
type: string;
|
|
91697
|
+
};
|
|
91698
|
+
space_key?: never;
|
|
91699
|
+
property_key?: never;
|
|
91700
|
+
room_key?: never;
|
|
91701
|
+
common_area_key?: never;
|
|
91702
|
+
unit_key?: never;
|
|
91703
|
+
building_key?: never;
|
|
91704
|
+
listing_key?: never;
|
|
91705
|
+
property_listing_key?: never;
|
|
91625
91706
|
};
|
|
91626
|
-
|
|
91627
|
-
|
|
91628
|
-
|
|
91629
|
-
|
|
91630
|
-
|
|
91631
|
-
|
|
91632
|
-
|
|
91633
|
-
|
|
91634
|
-
|
|
91635
|
-
|
|
91636
|
-
|
|
91637
|
-
|
|
91638
|
-
|
|
91639
|
-
|
|
91640
|
-
|
|
91707
|
+
required: string[];
|
|
91708
|
+
type: string;
|
|
91709
|
+
} | {
|
|
91710
|
+
properties: {
|
|
91711
|
+
building_key: {
|
|
91712
|
+
type: string;
|
|
91713
|
+
};
|
|
91714
|
+
space_key?: never;
|
|
91715
|
+
property_key?: never;
|
|
91716
|
+
room_key?: never;
|
|
91717
|
+
common_area_key?: never;
|
|
91718
|
+
unit_key?: never;
|
|
91719
|
+
facility_key?: never;
|
|
91720
|
+
listing_key?: never;
|
|
91721
|
+
property_listing_key?: never;
|
|
91641
91722
|
};
|
|
91642
|
-
|
|
91643
|
-
|
|
91644
|
-
|
|
91645
|
-
|
|
91646
|
-
|
|
91647
|
-
|
|
91648
|
-
|
|
91649
|
-
|
|
91650
|
-
|
|
91651
|
-
|
|
91652
|
-
|
|
91653
|
-
|
|
91654
|
-
|
|
91655
|
-
|
|
91656
|
-
|
|
91723
|
+
required: string[];
|
|
91724
|
+
type: string;
|
|
91725
|
+
} | {
|
|
91726
|
+
properties: {
|
|
91727
|
+
listing_key: {
|
|
91728
|
+
type: string;
|
|
91729
|
+
};
|
|
91730
|
+
space_key?: never;
|
|
91731
|
+
property_key?: never;
|
|
91732
|
+
room_key?: never;
|
|
91733
|
+
common_area_key?: never;
|
|
91734
|
+
unit_key?: never;
|
|
91735
|
+
facility_key?: never;
|
|
91736
|
+
building_key?: never;
|
|
91737
|
+
property_listing_key?: never;
|
|
91657
91738
|
};
|
|
91658
|
-
|
|
91659
|
-
|
|
91660
|
-
|
|
91661
|
-
|
|
91662
|
-
|
|
91663
|
-
|
|
91664
|
-
|
|
91665
|
-
|
|
91666
|
-
|
|
91667
|
-
|
|
91668
|
-
|
|
91739
|
+
required: string[];
|
|
91740
|
+
type: string;
|
|
91741
|
+
} | {
|
|
91742
|
+
properties: {
|
|
91743
|
+
property_listing_key: {
|
|
91744
|
+
type: string;
|
|
91745
|
+
};
|
|
91746
|
+
space_key?: never;
|
|
91747
|
+
property_key?: never;
|
|
91748
|
+
room_key?: never;
|
|
91749
|
+
common_area_key?: never;
|
|
91750
|
+
unit_key?: never;
|
|
91751
|
+
facility_key?: never;
|
|
91752
|
+
building_key?: never;
|
|
91753
|
+
listing_key?: never;
|
|
91754
|
+
};
|
|
91755
|
+
required: string[];
|
|
91756
|
+
type: string;
|
|
91757
|
+
})[];
|
|
91669
91758
|
} | {
|
|
91670
|
-
|
|
91671
|
-
|
|
91672
|
-
|
|
91759
|
+
oneOf: ({
|
|
91760
|
+
properties: {
|
|
91761
|
+
reservation_key: {
|
|
91762
|
+
type: string;
|
|
91763
|
+
};
|
|
91764
|
+
booking_key?: never;
|
|
91765
|
+
access_grant_key?: never;
|
|
91673
91766
|
};
|
|
91674
|
-
|
|
91675
|
-
|
|
91676
|
-
|
|
91677
|
-
|
|
91678
|
-
|
|
91679
|
-
|
|
91680
|
-
|
|
91681
|
-
|
|
91682
|
-
|
|
91683
|
-
|
|
91684
|
-
|
|
91767
|
+
required: string[];
|
|
91768
|
+
type: string;
|
|
91769
|
+
} | {
|
|
91770
|
+
properties: {
|
|
91771
|
+
booking_key: {
|
|
91772
|
+
type: string;
|
|
91773
|
+
};
|
|
91774
|
+
reservation_key?: never;
|
|
91775
|
+
access_grant_key?: never;
|
|
91776
|
+
};
|
|
91777
|
+
required: string[];
|
|
91778
|
+
type: string;
|
|
91779
|
+
} | {
|
|
91780
|
+
properties: {
|
|
91781
|
+
access_grant_key: {
|
|
91782
|
+
type: string;
|
|
91783
|
+
};
|
|
91784
|
+
reservation_key?: never;
|
|
91785
|
+
booking_key?: never;
|
|
91786
|
+
};
|
|
91787
|
+
required: string[];
|
|
91788
|
+
type: string;
|
|
91789
|
+
})[];
|
|
91685
91790
|
})[];
|
|
91686
91791
|
};
|
|
91687
91792
|
};
|
|
@@ -91774,6 +91879,12 @@ declare const _default: {
|
|
|
91774
91879
|
exclude: {
|
|
91775
91880
|
type: string;
|
|
91776
91881
|
};
|
|
91882
|
+
excluded_providers: {
|
|
91883
|
+
items: {
|
|
91884
|
+
type: string;
|
|
91885
|
+
};
|
|
91886
|
+
type: string;
|
|
91887
|
+
};
|
|
91777
91888
|
};
|
|
91778
91889
|
type: string;
|
|
91779
91890
|
};
|
|
@@ -91803,149 +91914,183 @@ declare const _default: {
|
|
|
91803
91914
|
properties: {
|
|
91804
91915
|
manage: {
|
|
91805
91916
|
oneOf: ({
|
|
91806
|
-
|
|
91807
|
-
|
|
91808
|
-
|
|
91917
|
+
oneOf: ({
|
|
91918
|
+
properties: {
|
|
91919
|
+
space_key: {
|
|
91920
|
+
type: string;
|
|
91921
|
+
};
|
|
91922
|
+
property_key?: never;
|
|
91923
|
+
room_key?: never;
|
|
91924
|
+
common_area_key?: never;
|
|
91925
|
+
unit_key?: never;
|
|
91926
|
+
facility_key?: never;
|
|
91927
|
+
building_key?: never;
|
|
91928
|
+
listing_key?: never;
|
|
91929
|
+
property_listing_key?: never;
|
|
91809
91930
|
};
|
|
91810
|
-
|
|
91811
|
-
|
|
91812
|
-
|
|
91813
|
-
|
|
91814
|
-
|
|
91815
|
-
|
|
91816
|
-
|
|
91817
|
-
|
|
91818
|
-
|
|
91819
|
-
|
|
91820
|
-
|
|
91821
|
-
|
|
91822
|
-
|
|
91823
|
-
|
|
91824
|
-
|
|
91931
|
+
required: string[];
|
|
91932
|
+
type: string;
|
|
91933
|
+
} | {
|
|
91934
|
+
properties: {
|
|
91935
|
+
property_key: {
|
|
91936
|
+
type: string;
|
|
91937
|
+
};
|
|
91938
|
+
space_key?: never;
|
|
91939
|
+
room_key?: never;
|
|
91940
|
+
common_area_key?: never;
|
|
91941
|
+
unit_key?: never;
|
|
91942
|
+
facility_key?: never;
|
|
91943
|
+
building_key?: never;
|
|
91944
|
+
listing_key?: never;
|
|
91945
|
+
property_listing_key?: never;
|
|
91825
91946
|
};
|
|
91826
|
-
|
|
91827
|
-
|
|
91828
|
-
|
|
91829
|
-
|
|
91830
|
-
|
|
91831
|
-
|
|
91832
|
-
|
|
91833
|
-
|
|
91834
|
-
|
|
91835
|
-
|
|
91836
|
-
|
|
91837
|
-
|
|
91838
|
-
|
|
91839
|
-
|
|
91840
|
-
|
|
91947
|
+
required: string[];
|
|
91948
|
+
type: string;
|
|
91949
|
+
} | {
|
|
91950
|
+
properties: {
|
|
91951
|
+
room_key: {
|
|
91952
|
+
type: string;
|
|
91953
|
+
};
|
|
91954
|
+
space_key?: never;
|
|
91955
|
+
property_key?: never;
|
|
91956
|
+
common_area_key?: never;
|
|
91957
|
+
unit_key?: never;
|
|
91958
|
+
facility_key?: never;
|
|
91959
|
+
building_key?: never;
|
|
91960
|
+
listing_key?: never;
|
|
91961
|
+
property_listing_key?: never;
|
|
91841
91962
|
};
|
|
91842
|
-
|
|
91843
|
-
|
|
91844
|
-
|
|
91845
|
-
|
|
91846
|
-
|
|
91847
|
-
|
|
91848
|
-
|
|
91849
|
-
|
|
91850
|
-
|
|
91851
|
-
|
|
91852
|
-
|
|
91853
|
-
|
|
91854
|
-
|
|
91855
|
-
|
|
91856
|
-
|
|
91963
|
+
required: string[];
|
|
91964
|
+
type: string;
|
|
91965
|
+
} | {
|
|
91966
|
+
properties: {
|
|
91967
|
+
common_area_key: {
|
|
91968
|
+
type: string;
|
|
91969
|
+
};
|
|
91970
|
+
space_key?: never;
|
|
91971
|
+
property_key?: never;
|
|
91972
|
+
room_key?: never;
|
|
91973
|
+
unit_key?: never;
|
|
91974
|
+
facility_key?: never;
|
|
91975
|
+
building_key?: never;
|
|
91976
|
+
listing_key?: never;
|
|
91977
|
+
property_listing_key?: never;
|
|
91857
91978
|
};
|
|
91858
|
-
|
|
91859
|
-
|
|
91860
|
-
|
|
91861
|
-
|
|
91862
|
-
|
|
91863
|
-
|
|
91864
|
-
|
|
91865
|
-
|
|
91866
|
-
|
|
91867
|
-
|
|
91868
|
-
|
|
91869
|
-
|
|
91870
|
-
|
|
91871
|
-
|
|
91872
|
-
|
|
91979
|
+
required: string[];
|
|
91980
|
+
type: string;
|
|
91981
|
+
} | {
|
|
91982
|
+
properties: {
|
|
91983
|
+
unit_key: {
|
|
91984
|
+
type: string;
|
|
91985
|
+
};
|
|
91986
|
+
space_key?: never;
|
|
91987
|
+
property_key?: never;
|
|
91988
|
+
room_key?: never;
|
|
91989
|
+
common_area_key?: never;
|
|
91990
|
+
facility_key?: never;
|
|
91991
|
+
building_key?: never;
|
|
91992
|
+
listing_key?: never;
|
|
91993
|
+
property_listing_key?: never;
|
|
91873
91994
|
};
|
|
91874
|
-
|
|
91875
|
-
|
|
91876
|
-
|
|
91877
|
-
|
|
91878
|
-
|
|
91879
|
-
|
|
91880
|
-
|
|
91881
|
-
|
|
91882
|
-
|
|
91883
|
-
|
|
91884
|
-
|
|
91885
|
-
|
|
91886
|
-
|
|
91887
|
-
|
|
91888
|
-
|
|
91995
|
+
required: string[];
|
|
91996
|
+
type: string;
|
|
91997
|
+
} | {
|
|
91998
|
+
properties: {
|
|
91999
|
+
facility_key: {
|
|
92000
|
+
type: string;
|
|
92001
|
+
};
|
|
92002
|
+
space_key?: never;
|
|
92003
|
+
property_key?: never;
|
|
92004
|
+
room_key?: never;
|
|
92005
|
+
common_area_key?: never;
|
|
92006
|
+
unit_key?: never;
|
|
92007
|
+
building_key?: never;
|
|
92008
|
+
listing_key?: never;
|
|
92009
|
+
property_listing_key?: never;
|
|
91889
92010
|
};
|
|
91890
|
-
|
|
91891
|
-
|
|
91892
|
-
|
|
91893
|
-
|
|
91894
|
-
|
|
91895
|
-
|
|
91896
|
-
|
|
91897
|
-
|
|
91898
|
-
|
|
91899
|
-
|
|
91900
|
-
|
|
91901
|
-
|
|
91902
|
-
|
|
91903
|
-
|
|
91904
|
-
|
|
92011
|
+
required: string[];
|
|
92012
|
+
type: string;
|
|
92013
|
+
} | {
|
|
92014
|
+
properties: {
|
|
92015
|
+
building_key: {
|
|
92016
|
+
type: string;
|
|
92017
|
+
};
|
|
92018
|
+
space_key?: never;
|
|
92019
|
+
property_key?: never;
|
|
92020
|
+
room_key?: never;
|
|
92021
|
+
common_area_key?: never;
|
|
92022
|
+
unit_key?: never;
|
|
92023
|
+
facility_key?: never;
|
|
92024
|
+
listing_key?: never;
|
|
92025
|
+
property_listing_key?: never;
|
|
91905
92026
|
};
|
|
91906
|
-
|
|
91907
|
-
|
|
91908
|
-
|
|
91909
|
-
|
|
91910
|
-
|
|
91911
|
-
|
|
91912
|
-
|
|
91913
|
-
|
|
91914
|
-
|
|
91915
|
-
|
|
91916
|
-
|
|
91917
|
-
|
|
91918
|
-
|
|
91919
|
-
|
|
91920
|
-
|
|
92027
|
+
required: string[];
|
|
92028
|
+
type: string;
|
|
92029
|
+
} | {
|
|
92030
|
+
properties: {
|
|
92031
|
+
listing_key: {
|
|
92032
|
+
type: string;
|
|
92033
|
+
};
|
|
92034
|
+
space_key?: never;
|
|
92035
|
+
property_key?: never;
|
|
92036
|
+
room_key?: never;
|
|
92037
|
+
common_area_key?: never;
|
|
92038
|
+
unit_key?: never;
|
|
92039
|
+
facility_key?: never;
|
|
92040
|
+
building_key?: never;
|
|
92041
|
+
property_listing_key?: never;
|
|
91921
92042
|
};
|
|
91922
|
-
|
|
91923
|
-
|
|
91924
|
-
|
|
91925
|
-
|
|
91926
|
-
|
|
91927
|
-
|
|
91928
|
-
|
|
91929
|
-
|
|
91930
|
-
|
|
91931
|
-
|
|
91932
|
-
|
|
92043
|
+
required: string[];
|
|
92044
|
+
type: string;
|
|
92045
|
+
} | {
|
|
92046
|
+
properties: {
|
|
92047
|
+
property_listing_key: {
|
|
92048
|
+
type: string;
|
|
92049
|
+
};
|
|
92050
|
+
space_key?: never;
|
|
92051
|
+
property_key?: never;
|
|
92052
|
+
room_key?: never;
|
|
92053
|
+
common_area_key?: never;
|
|
92054
|
+
unit_key?: never;
|
|
92055
|
+
facility_key?: never;
|
|
92056
|
+
building_key?: never;
|
|
92057
|
+
listing_key?: never;
|
|
92058
|
+
};
|
|
92059
|
+
required: string[];
|
|
92060
|
+
type: string;
|
|
92061
|
+
})[];
|
|
91933
92062
|
} | {
|
|
91934
|
-
|
|
91935
|
-
|
|
91936
|
-
|
|
92063
|
+
oneOf: ({
|
|
92064
|
+
properties: {
|
|
92065
|
+
reservation_key: {
|
|
92066
|
+
type: string;
|
|
92067
|
+
};
|
|
92068
|
+
booking_key?: never;
|
|
92069
|
+
access_grant_key?: never;
|
|
91937
92070
|
};
|
|
91938
|
-
|
|
91939
|
-
|
|
91940
|
-
|
|
91941
|
-
|
|
91942
|
-
|
|
91943
|
-
|
|
91944
|
-
|
|
91945
|
-
|
|
91946
|
-
|
|
91947
|
-
|
|
91948
|
-
|
|
92071
|
+
required: string[];
|
|
92072
|
+
type: string;
|
|
92073
|
+
} | {
|
|
92074
|
+
properties: {
|
|
92075
|
+
booking_key: {
|
|
92076
|
+
type: string;
|
|
92077
|
+
};
|
|
92078
|
+
reservation_key?: never;
|
|
92079
|
+
access_grant_key?: never;
|
|
92080
|
+
};
|
|
92081
|
+
required: string[];
|
|
92082
|
+
type: string;
|
|
92083
|
+
} | {
|
|
92084
|
+
properties: {
|
|
92085
|
+
access_grant_key: {
|
|
92086
|
+
type: string;
|
|
92087
|
+
};
|
|
92088
|
+
reservation_key?: never;
|
|
92089
|
+
booking_key?: never;
|
|
92090
|
+
};
|
|
92091
|
+
required: string[];
|
|
92092
|
+
type: string;
|
|
92093
|
+
})[];
|
|
91949
92094
|
})[];
|
|
91950
92095
|
};
|
|
91951
92096
|
};
|
|
@@ -94370,276 +94515,7 @@ declare const _default: {
|
|
|
94370
94515
|
properties: {
|
|
94371
94516
|
acs_entrances: {
|
|
94372
94517
|
items: {
|
|
94373
|
-
|
|
94374
|
-
properties: {
|
|
94375
|
-
acs_entrance_id: {
|
|
94376
|
-
description: string;
|
|
94377
|
-
format: string;
|
|
94378
|
-
type: string;
|
|
94379
|
-
};
|
|
94380
|
-
acs_system_id: {
|
|
94381
|
-
description: string;
|
|
94382
|
-
format: string;
|
|
94383
|
-
type: string;
|
|
94384
|
-
};
|
|
94385
|
-
assa_abloy_vostio_metadata: {
|
|
94386
|
-
description: string;
|
|
94387
|
-
properties: {
|
|
94388
|
-
door_name: {
|
|
94389
|
-
description: string;
|
|
94390
|
-
type: string;
|
|
94391
|
-
};
|
|
94392
|
-
door_number: {
|
|
94393
|
-
description: string;
|
|
94394
|
-
format: string;
|
|
94395
|
-
type: string;
|
|
94396
|
-
};
|
|
94397
|
-
door_type: {
|
|
94398
|
-
description: string;
|
|
94399
|
-
enum: string[];
|
|
94400
|
-
type: string;
|
|
94401
|
-
};
|
|
94402
|
-
pms_id: {
|
|
94403
|
-
description: string;
|
|
94404
|
-
type: string;
|
|
94405
|
-
};
|
|
94406
|
-
stand_open: {
|
|
94407
|
-
description: string;
|
|
94408
|
-
type: string;
|
|
94409
|
-
};
|
|
94410
|
-
};
|
|
94411
|
-
required: string[];
|
|
94412
|
-
type: string;
|
|
94413
|
-
};
|
|
94414
|
-
can_unlock_with_card: {
|
|
94415
|
-
description: string;
|
|
94416
|
-
type: string;
|
|
94417
|
-
};
|
|
94418
|
-
can_unlock_with_code: {
|
|
94419
|
-
description: string;
|
|
94420
|
-
type: string;
|
|
94421
|
-
};
|
|
94422
|
-
can_unlock_with_mobile_key: {
|
|
94423
|
-
description: string;
|
|
94424
|
-
type: string;
|
|
94425
|
-
};
|
|
94426
|
-
connected_account_id: {
|
|
94427
|
-
description: string;
|
|
94428
|
-
format: string;
|
|
94429
|
-
type: string;
|
|
94430
|
-
};
|
|
94431
|
-
created_at: {
|
|
94432
|
-
description: string;
|
|
94433
|
-
format: string;
|
|
94434
|
-
type: string;
|
|
94435
|
-
};
|
|
94436
|
-
display_name: {
|
|
94437
|
-
description: string;
|
|
94438
|
-
type: string;
|
|
94439
|
-
};
|
|
94440
|
-
dormakaba_ambiance_metadata: {
|
|
94441
|
-
description: string;
|
|
94442
|
-
properties: {
|
|
94443
|
-
access_point_name: {
|
|
94444
|
-
description: string;
|
|
94445
|
-
type: string;
|
|
94446
|
-
};
|
|
94447
|
-
};
|
|
94448
|
-
required: string[];
|
|
94449
|
-
type: string;
|
|
94450
|
-
};
|
|
94451
|
-
dormakaba_community_metadata: {
|
|
94452
|
-
description: string;
|
|
94453
|
-
properties: {
|
|
94454
|
-
access_point_name: {
|
|
94455
|
-
description: string;
|
|
94456
|
-
type: string;
|
|
94457
|
-
};
|
|
94458
|
-
access_point_profile: {
|
|
94459
|
-
description: string;
|
|
94460
|
-
type: string;
|
|
94461
|
-
};
|
|
94462
|
-
};
|
|
94463
|
-
required: string[];
|
|
94464
|
-
type: string;
|
|
94465
|
-
};
|
|
94466
|
-
errors: {
|
|
94467
|
-
description: string;
|
|
94468
|
-
items: {
|
|
94469
|
-
properties: {
|
|
94470
|
-
error_code: {
|
|
94471
|
-
description: string;
|
|
94472
|
-
type: string;
|
|
94473
|
-
};
|
|
94474
|
-
message: {
|
|
94475
|
-
description: string;
|
|
94476
|
-
type: string;
|
|
94477
|
-
};
|
|
94478
|
-
};
|
|
94479
|
-
required: string[];
|
|
94480
|
-
type: string;
|
|
94481
|
-
};
|
|
94482
|
-
type: string;
|
|
94483
|
-
};
|
|
94484
|
-
hotek_metadata: {
|
|
94485
|
-
description: string;
|
|
94486
|
-
properties: {
|
|
94487
|
-
display_name: {
|
|
94488
|
-
description: string;
|
|
94489
|
-
type: string;
|
|
94490
|
-
};
|
|
94491
|
-
door_type: {
|
|
94492
|
-
description: string;
|
|
94493
|
-
enum: string[];
|
|
94494
|
-
type: string;
|
|
94495
|
-
};
|
|
94496
|
-
room_number: {
|
|
94497
|
-
description: string;
|
|
94498
|
-
type: string;
|
|
94499
|
-
};
|
|
94500
|
-
};
|
|
94501
|
-
required: string[];
|
|
94502
|
-
type: string;
|
|
94503
|
-
};
|
|
94504
|
-
latch_metadata: {
|
|
94505
|
-
description: string;
|
|
94506
|
-
properties: {
|
|
94507
|
-
accessibility_type: {
|
|
94508
|
-
description: string;
|
|
94509
|
-
type: string;
|
|
94510
|
-
};
|
|
94511
|
-
door_name: {
|
|
94512
|
-
description: string;
|
|
94513
|
-
type: string;
|
|
94514
|
-
};
|
|
94515
|
-
door_type: {
|
|
94516
|
-
description: string;
|
|
94517
|
-
type: string;
|
|
94518
|
-
};
|
|
94519
|
-
is_connected: {
|
|
94520
|
-
description: string;
|
|
94521
|
-
type: string;
|
|
94522
|
-
};
|
|
94523
|
-
};
|
|
94524
|
-
required: string[];
|
|
94525
|
-
type: string;
|
|
94526
|
-
};
|
|
94527
|
-
salto_ks_metadata: {
|
|
94528
|
-
description: string;
|
|
94529
|
-
properties: {
|
|
94530
|
-
battery_level: {
|
|
94531
|
-
description: string;
|
|
94532
|
-
type: string;
|
|
94533
|
-
};
|
|
94534
|
-
door_name: {
|
|
94535
|
-
description: string;
|
|
94536
|
-
type: string;
|
|
94537
|
-
};
|
|
94538
|
-
intrusion_alarm: {
|
|
94539
|
-
description: string;
|
|
94540
|
-
type: string;
|
|
94541
|
-
};
|
|
94542
|
-
left_open_alarm: {
|
|
94543
|
-
description: string;
|
|
94544
|
-
type: string;
|
|
94545
|
-
};
|
|
94546
|
-
lock_type: {
|
|
94547
|
-
description: string;
|
|
94548
|
-
type: string;
|
|
94549
|
-
};
|
|
94550
|
-
locked_state: {
|
|
94551
|
-
description: string;
|
|
94552
|
-
type: string;
|
|
94553
|
-
};
|
|
94554
|
-
online: {
|
|
94555
|
-
description: string;
|
|
94556
|
-
type: string;
|
|
94557
|
-
};
|
|
94558
|
-
privacy_mode: {
|
|
94559
|
-
description: string;
|
|
94560
|
-
type: string;
|
|
94561
|
-
};
|
|
94562
|
-
};
|
|
94563
|
-
required: string[];
|
|
94564
|
-
type: string;
|
|
94565
|
-
};
|
|
94566
|
-
salto_space_metadata: {
|
|
94567
|
-
description: string;
|
|
94568
|
-
properties: {
|
|
94569
|
-
door_description: {
|
|
94570
|
-
description: string;
|
|
94571
|
-
type: string;
|
|
94572
|
-
};
|
|
94573
|
-
door_id: {
|
|
94574
|
-
description: string;
|
|
94575
|
-
type: string;
|
|
94576
|
-
};
|
|
94577
|
-
door_name: {
|
|
94578
|
-
description: string;
|
|
94579
|
-
type: string;
|
|
94580
|
-
};
|
|
94581
|
-
ext_door_id: {
|
|
94582
|
-
deprecated: boolean;
|
|
94583
|
-
type: string;
|
|
94584
|
-
'x-deprecated': string;
|
|
94585
|
-
};
|
|
94586
|
-
room_description: {
|
|
94587
|
-
description: string;
|
|
94588
|
-
type: string;
|
|
94589
|
-
};
|
|
94590
|
-
room_name: {
|
|
94591
|
-
description: string;
|
|
94592
|
-
type: string;
|
|
94593
|
-
};
|
|
94594
|
-
};
|
|
94595
|
-
type: string;
|
|
94596
|
-
};
|
|
94597
|
-
space_ids: {
|
|
94598
|
-
items: {
|
|
94599
|
-
format: string;
|
|
94600
|
-
type: string;
|
|
94601
|
-
};
|
|
94602
|
-
type: string;
|
|
94603
|
-
};
|
|
94604
|
-
visionline_metadata: {
|
|
94605
|
-
description: string;
|
|
94606
|
-
properties: {
|
|
94607
|
-
door_category: {
|
|
94608
|
-
description: string;
|
|
94609
|
-
enum: string[];
|
|
94610
|
-
type: string;
|
|
94611
|
-
};
|
|
94612
|
-
door_name: {
|
|
94613
|
-
description: string;
|
|
94614
|
-
type: string;
|
|
94615
|
-
};
|
|
94616
|
-
profiles: {
|
|
94617
|
-
description: string;
|
|
94618
|
-
items: {
|
|
94619
|
-
properties: {
|
|
94620
|
-
visionline_door_profile_id: {
|
|
94621
|
-
description: string;
|
|
94622
|
-
type: string;
|
|
94623
|
-
};
|
|
94624
|
-
visionline_door_profile_type: {
|
|
94625
|
-
description: string;
|
|
94626
|
-
enum: string[];
|
|
94627
|
-
type: string;
|
|
94628
|
-
};
|
|
94629
|
-
};
|
|
94630
|
-
required: string[];
|
|
94631
|
-
type: string;
|
|
94632
|
-
};
|
|
94633
|
-
type: string;
|
|
94634
|
-
};
|
|
94635
|
-
};
|
|
94636
|
-
required: string[];
|
|
94637
|
-
type: string;
|
|
94638
|
-
};
|
|
94639
|
-
};
|
|
94640
|
-
required: string[];
|
|
94641
|
-
type: string;
|
|
94642
|
-
'x-route-path': string;
|
|
94518
|
+
$ref: string;
|
|
94643
94519
|
};
|
|
94644
94520
|
type: string;
|
|
94645
94521
|
};
|
|
@@ -97290,276 +97166,7 @@ declare const _default: {
|
|
|
97290
97166
|
properties: {
|
|
97291
97167
|
acs_entrances: {
|
|
97292
97168
|
items: {
|
|
97293
|
-
|
|
97294
|
-
properties: {
|
|
97295
|
-
acs_entrance_id: {
|
|
97296
|
-
description: string;
|
|
97297
|
-
format: string;
|
|
97298
|
-
type: string;
|
|
97299
|
-
};
|
|
97300
|
-
acs_system_id: {
|
|
97301
|
-
description: string;
|
|
97302
|
-
format: string;
|
|
97303
|
-
type: string;
|
|
97304
|
-
};
|
|
97305
|
-
assa_abloy_vostio_metadata: {
|
|
97306
|
-
description: string;
|
|
97307
|
-
properties: {
|
|
97308
|
-
door_name: {
|
|
97309
|
-
description: string;
|
|
97310
|
-
type: string;
|
|
97311
|
-
};
|
|
97312
|
-
door_number: {
|
|
97313
|
-
description: string;
|
|
97314
|
-
format: string;
|
|
97315
|
-
type: string;
|
|
97316
|
-
};
|
|
97317
|
-
door_type: {
|
|
97318
|
-
description: string;
|
|
97319
|
-
enum: string[];
|
|
97320
|
-
type: string;
|
|
97321
|
-
};
|
|
97322
|
-
pms_id: {
|
|
97323
|
-
description: string;
|
|
97324
|
-
type: string;
|
|
97325
|
-
};
|
|
97326
|
-
stand_open: {
|
|
97327
|
-
description: string;
|
|
97328
|
-
type: string;
|
|
97329
|
-
};
|
|
97330
|
-
};
|
|
97331
|
-
required: string[];
|
|
97332
|
-
type: string;
|
|
97333
|
-
};
|
|
97334
|
-
can_unlock_with_card: {
|
|
97335
|
-
description: string;
|
|
97336
|
-
type: string;
|
|
97337
|
-
};
|
|
97338
|
-
can_unlock_with_code: {
|
|
97339
|
-
description: string;
|
|
97340
|
-
type: string;
|
|
97341
|
-
};
|
|
97342
|
-
can_unlock_with_mobile_key: {
|
|
97343
|
-
description: string;
|
|
97344
|
-
type: string;
|
|
97345
|
-
};
|
|
97346
|
-
connected_account_id: {
|
|
97347
|
-
description: string;
|
|
97348
|
-
format: string;
|
|
97349
|
-
type: string;
|
|
97350
|
-
};
|
|
97351
|
-
created_at: {
|
|
97352
|
-
description: string;
|
|
97353
|
-
format: string;
|
|
97354
|
-
type: string;
|
|
97355
|
-
};
|
|
97356
|
-
display_name: {
|
|
97357
|
-
description: string;
|
|
97358
|
-
type: string;
|
|
97359
|
-
};
|
|
97360
|
-
dormakaba_ambiance_metadata: {
|
|
97361
|
-
description: string;
|
|
97362
|
-
properties: {
|
|
97363
|
-
access_point_name: {
|
|
97364
|
-
description: string;
|
|
97365
|
-
type: string;
|
|
97366
|
-
};
|
|
97367
|
-
};
|
|
97368
|
-
required: string[];
|
|
97369
|
-
type: string;
|
|
97370
|
-
};
|
|
97371
|
-
dormakaba_community_metadata: {
|
|
97372
|
-
description: string;
|
|
97373
|
-
properties: {
|
|
97374
|
-
access_point_name: {
|
|
97375
|
-
description: string;
|
|
97376
|
-
type: string;
|
|
97377
|
-
};
|
|
97378
|
-
access_point_profile: {
|
|
97379
|
-
description: string;
|
|
97380
|
-
type: string;
|
|
97381
|
-
};
|
|
97382
|
-
};
|
|
97383
|
-
required: string[];
|
|
97384
|
-
type: string;
|
|
97385
|
-
};
|
|
97386
|
-
errors: {
|
|
97387
|
-
description: string;
|
|
97388
|
-
items: {
|
|
97389
|
-
properties: {
|
|
97390
|
-
error_code: {
|
|
97391
|
-
description: string;
|
|
97392
|
-
type: string;
|
|
97393
|
-
};
|
|
97394
|
-
message: {
|
|
97395
|
-
description: string;
|
|
97396
|
-
type: string;
|
|
97397
|
-
};
|
|
97398
|
-
};
|
|
97399
|
-
required: string[];
|
|
97400
|
-
type: string;
|
|
97401
|
-
};
|
|
97402
|
-
type: string;
|
|
97403
|
-
};
|
|
97404
|
-
hotek_metadata: {
|
|
97405
|
-
description: string;
|
|
97406
|
-
properties: {
|
|
97407
|
-
display_name: {
|
|
97408
|
-
description: string;
|
|
97409
|
-
type: string;
|
|
97410
|
-
};
|
|
97411
|
-
door_type: {
|
|
97412
|
-
description: string;
|
|
97413
|
-
enum: string[];
|
|
97414
|
-
type: string;
|
|
97415
|
-
};
|
|
97416
|
-
room_number: {
|
|
97417
|
-
description: string;
|
|
97418
|
-
type: string;
|
|
97419
|
-
};
|
|
97420
|
-
};
|
|
97421
|
-
required: string[];
|
|
97422
|
-
type: string;
|
|
97423
|
-
};
|
|
97424
|
-
latch_metadata: {
|
|
97425
|
-
description: string;
|
|
97426
|
-
properties: {
|
|
97427
|
-
accessibility_type: {
|
|
97428
|
-
description: string;
|
|
97429
|
-
type: string;
|
|
97430
|
-
};
|
|
97431
|
-
door_name: {
|
|
97432
|
-
description: string;
|
|
97433
|
-
type: string;
|
|
97434
|
-
};
|
|
97435
|
-
door_type: {
|
|
97436
|
-
description: string;
|
|
97437
|
-
type: string;
|
|
97438
|
-
};
|
|
97439
|
-
is_connected: {
|
|
97440
|
-
description: string;
|
|
97441
|
-
type: string;
|
|
97442
|
-
};
|
|
97443
|
-
};
|
|
97444
|
-
required: string[];
|
|
97445
|
-
type: string;
|
|
97446
|
-
};
|
|
97447
|
-
salto_ks_metadata: {
|
|
97448
|
-
description: string;
|
|
97449
|
-
properties: {
|
|
97450
|
-
battery_level: {
|
|
97451
|
-
description: string;
|
|
97452
|
-
type: string;
|
|
97453
|
-
};
|
|
97454
|
-
door_name: {
|
|
97455
|
-
description: string;
|
|
97456
|
-
type: string;
|
|
97457
|
-
};
|
|
97458
|
-
intrusion_alarm: {
|
|
97459
|
-
description: string;
|
|
97460
|
-
type: string;
|
|
97461
|
-
};
|
|
97462
|
-
left_open_alarm: {
|
|
97463
|
-
description: string;
|
|
97464
|
-
type: string;
|
|
97465
|
-
};
|
|
97466
|
-
lock_type: {
|
|
97467
|
-
description: string;
|
|
97468
|
-
type: string;
|
|
97469
|
-
};
|
|
97470
|
-
locked_state: {
|
|
97471
|
-
description: string;
|
|
97472
|
-
type: string;
|
|
97473
|
-
};
|
|
97474
|
-
online: {
|
|
97475
|
-
description: string;
|
|
97476
|
-
type: string;
|
|
97477
|
-
};
|
|
97478
|
-
privacy_mode: {
|
|
97479
|
-
description: string;
|
|
97480
|
-
type: string;
|
|
97481
|
-
};
|
|
97482
|
-
};
|
|
97483
|
-
required: string[];
|
|
97484
|
-
type: string;
|
|
97485
|
-
};
|
|
97486
|
-
salto_space_metadata: {
|
|
97487
|
-
description: string;
|
|
97488
|
-
properties: {
|
|
97489
|
-
door_description: {
|
|
97490
|
-
description: string;
|
|
97491
|
-
type: string;
|
|
97492
|
-
};
|
|
97493
|
-
door_id: {
|
|
97494
|
-
description: string;
|
|
97495
|
-
type: string;
|
|
97496
|
-
};
|
|
97497
|
-
door_name: {
|
|
97498
|
-
description: string;
|
|
97499
|
-
type: string;
|
|
97500
|
-
};
|
|
97501
|
-
ext_door_id: {
|
|
97502
|
-
deprecated: boolean;
|
|
97503
|
-
type: string;
|
|
97504
|
-
'x-deprecated': string;
|
|
97505
|
-
};
|
|
97506
|
-
room_description: {
|
|
97507
|
-
description: string;
|
|
97508
|
-
type: string;
|
|
97509
|
-
};
|
|
97510
|
-
room_name: {
|
|
97511
|
-
description: string;
|
|
97512
|
-
type: string;
|
|
97513
|
-
};
|
|
97514
|
-
};
|
|
97515
|
-
type: string;
|
|
97516
|
-
};
|
|
97517
|
-
space_ids: {
|
|
97518
|
-
items: {
|
|
97519
|
-
format: string;
|
|
97520
|
-
type: string;
|
|
97521
|
-
};
|
|
97522
|
-
type: string;
|
|
97523
|
-
};
|
|
97524
|
-
visionline_metadata: {
|
|
97525
|
-
description: string;
|
|
97526
|
-
properties: {
|
|
97527
|
-
door_category: {
|
|
97528
|
-
description: string;
|
|
97529
|
-
enum: string[];
|
|
97530
|
-
type: string;
|
|
97531
|
-
};
|
|
97532
|
-
door_name: {
|
|
97533
|
-
description: string;
|
|
97534
|
-
type: string;
|
|
97535
|
-
};
|
|
97536
|
-
profiles: {
|
|
97537
|
-
description: string;
|
|
97538
|
-
items: {
|
|
97539
|
-
properties: {
|
|
97540
|
-
visionline_door_profile_id: {
|
|
97541
|
-
description: string;
|
|
97542
|
-
type: string;
|
|
97543
|
-
};
|
|
97544
|
-
visionline_door_profile_type: {
|
|
97545
|
-
description: string;
|
|
97546
|
-
enum: string[];
|
|
97547
|
-
type: string;
|
|
97548
|
-
};
|
|
97549
|
-
};
|
|
97550
|
-
required: string[];
|
|
97551
|
-
type: string;
|
|
97552
|
-
};
|
|
97553
|
-
type: string;
|
|
97554
|
-
};
|
|
97555
|
-
};
|
|
97556
|
-
required: string[];
|
|
97557
|
-
type: string;
|
|
97558
|
-
};
|
|
97559
|
-
};
|
|
97560
|
-
required: string[];
|
|
97561
|
-
type: string;
|
|
97562
|
-
'x-route-path': string;
|
|
97169
|
+
$ref: string;
|
|
97563
97170
|
};
|
|
97564
97171
|
type: string;
|
|
97565
97172
|
};
|
|
@@ -121042,6 +120649,8 @@ type Routes = {
|
|
|
121042
120649
|
acs_system_id: string;
|
|
121043
120650
|
/** ID of the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
121044
120651
|
acs_entrance_id: string;
|
|
120652
|
+
/** IDs of the spaces that the entrance is in. */
|
|
120653
|
+
space_ids: string[];
|
|
121045
120654
|
/** Date and time at which the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) was created. */
|
|
121046
120655
|
created_at: string;
|
|
121047
120656
|
/** Display name for the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
@@ -124221,6 +123830,8 @@ type Routes = {
|
|
|
124221
123830
|
acs_system_id: string;
|
|
124222
123831
|
/** ID of the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
124223
123832
|
acs_entrance_id: string;
|
|
123833
|
+
/** IDs of the spaces that the entrance is in. */
|
|
123834
|
+
space_ids: string[];
|
|
124224
123835
|
/** Date and time at which the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) was created. */
|
|
124225
123836
|
created_at: string;
|
|
124226
123837
|
/** Display name for the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
@@ -130190,6 +129801,8 @@ type Routes = {
|
|
|
130190
129801
|
acs_system_id: string;
|
|
130191
129802
|
/** ID of the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
130192
129803
|
acs_entrance_id: string;
|
|
129804
|
+
/** IDs of the spaces that the entrance is in. */
|
|
129805
|
+
space_ids: string[];
|
|
130193
129806
|
/** Date and time at which the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) was created. */
|
|
130194
129807
|
created_at: string;
|
|
130195
129808
|
/** Display name for the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
@@ -131556,6 +131169,8 @@ type Routes = {
|
|
|
131556
131169
|
acs_system_id: string;
|
|
131557
131170
|
/** ID of the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
131558
131171
|
acs_entrance_id: string;
|
|
131172
|
+
/** IDs of the spaces that the entrance is in. */
|
|
131173
|
+
space_ids: string[];
|
|
131559
131174
|
/** Date and time at which the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) was created. */
|
|
131560
131175
|
created_at: string;
|
|
131561
131176
|
/** Display name for the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
@@ -135002,6 +134617,8 @@ type Routes = {
|
|
|
135002
134617
|
acs_system_id: string;
|
|
135003
134618
|
/** ID of the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
135004
134619
|
acs_entrance_id: string;
|
|
134620
|
+
/** IDs of the spaces that the entrance is in. */
|
|
134621
|
+
space_ids: string[];
|
|
135005
134622
|
/** Date and time at which the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) was created. */
|
|
135006
134623
|
created_at: string;
|
|
135007
134624
|
/** Display name for the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
@@ -135169,6 +134786,8 @@ type Routes = {
|
|
|
135169
134786
|
acs_system_id: string;
|
|
135170
134787
|
/** ID of the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
135171
134788
|
acs_entrance_id: string;
|
|
134789
|
+
/** IDs of the spaces that the entrance is in. */
|
|
134790
|
+
space_ids: string[];
|
|
135172
134791
|
/** Date and time at which the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) was created. */
|
|
135173
134792
|
created_at: string;
|
|
135174
134793
|
/** Display name for the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
@@ -136610,6 +136229,8 @@ type Routes = {
|
|
|
136610
136229
|
acs_system_id: string;
|
|
136611
136230
|
/** ID of the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
136612
136231
|
acs_entrance_id: string;
|
|
136232
|
+
/** IDs of the spaces that the entrance is in. */
|
|
136233
|
+
space_ids: string[];
|
|
136613
136234
|
/** Date and time at which the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) was created. */
|
|
136614
136235
|
created_at: string;
|
|
136615
136236
|
/** Display name for the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
@@ -140873,6 +140494,8 @@ type Routes = {
|
|
|
140873
140494
|
connect?: {
|
|
140874
140495
|
/** Whether to exclude this feature from the portal. */
|
|
140875
140496
|
exclude?: boolean;
|
|
140497
|
+
/** List of provider keys to exclude from the connect feature. These providers will not be shown when the customer tries to connect an account. */
|
|
140498
|
+
excluded_providers?: string[] | undefined;
|
|
140876
140499
|
};
|
|
140877
140500
|
/** Configuration for the manage devices feature. */
|
|
140878
140501
|
manage_devices?: {
|
|
@@ -140898,7 +140521,7 @@ type Routes = {
|
|
|
140898
140521
|
is_embedded?: boolean;
|
|
140899
140522
|
/** Configuration for the landing page when the portal loads. */
|
|
140900
140523
|
landing_page?: {
|
|
140901
|
-
manage?: ({
|
|
140524
|
+
manage?: (({
|
|
140902
140525
|
space_key: string;
|
|
140903
140526
|
} | {
|
|
140904
140527
|
property_key: string;
|
|
@@ -140916,7 +140539,13 @@ type Routes = {
|
|
|
140916
140539
|
listing_key: string;
|
|
140917
140540
|
} | {
|
|
140918
140541
|
property_listing_key: string;
|
|
140919
|
-
}) |
|
|
140542
|
+
}) | ({
|
|
140543
|
+
reservation_key: string;
|
|
140544
|
+
} | {
|
|
140545
|
+
booking_key: string;
|
|
140546
|
+
} | {
|
|
140547
|
+
access_grant_key: string;
|
|
140548
|
+
})) | undefined;
|
|
140920
140549
|
} | undefined;
|
|
140921
140550
|
} & {
|
|
140922
140551
|
customer_data?: {
|
|
@@ -167841,6 +167470,7 @@ type Routes = {
|
|
|
167841
167470
|
features?: {
|
|
167842
167471
|
connect?: {
|
|
167843
167472
|
exclude?: boolean | undefined;
|
|
167473
|
+
excluded_providers?: string[] | undefined;
|
|
167844
167474
|
} | undefined;
|
|
167845
167475
|
manage_devices?: {
|
|
167846
167476
|
exclude?: boolean | undefined;
|
|
@@ -167856,7 +167486,7 @@ type Routes = {
|
|
|
167856
167486
|
} | undefined;
|
|
167857
167487
|
is_embedded?: boolean | undefined;
|
|
167858
167488
|
landing_page?: {
|
|
167859
|
-
manage?: ({
|
|
167489
|
+
manage?: (({
|
|
167860
167490
|
space_key: string;
|
|
167861
167491
|
} | {
|
|
167862
167492
|
property_key: string;
|
|
@@ -167874,7 +167504,13 @@ type Routes = {
|
|
|
167874
167504
|
listing_key: string;
|
|
167875
167505
|
} | {
|
|
167876
167506
|
property_listing_key: string;
|
|
167877
|
-
}) |
|
|
167507
|
+
}) | ({
|
|
167508
|
+
reservation_key: string;
|
|
167509
|
+
} | {
|
|
167510
|
+
booking_key: string;
|
|
167511
|
+
} | {
|
|
167512
|
+
access_grant_key: string;
|
|
167513
|
+
})) | undefined;
|
|
167878
167514
|
} | undefined;
|
|
167879
167515
|
/** Business vertical of the customer portal. */
|
|
167880
167516
|
business_vertical?: ('short_term_rental' | 'hospitality' | 'multi_family' | 'gym_management' | 'property_tours') | undefined;
|
|
@@ -168400,6 +168036,8 @@ type Routes = {
|
|
|
168400
168036
|
acs_system_id: string;
|
|
168401
168037
|
/** ID of the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
168402
168038
|
acs_entrance_id: string;
|
|
168039
|
+
/** IDs of the spaces that the entrance is in. */
|
|
168040
|
+
space_ids: string[];
|
|
168403
168041
|
/** Date and time at which the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) was created. */
|
|
168404
168042
|
created_at: string;
|
|
168405
168043
|
/** Display name for the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
@@ -169951,6 +169589,8 @@ type Routes = {
|
|
|
169951
169589
|
acs_system_id: string;
|
|
169952
169590
|
/** ID of the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
169953
169591
|
acs_entrance_id: string;
|
|
169592
|
+
/** IDs of the spaces that the entrance is in. */
|
|
169593
|
+
space_ids: string[];
|
|
169954
169594
|
/** Date and time at which the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) was created. */
|
|
169955
169595
|
created_at: string;
|
|
169956
169596
|
/** Display name for the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
@@ -170064,7 +169704,6 @@ type Routes = {
|
|
|
170064
169704
|
can_unlock_with_card?: boolean | undefined;
|
|
170065
169705
|
/** Indicates whether the ACS entrance can be unlocked with pin codes. */
|
|
170066
169706
|
can_unlock_with_code?: boolean | undefined;
|
|
170067
|
-
space_ids: string[];
|
|
170068
169707
|
}[] | undefined;
|
|
170069
169708
|
connected_accounts?: {
|
|
170070
169709
|
/** ID of the connected account. */
|
|
@@ -190833,6 +190472,8 @@ type Routes = {
|
|
|
190833
190472
|
acs_system_id: string;
|
|
190834
190473
|
/** ID of the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
190835
190474
|
acs_entrance_id: string;
|
|
190475
|
+
/** IDs of the spaces that the entrance is in. */
|
|
190476
|
+
space_ids: string[];
|
|
190836
190477
|
/** Date and time at which the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) was created. */
|
|
190837
190478
|
created_at: string;
|
|
190838
190479
|
/** Display name for the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|