@seamapi/types 1.658.0 → 1.660.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 +54 -15
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +169 -0
- package/dist/index.cjs +54 -15
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/acs/acs-entrance.d.ts +5 -0
- package/lib/seam/connect/models/acs/acs-users/acs-user.d.ts +26 -0
- package/lib/seam/connect/models/acs/acs-users/acs-user.js +4 -0
- package/lib/seam/connect/models/acs/acs-users/acs-user.js.map +1 -1
- package/lib/seam/connect/models/acs/metadata/index.d.ts +1 -0
- package/lib/seam/connect/models/acs/metadata/index.js +1 -0
- package/lib/seam/connect/models/acs/metadata/index.js.map +1 -1
- package/lib/seam/connect/models/acs/metadata/salto-space.d.ts +11 -0
- package/lib/seam/connect/models/acs/metadata/salto-space.js +11 -0
- package/lib/seam/connect/models/acs/metadata/salto-space.js.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +45 -0
- package/lib/seam/connect/models/phones/phone-session.d.ts +20 -0
- package/lib/seam/connect/openapi.d.ts +28 -0
- package/lib/seam/connect/openapi.js +28 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +65 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-users/acs-user.ts +6 -0
- package/src/lib/seam/connect/models/acs/metadata/index.ts +1 -0
- package/src/lib/seam/connect/models/acs/metadata/salto-space.ts +22 -0
- package/src/lib/seam/connect/openapi.ts +34 -0
- package/src/lib/seam/connect/route-types.ts +83 -0
package/dist/connect.d.cts
CHANGED
|
@@ -4724,6 +4724,7 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
4724
4724
|
door_id: z.ZodOptional<z.ZodString>;
|
|
4725
4725
|
door_name: z.ZodOptional<z.ZodString>;
|
|
4726
4726
|
door_description: z.ZodOptional<z.ZodString>;
|
|
4727
|
+
audit_on_keys: z.ZodOptional<z.ZodBoolean>;
|
|
4727
4728
|
room_name: z.ZodOptional<z.ZodString>;
|
|
4728
4729
|
room_description: z.ZodOptional<z.ZodString>;
|
|
4729
4730
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -4731,6 +4732,7 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
4731
4732
|
door_id?: string | undefined;
|
|
4732
4733
|
ext_door_id?: string | undefined;
|
|
4733
4734
|
door_description?: string | undefined;
|
|
4735
|
+
audit_on_keys?: boolean | undefined;
|
|
4734
4736
|
room_name?: string | undefined;
|
|
4735
4737
|
room_description?: string | undefined;
|
|
4736
4738
|
}, {
|
|
@@ -4738,6 +4740,7 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
4738
4740
|
door_id?: string | undefined;
|
|
4739
4741
|
ext_door_id?: string | undefined;
|
|
4740
4742
|
door_description?: string | undefined;
|
|
4743
|
+
audit_on_keys?: boolean | undefined;
|
|
4741
4744
|
room_name?: string | undefined;
|
|
4742
4745
|
room_description?: string | undefined;
|
|
4743
4746
|
}>>;
|
|
@@ -4812,6 +4815,7 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
4812
4815
|
door_id?: string | undefined;
|
|
4813
4816
|
ext_door_id?: string | undefined;
|
|
4814
4817
|
door_description?: string | undefined;
|
|
4818
|
+
audit_on_keys?: boolean | undefined;
|
|
4815
4819
|
room_name?: string | undefined;
|
|
4816
4820
|
room_description?: string | undefined;
|
|
4817
4821
|
} | undefined;
|
|
@@ -4877,6 +4881,7 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
4877
4881
|
door_id?: string | undefined;
|
|
4878
4882
|
ext_door_id?: string | undefined;
|
|
4879
4883
|
door_description?: string | undefined;
|
|
4884
|
+
audit_on_keys?: boolean | undefined;
|
|
4880
4885
|
room_name?: string | undefined;
|
|
4881
4886
|
room_description?: string | undefined;
|
|
4882
4887
|
} | undefined;
|
|
@@ -5568,6 +5573,13 @@ declare const acs_user: z.ZodObject<{
|
|
|
5568
5573
|
}>]>, "many">>;
|
|
5569
5574
|
last_successful_sync_at: z.ZodNullable<z.ZodString>;
|
|
5570
5575
|
connected_account_id: z.ZodString;
|
|
5576
|
+
salto_space_metadata: z.ZodOptional<z.ZodObject<{
|
|
5577
|
+
audit_openings: z.ZodOptional<z.ZodBoolean>;
|
|
5578
|
+
}, "strip", z.ZodTypeAny, {
|
|
5579
|
+
audit_openings?: boolean | undefined;
|
|
5580
|
+
}, {
|
|
5581
|
+
audit_openings?: boolean | undefined;
|
|
5582
|
+
}>>;
|
|
5571
5583
|
} & {
|
|
5572
5584
|
full_name: z.ZodOptional<z.ZodString>;
|
|
5573
5585
|
email: z.ZodOptional<z.ZodString>;
|
|
@@ -5630,6 +5642,9 @@ declare const acs_user: z.ZodObject<{
|
|
|
5630
5642
|
user_identity_id?: string | undefined;
|
|
5631
5643
|
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | undefined;
|
|
5632
5644
|
external_type_display_name?: string | undefined;
|
|
5645
|
+
salto_space_metadata?: {
|
|
5646
|
+
audit_openings?: boolean | undefined;
|
|
5647
|
+
} | undefined;
|
|
5633
5648
|
email_address?: string | undefined;
|
|
5634
5649
|
full_name?: string | undefined;
|
|
5635
5650
|
phone_number?: string | undefined;
|
|
@@ -5757,6 +5772,9 @@ declare const acs_user: z.ZodObject<{
|
|
|
5757
5772
|
user_identity_id?: string | undefined;
|
|
5758
5773
|
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | undefined;
|
|
5759
5774
|
external_type_display_name?: string | undefined;
|
|
5775
|
+
salto_space_metadata?: {
|
|
5776
|
+
audit_openings?: boolean | undefined;
|
|
5777
|
+
} | undefined;
|
|
5760
5778
|
email_address?: string | undefined;
|
|
5761
5779
|
full_name?: string | undefined;
|
|
5762
5780
|
phone_number?: string | undefined;
|
|
@@ -6217,6 +6235,13 @@ declare const unmanaged_acs_user: z.ZodObject<{
|
|
|
6217
6235
|
}>]>, "many">>;
|
|
6218
6236
|
last_successful_sync_at: z.ZodNullable<z.ZodString>;
|
|
6219
6237
|
connected_account_id: z.ZodString;
|
|
6238
|
+
salto_space_metadata: z.ZodOptional<z.ZodObject<{
|
|
6239
|
+
audit_openings: z.ZodOptional<z.ZodBoolean>;
|
|
6240
|
+
}, "strip", z.ZodTypeAny, {
|
|
6241
|
+
audit_openings?: boolean | undefined;
|
|
6242
|
+
}, {
|
|
6243
|
+
audit_openings?: boolean | undefined;
|
|
6244
|
+
}>>;
|
|
6220
6245
|
} & {
|
|
6221
6246
|
full_name: z.ZodOptional<z.ZodString>;
|
|
6222
6247
|
email: z.ZodOptional<z.ZodString>;
|
|
@@ -6279,6 +6304,9 @@ declare const unmanaged_acs_user: z.ZodObject<{
|
|
|
6279
6304
|
user_identity_id?: string | undefined;
|
|
6280
6305
|
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | undefined;
|
|
6281
6306
|
external_type_display_name?: string | undefined;
|
|
6307
|
+
salto_space_metadata?: {
|
|
6308
|
+
audit_openings?: boolean | undefined;
|
|
6309
|
+
} | undefined;
|
|
6282
6310
|
email_address?: string | undefined;
|
|
6283
6311
|
full_name?: string | undefined;
|
|
6284
6312
|
phone_number?: string | undefined;
|
|
@@ -6406,6 +6434,9 @@ declare const unmanaged_acs_user: z.ZodObject<{
|
|
|
6406
6434
|
user_identity_id?: string | undefined;
|
|
6407
6435
|
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | undefined;
|
|
6408
6436
|
external_type_display_name?: string | undefined;
|
|
6437
|
+
salto_space_metadata?: {
|
|
6438
|
+
audit_openings?: boolean | undefined;
|
|
6439
|
+
} | undefined;
|
|
6409
6440
|
email_address?: string | undefined;
|
|
6410
6441
|
full_name?: string | undefined;
|
|
6411
6442
|
phone_number?: string | undefined;
|
|
@@ -15268,6 +15299,7 @@ declare const batch: z.ZodObject<{
|
|
|
15268
15299
|
door_id: z.ZodOptional<z.ZodString>;
|
|
15269
15300
|
door_name: z.ZodOptional<z.ZodString>;
|
|
15270
15301
|
door_description: z.ZodOptional<z.ZodString>;
|
|
15302
|
+
audit_on_keys: z.ZodOptional<z.ZodBoolean>;
|
|
15271
15303
|
room_name: z.ZodOptional<z.ZodString>;
|
|
15272
15304
|
room_description: z.ZodOptional<z.ZodString>;
|
|
15273
15305
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -15275,6 +15307,7 @@ declare const batch: z.ZodObject<{
|
|
|
15275
15307
|
door_id?: string | undefined;
|
|
15276
15308
|
ext_door_id?: string | undefined;
|
|
15277
15309
|
door_description?: string | undefined;
|
|
15310
|
+
audit_on_keys?: boolean | undefined;
|
|
15278
15311
|
room_name?: string | undefined;
|
|
15279
15312
|
room_description?: string | undefined;
|
|
15280
15313
|
}, {
|
|
@@ -15282,6 +15315,7 @@ declare const batch: z.ZodObject<{
|
|
|
15282
15315
|
door_id?: string | undefined;
|
|
15283
15316
|
ext_door_id?: string | undefined;
|
|
15284
15317
|
door_description?: string | undefined;
|
|
15318
|
+
audit_on_keys?: boolean | undefined;
|
|
15285
15319
|
room_name?: string | undefined;
|
|
15286
15320
|
room_description?: string | undefined;
|
|
15287
15321
|
}>>;
|
|
@@ -15356,6 +15390,7 @@ declare const batch: z.ZodObject<{
|
|
|
15356
15390
|
door_id?: string | undefined;
|
|
15357
15391
|
ext_door_id?: string | undefined;
|
|
15358
15392
|
door_description?: string | undefined;
|
|
15393
|
+
audit_on_keys?: boolean | undefined;
|
|
15359
15394
|
room_name?: string | undefined;
|
|
15360
15395
|
room_description?: string | undefined;
|
|
15361
15396
|
} | undefined;
|
|
@@ -15421,6 +15456,7 @@ declare const batch: z.ZodObject<{
|
|
|
15421
15456
|
door_id?: string | undefined;
|
|
15422
15457
|
ext_door_id?: string | undefined;
|
|
15423
15458
|
door_description?: string | undefined;
|
|
15459
|
+
audit_on_keys?: boolean | undefined;
|
|
15424
15460
|
room_name?: string | undefined;
|
|
15425
15461
|
room_description?: string | undefined;
|
|
15426
15462
|
} | undefined;
|
|
@@ -16108,6 +16144,13 @@ declare const batch: z.ZodObject<{
|
|
|
16108
16144
|
}>]>, "many">>;
|
|
16109
16145
|
last_successful_sync_at: z.ZodNullable<z.ZodString>;
|
|
16110
16146
|
connected_account_id: z.ZodString;
|
|
16147
|
+
salto_space_metadata: z.ZodOptional<z.ZodObject<{
|
|
16148
|
+
audit_openings: z.ZodOptional<z.ZodBoolean>;
|
|
16149
|
+
}, "strip", z.ZodTypeAny, {
|
|
16150
|
+
audit_openings?: boolean | undefined;
|
|
16151
|
+
}, {
|
|
16152
|
+
audit_openings?: boolean | undefined;
|
|
16153
|
+
}>>;
|
|
16111
16154
|
} & {
|
|
16112
16155
|
full_name: z.ZodOptional<z.ZodString>;
|
|
16113
16156
|
email: z.ZodOptional<z.ZodString>;
|
|
@@ -16170,6 +16213,9 @@ declare const batch: z.ZodObject<{
|
|
|
16170
16213
|
user_identity_id?: string | undefined;
|
|
16171
16214
|
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | undefined;
|
|
16172
16215
|
external_type_display_name?: string | undefined;
|
|
16216
|
+
salto_space_metadata?: {
|
|
16217
|
+
audit_openings?: boolean | undefined;
|
|
16218
|
+
} | undefined;
|
|
16173
16219
|
email_address?: string | undefined;
|
|
16174
16220
|
full_name?: string | undefined;
|
|
16175
16221
|
phone_number?: string | undefined;
|
|
@@ -16297,6 +16343,9 @@ declare const batch: z.ZodObject<{
|
|
|
16297
16343
|
user_identity_id?: string | undefined;
|
|
16298
16344
|
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | undefined;
|
|
16299
16345
|
external_type_display_name?: string | undefined;
|
|
16346
|
+
salto_space_metadata?: {
|
|
16347
|
+
audit_openings?: boolean | undefined;
|
|
16348
|
+
} | undefined;
|
|
16300
16349
|
email_address?: string | undefined;
|
|
16301
16350
|
full_name?: string | undefined;
|
|
16302
16351
|
phone_number?: string | undefined;
|
|
@@ -21346,6 +21395,13 @@ declare const batch: z.ZodObject<{
|
|
|
21346
21395
|
}>]>, "many">>;
|
|
21347
21396
|
last_successful_sync_at: z.ZodNullable<z.ZodString>;
|
|
21348
21397
|
connected_account_id: z.ZodString;
|
|
21398
|
+
salto_space_metadata: z.ZodOptional<z.ZodObject<{
|
|
21399
|
+
audit_openings: z.ZodOptional<z.ZodBoolean>;
|
|
21400
|
+
}, "strip", z.ZodTypeAny, {
|
|
21401
|
+
audit_openings?: boolean | undefined;
|
|
21402
|
+
}, {
|
|
21403
|
+
audit_openings?: boolean | undefined;
|
|
21404
|
+
}>>;
|
|
21349
21405
|
} & {
|
|
21350
21406
|
full_name: z.ZodOptional<z.ZodString>;
|
|
21351
21407
|
email: z.ZodOptional<z.ZodString>;
|
|
@@ -21408,6 +21464,9 @@ declare const batch: z.ZodObject<{
|
|
|
21408
21464
|
user_identity_id?: string | undefined;
|
|
21409
21465
|
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | undefined;
|
|
21410
21466
|
external_type_display_name?: string | undefined;
|
|
21467
|
+
salto_space_metadata?: {
|
|
21468
|
+
audit_openings?: boolean | undefined;
|
|
21469
|
+
} | undefined;
|
|
21411
21470
|
email_address?: string | undefined;
|
|
21412
21471
|
full_name?: string | undefined;
|
|
21413
21472
|
phone_number?: string | undefined;
|
|
@@ -21535,6 +21594,9 @@ declare const batch: z.ZodObject<{
|
|
|
21535
21594
|
user_identity_id?: string | undefined;
|
|
21536
21595
|
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | undefined;
|
|
21537
21596
|
external_type_display_name?: string | undefined;
|
|
21597
|
+
salto_space_metadata?: {
|
|
21598
|
+
audit_openings?: boolean | undefined;
|
|
21599
|
+
} | undefined;
|
|
21538
21600
|
email_address?: string | undefined;
|
|
21539
21601
|
full_name?: string | undefined;
|
|
21540
21602
|
phone_number?: string | undefined;
|
|
@@ -32563,6 +32625,7 @@ declare const batch: z.ZodObject<{
|
|
|
32563
32625
|
door_id?: string | undefined;
|
|
32564
32626
|
ext_door_id?: string | undefined;
|
|
32565
32627
|
door_description?: string | undefined;
|
|
32628
|
+
audit_on_keys?: boolean | undefined;
|
|
32566
32629
|
room_name?: string | undefined;
|
|
32567
32630
|
room_description?: string | undefined;
|
|
32568
32631
|
} | undefined;
|
|
@@ -32691,6 +32754,9 @@ declare const batch: z.ZodObject<{
|
|
|
32691
32754
|
user_identity_id?: string | undefined;
|
|
32692
32755
|
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | undefined;
|
|
32693
32756
|
external_type_display_name?: string | undefined;
|
|
32757
|
+
salto_space_metadata?: {
|
|
32758
|
+
audit_openings?: boolean | undefined;
|
|
32759
|
+
} | undefined;
|
|
32694
32760
|
email_address?: string | undefined;
|
|
32695
32761
|
full_name?: string | undefined;
|
|
32696
32762
|
phone_number?: string | undefined;
|
|
@@ -33737,6 +33803,9 @@ declare const batch: z.ZodObject<{
|
|
|
33737
33803
|
user_identity_id?: string | undefined;
|
|
33738
33804
|
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | undefined;
|
|
33739
33805
|
external_type_display_name?: string | undefined;
|
|
33806
|
+
salto_space_metadata?: {
|
|
33807
|
+
audit_openings?: boolean | undefined;
|
|
33808
|
+
} | undefined;
|
|
33740
33809
|
email_address?: string | undefined;
|
|
33741
33810
|
full_name?: string | undefined;
|
|
33742
33811
|
phone_number?: string | undefined;
|
|
@@ -36587,6 +36656,7 @@ declare const batch: z.ZodObject<{
|
|
|
36587
36656
|
door_id?: string | undefined;
|
|
36588
36657
|
ext_door_id?: string | undefined;
|
|
36589
36658
|
door_description?: string | undefined;
|
|
36659
|
+
audit_on_keys?: boolean | undefined;
|
|
36590
36660
|
room_name?: string | undefined;
|
|
36591
36661
|
room_description?: string | undefined;
|
|
36592
36662
|
} | undefined;
|
|
@@ -36715,6 +36785,9 @@ declare const batch: z.ZodObject<{
|
|
|
36715
36785
|
user_identity_id?: string | undefined;
|
|
36716
36786
|
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | undefined;
|
|
36717
36787
|
external_type_display_name?: string | undefined;
|
|
36788
|
+
salto_space_metadata?: {
|
|
36789
|
+
audit_openings?: boolean | undefined;
|
|
36790
|
+
} | undefined;
|
|
36718
36791
|
email_address?: string | undefined;
|
|
36719
36792
|
full_name?: string | undefined;
|
|
36720
36793
|
phone_number?: string | undefined;
|
|
@@ -37761,6 +37834,9 @@ declare const batch: z.ZodObject<{
|
|
|
37761
37834
|
user_identity_id?: string | undefined;
|
|
37762
37835
|
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | undefined;
|
|
37763
37836
|
external_type_display_name?: string | undefined;
|
|
37837
|
+
salto_space_metadata?: {
|
|
37838
|
+
audit_openings?: boolean | undefined;
|
|
37839
|
+
} | undefined;
|
|
37764
37840
|
email_address?: string | undefined;
|
|
37765
37841
|
full_name?: string | undefined;
|
|
37766
37842
|
phone_number?: string | undefined;
|
|
@@ -53919,6 +53995,10 @@ declare const _default: {
|
|
|
53919
53995
|
salto_space_metadata: {
|
|
53920
53996
|
description: string;
|
|
53921
53997
|
properties: {
|
|
53998
|
+
audit_on_keys: {
|
|
53999
|
+
description: string;
|
|
54000
|
+
type: string;
|
|
54001
|
+
};
|
|
53922
54002
|
door_description: {
|
|
53923
54003
|
description: string;
|
|
53924
54004
|
type: string;
|
|
@@ -54668,6 +54748,16 @@ declare const _default: {
|
|
|
54668
54748
|
description: string;
|
|
54669
54749
|
type: string;
|
|
54670
54750
|
};
|
|
54751
|
+
salto_space_metadata: {
|
|
54752
|
+
description: string;
|
|
54753
|
+
properties: {
|
|
54754
|
+
audit_openings: {
|
|
54755
|
+
description: string;
|
|
54756
|
+
type: string;
|
|
54757
|
+
};
|
|
54758
|
+
};
|
|
54759
|
+
type: string;
|
|
54760
|
+
};
|
|
54671
54761
|
user_identity_email_address: {
|
|
54672
54762
|
description: string;
|
|
54673
54763
|
nullable: boolean;
|
|
@@ -64802,6 +64892,10 @@ declare const _default: {
|
|
|
64802
64892
|
salto_space_metadata: {
|
|
64803
64893
|
description: string;
|
|
64804
64894
|
properties: {
|
|
64895
|
+
audit_on_keys: {
|
|
64896
|
+
description: string;
|
|
64897
|
+
type: string;
|
|
64898
|
+
};
|
|
64805
64899
|
door_description: {
|
|
64806
64900
|
description: string;
|
|
64807
64901
|
type: string;
|
|
@@ -66693,6 +66787,16 @@ declare const _default: {
|
|
|
66693
66787
|
description: string;
|
|
66694
66788
|
type: string;
|
|
66695
66789
|
};
|
|
66790
|
+
salto_space_metadata: {
|
|
66791
|
+
description: string;
|
|
66792
|
+
properties: {
|
|
66793
|
+
audit_openings: {
|
|
66794
|
+
description: string;
|
|
66795
|
+
type: string;
|
|
66796
|
+
};
|
|
66797
|
+
};
|
|
66798
|
+
type: string;
|
|
66799
|
+
};
|
|
66696
66800
|
user_identity_email_address: {
|
|
66697
66801
|
description: string;
|
|
66698
66802
|
nullable: boolean;
|
|
@@ -123904,6 +124008,8 @@ type Routes = {
|
|
|
123904
124008
|
door_name?: string | undefined;
|
|
123905
124009
|
/** Description of the door in the Salto Space access system. */
|
|
123906
124010
|
door_description?: string | undefined;
|
|
124011
|
+
/** Indicates whether AuditOnKeys is enabled for the door in the Salto Space access system. */
|
|
124012
|
+
audit_on_keys?: boolean | undefined;
|
|
123907
124013
|
/** Name of the room in the Salto Space access system. */
|
|
123908
124014
|
room_name?: string | undefined;
|
|
123909
124015
|
/** Description of the room in the Salto Space access system. */
|
|
@@ -127282,6 +127388,8 @@ type Routes = {
|
|
|
127282
127388
|
door_name?: string | undefined;
|
|
127283
127389
|
/** Description of the door in the Salto Space access system. */
|
|
127284
127390
|
door_description?: string | undefined;
|
|
127391
|
+
/** Indicates whether AuditOnKeys is enabled for the door in the Salto Space access system. */
|
|
127392
|
+
audit_on_keys?: boolean | undefined;
|
|
127285
127393
|
/** Name of the room in the Salto Space access system. */
|
|
127286
127394
|
room_name?: string | undefined;
|
|
127287
127395
|
/** Description of the room in the Salto Space access system. */
|
|
@@ -127967,6 +128075,8 @@ type Routes = {
|
|
|
127967
128075
|
door_name?: string | undefined;
|
|
127968
128076
|
/** Description of the door in the Salto Space access system. */
|
|
127969
128077
|
door_description?: string | undefined;
|
|
128078
|
+
/** Indicates whether AuditOnKeys is enabled for the door in the Salto Space access system. */
|
|
128079
|
+
audit_on_keys?: boolean | undefined;
|
|
127970
128080
|
/** Name of the room in the Salto Space access system. */
|
|
127971
128081
|
room_name?: string | undefined;
|
|
127972
128082
|
/** Description of the room in the Salto Space access system. */
|
|
@@ -128206,6 +128316,11 @@ type Routes = {
|
|
|
128206
128316
|
The ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) that is associated with the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management).
|
|
128207
128317
|
*/
|
|
128208
128318
|
connected_account_id: string;
|
|
128319
|
+
/** Salto Space-specific metadata associated with the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
|
|
128320
|
+
salto_space_metadata?: {
|
|
128321
|
+
/** Indicates whether AuditOpenings is enabled for the user in the Salto Space access system. */
|
|
128322
|
+
audit_openings?: boolean | undefined;
|
|
128323
|
+
} | undefined;
|
|
128209
128324
|
/** Full name of the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
|
|
128210
128325
|
full_name?: string | undefined;
|
|
128211
128326
|
/**
|
|
@@ -129357,6 +129472,8 @@ type Routes = {
|
|
|
129357
129472
|
door_name?: string | undefined;
|
|
129358
129473
|
/** Description of the door in the Salto Space access system. */
|
|
129359
129474
|
door_description?: string | undefined;
|
|
129475
|
+
/** Indicates whether AuditOnKeys is enabled for the door in the Salto Space access system. */
|
|
129476
|
+
audit_on_keys?: boolean | undefined;
|
|
129360
129477
|
/** Name of the room in the Salto Space access system. */
|
|
129361
129478
|
room_name?: string | undefined;
|
|
129362
129479
|
/** Description of the room in the Salto Space access system. */
|
|
@@ -132838,6 +132955,8 @@ type Routes = {
|
|
|
132838
132955
|
door_name?: string | undefined;
|
|
132839
132956
|
/** Description of the door in the Salto Space access system. */
|
|
132840
132957
|
door_description?: string | undefined;
|
|
132958
|
+
/** Indicates whether AuditOnKeys is enabled for the door in the Salto Space access system. */
|
|
132959
|
+
audit_on_keys?: boolean | undefined;
|
|
132841
132960
|
/** Name of the room in the Salto Space access system. */
|
|
132842
132961
|
room_name?: string | undefined;
|
|
132843
132962
|
/** Description of the room in the Salto Space access system. */
|
|
@@ -133009,6 +133128,8 @@ type Routes = {
|
|
|
133009
133128
|
door_name?: string | undefined;
|
|
133010
133129
|
/** Description of the door in the Salto Space access system. */
|
|
133011
133130
|
door_description?: string | undefined;
|
|
133131
|
+
/** Indicates whether AuditOnKeys is enabled for the door in the Salto Space access system. */
|
|
133132
|
+
audit_on_keys?: boolean | undefined;
|
|
133012
133133
|
/** Name of the room in the Salto Space access system. */
|
|
133013
133134
|
room_name?: string | undefined;
|
|
133014
133135
|
/** Description of the room in the Salto Space access system. */
|
|
@@ -133883,6 +134004,11 @@ type Routes = {
|
|
|
133883
134004
|
The ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) that is associated with the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management).
|
|
133884
134005
|
*/
|
|
133885
134006
|
connected_account_id: string;
|
|
134007
|
+
/** Salto Space-specific metadata associated with the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
|
|
134008
|
+
salto_space_metadata?: {
|
|
134009
|
+
/** Indicates whether AuditOpenings is enabled for the user in the Salto Space access system. */
|
|
134010
|
+
audit_openings?: boolean | undefined;
|
|
134011
|
+
} | undefined;
|
|
133886
134012
|
/** Full name of the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
|
|
133887
134013
|
full_name?: string | undefined;
|
|
133888
134014
|
/**
|
|
@@ -134140,6 +134266,11 @@ type Routes = {
|
|
|
134140
134266
|
The ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) that is associated with the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management).
|
|
134141
134267
|
*/
|
|
134142
134268
|
connected_account_id: string;
|
|
134269
|
+
/** Salto Space-specific metadata associated with the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
|
|
134270
|
+
salto_space_metadata?: {
|
|
134271
|
+
/** Indicates whether AuditOpenings is enabled for the user in the Salto Space access system. */
|
|
134272
|
+
audit_openings?: boolean | undefined;
|
|
134273
|
+
} | undefined;
|
|
134143
134274
|
/** Full name of the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
|
|
134144
134275
|
full_name?: string | undefined;
|
|
134145
134276
|
/**
|
|
@@ -134385,6 +134516,11 @@ type Routes = {
|
|
|
134385
134516
|
The ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) that is associated with the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management).
|
|
134386
134517
|
*/
|
|
134387
134518
|
connected_account_id: string;
|
|
134519
|
+
/** Salto Space-specific metadata associated with the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
|
|
134520
|
+
salto_space_metadata?: {
|
|
134521
|
+
/** Indicates whether AuditOpenings is enabled for the user in the Salto Space access system. */
|
|
134522
|
+
audit_openings?: boolean | undefined;
|
|
134523
|
+
} | undefined;
|
|
134388
134524
|
/** Full name of the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
|
|
134389
134525
|
full_name?: string | undefined;
|
|
134390
134526
|
/**
|
|
@@ -134525,6 +134661,8 @@ type Routes = {
|
|
|
134525
134661
|
door_name?: string | undefined;
|
|
134526
134662
|
/** Description of the door in the Salto Space access system. */
|
|
134527
134663
|
door_description?: string | undefined;
|
|
134664
|
+
/** Indicates whether AuditOnKeys is enabled for the door in the Salto Space access system. */
|
|
134665
|
+
audit_on_keys?: boolean | undefined;
|
|
134528
134666
|
/** Name of the room in the Salto Space access system. */
|
|
134529
134667
|
room_name?: string | undefined;
|
|
134530
134668
|
/** Description of the room in the Salto Space access system. */
|
|
@@ -134816,6 +134954,11 @@ type Routes = {
|
|
|
134816
134954
|
The ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) that is associated with the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management).
|
|
134817
134955
|
*/
|
|
134818
134956
|
connected_account_id: string;
|
|
134957
|
+
/** Salto Space-specific metadata associated with the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
|
|
134958
|
+
salto_space_metadata?: {
|
|
134959
|
+
/** Indicates whether AuditOpenings is enabled for the user in the Salto Space access system. */
|
|
134960
|
+
audit_openings?: boolean | undefined;
|
|
134961
|
+
} | undefined;
|
|
134819
134962
|
/** Full name of the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
|
|
134820
134963
|
full_name?: string | undefined;
|
|
134821
134964
|
/**
|
|
@@ -135055,6 +135198,11 @@ type Routes = {
|
|
|
135055
135198
|
The ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) that is associated with the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management).
|
|
135056
135199
|
*/
|
|
135057
135200
|
connected_account_id: string;
|
|
135201
|
+
/** Salto Space-specific metadata associated with the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
|
|
135202
|
+
salto_space_metadata?: {
|
|
135203
|
+
/** Indicates whether AuditOpenings is enabled for the user in the Salto Space access system. */
|
|
135204
|
+
audit_openings?: boolean | undefined;
|
|
135205
|
+
} | undefined;
|
|
135058
135206
|
/** Full name of the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
|
|
135059
135207
|
full_name?: string | undefined;
|
|
135060
135208
|
/**
|
|
@@ -167502,6 +167650,8 @@ type Routes = {
|
|
|
167502
167650
|
door_name?: string | undefined;
|
|
167503
167651
|
/** Description of the door in the Salto Space access system. */
|
|
167504
167652
|
door_description?: string | undefined;
|
|
167653
|
+
/** Indicates whether AuditOnKeys is enabled for the door in the Salto Space access system. */
|
|
167654
|
+
audit_on_keys?: boolean | undefined;
|
|
167505
167655
|
/** Name of the room in the Salto Space access system. */
|
|
167506
167656
|
room_name?: string | undefined;
|
|
167507
167657
|
/** Description of the room in the Salto Space access system. */
|
|
@@ -169113,6 +169263,8 @@ type Routes = {
|
|
|
169113
169263
|
door_name?: string | undefined;
|
|
169114
169264
|
/** Description of the door in the Salto Space access system. */
|
|
169115
169265
|
door_description?: string | undefined;
|
|
169266
|
+
/** Indicates whether AuditOnKeys is enabled for the door in the Salto Space access system. */
|
|
169267
|
+
audit_on_keys?: boolean | undefined;
|
|
169116
169268
|
/** Name of the room in the Salto Space access system. */
|
|
169117
169269
|
room_name?: string | undefined;
|
|
169118
169270
|
/** Description of the room in the Salto Space access system. */
|
|
@@ -188544,6 +188696,11 @@ type Routes = {
|
|
|
188544
188696
|
The ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) that is associated with the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management).
|
|
188545
188697
|
*/
|
|
188546
188698
|
connected_account_id: string;
|
|
188699
|
+
/** Salto Space-specific metadata associated with the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
|
|
188700
|
+
salto_space_metadata?: {
|
|
188701
|
+
/** Indicates whether AuditOpenings is enabled for the user in the Salto Space access system. */
|
|
188702
|
+
audit_openings?: boolean | undefined;
|
|
188703
|
+
} | undefined;
|
|
188547
188704
|
/** Full name of the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
|
|
188548
188705
|
full_name?: string | undefined;
|
|
188549
188706
|
/**
|
|
@@ -190476,6 +190633,8 @@ type Routes = {
|
|
|
190476
190633
|
door_name?: string | undefined;
|
|
190477
190634
|
/** Description of the door in the Salto Space access system. */
|
|
190478
190635
|
door_description?: string | undefined;
|
|
190636
|
+
/** Indicates whether AuditOnKeys is enabled for the door in the Salto Space access system. */
|
|
190637
|
+
audit_on_keys?: boolean | undefined;
|
|
190479
190638
|
/** Name of the room in the Salto Space access system. */
|
|
190480
190639
|
room_name?: string | undefined;
|
|
190481
190640
|
/** Description of the room in the Salto Space access system. */
|
|
@@ -190819,6 +190978,11 @@ type Routes = {
|
|
|
190819
190978
|
The ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) that is associated with the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management).
|
|
190820
190979
|
*/
|
|
190821
190980
|
connected_account_id: string;
|
|
190981
|
+
/** Salto Space-specific metadata associated with the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
|
|
190982
|
+
salto_space_metadata?: {
|
|
190983
|
+
/** Indicates whether AuditOpenings is enabled for the user in the Salto Space access system. */
|
|
190984
|
+
audit_openings?: boolean | undefined;
|
|
190985
|
+
} | undefined;
|
|
190822
190986
|
/** Full name of the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
|
|
190823
190987
|
full_name?: string | undefined;
|
|
190824
190988
|
/**
|
|
@@ -192371,6 +192535,11 @@ type Routes = {
|
|
|
192371
192535
|
The ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) that is associated with the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management).
|
|
192372
192536
|
*/
|
|
192373
192537
|
connected_account_id: string;
|
|
192538
|
+
/** Salto Space-specific metadata associated with the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
|
|
192539
|
+
salto_space_metadata?: {
|
|
192540
|
+
/** Indicates whether AuditOpenings is enabled for the user in the Salto Space access system. */
|
|
192541
|
+
audit_openings?: boolean | undefined;
|
|
192542
|
+
} | undefined;
|
|
192374
192543
|
/** Full name of the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
|
|
192375
192544
|
full_name?: string | undefined;
|
|
192376
192545
|
/**
|
package/dist/index.cjs
CHANGED
|
@@ -2619,6 +2619,28 @@ var acs_entrance_salto_ks_metadata = zod.z.object({
|
|
|
2619
2619
|
intrusion_alarm: zod.z.boolean().optional().describe("Indicates whether an intrusion alarm is active on the door."),
|
|
2620
2620
|
privacy_mode: zod.z.boolean().optional().describe("Indicates whether privacy mode is enabled for the lock.")
|
|
2621
2621
|
}).describe("Salto KS-specific metadata associated with the entrance.");
|
|
2622
|
+
var acs_entrance_salto_space_metadata = zod.z.object({
|
|
2623
|
+
ext_door_id: zod.z.string().describe(`
|
|
2624
|
+
---
|
|
2625
|
+
deprecated: use door_id.
|
|
2626
|
+
---
|
|
2627
|
+
`),
|
|
2628
|
+
door_id: zod.z.string().describe("Door ID in the Salto Space access system."),
|
|
2629
|
+
door_name: zod.z.string().describe("Name of the door in the Salto Space access system."),
|
|
2630
|
+
door_description: zod.z.string().describe("Description of the door in the Salto Space access system."),
|
|
2631
|
+
audit_on_keys: zod.z.boolean().describe(
|
|
2632
|
+
"Indicates whether AuditOnKeys is enabled for the door in the Salto Space access system."
|
|
2633
|
+
),
|
|
2634
|
+
room_name: zod.z.string().describe("Name of the room in the Salto Space access system."),
|
|
2635
|
+
room_description: zod.z.string().describe("Description of the room in the Salto Space access system.")
|
|
2636
|
+
}).partial().describe("Salto Space-specific metadata associated with the entrance.");
|
|
2637
|
+
var acs_user_salto_space_metadata = zod.z.object({
|
|
2638
|
+
audit_openings: zod.z.boolean().optional().describe(
|
|
2639
|
+
"Indicates whether AuditOpenings is enabled for the user in the Salto Space access system."
|
|
2640
|
+
)
|
|
2641
|
+
}).describe(
|
|
2642
|
+
"Salto Space-specific metadata associated with the access system user."
|
|
2643
|
+
);
|
|
2622
2644
|
var acs_entrance_visionline_metadata = zod.z.object({
|
|
2623
2645
|
door_name: zod.z.string().describe("Name of the door in the Visionline access system."),
|
|
2624
2646
|
door_category: zod.z.enum(["entrance", "guest", "elevator reader", "common", "common (PMS)"]).describe("Category of the door in the Visionline access system."),
|
|
@@ -2942,20 +2964,6 @@ var acs_encoder = zod.z.object({
|
|
|
2942
2964
|
|
|
2943
2965
|
To verify if your access control system requires a card encoder, see the corresponding [system integration guide](https://docs.seam.co/latest/device-and-system-integration-guides/overview#access-control-systems).
|
|
2944
2966
|
`);
|
|
2945
|
-
var acs_entrance_salto_space_metadata = zod.z.object({
|
|
2946
|
-
ext_door_id: zod.z.string().describe(`
|
|
2947
|
-
---
|
|
2948
|
-
deprecated: use door_id.
|
|
2949
|
-
---
|
|
2950
|
-
`),
|
|
2951
|
-
door_id: zod.z.string().describe("Door ID in the Salto Space access system."),
|
|
2952
|
-
door_name: zod.z.string().describe("Name of the door in the Salto Space access system."),
|
|
2953
|
-
door_description: zod.z.string().describe("Description of the door in the Salto Space access system."),
|
|
2954
|
-
room_name: zod.z.string().describe("Name of the room in the Salto Space access system."),
|
|
2955
|
-
room_description: zod.z.string().describe("Description of the room in the Salto Space access system.")
|
|
2956
|
-
}).partial().describe("Salto Space-specific metadata associated with the entrance.");
|
|
2957
|
-
|
|
2958
|
-
// src/lib/seam/connect/models/acs/acs-entrance.ts
|
|
2959
2967
|
var acs_entrance_capability_flags = zod.z.object({
|
|
2960
2968
|
can_unlock_with_mobile_key: zod.z.boolean().optional().describe(
|
|
2961
2969
|
"Indicates whether the ACS entrance can be unlocked with mobile key credentials."
|
|
@@ -3551,7 +3559,10 @@ var common_acs_user = zod.z.object({
|
|
|
3551
3559
|
`),
|
|
3552
3560
|
connected_account_id: zod.z.string().uuid().describe(`
|
|
3553
3561
|
The ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) that is associated with the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management).
|
|
3554
|
-
`)
|
|
3562
|
+
`),
|
|
3563
|
+
salto_space_metadata: acs_user_salto_space_metadata.optional().describe(
|
|
3564
|
+
"Salto Space-specific metadata associated with the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management)."
|
|
3565
|
+
)
|
|
3555
3566
|
}).merge(user_fields);
|
|
3556
3567
|
var acs_user = common_acs_user.merge(
|
|
3557
3568
|
zod.z.object({
|
|
@@ -8483,6 +8494,10 @@ var openapi_default = {
|
|
|
8483
8494
|
salto_space_metadata: {
|
|
8484
8495
|
description: "Salto Space-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).",
|
|
8485
8496
|
properties: {
|
|
8497
|
+
audit_on_keys: {
|
|
8498
|
+
description: "Indicates whether AuditOnKeys is enabled for the door in the Salto Space access system.",
|
|
8499
|
+
type: "boolean"
|
|
8500
|
+
},
|
|
8486
8501
|
door_description: {
|
|
8487
8502
|
description: "Description of the door in the Salto Space access system.",
|
|
8488
8503
|
type: "string"
|
|
@@ -9472,6 +9487,16 @@ var openapi_default = {
|
|
|
9472
9487
|
description: "Phone number of the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) in E.164 format (for example, `+15555550100`).",
|
|
9473
9488
|
type: "string"
|
|
9474
9489
|
},
|
|
9490
|
+
salto_space_metadata: {
|
|
9491
|
+
description: "Salto Space-specific metadata associated with the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management).",
|
|
9492
|
+
properties: {
|
|
9493
|
+
audit_openings: {
|
|
9494
|
+
description: "Indicates whether AuditOpenings is enabled for the user in the Salto Space access system.",
|
|
9495
|
+
type: "boolean"
|
|
9496
|
+
}
|
|
9497
|
+
},
|
|
9498
|
+
type: "object"
|
|
9499
|
+
},
|
|
9475
9500
|
user_identity_email_address: {
|
|
9476
9501
|
description: "Email address of the user identity associated with the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management).",
|
|
9477
9502
|
nullable: true,
|
|
@@ -24145,6 +24170,10 @@ var openapi_default = {
|
|
|
24145
24170
|
salto_space_metadata: {
|
|
24146
24171
|
description: "Salto Space-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).",
|
|
24147
24172
|
properties: {
|
|
24173
|
+
audit_on_keys: {
|
|
24174
|
+
description: "Indicates whether AuditOnKeys is enabled for the door in the Salto Space access system.",
|
|
24175
|
+
type: "boolean"
|
|
24176
|
+
},
|
|
24148
24177
|
door_description: {
|
|
24149
24178
|
description: "Description of the door in the Salto Space access system.",
|
|
24150
24179
|
type: "string"
|
|
@@ -27621,6 +27650,16 @@ var openapi_default = {
|
|
|
27621
27650
|
description: "Phone number of the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) in E.164 format (for example, `+15555550100`).",
|
|
27622
27651
|
type: "string"
|
|
27623
27652
|
},
|
|
27653
|
+
salto_space_metadata: {
|
|
27654
|
+
description: "Salto Space-specific metadata associated with the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management).",
|
|
27655
|
+
properties: {
|
|
27656
|
+
audit_openings: {
|
|
27657
|
+
description: "Indicates whether AuditOpenings is enabled for the user in the Salto Space access system.",
|
|
27658
|
+
type: "boolean"
|
|
27659
|
+
}
|
|
27660
|
+
},
|
|
27661
|
+
type: "object"
|
|
27662
|
+
},
|
|
27624
27663
|
user_identity_email_address: {
|
|
27625
27664
|
description: "Email address of the user identity associated with the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management).",
|
|
27626
27665
|
nullable: true,
|