@seamapi/types 1.308.0 → 1.310.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 +32 -3
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +105 -0
- package/lib/seam/connect/models/acs/acs-entrance.d.ts +33 -0
- package/lib/seam/connect/models/acs/acs-entrance.js +2 -0
- package/lib/seam/connect/models/acs/acs-entrance.js.map +1 -1
- package/lib/seam/connect/models/acs/metadata/dormakaba-community.d.ts +6 -0
- package/lib/seam/connect/models/acs/metadata/dormakaba-community.js +2 -0
- package/lib/seam/connect/models/acs/metadata/dormakaba-community.js.map +1 -1
- package/lib/seam/connect/models/acs/metadata/salto-space.d.ts +15 -0
- package/lib/seam/connect/models/acs/metadata/salto-space.js +7 -0
- package/lib/seam/connect/models/acs/metadata/salto-space.js.map +1 -0
- package/lib/seam/connect/models/client-sessions/client-session.d.ts +3 -0
- package/lib/seam/connect/models/client-sessions/client-session.js +1 -0
- package/lib/seam/connect/models/client-sessions/client-session.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +29 -0
- package/lib/seam/connect/openapi.js +19 -1
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +40 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-entrance.ts +2 -0
- package/src/lib/seam/connect/models/acs/metadata/dormakaba-community.ts +2 -0
- package/src/lib/seam/connect/models/acs/metadata/salto-space.ts +11 -0
- package/src/lib/seam/connect/models/client-sessions/client-session.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +19 -1
- package/src/lib/seam/connect/route-types.ts +50 -0
package/dist/connect.d.cts
CHANGED
|
@@ -975,10 +975,16 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
975
975
|
}>>;
|
|
976
976
|
dormakaba_community_metadata: z.ZodOptional<z.ZodObject<{
|
|
977
977
|
access_point_name: z.ZodString;
|
|
978
|
+
common_area_number: z.ZodOptional<z.ZodNumber>;
|
|
979
|
+
inner_access_points_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
978
980
|
}, "strip", z.ZodTypeAny, {
|
|
979
981
|
access_point_name: string;
|
|
982
|
+
common_area_number?: number | undefined;
|
|
983
|
+
inner_access_points_names?: string[] | undefined;
|
|
980
984
|
}, {
|
|
981
985
|
access_point_name: string;
|
|
986
|
+
common_area_number?: number | undefined;
|
|
987
|
+
inner_access_points_names?: string[] | undefined;
|
|
982
988
|
}>>;
|
|
983
989
|
assa_abloy_vostio_metadata: z.ZodOptional<z.ZodObject<{
|
|
984
990
|
door_type: z.ZodEnum<["CommonDoor", "EntranceDoor", "GuestDoor", "Elevator"]>;
|
|
@@ -999,6 +1005,19 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
999
1005
|
stand_open?: boolean | undefined;
|
|
1000
1006
|
pms_id?: string | undefined;
|
|
1001
1007
|
}>>;
|
|
1008
|
+
salto_space_metadata: z.ZodOptional<z.ZodObject<{
|
|
1009
|
+
door_name: z.ZodString;
|
|
1010
|
+
ext_door_id: z.ZodString;
|
|
1011
|
+
door_description: z.ZodOptional<z.ZodString>;
|
|
1012
|
+
}, "strip", z.ZodTypeAny, {
|
|
1013
|
+
door_name: string;
|
|
1014
|
+
ext_door_id: string;
|
|
1015
|
+
door_description?: string | undefined;
|
|
1016
|
+
}, {
|
|
1017
|
+
door_name: string;
|
|
1018
|
+
ext_door_id: string;
|
|
1019
|
+
door_description?: string | undefined;
|
|
1020
|
+
}>>;
|
|
1002
1021
|
}, "strip", z.ZodTypeAny, {
|
|
1003
1022
|
created_at: string;
|
|
1004
1023
|
errors: {
|
|
@@ -1041,6 +1060,13 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
1041
1060
|
} | undefined;
|
|
1042
1061
|
dormakaba_community_metadata?: {
|
|
1043
1062
|
access_point_name: string;
|
|
1063
|
+
common_area_number?: number | undefined;
|
|
1064
|
+
inner_access_points_names?: string[] | undefined;
|
|
1065
|
+
} | undefined;
|
|
1066
|
+
salto_space_metadata?: {
|
|
1067
|
+
door_name: string;
|
|
1068
|
+
ext_door_id: string;
|
|
1069
|
+
door_description?: string | undefined;
|
|
1044
1070
|
} | undefined;
|
|
1045
1071
|
}, {
|
|
1046
1072
|
created_at: string;
|
|
@@ -1084,6 +1110,13 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
1084
1110
|
} | undefined;
|
|
1085
1111
|
dormakaba_community_metadata?: {
|
|
1086
1112
|
access_point_name: string;
|
|
1113
|
+
common_area_number?: number | undefined;
|
|
1114
|
+
inner_access_points_names?: string[] | undefined;
|
|
1115
|
+
} | undefined;
|
|
1116
|
+
salto_space_metadata?: {
|
|
1117
|
+
door_name: string;
|
|
1118
|
+
ext_door_id: string;
|
|
1119
|
+
door_description?: string | undefined;
|
|
1087
1120
|
} | undefined;
|
|
1088
1121
|
}>;
|
|
1089
1122
|
type AcsEntrance = z.infer<typeof acs_entrance>;
|
|
@@ -5232,6 +5265,7 @@ declare const client_session: z.ZodObject<{
|
|
|
5232
5265
|
client_session_id: z.ZodString;
|
|
5233
5266
|
workspace_id: z.ZodString;
|
|
5234
5267
|
created_at: z.ZodString;
|
|
5268
|
+
expires_at: z.ZodString;
|
|
5235
5269
|
token: z.ZodString;
|
|
5236
5270
|
user_identifier_key: z.ZodNullable<z.ZodString>;
|
|
5237
5271
|
device_count: z.ZodNumber;
|
|
@@ -5243,6 +5277,7 @@ declare const client_session: z.ZodObject<{
|
|
|
5243
5277
|
workspace_id: string;
|
|
5244
5278
|
connected_account_ids: string[];
|
|
5245
5279
|
client_session_id: string;
|
|
5280
|
+
expires_at: string;
|
|
5246
5281
|
token: string;
|
|
5247
5282
|
user_identifier_key: string | null;
|
|
5248
5283
|
device_count: number;
|
|
@@ -5253,6 +5288,7 @@ declare const client_session: z.ZodObject<{
|
|
|
5253
5288
|
workspace_id: string;
|
|
5254
5289
|
connected_account_ids: string[];
|
|
5255
5290
|
client_session_id: string;
|
|
5291
|
+
expires_at: string;
|
|
5256
5292
|
token: string;
|
|
5257
5293
|
user_identifier_key: string | null;
|
|
5258
5294
|
device_count: number;
|
|
@@ -13190,6 +13226,16 @@ declare const _default: {
|
|
|
13190
13226
|
access_point_name: {
|
|
13191
13227
|
type: string;
|
|
13192
13228
|
};
|
|
13229
|
+
common_area_number: {
|
|
13230
|
+
format: string;
|
|
13231
|
+
type: string;
|
|
13232
|
+
};
|
|
13233
|
+
inner_access_points_names: {
|
|
13234
|
+
items: {
|
|
13235
|
+
type: string;
|
|
13236
|
+
};
|
|
13237
|
+
type: string;
|
|
13238
|
+
};
|
|
13193
13239
|
};
|
|
13194
13240
|
required: string[];
|
|
13195
13241
|
type: string;
|
|
@@ -13257,6 +13303,21 @@ declare const _default: {
|
|
|
13257
13303
|
required: string[];
|
|
13258
13304
|
type: string;
|
|
13259
13305
|
};
|
|
13306
|
+
salto_space_metadata: {
|
|
13307
|
+
properties: {
|
|
13308
|
+
door_description: {
|
|
13309
|
+
type: string;
|
|
13310
|
+
};
|
|
13311
|
+
door_name: {
|
|
13312
|
+
type: string;
|
|
13313
|
+
};
|
|
13314
|
+
ext_door_id: {
|
|
13315
|
+
type: string;
|
|
13316
|
+
};
|
|
13317
|
+
};
|
|
13318
|
+
required: string[];
|
|
13319
|
+
type: string;
|
|
13320
|
+
};
|
|
13260
13321
|
visionline_metadata: {
|
|
13261
13322
|
properties: {
|
|
13262
13323
|
door_category: {
|
|
@@ -14616,6 +14677,10 @@ declare const _default: {
|
|
|
14616
14677
|
format: string;
|
|
14617
14678
|
type: string;
|
|
14618
14679
|
};
|
|
14680
|
+
expires_at: {
|
|
14681
|
+
format: string;
|
|
14682
|
+
type: string;
|
|
14683
|
+
};
|
|
14619
14684
|
token: {
|
|
14620
14685
|
type: string;
|
|
14621
14686
|
};
|
|
@@ -37779,6 +37844,8 @@ interface Routes {
|
|
|
37779
37844
|
} | undefined;
|
|
37780
37845
|
dormakaba_community_metadata?: {
|
|
37781
37846
|
access_point_name: string;
|
|
37847
|
+
common_area_number?: number | undefined;
|
|
37848
|
+
inner_access_points_names?: string[] | undefined;
|
|
37782
37849
|
} | undefined;
|
|
37783
37850
|
assa_abloy_vostio_metadata?: {
|
|
37784
37851
|
door_type: 'CommonDoor' | 'EntranceDoor' | 'GuestDoor' | 'Elevator';
|
|
@@ -37787,6 +37854,11 @@ interface Routes {
|
|
|
37787
37854
|
stand_open?: boolean | undefined;
|
|
37788
37855
|
pms_id?: string | undefined;
|
|
37789
37856
|
} | undefined;
|
|
37857
|
+
salto_space_metadata?: {
|
|
37858
|
+
door_name: string;
|
|
37859
|
+
ext_door_id: string;
|
|
37860
|
+
door_description?: string | undefined;
|
|
37861
|
+
} | undefined;
|
|
37790
37862
|
}>;
|
|
37791
37863
|
};
|
|
37792
37864
|
};
|
|
@@ -38659,6 +38731,8 @@ interface Routes {
|
|
|
38659
38731
|
} | undefined;
|
|
38660
38732
|
dormakaba_community_metadata?: {
|
|
38661
38733
|
access_point_name: string;
|
|
38734
|
+
common_area_number?: number | undefined;
|
|
38735
|
+
inner_access_points_names?: string[] | undefined;
|
|
38662
38736
|
} | undefined;
|
|
38663
38737
|
assa_abloy_vostio_metadata?: {
|
|
38664
38738
|
door_type: 'CommonDoor' | 'EntranceDoor' | 'GuestDoor' | 'Elevator';
|
|
@@ -38667,6 +38741,11 @@ interface Routes {
|
|
|
38667
38741
|
stand_open?: boolean | undefined;
|
|
38668
38742
|
pms_id?: string | undefined;
|
|
38669
38743
|
} | undefined;
|
|
38744
|
+
salto_space_metadata?: {
|
|
38745
|
+
door_name: string;
|
|
38746
|
+
ext_door_id: string;
|
|
38747
|
+
door_description?: string | undefined;
|
|
38748
|
+
} | undefined;
|
|
38670
38749
|
}>;
|
|
38671
38750
|
};
|
|
38672
38751
|
};
|
|
@@ -40935,6 +41014,8 @@ interface Routes {
|
|
|
40935
41014
|
} | undefined;
|
|
40936
41015
|
dormakaba_community_metadata?: {
|
|
40937
41016
|
access_point_name: string;
|
|
41017
|
+
common_area_number?: number | undefined;
|
|
41018
|
+
inner_access_points_names?: string[] | undefined;
|
|
40938
41019
|
} | undefined;
|
|
40939
41020
|
assa_abloy_vostio_metadata?: {
|
|
40940
41021
|
door_type: 'CommonDoor' | 'EntranceDoor' | 'GuestDoor' | 'Elevator';
|
|
@@ -40943,6 +41024,11 @@ interface Routes {
|
|
|
40943
41024
|
stand_open?: boolean | undefined;
|
|
40944
41025
|
pms_id?: string | undefined;
|
|
40945
41026
|
} | undefined;
|
|
41027
|
+
salto_space_metadata?: {
|
|
41028
|
+
door_name: string;
|
|
41029
|
+
ext_door_id: string;
|
|
41030
|
+
door_description?: string | undefined;
|
|
41031
|
+
} | undefined;
|
|
40946
41032
|
};
|
|
40947
41033
|
};
|
|
40948
41034
|
};
|
|
@@ -41008,6 +41094,8 @@ interface Routes {
|
|
|
41008
41094
|
} | undefined;
|
|
41009
41095
|
dormakaba_community_metadata?: {
|
|
41010
41096
|
access_point_name: string;
|
|
41097
|
+
common_area_number?: number | undefined;
|
|
41098
|
+
inner_access_points_names?: string[] | undefined;
|
|
41011
41099
|
} | undefined;
|
|
41012
41100
|
assa_abloy_vostio_metadata?: {
|
|
41013
41101
|
door_type: 'CommonDoor' | 'EntranceDoor' | 'GuestDoor' | 'Elevator';
|
|
@@ -41016,6 +41104,11 @@ interface Routes {
|
|
|
41016
41104
|
stand_open?: boolean | undefined;
|
|
41017
41105
|
pms_id?: string | undefined;
|
|
41018
41106
|
} | undefined;
|
|
41107
|
+
salto_space_metadata?: {
|
|
41108
|
+
door_name: string;
|
|
41109
|
+
ext_door_id: string;
|
|
41110
|
+
door_description?: string | undefined;
|
|
41111
|
+
} | undefined;
|
|
41019
41112
|
}>;
|
|
41020
41113
|
};
|
|
41021
41114
|
};
|
|
@@ -41902,6 +41995,8 @@ interface Routes {
|
|
|
41902
41995
|
} | undefined;
|
|
41903
41996
|
dormakaba_community_metadata?: {
|
|
41904
41997
|
access_point_name: string;
|
|
41998
|
+
common_area_number?: number | undefined;
|
|
41999
|
+
inner_access_points_names?: string[] | undefined;
|
|
41905
42000
|
} | undefined;
|
|
41906
42001
|
assa_abloy_vostio_metadata?: {
|
|
41907
42002
|
door_type: 'CommonDoor' | 'EntranceDoor' | 'GuestDoor' | 'Elevator';
|
|
@@ -41910,6 +42005,11 @@ interface Routes {
|
|
|
41910
42005
|
stand_open?: boolean | undefined;
|
|
41911
42006
|
pms_id?: string | undefined;
|
|
41912
42007
|
} | undefined;
|
|
42008
|
+
salto_space_metadata?: {
|
|
42009
|
+
door_name: string;
|
|
42010
|
+
ext_door_id: string;
|
|
42011
|
+
door_description?: string | undefined;
|
|
42012
|
+
} | undefined;
|
|
41913
42013
|
}>;
|
|
41914
42014
|
};
|
|
41915
42015
|
};
|
|
@@ -43961,6 +44061,7 @@ interface Routes {
|
|
|
43961
44061
|
client_session_id: string;
|
|
43962
44062
|
workspace_id: string;
|
|
43963
44063
|
created_at: string;
|
|
44064
|
+
expires_at: string;
|
|
43964
44065
|
token: string;
|
|
43965
44066
|
user_identifier_key: string | null;
|
|
43966
44067
|
device_count: number;
|
|
@@ -43996,6 +44097,7 @@ interface Routes {
|
|
|
43996
44097
|
client_session_id: string;
|
|
43997
44098
|
workspace_id: string;
|
|
43998
44099
|
created_at: string;
|
|
44100
|
+
expires_at: string;
|
|
43999
44101
|
token: string;
|
|
44000
44102
|
user_identifier_key: string | null;
|
|
44001
44103
|
device_count: number;
|
|
@@ -44023,6 +44125,7 @@ interface Routes {
|
|
|
44023
44125
|
client_session_id: string;
|
|
44024
44126
|
workspace_id: string;
|
|
44025
44127
|
created_at: string;
|
|
44128
|
+
expires_at: string;
|
|
44026
44129
|
token: string;
|
|
44027
44130
|
user_identifier_key: string | null;
|
|
44028
44131
|
device_count: number;
|
|
@@ -44050,6 +44153,7 @@ interface Routes {
|
|
|
44050
44153
|
client_session_id: string;
|
|
44051
44154
|
workspace_id: string;
|
|
44052
44155
|
created_at: string;
|
|
44156
|
+
expires_at: string;
|
|
44053
44157
|
token: string;
|
|
44054
44158
|
user_identifier_key: string | null;
|
|
44055
44159
|
device_count: number;
|
|
@@ -44077,6 +44181,7 @@ interface Routes {
|
|
|
44077
44181
|
client_session_id: string;
|
|
44078
44182
|
workspace_id: string;
|
|
44079
44183
|
created_at: string;
|
|
44184
|
+
expires_at: string;
|
|
44080
44185
|
token: string;
|
|
44081
44186
|
user_identifier_key: string | null;
|
|
44082
44187
|
device_count: number;
|
|
@@ -88,10 +88,16 @@ export declare const acs_entrance: z.ZodObject<{
|
|
|
88
88
|
}>>;
|
|
89
89
|
dormakaba_community_metadata: z.ZodOptional<z.ZodObject<{
|
|
90
90
|
access_point_name: z.ZodString;
|
|
91
|
+
common_area_number: z.ZodOptional<z.ZodNumber>;
|
|
92
|
+
inner_access_points_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
91
93
|
}, "strip", z.ZodTypeAny, {
|
|
92
94
|
access_point_name: string;
|
|
95
|
+
common_area_number?: number | undefined;
|
|
96
|
+
inner_access_points_names?: string[] | undefined;
|
|
93
97
|
}, {
|
|
94
98
|
access_point_name: string;
|
|
99
|
+
common_area_number?: number | undefined;
|
|
100
|
+
inner_access_points_names?: string[] | undefined;
|
|
95
101
|
}>>;
|
|
96
102
|
assa_abloy_vostio_metadata: z.ZodOptional<z.ZodObject<{
|
|
97
103
|
door_type: z.ZodEnum<["CommonDoor", "EntranceDoor", "GuestDoor", "Elevator"]>;
|
|
@@ -112,6 +118,19 @@ export declare const acs_entrance: z.ZodObject<{
|
|
|
112
118
|
stand_open?: boolean | undefined;
|
|
113
119
|
pms_id?: string | undefined;
|
|
114
120
|
}>>;
|
|
121
|
+
salto_space_metadata: z.ZodOptional<z.ZodObject<{
|
|
122
|
+
door_name: z.ZodString;
|
|
123
|
+
ext_door_id: z.ZodString;
|
|
124
|
+
door_description: z.ZodOptional<z.ZodString>;
|
|
125
|
+
}, "strip", z.ZodTypeAny, {
|
|
126
|
+
door_name: string;
|
|
127
|
+
ext_door_id: string;
|
|
128
|
+
door_description?: string | undefined;
|
|
129
|
+
}, {
|
|
130
|
+
door_name: string;
|
|
131
|
+
ext_door_id: string;
|
|
132
|
+
door_description?: string | undefined;
|
|
133
|
+
}>>;
|
|
115
134
|
}, "strip", z.ZodTypeAny, {
|
|
116
135
|
created_at: string;
|
|
117
136
|
errors: {
|
|
@@ -154,6 +173,13 @@ export declare const acs_entrance: z.ZodObject<{
|
|
|
154
173
|
} | undefined;
|
|
155
174
|
dormakaba_community_metadata?: {
|
|
156
175
|
access_point_name: string;
|
|
176
|
+
common_area_number?: number | undefined;
|
|
177
|
+
inner_access_points_names?: string[] | undefined;
|
|
178
|
+
} | undefined;
|
|
179
|
+
salto_space_metadata?: {
|
|
180
|
+
door_name: string;
|
|
181
|
+
ext_door_id: string;
|
|
182
|
+
door_description?: string | undefined;
|
|
157
183
|
} | undefined;
|
|
158
184
|
}, {
|
|
159
185
|
created_at: string;
|
|
@@ -197,6 +223,13 @@ export declare const acs_entrance: z.ZodObject<{
|
|
|
197
223
|
} | undefined;
|
|
198
224
|
dormakaba_community_metadata?: {
|
|
199
225
|
access_point_name: string;
|
|
226
|
+
common_area_number?: number | undefined;
|
|
227
|
+
inner_access_points_names?: string[] | undefined;
|
|
228
|
+
} | undefined;
|
|
229
|
+
salto_space_metadata?: {
|
|
230
|
+
door_name: string;
|
|
231
|
+
ext_door_id: string;
|
|
232
|
+
door_description?: string | undefined;
|
|
200
233
|
} | undefined;
|
|
201
234
|
}>;
|
|
202
235
|
export type AcsEntrance = z.infer<typeof acs_entrance>;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
import { acs_entrance_assa_abloy_vostio_metadata, acs_entrance_dormakaba_community_metadata, acs_entrance_latch_metadata, acs_entrance_salto_ks_metadata, acs_entrance_visionline_metadata, } from './metadata/index.js';
|
|
3
|
+
import { acs_entrance_salto_space_metadata } from './metadata/salto-space.js';
|
|
3
4
|
export const acs_entrance = z
|
|
4
5
|
.object({
|
|
5
6
|
acs_system_id: z
|
|
@@ -21,6 +22,7 @@ export const acs_entrance = z
|
|
|
21
22
|
salto_ks_metadata: acs_entrance_salto_ks_metadata.optional(),
|
|
22
23
|
dormakaba_community_metadata: acs_entrance_dormakaba_community_metadata.optional(),
|
|
23
24
|
assa_abloy_vostio_metadata: acs_entrance_assa_abloy_vostio_metadata.optional(),
|
|
25
|
+
salto_space_metadata: acs_entrance_salto_space_metadata.optional(),
|
|
24
26
|
})
|
|
25
27
|
.describe('Represents an [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) within an [access control system](https://docs.seam.co/latest/capability-guides/access-systems).');
|
|
26
28
|
//# sourceMappingURL=acs-entrance.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"acs-entrance.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/acs/acs-entrance.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EACL,uCAAuC,EACvC,yCAAyC,EACzC,2BAA2B,EAC3B,8BAA8B,EAC9B,gCAAgC,GACjC,MAAM,qBAAqB,CAAA;
|
|
1
|
+
{"version":3,"file":"acs-entrance.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/acs/acs-entrance.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EACL,uCAAuC,EACvC,yCAAyC,EACzC,2BAA2B,EAC3B,8BAA8B,EAC9B,gCAAgC,GACjC,MAAM,qBAAqB,CAAA;AAC5B,OAAO,EAAE,iCAAiC,EAAE,MAAM,2BAA2B,CAAA;AAE7E,MAAM,CAAC,MAAM,YAAY,GAAG,CAAC;KAC1B,MAAM,CAAC;IACN,aAAa,EAAE,CAAC;SACb,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,CAAC,6DAA6D,CAAC;IAC1E,eAAe,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,CAAC,qBAAqB,CAAC;IAClE,UAAU,EAAE,CAAC;SACV,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,kDAAkD,CAAC;IAC/D,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,gCAAgC,CAAC;IACnE,MAAM,EAAE,CAAC,CAAC,KAAK,CACb,CAAC,CAAC,MAAM,CAAC;QACP,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE;QACtB,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE;KACpB,CAAC,CACH;IACD,cAAc,EAAE,2BAA2B,CAAC,QAAQ,EAAE;IACtD,mBAAmB,EAAE,gCAAgC,CAAC,QAAQ,EAAE;IAChE,iBAAiB,EAAE,8BAA8B,CAAC,QAAQ,EAAE;IAC5D,4BAA4B,EAC1B,yCAAyC,CAAC,QAAQ,EAAE;IACtD,0BAA0B,EACxB,uCAAuC,CAAC,QAAQ,EAAE;IACpD,oBAAoB,EAAE,iCAAiC,CAAC,QAAQ,EAAE;CACnE,CAAC;KACD,QAAQ,CACP,qNAAqN,CACtN,CAAA"}
|
|
@@ -1,9 +1,15 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
export declare const acs_entrance_dormakaba_community_metadata: z.ZodObject<{
|
|
3
3
|
access_point_name: z.ZodString;
|
|
4
|
+
common_area_number: z.ZodOptional<z.ZodNumber>;
|
|
5
|
+
inner_access_points_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4
6
|
}, "strip", z.ZodTypeAny, {
|
|
5
7
|
access_point_name: string;
|
|
8
|
+
common_area_number?: number | undefined;
|
|
9
|
+
inner_access_points_names?: string[] | undefined;
|
|
6
10
|
}, {
|
|
7
11
|
access_point_name: string;
|
|
12
|
+
common_area_number?: number | undefined;
|
|
13
|
+
inner_access_points_names?: string[] | undefined;
|
|
8
14
|
}>;
|
|
9
15
|
export type AcsEntranceDormakabaCommunityMetadata = z.infer<typeof acs_entrance_dormakaba_community_metadata>;
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
export const acs_entrance_dormakaba_community_metadata = z.object({
|
|
3
3
|
access_point_name: z.string(),
|
|
4
|
+
common_area_number: z.number().optional(),
|
|
5
|
+
inner_access_points_names: z.array(z.string()).optional(),
|
|
4
6
|
});
|
|
5
7
|
//# sourceMappingURL=dormakaba-community.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dormakaba-community.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/models/acs/metadata/dormakaba-community.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,CAAC,MAAM,yCAAyC,GAAG,CAAC,CAAC,MAAM,CAAC;IAChE,iBAAiB,EAAE,CAAC,CAAC,MAAM,EAAE;
|
|
1
|
+
{"version":3,"file":"dormakaba-community.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/models/acs/metadata/dormakaba-community.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,CAAC,MAAM,yCAAyC,GAAG,CAAC,CAAC,MAAM,CAAC;IAChE,iBAAiB,EAAE,CAAC,CAAC,MAAM,EAAE;IAC7B,kBAAkB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACzC,yBAAyB,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,EAAE;CAC1D,CAAC,CAAA"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { z } from 'zod';
|
|
2
|
+
export declare const acs_entrance_salto_space_metadata: z.ZodObject<{
|
|
3
|
+
door_name: z.ZodString;
|
|
4
|
+
ext_door_id: z.ZodString;
|
|
5
|
+
door_description: z.ZodOptional<z.ZodString>;
|
|
6
|
+
}, "strip", z.ZodTypeAny, {
|
|
7
|
+
door_name: string;
|
|
8
|
+
ext_door_id: string;
|
|
9
|
+
door_description?: string | undefined;
|
|
10
|
+
}, {
|
|
11
|
+
door_name: string;
|
|
12
|
+
ext_door_id: string;
|
|
13
|
+
door_description?: string | undefined;
|
|
14
|
+
}>;
|
|
15
|
+
export type AcsEntranceSaltoSpaceMetadata = z.infer<typeof acs_entrance_salto_space_metadata>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"salto-space.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/models/acs/metadata/salto-space.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,CAAC,MAAM,iCAAiC,GAAG,CAAC,CAAC,MAAM,CAAC;IACxD,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE;IACrB,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE;IACvB,gBAAgB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CACxC,CAAC,CAAA"}
|
|
@@ -3,6 +3,7 @@ export declare const client_session: z.ZodObject<{
|
|
|
3
3
|
client_session_id: z.ZodString;
|
|
4
4
|
workspace_id: z.ZodString;
|
|
5
5
|
created_at: z.ZodString;
|
|
6
|
+
expires_at: z.ZodString;
|
|
6
7
|
token: z.ZodString;
|
|
7
8
|
user_identifier_key: z.ZodNullable<z.ZodString>;
|
|
8
9
|
device_count: z.ZodNumber;
|
|
@@ -14,6 +15,7 @@ export declare const client_session: z.ZodObject<{
|
|
|
14
15
|
workspace_id: string;
|
|
15
16
|
connected_account_ids: string[];
|
|
16
17
|
client_session_id: string;
|
|
18
|
+
expires_at: string;
|
|
17
19
|
token: string;
|
|
18
20
|
user_identifier_key: string | null;
|
|
19
21
|
device_count: number;
|
|
@@ -24,6 +26,7 @@ export declare const client_session: z.ZodObject<{
|
|
|
24
26
|
workspace_id: string;
|
|
25
27
|
connected_account_ids: string[];
|
|
26
28
|
client_session_id: string;
|
|
29
|
+
expires_at: string;
|
|
27
30
|
token: string;
|
|
28
31
|
user_identifier_key: string | null;
|
|
29
32
|
device_count: number;
|
|
@@ -3,6 +3,7 @@ export const client_session = z.object({
|
|
|
3
3
|
client_session_id: z.string().uuid(),
|
|
4
4
|
workspace_id: z.string().uuid(),
|
|
5
5
|
created_at: z.string().datetime(),
|
|
6
|
+
expires_at: z.string().datetime(),
|
|
6
7
|
token: z.string(),
|
|
7
8
|
user_identifier_key: z.string().nullable(),
|
|
8
9
|
device_count: z.number(),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"client-session.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/client-sessions/client-session.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,CAAC,MAAM,cAAc,GAAG,CAAC,CAAC,MAAM,CAAC;IACrC,iBAAiB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IACpC,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAC/B,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE;IACjB,mBAAmB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC1C,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE;IACxB,qBAAqB,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC;IACjD,mBAAmB,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC;IAC/C,iBAAiB,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC;CAC9C,CAAC,CAAA"}
|
|
1
|
+
{"version":3,"file":"client-session.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/client-sessions/client-session.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,CAAC,MAAM,cAAc,GAAG,CAAC,CAAC,MAAM,CAAC;IACrC,iBAAiB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IACpC,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAC/B,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE;IACjB,mBAAmB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC1C,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE;IACxB,qBAAqB,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC;IACjD,mBAAmB,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC;IAC/C,iBAAiB,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC;CAC9C,CAAC,CAAA"}
|
|
@@ -533,6 +533,16 @@ declare const _default: {
|
|
|
533
533
|
access_point_name: {
|
|
534
534
|
type: string;
|
|
535
535
|
};
|
|
536
|
+
common_area_number: {
|
|
537
|
+
format: string;
|
|
538
|
+
type: string;
|
|
539
|
+
};
|
|
540
|
+
inner_access_points_names: {
|
|
541
|
+
items: {
|
|
542
|
+
type: string;
|
|
543
|
+
};
|
|
544
|
+
type: string;
|
|
545
|
+
};
|
|
536
546
|
};
|
|
537
547
|
required: string[];
|
|
538
548
|
type: string;
|
|
@@ -600,6 +610,21 @@ declare const _default: {
|
|
|
600
610
|
required: string[];
|
|
601
611
|
type: string;
|
|
602
612
|
};
|
|
613
|
+
salto_space_metadata: {
|
|
614
|
+
properties: {
|
|
615
|
+
door_description: {
|
|
616
|
+
type: string;
|
|
617
|
+
};
|
|
618
|
+
door_name: {
|
|
619
|
+
type: string;
|
|
620
|
+
};
|
|
621
|
+
ext_door_id: {
|
|
622
|
+
type: string;
|
|
623
|
+
};
|
|
624
|
+
};
|
|
625
|
+
required: string[];
|
|
626
|
+
type: string;
|
|
627
|
+
};
|
|
603
628
|
visionline_metadata: {
|
|
604
629
|
properties: {
|
|
605
630
|
door_category: {
|
|
@@ -1959,6 +1984,10 @@ declare const _default: {
|
|
|
1959
1984
|
format: string;
|
|
1960
1985
|
type: string;
|
|
1961
1986
|
};
|
|
1987
|
+
expires_at: {
|
|
1988
|
+
format: string;
|
|
1989
|
+
type: string;
|
|
1990
|
+
};
|
|
1962
1991
|
token: {
|
|
1963
1992
|
type: string;
|
|
1964
1993
|
};
|
|
@@ -554,7 +554,14 @@ export default {
|
|
|
554
554
|
type: 'string',
|
|
555
555
|
},
|
|
556
556
|
dormakaba_community_metadata: {
|
|
557
|
-
properties: {
|
|
557
|
+
properties: {
|
|
558
|
+
access_point_name: { type: 'string' },
|
|
559
|
+
common_area_number: { format: 'float', type: 'number' },
|
|
560
|
+
inner_access_points_names: {
|
|
561
|
+
items: { type: 'string' },
|
|
562
|
+
type: 'array',
|
|
563
|
+
},
|
|
564
|
+
},
|
|
558
565
|
required: ['access_point_name'],
|
|
559
566
|
type: 'object',
|
|
560
567
|
},
|
|
@@ -603,6 +610,15 @@ export default {
|
|
|
603
610
|
],
|
|
604
611
|
type: 'object',
|
|
605
612
|
},
|
|
613
|
+
salto_space_metadata: {
|
|
614
|
+
properties: {
|
|
615
|
+
door_description: { type: 'string' },
|
|
616
|
+
door_name: { type: 'string' },
|
|
617
|
+
ext_door_id: { type: 'string' },
|
|
618
|
+
},
|
|
619
|
+
required: ['door_name', 'ext_door_id'],
|
|
620
|
+
type: 'object',
|
|
621
|
+
},
|
|
606
622
|
visionline_metadata: {
|
|
607
623
|
properties: {
|
|
608
624
|
door_category: {
|
|
@@ -3928,6 +3944,7 @@ export default {
|
|
|
3928
3944
|
},
|
|
3929
3945
|
created_at: { format: 'date-time', type: 'string' },
|
|
3930
3946
|
device_count: { format: 'float', type: 'number' },
|
|
3947
|
+
expires_at: { format: 'date-time', type: 'string' },
|
|
3931
3948
|
token: { type: 'string' },
|
|
3932
3949
|
user_identifier_key: { nullable: true, type: 'string' },
|
|
3933
3950
|
user_identity_ids: {
|
|
@@ -3940,6 +3957,7 @@ export default {
|
|
|
3940
3957
|
'client_session_id',
|
|
3941
3958
|
'workspace_id',
|
|
3942
3959
|
'created_at',
|
|
3960
|
+
'expires_at',
|
|
3943
3961
|
'token',
|
|
3944
3962
|
'user_identifier_key',
|
|
3945
3963
|
'device_count',
|