@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.
@@ -4154,17 +4154,26 @@ export declare const spaces_batch: z.ZodObject<{
4154
4154
  pms_id?: string | undefined;
4155
4155
  }>>;
4156
4156
  salto_space_metadata: z.ZodOptional<z.ZodObject<{
4157
- door_name: z.ZodString;
4158
- ext_door_id: z.ZodString;
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: string;
4162
- ext_door_id: string;
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: string;
4166
- ext_door_id: string;
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 spaces_batch: z.ZodObject<{
4218
4227
  access_point_name: string;
4219
4228
  } | undefined;
4220
4229
  salto_space_metadata?: {
4221
- door_name: string;
4222
- ext_door_id: string;
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 spaces_batch: z.ZodObject<{
4270
4282
  access_point_name: string;
4271
4283
  } | undefined;
4272
4284
  salto_space_metadata?: {
4273
- door_name: string;
4274
- ext_door_id: string;
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 spaces_batch: z.ZodObject<{
4971
4986
  access_point_name: string;
4972
4987
  } | undefined;
4973
4988
  salto_space_metadata?: {
4974
- door_name: string;
4975
- ext_door_id: string;
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 spaces_batch: z.ZodObject<{
5672
5690
  access_point_name: string;
5673
5691
  } | undefined;
5674
5692
  salto_space_metadata?: {
5675
- door_name: string;
5676
- ext_door_id: string;
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
  }>;
@@ -298,17 +298,26 @@ declare const phone_provider_session: z.ZodObject<{
298
298
  pms_id?: string | undefined;
299
299
  }>>;
300
300
  salto_space_metadata: z.ZodOptional<z.ZodObject<{
301
- door_name: z.ZodString;
302
- ext_door_id: z.ZodString;
301
+ ext_door_id: z.ZodOptional<z.ZodString>;
302
+ door_id: z.ZodOptional<z.ZodString>;
303
+ door_name: z.ZodOptional<z.ZodString>;
303
304
  door_description: z.ZodOptional<z.ZodString>;
305
+ room_name: z.ZodOptional<z.ZodString>;
306
+ room_description: z.ZodOptional<z.ZodString>;
304
307
  }, "strip", z.ZodTypeAny, {
305
- door_name: string;
306
- ext_door_id: string;
308
+ door_name?: string | undefined;
309
+ door_id?: string | undefined;
310
+ ext_door_id?: string | undefined;
307
311
  door_description?: string | undefined;
312
+ room_name?: string | undefined;
313
+ room_description?: string | undefined;
308
314
  }, {
309
- door_name: string;
310
- ext_door_id: string;
315
+ door_name?: string | undefined;
316
+ door_id?: string | undefined;
317
+ ext_door_id?: string | undefined;
311
318
  door_description?: string | undefined;
319
+ room_name?: string | undefined;
320
+ room_description?: string | undefined;
312
321
  }>>;
313
322
  } & {
314
323
  can_unlock_with_mobile_key: z.ZodOptional<z.ZodBoolean>;
@@ -362,9 +371,12 @@ declare const phone_provider_session: z.ZodObject<{
362
371
  access_point_name: string;
363
372
  } | undefined;
364
373
  salto_space_metadata?: {
365
- door_name: string;
366
- ext_door_id: string;
374
+ door_name?: string | undefined;
375
+ door_id?: string | undefined;
376
+ ext_door_id?: string | undefined;
367
377
  door_description?: string | undefined;
378
+ room_name?: string | undefined;
379
+ room_description?: string | undefined;
368
380
  } | undefined;
369
381
  }, {
370
382
  display_name: string;
@@ -414,9 +426,12 @@ declare const phone_provider_session: z.ZodObject<{
414
426
  access_point_name: string;
415
427
  } | undefined;
416
428
  salto_space_metadata?: {
417
- door_name: string;
418
- ext_door_id: string;
429
+ door_name?: string | undefined;
430
+ door_id?: string | undefined;
431
+ ext_door_id?: string | undefined;
419
432
  door_description?: string | undefined;
433
+ room_name?: string | undefined;
434
+ room_description?: string | undefined;
420
435
  } | undefined;
421
436
  }>, "many">;
422
437
  }, "strip", z.ZodTypeAny, {
@@ -505,9 +520,12 @@ declare const phone_provider_session: z.ZodObject<{
505
520
  access_point_name: string;
506
521
  } | undefined;
507
522
  salto_space_metadata?: {
508
- door_name: string;
509
- ext_door_id: string;
523
+ door_name?: string | undefined;
524
+ door_id?: string | undefined;
525
+ ext_door_id?: string | undefined;
510
526
  door_description?: string | undefined;
527
+ room_name?: string | undefined;
528
+ room_description?: string | undefined;
511
529
  } | undefined;
512
530
  }[];
513
531
  code?: string | null | undefined;
@@ -630,9 +648,12 @@ declare const phone_provider_session: z.ZodObject<{
630
648
  access_point_name: string;
631
649
  } | undefined;
632
650
  salto_space_metadata?: {
633
- door_name: string;
634
- ext_door_id: string;
651
+ door_name?: string | undefined;
652
+ door_id?: string | undefined;
653
+ ext_door_id?: string | undefined;
635
654
  door_description?: string | undefined;
655
+ room_name?: string | undefined;
656
+ room_description?: string | undefined;
636
657
  } | undefined;
637
658
  }[];
638
659
  code?: string | null | undefined;
@@ -763,9 +784,12 @@ declare const phone_provider_session: z.ZodObject<{
763
784
  access_point_name: string;
764
785
  } | undefined;
765
786
  salto_space_metadata?: {
766
- door_name: string;
767
- ext_door_id: string;
787
+ door_name?: string | undefined;
788
+ door_id?: string | undefined;
789
+ ext_door_id?: string | undefined;
768
790
  door_description?: string | undefined;
791
+ room_name?: string | undefined;
792
+ room_description?: string | undefined;
769
793
  } | undefined;
770
794
  }[];
771
795
  code?: string | null | undefined;
@@ -896,9 +920,12 @@ declare const phone_provider_session: z.ZodObject<{
896
920
  access_point_name: string;
897
921
  } | undefined;
898
922
  salto_space_metadata?: {
899
- door_name: string;
900
- ext_door_id: string;
923
+ door_name?: string | undefined;
924
+ door_id?: string | undefined;
925
+ ext_door_id?: string | undefined;
901
926
  door_description?: string | undefined;
927
+ room_name?: string | undefined;
928
+ room_description?: string | undefined;
902
929
  } | undefined;
903
930
  }[];
904
931
  code?: string | null | undefined;
@@ -1237,17 +1264,26 @@ export declare const phone_session: z.ZodObject<{
1237
1264
  pms_id?: string | undefined;
1238
1265
  }>>;
1239
1266
  salto_space_metadata: z.ZodOptional<z.ZodObject<{
1240
- door_name: z.ZodString;
1241
- ext_door_id: z.ZodString;
1267
+ ext_door_id: z.ZodOptional<z.ZodString>;
1268
+ door_id: z.ZodOptional<z.ZodString>;
1269
+ door_name: z.ZodOptional<z.ZodString>;
1242
1270
  door_description: z.ZodOptional<z.ZodString>;
1271
+ room_name: z.ZodOptional<z.ZodString>;
1272
+ room_description: z.ZodOptional<z.ZodString>;
1243
1273
  }, "strip", z.ZodTypeAny, {
1244
- door_name: string;
1245
- ext_door_id: string;
1274
+ door_name?: string | undefined;
1275
+ door_id?: string | undefined;
1276
+ ext_door_id?: string | undefined;
1246
1277
  door_description?: string | undefined;
1278
+ room_name?: string | undefined;
1279
+ room_description?: string | undefined;
1247
1280
  }, {
1248
- door_name: string;
1249
- ext_door_id: string;
1281
+ door_name?: string | undefined;
1282
+ door_id?: string | undefined;
1283
+ ext_door_id?: string | undefined;
1250
1284
  door_description?: string | undefined;
1285
+ room_name?: string | undefined;
1286
+ room_description?: string | undefined;
1251
1287
  }>>;
1252
1288
  } & {
1253
1289
  can_unlock_with_mobile_key: z.ZodOptional<z.ZodBoolean>;
@@ -1301,9 +1337,12 @@ export declare const phone_session: z.ZodObject<{
1301
1337
  access_point_name: string;
1302
1338
  } | undefined;
1303
1339
  salto_space_metadata?: {
1304
- door_name: string;
1305
- ext_door_id: string;
1340
+ door_name?: string | undefined;
1341
+ door_id?: string | undefined;
1342
+ ext_door_id?: string | undefined;
1306
1343
  door_description?: string | undefined;
1344
+ room_name?: string | undefined;
1345
+ room_description?: string | undefined;
1307
1346
  } | undefined;
1308
1347
  }, {
1309
1348
  display_name: string;
@@ -1353,9 +1392,12 @@ export declare const phone_session: z.ZodObject<{
1353
1392
  access_point_name: string;
1354
1393
  } | undefined;
1355
1394
  salto_space_metadata?: {
1356
- door_name: string;
1357
- ext_door_id: string;
1395
+ door_name?: string | undefined;
1396
+ door_id?: string | undefined;
1397
+ ext_door_id?: string | undefined;
1358
1398
  door_description?: string | undefined;
1399
+ room_name?: string | undefined;
1400
+ room_description?: string | undefined;
1359
1401
  } | undefined;
1360
1402
  }>, "many">;
1361
1403
  }, "strip", z.ZodTypeAny, {
@@ -1444,9 +1486,12 @@ export declare const phone_session: z.ZodObject<{
1444
1486
  access_point_name: string;
1445
1487
  } | undefined;
1446
1488
  salto_space_metadata?: {
1447
- door_name: string;
1448
- ext_door_id: string;
1489
+ door_name?: string | undefined;
1490
+ door_id?: string | undefined;
1491
+ ext_door_id?: string | undefined;
1449
1492
  door_description?: string | undefined;
1493
+ room_name?: string | undefined;
1494
+ room_description?: string | undefined;
1450
1495
  } | undefined;
1451
1496
  }[];
1452
1497
  code?: string | null | undefined;
@@ -1569,9 +1614,12 @@ export declare const phone_session: z.ZodObject<{
1569
1614
  access_point_name: string;
1570
1615
  } | undefined;
1571
1616
  salto_space_metadata?: {
1572
- door_name: string;
1573
- ext_door_id: string;
1617
+ door_name?: string | undefined;
1618
+ door_id?: string | undefined;
1619
+ ext_door_id?: string | undefined;
1574
1620
  door_description?: string | undefined;
1621
+ room_name?: string | undefined;
1622
+ room_description?: string | undefined;
1575
1623
  } | undefined;
1576
1624
  }[];
1577
1625
  code?: string | null | undefined;
@@ -1702,9 +1750,12 @@ export declare const phone_session: z.ZodObject<{
1702
1750
  access_point_name: string;
1703
1751
  } | undefined;
1704
1752
  salto_space_metadata?: {
1705
- door_name: string;
1706
- ext_door_id: string;
1753
+ door_name?: string | undefined;
1754
+ door_id?: string | undefined;
1755
+ ext_door_id?: string | undefined;
1707
1756
  door_description?: string | undefined;
1757
+ room_name?: string | undefined;
1758
+ room_description?: string | undefined;
1708
1759
  } | undefined;
1709
1760
  }[];
1710
1761
  code?: string | null | undefined;
@@ -1835,9 +1886,12 @@ export declare const phone_session: z.ZodObject<{
1835
1886
  access_point_name: string;
1836
1887
  } | undefined;
1837
1888
  salto_space_metadata?: {
1838
- door_name: string;
1839
- ext_door_id: string;
1889
+ door_name?: string | undefined;
1890
+ door_id?: string | undefined;
1891
+ ext_door_id?: string | undefined;
1840
1892
  door_description?: string | undefined;
1893
+ room_name?: string | undefined;
1894
+ room_description?: string | undefined;
1841
1895
  } | undefined;
1842
1896
  }[];
1843
1897
  code?: string | null | undefined;
@@ -1970,9 +2024,12 @@ export declare const phone_session: z.ZodObject<{
1970
2024
  access_point_name: string;
1971
2025
  } | undefined;
1972
2026
  salto_space_metadata?: {
1973
- door_name: string;
1974
- ext_door_id: string;
2027
+ door_name?: string | undefined;
2028
+ door_id?: string | undefined;
2029
+ ext_door_id?: string | undefined;
1975
2030
  door_description?: string | undefined;
2031
+ room_name?: string | undefined;
2032
+ room_description?: string | undefined;
1976
2033
  } | undefined;
1977
2034
  }[];
1978
2035
  code?: string | null | undefined;
@@ -2105,9 +2162,12 @@ export declare const phone_session: z.ZodObject<{
2105
2162
  access_point_name: string;
2106
2163
  } | undefined;
2107
2164
  salto_space_metadata?: {
2108
- door_name: string;
2109
- ext_door_id: string;
2165
+ door_name?: string | undefined;
2166
+ door_id?: string | undefined;
2167
+ ext_door_id?: string | undefined;
2110
2168
  door_description?: string | undefined;
2169
+ room_name?: string | undefined;
2170
+ room_description?: string | undefined;
2111
2171
  } | undefined;
2112
2172
  }[];
2113
2173
  code?: string | null | undefined;
@@ -1191,16 +1191,28 @@ declare const _default: {
1191
1191
  description: string;
1192
1192
  type: string;
1193
1193
  };
1194
+ door_id: {
1195
+ description: string;
1196
+ type: string;
1197
+ };
1194
1198
  door_name: {
1195
1199
  description: string;
1196
1200
  type: string;
1197
1201
  };
1198
1202
  ext_door_id: {
1203
+ deprecated: boolean;
1204
+ type: string;
1205
+ 'x-deprecated': string;
1206
+ };
1207
+ room_description: {
1208
+ description: string;
1209
+ type: string;
1210
+ };
1211
+ room_name: {
1199
1212
  description: string;
1200
1213
  type: string;
1201
1214
  };
1202
1215
  };
1203
- required: string[];
1204
1216
  type: string;
1205
1217
  };
1206
1218
  visionline_metadata: {
@@ -10735,16 +10747,28 @@ declare const _default: {
10735
10747
  description: string;
10736
10748
  type: string;
10737
10749
  };
10750
+ door_id: {
10751
+ description: string;
10752
+ type: string;
10753
+ };
10738
10754
  door_name: {
10739
10755
  description: string;
10740
10756
  type: string;
10741
10757
  };
10742
10758
  ext_door_id: {
10759
+ deprecated: boolean;
10760
+ type: string;
10761
+ 'x-deprecated': string;
10762
+ };
10763
+ room_description: {
10764
+ description: string;
10765
+ type: string;
10766
+ };
10767
+ room_name: {
10743
10768
  description: string;
10744
10769
  type: string;
10745
10770
  };
10746
10771
  };
10747
- required: string[];
10748
10772
  type: string;
10749
10773
  };
10750
10774
  visionline_metadata: {
@@ -2521,16 +2521,28 @@ export default {
2521
2521
  description: 'Description of the door in the Salto Space access system.',
2522
2522
  type: 'string',
2523
2523
  },
2524
+ door_id: {
2525
+ description: 'Door ID in the Salto Space access system.',
2526
+ type: 'string',
2527
+ },
2524
2528
  door_name: {
2525
2529
  description: 'Name of the door in the Salto Space access system.',
2526
2530
  type: 'string',
2527
2531
  },
2528
2532
  ext_door_id: {
2529
- description: 'External door ID in the Salto Space access system.',
2533
+ deprecated: true,
2534
+ type: 'string',
2535
+ 'x-deprecated': 'use door_id.',
2536
+ },
2537
+ room_description: {
2538
+ description: 'Description of the room in the Salto Space access system.',
2539
+ type: 'string',
2540
+ },
2541
+ room_name: {
2542
+ description: 'Name of the room in the Salto Space access system.',
2530
2543
  type: 'string',
2531
2544
  },
2532
2545
  },
2533
- required: ['door_name', 'ext_door_id'],
2534
2546
  type: 'object',
2535
2547
  },
2536
2548
  visionline_metadata: {
@@ -17556,16 +17568,28 @@ export default {
17556
17568
  description: 'Description of the door in the Salto Space access system.',
17557
17569
  type: 'string',
17558
17570
  },
17571
+ door_id: {
17572
+ description: 'Door ID in the Salto Space access system.',
17573
+ type: 'string',
17574
+ },
17559
17575
  door_name: {
17560
17576
  description: 'Name of the door in the Salto Space access system.',
17561
17577
  type: 'string',
17562
17578
  },
17563
17579
  ext_door_id: {
17564
- description: 'External door ID in the Salto Space access system.',
17580
+ deprecated: true,
17581
+ type: 'string',
17582
+ 'x-deprecated': 'use door_id.',
17583
+ },
17584
+ room_description: {
17585
+ description: 'Description of the room in the Salto Space access system.',
17586
+ type: 'string',
17587
+ },
17588
+ room_name: {
17589
+ description: 'Name of the room in the Salto Space access system.',
17565
17590
  type: 'string',
17566
17591
  },
17567
17592
  },
17568
- required: ['door_name', 'ext_door_id'],
17569
17593
  type: 'object',
17570
17594
  },
17571
17595
  visionline_metadata: {