@seamapi/types 1.658.0 → 1.659.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 +11 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +40 -0
- package/dist/index.cjs +11 -0
- 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/metadata/salto-space.d.ts +3 -0
- package/lib/seam/connect/models/acs/metadata/salto-space.js +3 -0
- package/lib/seam/connect/models/acs/metadata/salto-space.js.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +7 -0
- package/lib/seam/connect/models/phones/phone-session.d.ts +20 -0
- package/lib/seam/connect/openapi.d.ts +8 -0
- package/lib/seam/connect/openapi.js +8 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +20 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/metadata/salto-space.ts +5 -0
- package/src/lib/seam/connect/openapi.ts +10 -0
- package/src/lib/seam/connect/route-types.ts +20 -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;
|
|
@@ -15268,6 +15273,7 @@ declare const batch: z.ZodObject<{
|
|
|
15268
15273
|
door_id: z.ZodOptional<z.ZodString>;
|
|
15269
15274
|
door_name: z.ZodOptional<z.ZodString>;
|
|
15270
15275
|
door_description: z.ZodOptional<z.ZodString>;
|
|
15276
|
+
audit_on_keys: z.ZodOptional<z.ZodBoolean>;
|
|
15271
15277
|
room_name: z.ZodOptional<z.ZodString>;
|
|
15272
15278
|
room_description: z.ZodOptional<z.ZodString>;
|
|
15273
15279
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -15275,6 +15281,7 @@ declare const batch: z.ZodObject<{
|
|
|
15275
15281
|
door_id?: string | undefined;
|
|
15276
15282
|
ext_door_id?: string | undefined;
|
|
15277
15283
|
door_description?: string | undefined;
|
|
15284
|
+
audit_on_keys?: boolean | undefined;
|
|
15278
15285
|
room_name?: string | undefined;
|
|
15279
15286
|
room_description?: string | undefined;
|
|
15280
15287
|
}, {
|
|
@@ -15282,6 +15289,7 @@ declare const batch: z.ZodObject<{
|
|
|
15282
15289
|
door_id?: string | undefined;
|
|
15283
15290
|
ext_door_id?: string | undefined;
|
|
15284
15291
|
door_description?: string | undefined;
|
|
15292
|
+
audit_on_keys?: boolean | undefined;
|
|
15285
15293
|
room_name?: string | undefined;
|
|
15286
15294
|
room_description?: string | undefined;
|
|
15287
15295
|
}>>;
|
|
@@ -15356,6 +15364,7 @@ declare const batch: z.ZodObject<{
|
|
|
15356
15364
|
door_id?: string | undefined;
|
|
15357
15365
|
ext_door_id?: string | undefined;
|
|
15358
15366
|
door_description?: string | undefined;
|
|
15367
|
+
audit_on_keys?: boolean | undefined;
|
|
15359
15368
|
room_name?: string | undefined;
|
|
15360
15369
|
room_description?: string | undefined;
|
|
15361
15370
|
} | undefined;
|
|
@@ -15421,6 +15430,7 @@ declare const batch: z.ZodObject<{
|
|
|
15421
15430
|
door_id?: string | undefined;
|
|
15422
15431
|
ext_door_id?: string | undefined;
|
|
15423
15432
|
door_description?: string | undefined;
|
|
15433
|
+
audit_on_keys?: boolean | undefined;
|
|
15424
15434
|
room_name?: string | undefined;
|
|
15425
15435
|
room_description?: string | undefined;
|
|
15426
15436
|
} | undefined;
|
|
@@ -32563,6 +32573,7 @@ declare const batch: z.ZodObject<{
|
|
|
32563
32573
|
door_id?: string | undefined;
|
|
32564
32574
|
ext_door_id?: string | undefined;
|
|
32565
32575
|
door_description?: string | undefined;
|
|
32576
|
+
audit_on_keys?: boolean | undefined;
|
|
32566
32577
|
room_name?: string | undefined;
|
|
32567
32578
|
room_description?: string | undefined;
|
|
32568
32579
|
} | undefined;
|
|
@@ -36587,6 +36598,7 @@ declare const batch: z.ZodObject<{
|
|
|
36587
36598
|
door_id?: string | undefined;
|
|
36588
36599
|
ext_door_id?: string | undefined;
|
|
36589
36600
|
door_description?: string | undefined;
|
|
36601
|
+
audit_on_keys?: boolean | undefined;
|
|
36590
36602
|
room_name?: string | undefined;
|
|
36591
36603
|
room_description?: string | undefined;
|
|
36592
36604
|
} | undefined;
|
|
@@ -53919,6 +53931,10 @@ declare const _default: {
|
|
|
53919
53931
|
salto_space_metadata: {
|
|
53920
53932
|
description: string;
|
|
53921
53933
|
properties: {
|
|
53934
|
+
audit_on_keys: {
|
|
53935
|
+
description: string;
|
|
53936
|
+
type: string;
|
|
53937
|
+
};
|
|
53922
53938
|
door_description: {
|
|
53923
53939
|
description: string;
|
|
53924
53940
|
type: string;
|
|
@@ -64802,6 +64818,10 @@ declare const _default: {
|
|
|
64802
64818
|
salto_space_metadata: {
|
|
64803
64819
|
description: string;
|
|
64804
64820
|
properties: {
|
|
64821
|
+
audit_on_keys: {
|
|
64822
|
+
description: string;
|
|
64823
|
+
type: string;
|
|
64824
|
+
};
|
|
64805
64825
|
door_description: {
|
|
64806
64826
|
description: string;
|
|
64807
64827
|
type: string;
|
|
@@ -123904,6 +123924,8 @@ type Routes = {
|
|
|
123904
123924
|
door_name?: string | undefined;
|
|
123905
123925
|
/** Description of the door in the Salto Space access system. */
|
|
123906
123926
|
door_description?: string | undefined;
|
|
123927
|
+
/** Indicates whether AuditOnKeys is enabled for the door in the Salto Space access system. */
|
|
123928
|
+
audit_on_keys?: boolean | undefined;
|
|
123907
123929
|
/** Name of the room in the Salto Space access system. */
|
|
123908
123930
|
room_name?: string | undefined;
|
|
123909
123931
|
/** Description of the room in the Salto Space access system. */
|
|
@@ -127282,6 +127304,8 @@ type Routes = {
|
|
|
127282
127304
|
door_name?: string | undefined;
|
|
127283
127305
|
/** Description of the door in the Salto Space access system. */
|
|
127284
127306
|
door_description?: string | undefined;
|
|
127307
|
+
/** Indicates whether AuditOnKeys is enabled for the door in the Salto Space access system. */
|
|
127308
|
+
audit_on_keys?: boolean | undefined;
|
|
127285
127309
|
/** Name of the room in the Salto Space access system. */
|
|
127286
127310
|
room_name?: string | undefined;
|
|
127287
127311
|
/** Description of the room in the Salto Space access system. */
|
|
@@ -127967,6 +127991,8 @@ type Routes = {
|
|
|
127967
127991
|
door_name?: string | undefined;
|
|
127968
127992
|
/** Description of the door in the Salto Space access system. */
|
|
127969
127993
|
door_description?: string | undefined;
|
|
127994
|
+
/** Indicates whether AuditOnKeys is enabled for the door in the Salto Space access system. */
|
|
127995
|
+
audit_on_keys?: boolean | undefined;
|
|
127970
127996
|
/** Name of the room in the Salto Space access system. */
|
|
127971
127997
|
room_name?: string | undefined;
|
|
127972
127998
|
/** Description of the room in the Salto Space access system. */
|
|
@@ -129357,6 +129383,8 @@ type Routes = {
|
|
|
129357
129383
|
door_name?: string | undefined;
|
|
129358
129384
|
/** Description of the door in the Salto Space access system. */
|
|
129359
129385
|
door_description?: string | undefined;
|
|
129386
|
+
/** Indicates whether AuditOnKeys is enabled for the door in the Salto Space access system. */
|
|
129387
|
+
audit_on_keys?: boolean | undefined;
|
|
129360
129388
|
/** Name of the room in the Salto Space access system. */
|
|
129361
129389
|
room_name?: string | undefined;
|
|
129362
129390
|
/** Description of the room in the Salto Space access system. */
|
|
@@ -132838,6 +132866,8 @@ type Routes = {
|
|
|
132838
132866
|
door_name?: string | undefined;
|
|
132839
132867
|
/** Description of the door in the Salto Space access system. */
|
|
132840
132868
|
door_description?: string | undefined;
|
|
132869
|
+
/** Indicates whether AuditOnKeys is enabled for the door in the Salto Space access system. */
|
|
132870
|
+
audit_on_keys?: boolean | undefined;
|
|
132841
132871
|
/** Name of the room in the Salto Space access system. */
|
|
132842
132872
|
room_name?: string | undefined;
|
|
132843
132873
|
/** Description of the room in the Salto Space access system. */
|
|
@@ -133009,6 +133039,8 @@ type Routes = {
|
|
|
133009
133039
|
door_name?: string | undefined;
|
|
133010
133040
|
/** Description of the door in the Salto Space access system. */
|
|
133011
133041
|
door_description?: string | undefined;
|
|
133042
|
+
/** Indicates whether AuditOnKeys is enabled for the door in the Salto Space access system. */
|
|
133043
|
+
audit_on_keys?: boolean | undefined;
|
|
133012
133044
|
/** Name of the room in the Salto Space access system. */
|
|
133013
133045
|
room_name?: string | undefined;
|
|
133014
133046
|
/** Description of the room in the Salto Space access system. */
|
|
@@ -134525,6 +134557,8 @@ type Routes = {
|
|
|
134525
134557
|
door_name?: string | undefined;
|
|
134526
134558
|
/** Description of the door in the Salto Space access system. */
|
|
134527
134559
|
door_description?: string | undefined;
|
|
134560
|
+
/** Indicates whether AuditOnKeys is enabled for the door in the Salto Space access system. */
|
|
134561
|
+
audit_on_keys?: boolean | undefined;
|
|
134528
134562
|
/** Name of the room in the Salto Space access system. */
|
|
134529
134563
|
room_name?: string | undefined;
|
|
134530
134564
|
/** Description of the room in the Salto Space access system. */
|
|
@@ -167502,6 +167536,8 @@ type Routes = {
|
|
|
167502
167536
|
door_name?: string | undefined;
|
|
167503
167537
|
/** Description of the door in the Salto Space access system. */
|
|
167504
167538
|
door_description?: string | undefined;
|
|
167539
|
+
/** Indicates whether AuditOnKeys is enabled for the door in the Salto Space access system. */
|
|
167540
|
+
audit_on_keys?: boolean | undefined;
|
|
167505
167541
|
/** Name of the room in the Salto Space access system. */
|
|
167506
167542
|
room_name?: string | undefined;
|
|
167507
167543
|
/** Description of the room in the Salto Space access system. */
|
|
@@ -169113,6 +169149,8 @@ type Routes = {
|
|
|
169113
169149
|
door_name?: string | undefined;
|
|
169114
169150
|
/** Description of the door in the Salto Space access system. */
|
|
169115
169151
|
door_description?: string | undefined;
|
|
169152
|
+
/** Indicates whether AuditOnKeys is enabled for the door in the Salto Space access system. */
|
|
169153
|
+
audit_on_keys?: boolean | undefined;
|
|
169116
169154
|
/** Name of the room in the Salto Space access system. */
|
|
169117
169155
|
room_name?: string | undefined;
|
|
169118
169156
|
/** Description of the room in the Salto Space access system. */
|
|
@@ -190476,6 +190514,8 @@ type Routes = {
|
|
|
190476
190514
|
door_name?: string | undefined;
|
|
190477
190515
|
/** Description of the door in the Salto Space access system. */
|
|
190478
190516
|
door_description?: string | undefined;
|
|
190517
|
+
/** Indicates whether AuditOnKeys is enabled for the door in the Salto Space access system. */
|
|
190518
|
+
audit_on_keys?: boolean | undefined;
|
|
190479
190519
|
/** Name of the room in the Salto Space access system. */
|
|
190480
190520
|
room_name?: string | undefined;
|
|
190481
190521
|
/** Description of the room in the Salto Space access system. */
|
package/dist/index.cjs
CHANGED
|
@@ -2951,6 +2951,9 @@ var acs_entrance_salto_space_metadata = zod.z.object({
|
|
|
2951
2951
|
door_id: zod.z.string().describe("Door ID in the Salto Space access system."),
|
|
2952
2952
|
door_name: zod.z.string().describe("Name of the door in the Salto Space access system."),
|
|
2953
2953
|
door_description: zod.z.string().describe("Description of the door in the Salto Space access system."),
|
|
2954
|
+
audit_on_keys: zod.z.boolean().describe(
|
|
2955
|
+
"Indicates whether AuditOnKeys is enabled for the door in the Salto Space access system."
|
|
2956
|
+
),
|
|
2954
2957
|
room_name: zod.z.string().describe("Name of the room in the Salto Space access system."),
|
|
2955
2958
|
room_description: zod.z.string().describe("Description of the room in the Salto Space access system.")
|
|
2956
2959
|
}).partial().describe("Salto Space-specific metadata associated with the entrance.");
|
|
@@ -8483,6 +8486,10 @@ var openapi_default = {
|
|
|
8483
8486
|
salto_space_metadata: {
|
|
8484
8487
|
description: "Salto Space-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).",
|
|
8485
8488
|
properties: {
|
|
8489
|
+
audit_on_keys: {
|
|
8490
|
+
description: "Indicates whether AuditOnKeys is enabled for the door in the Salto Space access system.",
|
|
8491
|
+
type: "boolean"
|
|
8492
|
+
},
|
|
8486
8493
|
door_description: {
|
|
8487
8494
|
description: "Description of the door in the Salto Space access system.",
|
|
8488
8495
|
type: "string"
|
|
@@ -24145,6 +24152,10 @@ var openapi_default = {
|
|
|
24145
24152
|
salto_space_metadata: {
|
|
24146
24153
|
description: "Salto Space-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).",
|
|
24147
24154
|
properties: {
|
|
24155
|
+
audit_on_keys: {
|
|
24156
|
+
description: "Indicates whether AuditOnKeys is enabled for the door in the Salto Space access system.",
|
|
24157
|
+
type: "boolean"
|
|
24158
|
+
},
|
|
24148
24159
|
door_description: {
|
|
24149
24160
|
description: "Description of the door in the Salto Space access system.",
|
|
24150
24161
|
type: "string"
|