@seamapi/types 1.457.1 → 1.458.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 +38 -7
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +256 -84
- package/dist/index.cjs +38 -7
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/acs/acs-entrance.d.ts +25 -10
- package/lib/seam/connect/models/acs/metadata/salto-space.d.ts +15 -6
- package/lib/seam/connect/models/acs/metadata/salto-space.js +13 -4
- package/lib/seam/connect/models/acs/metadata/salto-space.js.map +1 -1
- package/lib/seam/connect/models/batches/access_grants.d.ts +35 -14
- package/lib/seam/connect/models/batches/access_methods.d.ts +35 -14
- package/lib/seam/connect/models/batches/batch.d.ts +105 -42
- package/lib/seam/connect/models/batches/spaces.d.ts +35 -14
- package/lib/seam/connect/models/phones/phone-session.d.ts +100 -40
- package/lib/seam/connect/openapi.d.ts +26 -2
- package/lib/seam/connect/openapi.js +28 -4
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +100 -30
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/metadata/salto-space.ts +13 -4
- package/src/lib/seam/connect/openapi.ts +31 -4
- package/src/lib/seam/connect/route-types.ts +100 -30
|
@@ -127,17 +127,26 @@ export declare const acs_entrance: z.ZodObject<{
|
|
|
127
127
|
pms_id?: string | undefined;
|
|
128
128
|
}>>;
|
|
129
129
|
salto_space_metadata: z.ZodOptional<z.ZodObject<{
|
|
130
|
-
|
|
131
|
-
|
|
130
|
+
ext_door_id: z.ZodOptional<z.ZodString>;
|
|
131
|
+
door_id: z.ZodOptional<z.ZodString>;
|
|
132
|
+
door_name: z.ZodOptional<z.ZodString>;
|
|
132
133
|
door_description: z.ZodOptional<z.ZodString>;
|
|
134
|
+
room_name: z.ZodOptional<z.ZodString>;
|
|
135
|
+
room_description: z.ZodOptional<z.ZodString>;
|
|
133
136
|
}, "strip", z.ZodTypeAny, {
|
|
134
|
-
door_name
|
|
135
|
-
|
|
137
|
+
door_name?: string | undefined;
|
|
138
|
+
door_id?: string | undefined;
|
|
139
|
+
ext_door_id?: string | undefined;
|
|
136
140
|
door_description?: string | undefined;
|
|
141
|
+
room_name?: string | undefined;
|
|
142
|
+
room_description?: string | undefined;
|
|
137
143
|
}, {
|
|
138
|
-
door_name
|
|
139
|
-
|
|
144
|
+
door_name?: string | undefined;
|
|
145
|
+
door_id?: string | undefined;
|
|
146
|
+
ext_door_id?: string | undefined;
|
|
140
147
|
door_description?: string | undefined;
|
|
148
|
+
room_name?: string | undefined;
|
|
149
|
+
room_description?: string | undefined;
|
|
141
150
|
}>>;
|
|
142
151
|
} & {
|
|
143
152
|
can_unlock_with_mobile_key: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -191,9 +200,12 @@ export declare const acs_entrance: z.ZodObject<{
|
|
|
191
200
|
access_point_name: string;
|
|
192
201
|
} | undefined;
|
|
193
202
|
salto_space_metadata?: {
|
|
194
|
-
door_name
|
|
195
|
-
|
|
203
|
+
door_name?: string | undefined;
|
|
204
|
+
door_id?: string | undefined;
|
|
205
|
+
ext_door_id?: string | undefined;
|
|
196
206
|
door_description?: string | undefined;
|
|
207
|
+
room_name?: string | undefined;
|
|
208
|
+
room_description?: string | undefined;
|
|
197
209
|
} | undefined;
|
|
198
210
|
}, {
|
|
199
211
|
display_name: string;
|
|
@@ -243,9 +255,12 @@ export declare const acs_entrance: z.ZodObject<{
|
|
|
243
255
|
access_point_name: string;
|
|
244
256
|
} | undefined;
|
|
245
257
|
salto_space_metadata?: {
|
|
246
|
-
door_name
|
|
247
|
-
|
|
258
|
+
door_name?: string | undefined;
|
|
259
|
+
door_id?: string | undefined;
|
|
260
|
+
ext_door_id?: string | undefined;
|
|
248
261
|
door_description?: string | undefined;
|
|
262
|
+
room_name?: string | undefined;
|
|
263
|
+
room_description?: string | undefined;
|
|
249
264
|
} | undefined;
|
|
250
265
|
}>;
|
|
251
266
|
export type AcsEntrance = z.infer<typeof acs_entrance>;
|
|
@@ -1,15 +1,24 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
export declare const acs_entrance_salto_space_metadata: z.ZodObject<{
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
ext_door_id: z.ZodOptional<z.ZodString>;
|
|
4
|
+
door_id: z.ZodOptional<z.ZodString>;
|
|
5
|
+
door_name: z.ZodOptional<z.ZodString>;
|
|
5
6
|
door_description: z.ZodOptional<z.ZodString>;
|
|
7
|
+
room_name: z.ZodOptional<z.ZodString>;
|
|
8
|
+
room_description: z.ZodOptional<z.ZodString>;
|
|
6
9
|
}, "strip", z.ZodTypeAny, {
|
|
7
|
-
door_name
|
|
8
|
-
|
|
10
|
+
door_name?: string | undefined;
|
|
11
|
+
door_id?: string | undefined;
|
|
12
|
+
ext_door_id?: string | undefined;
|
|
9
13
|
door_description?: string | undefined;
|
|
14
|
+
room_name?: string | undefined;
|
|
15
|
+
room_description?: string | undefined;
|
|
10
16
|
}, {
|
|
11
|
-
door_name
|
|
12
|
-
|
|
17
|
+
door_name?: string | undefined;
|
|
18
|
+
door_id?: string | undefined;
|
|
19
|
+
ext_door_id?: string | undefined;
|
|
13
20
|
door_description?: string | undefined;
|
|
21
|
+
room_name?: string | undefined;
|
|
22
|
+
room_description?: string | undefined;
|
|
14
23
|
}>;
|
|
15
24
|
export type AcsEntranceSaltoSpaceMetadata = z.infer<typeof acs_entrance_salto_space_metadata>;
|
|
@@ -1,16 +1,25 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
export const acs_entrance_salto_space_metadata = z
|
|
3
3
|
.object({
|
|
4
|
+
ext_door_id: z.string().describe(`
|
|
5
|
+
---
|
|
6
|
+
deprecated: use door_id.
|
|
7
|
+
---
|
|
8
|
+
`),
|
|
9
|
+
door_id: z.string().describe('Door ID in the Salto Space access system.'),
|
|
4
10
|
door_name: z
|
|
5
11
|
.string()
|
|
6
12
|
.describe('Name of the door in the Salto Space access system.'),
|
|
7
|
-
ext_door_id: z
|
|
8
|
-
.string()
|
|
9
|
-
.describe('External door ID in the Salto Space access system.'),
|
|
10
13
|
door_description: z
|
|
11
14
|
.string()
|
|
12
|
-
.optional()
|
|
13
15
|
.describe('Description of the door in the Salto Space access system.'),
|
|
16
|
+
room_name: z
|
|
17
|
+
.string()
|
|
18
|
+
.describe('Name of the room in the Salto Space access system.'),
|
|
19
|
+
room_description: z
|
|
20
|
+
.string()
|
|
21
|
+
.describe('Description of the room in the Salto Space access system.'),
|
|
14
22
|
})
|
|
23
|
+
.partial()
|
|
15
24
|
.describe('Salto Space-specific metadata associated with the entrance.');
|
|
16
25
|
//# sourceMappingURL=salto-space.js.map
|
|
@@ -1 +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;KAC/C,MAAM,CAAC;IACN,SAAS,EAAE,CAAC;SACT,MAAM,EAAE;SACR,QAAQ,CAAC,oDAAoD,CAAC;IACjE,
|
|
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;KAC/C,MAAM,CAAC;IACN,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC;;;;KAIhC,CAAC;IACF,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,2CAA2C,CAAC;IACzE,SAAS,EAAE,CAAC;SACT,MAAM,EAAE;SACR,QAAQ,CAAC,oDAAoD,CAAC;IACjE,gBAAgB,EAAE,CAAC;SAChB,MAAM,EAAE;SACR,QAAQ,CAAC,2DAA2D,CAAC;IACxE,SAAS,EAAE,CAAC;SACT,MAAM,EAAE;SACR,QAAQ,CAAC,oDAAoD,CAAC;IACjE,gBAAgB,EAAE,CAAC;SAChB,MAAM,EAAE;SACR,QAAQ,CAAC,2DAA2D,CAAC;CACzE,CAAC;KACD,OAAO,EAAE;KACT,QAAQ,CAAC,6DAA6D,CAAC,CAAA"}
|
|
@@ -4154,17 +4154,26 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
4154
4154
|
pms_id?: string | undefined;
|
|
4155
4155
|
}>>;
|
|
4156
4156
|
salto_space_metadata: z.ZodOptional<z.ZodObject<{
|
|
4157
|
-
|
|
4158
|
-
|
|
4157
|
+
ext_door_id: z.ZodOptional<z.ZodString>;
|
|
4158
|
+
door_id: z.ZodOptional<z.ZodString>;
|
|
4159
|
+
door_name: z.ZodOptional<z.ZodString>;
|
|
4159
4160
|
door_description: z.ZodOptional<z.ZodString>;
|
|
4161
|
+
room_name: z.ZodOptional<z.ZodString>;
|
|
4162
|
+
room_description: z.ZodOptional<z.ZodString>;
|
|
4160
4163
|
}, "strip", z.ZodTypeAny, {
|
|
4161
|
-
door_name
|
|
4162
|
-
|
|
4164
|
+
door_name?: string | undefined;
|
|
4165
|
+
door_id?: string | undefined;
|
|
4166
|
+
ext_door_id?: string | undefined;
|
|
4163
4167
|
door_description?: string | undefined;
|
|
4168
|
+
room_name?: string | undefined;
|
|
4169
|
+
room_description?: string | undefined;
|
|
4164
4170
|
}, {
|
|
4165
|
-
door_name
|
|
4166
|
-
|
|
4171
|
+
door_name?: string | undefined;
|
|
4172
|
+
door_id?: string | undefined;
|
|
4173
|
+
ext_door_id?: string | undefined;
|
|
4167
4174
|
door_description?: string | undefined;
|
|
4175
|
+
room_name?: string | undefined;
|
|
4176
|
+
room_description?: string | undefined;
|
|
4168
4177
|
}>>;
|
|
4169
4178
|
} & {
|
|
4170
4179
|
can_unlock_with_mobile_key: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -4218,9 +4227,12 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
4218
4227
|
access_point_name: string;
|
|
4219
4228
|
} | undefined;
|
|
4220
4229
|
salto_space_metadata?: {
|
|
4221
|
-
door_name
|
|
4222
|
-
|
|
4230
|
+
door_name?: string | undefined;
|
|
4231
|
+
door_id?: string | undefined;
|
|
4232
|
+
ext_door_id?: string | undefined;
|
|
4223
4233
|
door_description?: string | undefined;
|
|
4234
|
+
room_name?: string | undefined;
|
|
4235
|
+
room_description?: string | undefined;
|
|
4224
4236
|
} | undefined;
|
|
4225
4237
|
}, {
|
|
4226
4238
|
display_name: string;
|
|
@@ -4270,9 +4282,12 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
4270
4282
|
access_point_name: string;
|
|
4271
4283
|
} | undefined;
|
|
4272
4284
|
salto_space_metadata?: {
|
|
4273
|
-
door_name
|
|
4274
|
-
|
|
4285
|
+
door_name?: string | undefined;
|
|
4286
|
+
door_id?: string | undefined;
|
|
4287
|
+
ext_door_id?: string | undefined;
|
|
4275
4288
|
door_description?: string | undefined;
|
|
4289
|
+
room_name?: string | undefined;
|
|
4290
|
+
room_description?: string | undefined;
|
|
4276
4291
|
} | undefined;
|
|
4277
4292
|
}>, "many">>;
|
|
4278
4293
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -4971,9 +4986,12 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
4971
4986
|
access_point_name: string;
|
|
4972
4987
|
} | undefined;
|
|
4973
4988
|
salto_space_metadata?: {
|
|
4974
|
-
door_name
|
|
4975
|
-
|
|
4989
|
+
door_name?: string | undefined;
|
|
4990
|
+
door_id?: string | undefined;
|
|
4991
|
+
ext_door_id?: string | undefined;
|
|
4976
4992
|
door_description?: string | undefined;
|
|
4993
|
+
room_name?: string | undefined;
|
|
4994
|
+
room_description?: string | undefined;
|
|
4977
4995
|
} | undefined;
|
|
4978
4996
|
}[] | undefined;
|
|
4979
4997
|
}, {
|
|
@@ -5672,9 +5690,12 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
5672
5690
|
access_point_name: string;
|
|
5673
5691
|
} | undefined;
|
|
5674
5692
|
salto_space_metadata?: {
|
|
5675
|
-
door_name
|
|
5676
|
-
|
|
5693
|
+
door_name?: string | undefined;
|
|
5694
|
+
door_id?: string | undefined;
|
|
5695
|
+
ext_door_id?: string | undefined;
|
|
5677
5696
|
door_description?: string | undefined;
|
|
5697
|
+
room_name?: string | undefined;
|
|
5698
|
+
room_description?: string | undefined;
|
|
5678
5699
|
} | undefined;
|
|
5679
5700
|
}[] | undefined;
|
|
5680
5701
|
}>;
|
|
@@ -4154,17 +4154,26 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
4154
4154
|
pms_id?: string | undefined;
|
|
4155
4155
|
}>>;
|
|
4156
4156
|
salto_space_metadata: z.ZodOptional<z.ZodObject<{
|
|
4157
|
-
|
|
4158
|
-
|
|
4157
|
+
ext_door_id: z.ZodOptional<z.ZodString>;
|
|
4158
|
+
door_id: z.ZodOptional<z.ZodString>;
|
|
4159
|
+
door_name: z.ZodOptional<z.ZodString>;
|
|
4159
4160
|
door_description: z.ZodOptional<z.ZodString>;
|
|
4161
|
+
room_name: z.ZodOptional<z.ZodString>;
|
|
4162
|
+
room_description: z.ZodOptional<z.ZodString>;
|
|
4160
4163
|
}, "strip", z.ZodTypeAny, {
|
|
4161
|
-
door_name
|
|
4162
|
-
|
|
4164
|
+
door_name?: string | undefined;
|
|
4165
|
+
door_id?: string | undefined;
|
|
4166
|
+
ext_door_id?: string | undefined;
|
|
4163
4167
|
door_description?: string | undefined;
|
|
4168
|
+
room_name?: string | undefined;
|
|
4169
|
+
room_description?: string | undefined;
|
|
4164
4170
|
}, {
|
|
4165
|
-
door_name
|
|
4166
|
-
|
|
4171
|
+
door_name?: string | undefined;
|
|
4172
|
+
door_id?: string | undefined;
|
|
4173
|
+
ext_door_id?: string | undefined;
|
|
4167
4174
|
door_description?: string | undefined;
|
|
4175
|
+
room_name?: string | undefined;
|
|
4176
|
+
room_description?: string | undefined;
|
|
4168
4177
|
}>>;
|
|
4169
4178
|
} & {
|
|
4170
4179
|
can_unlock_with_mobile_key: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -4218,9 +4227,12 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
4218
4227
|
access_point_name: string;
|
|
4219
4228
|
} | undefined;
|
|
4220
4229
|
salto_space_metadata?: {
|
|
4221
|
-
door_name
|
|
4222
|
-
|
|
4230
|
+
door_name?: string | undefined;
|
|
4231
|
+
door_id?: string | undefined;
|
|
4232
|
+
ext_door_id?: string | undefined;
|
|
4223
4233
|
door_description?: string | undefined;
|
|
4234
|
+
room_name?: string | undefined;
|
|
4235
|
+
room_description?: string | undefined;
|
|
4224
4236
|
} | undefined;
|
|
4225
4237
|
}, {
|
|
4226
4238
|
display_name: string;
|
|
@@ -4270,9 +4282,12 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
4270
4282
|
access_point_name: string;
|
|
4271
4283
|
} | undefined;
|
|
4272
4284
|
salto_space_metadata?: {
|
|
4273
|
-
door_name
|
|
4274
|
-
|
|
4285
|
+
door_name?: string | undefined;
|
|
4286
|
+
door_id?: string | undefined;
|
|
4287
|
+
ext_door_id?: string | undefined;
|
|
4275
4288
|
door_description?: string | undefined;
|
|
4289
|
+
room_name?: string | undefined;
|
|
4290
|
+
room_description?: string | undefined;
|
|
4276
4291
|
} | undefined;
|
|
4277
4292
|
}>, "many">>;
|
|
4278
4293
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -4971,9 +4986,12 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
4971
4986
|
access_point_name: string;
|
|
4972
4987
|
} | undefined;
|
|
4973
4988
|
salto_space_metadata?: {
|
|
4974
|
-
door_name
|
|
4975
|
-
|
|
4989
|
+
door_name?: string | undefined;
|
|
4990
|
+
door_id?: string | undefined;
|
|
4991
|
+
ext_door_id?: string | undefined;
|
|
4976
4992
|
door_description?: string | undefined;
|
|
4993
|
+
room_name?: string | undefined;
|
|
4994
|
+
room_description?: string | undefined;
|
|
4977
4995
|
} | undefined;
|
|
4978
4996
|
}[] | undefined;
|
|
4979
4997
|
}, {
|
|
@@ -5672,9 +5690,12 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
5672
5690
|
access_point_name: string;
|
|
5673
5691
|
} | undefined;
|
|
5674
5692
|
salto_space_metadata?: {
|
|
5675
|
-
door_name
|
|
5676
|
-
|
|
5693
|
+
door_name?: string | undefined;
|
|
5694
|
+
door_id?: string | undefined;
|
|
5695
|
+
ext_door_id?: string | undefined;
|
|
5677
5696
|
door_description?: string | undefined;
|
|
5697
|
+
room_name?: string | undefined;
|
|
5698
|
+
room_description?: string | undefined;
|
|
5678
5699
|
} | undefined;
|
|
5679
5700
|
}[] | undefined;
|
|
5680
5701
|
}>;
|
|
@@ -4154,17 +4154,26 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
4154
4154
|
pms_id?: string | undefined;
|
|
4155
4155
|
}>>;
|
|
4156
4156
|
salto_space_metadata: z.ZodOptional<z.ZodObject<{
|
|
4157
|
-
|
|
4158
|
-
|
|
4157
|
+
ext_door_id: z.ZodOptional<z.ZodString>;
|
|
4158
|
+
door_id: z.ZodOptional<z.ZodString>;
|
|
4159
|
+
door_name: z.ZodOptional<z.ZodString>;
|
|
4159
4160
|
door_description: z.ZodOptional<z.ZodString>;
|
|
4161
|
+
room_name: z.ZodOptional<z.ZodString>;
|
|
4162
|
+
room_description: z.ZodOptional<z.ZodString>;
|
|
4160
4163
|
}, "strip", z.ZodTypeAny, {
|
|
4161
|
-
door_name
|
|
4162
|
-
|
|
4164
|
+
door_name?: string | undefined;
|
|
4165
|
+
door_id?: string | undefined;
|
|
4166
|
+
ext_door_id?: string | undefined;
|
|
4163
4167
|
door_description?: string | undefined;
|
|
4168
|
+
room_name?: string | undefined;
|
|
4169
|
+
room_description?: string | undefined;
|
|
4164
4170
|
}, {
|
|
4165
|
-
door_name
|
|
4166
|
-
|
|
4171
|
+
door_name?: string | undefined;
|
|
4172
|
+
door_id?: string | undefined;
|
|
4173
|
+
ext_door_id?: string | undefined;
|
|
4167
4174
|
door_description?: string | undefined;
|
|
4175
|
+
room_name?: string | undefined;
|
|
4176
|
+
room_description?: string | undefined;
|
|
4168
4177
|
}>>;
|
|
4169
4178
|
} & {
|
|
4170
4179
|
can_unlock_with_mobile_key: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -4218,9 +4227,12 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
4218
4227
|
access_point_name: string;
|
|
4219
4228
|
} | undefined;
|
|
4220
4229
|
salto_space_metadata?: {
|
|
4221
|
-
door_name
|
|
4222
|
-
|
|
4230
|
+
door_name?: string | undefined;
|
|
4231
|
+
door_id?: string | undefined;
|
|
4232
|
+
ext_door_id?: string | undefined;
|
|
4223
4233
|
door_description?: string | undefined;
|
|
4234
|
+
room_name?: string | undefined;
|
|
4235
|
+
room_description?: string | undefined;
|
|
4224
4236
|
} | undefined;
|
|
4225
4237
|
}, {
|
|
4226
4238
|
display_name: string;
|
|
@@ -4270,9 +4282,12 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
4270
4282
|
access_point_name: string;
|
|
4271
4283
|
} | undefined;
|
|
4272
4284
|
salto_space_metadata?: {
|
|
4273
|
-
door_name
|
|
4274
|
-
|
|
4285
|
+
door_name?: string | undefined;
|
|
4286
|
+
door_id?: string | undefined;
|
|
4287
|
+
ext_door_id?: string | undefined;
|
|
4275
4288
|
door_description?: string | undefined;
|
|
4289
|
+
room_name?: string | undefined;
|
|
4290
|
+
room_description?: string | undefined;
|
|
4276
4291
|
} | undefined;
|
|
4277
4292
|
}>, "many">>;
|
|
4278
4293
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -4971,9 +4986,12 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
4971
4986
|
access_point_name: string;
|
|
4972
4987
|
} | undefined;
|
|
4973
4988
|
salto_space_metadata?: {
|
|
4974
|
-
door_name
|
|
4975
|
-
|
|
4989
|
+
door_name?: string | undefined;
|
|
4990
|
+
door_id?: string | undefined;
|
|
4991
|
+
ext_door_id?: string | undefined;
|
|
4976
4992
|
door_description?: string | undefined;
|
|
4993
|
+
room_name?: string | undefined;
|
|
4994
|
+
room_description?: string | undefined;
|
|
4977
4995
|
} | undefined;
|
|
4978
4996
|
}[] | undefined;
|
|
4979
4997
|
}, {
|
|
@@ -5672,9 +5690,12 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
5672
5690
|
access_point_name: string;
|
|
5673
5691
|
} | undefined;
|
|
5674
5692
|
salto_space_metadata?: {
|
|
5675
|
-
door_name
|
|
5676
|
-
|
|
5693
|
+
door_name?: string | undefined;
|
|
5694
|
+
door_id?: string | undefined;
|
|
5695
|
+
ext_door_id?: string | undefined;
|
|
5677
5696
|
door_description?: string | undefined;
|
|
5697
|
+
room_name?: string | undefined;
|
|
5698
|
+
room_description?: string | undefined;
|
|
5678
5699
|
} | undefined;
|
|
5679
5700
|
}[] | undefined;
|
|
5680
5701
|
}>, z.ZodObject<{
|
|
@@ -9832,17 +9853,26 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
9832
9853
|
pms_id?: string | undefined;
|
|
9833
9854
|
}>>;
|
|
9834
9855
|
salto_space_metadata: z.ZodOptional<z.ZodObject<{
|
|
9835
|
-
|
|
9836
|
-
|
|
9856
|
+
ext_door_id: z.ZodOptional<z.ZodString>;
|
|
9857
|
+
door_id: z.ZodOptional<z.ZodString>;
|
|
9858
|
+
door_name: z.ZodOptional<z.ZodString>;
|
|
9837
9859
|
door_description: z.ZodOptional<z.ZodString>;
|
|
9860
|
+
room_name: z.ZodOptional<z.ZodString>;
|
|
9861
|
+
room_description: z.ZodOptional<z.ZodString>;
|
|
9838
9862
|
}, "strip", z.ZodTypeAny, {
|
|
9839
|
-
door_name
|
|
9840
|
-
|
|
9863
|
+
door_name?: string | undefined;
|
|
9864
|
+
door_id?: string | undefined;
|
|
9865
|
+
ext_door_id?: string | undefined;
|
|
9841
9866
|
door_description?: string | undefined;
|
|
9867
|
+
room_name?: string | undefined;
|
|
9868
|
+
room_description?: string | undefined;
|
|
9842
9869
|
}, {
|
|
9843
|
-
door_name
|
|
9844
|
-
|
|
9870
|
+
door_name?: string | undefined;
|
|
9871
|
+
door_id?: string | undefined;
|
|
9872
|
+
ext_door_id?: string | undefined;
|
|
9845
9873
|
door_description?: string | undefined;
|
|
9874
|
+
room_name?: string | undefined;
|
|
9875
|
+
room_description?: string | undefined;
|
|
9846
9876
|
}>>;
|
|
9847
9877
|
} & {
|
|
9848
9878
|
can_unlock_with_mobile_key: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -9896,9 +9926,12 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
9896
9926
|
access_point_name: string;
|
|
9897
9927
|
} | undefined;
|
|
9898
9928
|
salto_space_metadata?: {
|
|
9899
|
-
door_name
|
|
9900
|
-
|
|
9929
|
+
door_name?: string | undefined;
|
|
9930
|
+
door_id?: string | undefined;
|
|
9931
|
+
ext_door_id?: string | undefined;
|
|
9901
9932
|
door_description?: string | undefined;
|
|
9933
|
+
room_name?: string | undefined;
|
|
9934
|
+
room_description?: string | undefined;
|
|
9902
9935
|
} | undefined;
|
|
9903
9936
|
}, {
|
|
9904
9937
|
display_name: string;
|
|
@@ -9948,9 +9981,12 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
9948
9981
|
access_point_name: string;
|
|
9949
9982
|
} | undefined;
|
|
9950
9983
|
salto_space_metadata?: {
|
|
9951
|
-
door_name
|
|
9952
|
-
|
|
9984
|
+
door_name?: string | undefined;
|
|
9985
|
+
door_id?: string | undefined;
|
|
9986
|
+
ext_door_id?: string | undefined;
|
|
9953
9987
|
door_description?: string | undefined;
|
|
9988
|
+
room_name?: string | undefined;
|
|
9989
|
+
room_description?: string | undefined;
|
|
9954
9990
|
} | undefined;
|
|
9955
9991
|
}>, "many">>;
|
|
9956
9992
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -10649,9 +10685,12 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
10649
10685
|
access_point_name: string;
|
|
10650
10686
|
} | undefined;
|
|
10651
10687
|
salto_space_metadata?: {
|
|
10652
|
-
door_name
|
|
10653
|
-
|
|
10688
|
+
door_name?: string | undefined;
|
|
10689
|
+
door_id?: string | undefined;
|
|
10690
|
+
ext_door_id?: string | undefined;
|
|
10654
10691
|
door_description?: string | undefined;
|
|
10692
|
+
room_name?: string | undefined;
|
|
10693
|
+
room_description?: string | undefined;
|
|
10655
10694
|
} | undefined;
|
|
10656
10695
|
}[] | undefined;
|
|
10657
10696
|
}, {
|
|
@@ -11350,9 +11389,12 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
11350
11389
|
access_point_name: string;
|
|
11351
11390
|
} | undefined;
|
|
11352
11391
|
salto_space_metadata?: {
|
|
11353
|
-
door_name
|
|
11354
|
-
|
|
11392
|
+
door_name?: string | undefined;
|
|
11393
|
+
door_id?: string | undefined;
|
|
11394
|
+
ext_door_id?: string | undefined;
|
|
11355
11395
|
door_description?: string | undefined;
|
|
11396
|
+
room_name?: string | undefined;
|
|
11397
|
+
room_description?: string | undefined;
|
|
11356
11398
|
} | undefined;
|
|
11357
11399
|
}[] | undefined;
|
|
11358
11400
|
}>, z.ZodObject<{
|
|
@@ -15510,17 +15552,26 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
15510
15552
|
pms_id?: string | undefined;
|
|
15511
15553
|
}>>;
|
|
15512
15554
|
salto_space_metadata: z.ZodOptional<z.ZodObject<{
|
|
15513
|
-
|
|
15514
|
-
|
|
15555
|
+
ext_door_id: z.ZodOptional<z.ZodString>;
|
|
15556
|
+
door_id: z.ZodOptional<z.ZodString>;
|
|
15557
|
+
door_name: z.ZodOptional<z.ZodString>;
|
|
15515
15558
|
door_description: z.ZodOptional<z.ZodString>;
|
|
15559
|
+
room_name: z.ZodOptional<z.ZodString>;
|
|
15560
|
+
room_description: z.ZodOptional<z.ZodString>;
|
|
15516
15561
|
}, "strip", z.ZodTypeAny, {
|
|
15517
|
-
door_name
|
|
15518
|
-
|
|
15562
|
+
door_name?: string | undefined;
|
|
15563
|
+
door_id?: string | undefined;
|
|
15564
|
+
ext_door_id?: string | undefined;
|
|
15519
15565
|
door_description?: string | undefined;
|
|
15566
|
+
room_name?: string | undefined;
|
|
15567
|
+
room_description?: string | undefined;
|
|
15520
15568
|
}, {
|
|
15521
|
-
door_name
|
|
15522
|
-
|
|
15569
|
+
door_name?: string | undefined;
|
|
15570
|
+
door_id?: string | undefined;
|
|
15571
|
+
ext_door_id?: string | undefined;
|
|
15523
15572
|
door_description?: string | undefined;
|
|
15573
|
+
room_name?: string | undefined;
|
|
15574
|
+
room_description?: string | undefined;
|
|
15524
15575
|
}>>;
|
|
15525
15576
|
} & {
|
|
15526
15577
|
can_unlock_with_mobile_key: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -15574,9 +15625,12 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
15574
15625
|
access_point_name: string;
|
|
15575
15626
|
} | undefined;
|
|
15576
15627
|
salto_space_metadata?: {
|
|
15577
|
-
door_name
|
|
15578
|
-
|
|
15628
|
+
door_name?: string | undefined;
|
|
15629
|
+
door_id?: string | undefined;
|
|
15630
|
+
ext_door_id?: string | undefined;
|
|
15579
15631
|
door_description?: string | undefined;
|
|
15632
|
+
room_name?: string | undefined;
|
|
15633
|
+
room_description?: string | undefined;
|
|
15580
15634
|
} | undefined;
|
|
15581
15635
|
}, {
|
|
15582
15636
|
display_name: string;
|
|
@@ -15626,9 +15680,12 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
15626
15680
|
access_point_name: string;
|
|
15627
15681
|
} | undefined;
|
|
15628
15682
|
salto_space_metadata?: {
|
|
15629
|
-
door_name
|
|
15630
|
-
|
|
15683
|
+
door_name?: string | undefined;
|
|
15684
|
+
door_id?: string | undefined;
|
|
15685
|
+
ext_door_id?: string | undefined;
|
|
15631
15686
|
door_description?: string | undefined;
|
|
15687
|
+
room_name?: string | undefined;
|
|
15688
|
+
room_description?: string | undefined;
|
|
15632
15689
|
} | undefined;
|
|
15633
15690
|
}>, "many">>;
|
|
15634
15691
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -16327,9 +16384,12 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
16327
16384
|
access_point_name: string;
|
|
16328
16385
|
} | undefined;
|
|
16329
16386
|
salto_space_metadata?: {
|
|
16330
|
-
door_name
|
|
16331
|
-
|
|
16387
|
+
door_name?: string | undefined;
|
|
16388
|
+
door_id?: string | undefined;
|
|
16389
|
+
ext_door_id?: string | undefined;
|
|
16332
16390
|
door_description?: string | undefined;
|
|
16391
|
+
room_name?: string | undefined;
|
|
16392
|
+
room_description?: string | undefined;
|
|
16333
16393
|
} | undefined;
|
|
16334
16394
|
}[] | undefined;
|
|
16335
16395
|
}, {
|
|
@@ -17028,9 +17088,12 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
17028
17088
|
access_point_name: string;
|
|
17029
17089
|
} | undefined;
|
|
17030
17090
|
salto_space_metadata?: {
|
|
17031
|
-
door_name
|
|
17032
|
-
|
|
17091
|
+
door_name?: string | undefined;
|
|
17092
|
+
door_id?: string | undefined;
|
|
17093
|
+
ext_door_id?: string | undefined;
|
|
17033
17094
|
door_description?: string | undefined;
|
|
17095
|
+
room_name?: string | undefined;
|
|
17096
|
+
room_description?: string | undefined;
|
|
17034
17097
|
} | undefined;
|
|
17035
17098
|
}[] | undefined;
|
|
17036
17099
|
}>]>;
|