@seamapi/types 1.549.0 → 1.551.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 +22 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +91 -0
- package/dist/index.cjs +22 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +20 -0
- package/lib/seam/connect/models/events/access-methods.d.ts +12 -0
- package/lib/seam/connect/models/events/access-methods.js +8 -0
- package/lib/seam/connect/models/events/access-methods.js.map +1 -1
- package/lib/seam/connect/models/events/seam-event.d.ts +6 -0
- package/lib/seam/connect/openapi.d.ts +50 -0
- package/lib/seam/connect/openapi.js +16 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +25 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/events/access-methods.ts +12 -0
- package/src/lib/seam/connect/openapi.ts +18 -0
- package/src/lib/seam/connect/route-types.ts +27 -0
package/dist/connect.cjs
CHANGED
|
@@ -4306,6 +4306,9 @@ var access_method_issued_event = access_method_event.extend({
|
|
|
4306
4306
|
event_type: zod.z.literal("access_method.issued"),
|
|
4307
4307
|
code: zod.z.string().optional().describe(
|
|
4308
4308
|
"The actual PIN code for code access methods (only present when mode is 'code')."
|
|
4309
|
+
),
|
|
4310
|
+
is_backup_code: zod.z.boolean().optional().describe(
|
|
4311
|
+
"Indicates whether the code is a backup code (only present when mode is 'code' and a backup code was used)."
|
|
4309
4312
|
)
|
|
4310
4313
|
}).describe(`
|
|
4311
4314
|
---
|
|
@@ -4341,6 +4344,9 @@ var access_method_reissued_event = access_method_event.extend({
|
|
|
4341
4344
|
event_type: zod.z.literal("access_method.reissued"),
|
|
4342
4345
|
code: zod.z.string().optional().describe(
|
|
4343
4346
|
"The actual PIN code for code access methods (only present when mode is 'code')."
|
|
4347
|
+
),
|
|
4348
|
+
is_backup_code: zod.z.boolean().optional().describe(
|
|
4349
|
+
"Indicates whether the code is a backup code (only present when mode is 'code' and a backup code was used)."
|
|
4344
4350
|
)
|
|
4345
4351
|
}).describe(`
|
|
4346
4352
|
---
|
|
@@ -18643,6 +18649,10 @@ var openapi_default = {
|
|
|
18643
18649
|
type: "string"
|
|
18644
18650
|
},
|
|
18645
18651
|
event_type: { enum: ["access_method.issued"], type: "string" },
|
|
18652
|
+
is_backup_code: {
|
|
18653
|
+
description: "Indicates whether the code is a backup code (only present when mode is 'code' and a backup code was used).",
|
|
18654
|
+
type: "boolean"
|
|
18655
|
+
},
|
|
18646
18656
|
occurred_at: {
|
|
18647
18657
|
description: "Date and time at which the event occurred.",
|
|
18648
18658
|
format: "date-time",
|
|
@@ -18858,6 +18868,10 @@ var openapi_default = {
|
|
|
18858
18868
|
type: "string"
|
|
18859
18869
|
},
|
|
18860
18870
|
event_type: { enum: ["access_method.reissued"], type: "string" },
|
|
18871
|
+
is_backup_code: {
|
|
18872
|
+
description: "Indicates whether the code is a backup code (only present when mode is 'code' and a backup code was used).",
|
|
18873
|
+
type: "boolean"
|
|
18874
|
+
},
|
|
18861
18875
|
occurred_at: {
|
|
18862
18876
|
description: "Date and time at which the event occurred.",
|
|
18863
18877
|
format: "date-time",
|
|
@@ -33916,6 +33930,14 @@ var openapi_default = {
|
|
|
33916
33930
|
format: "date-time",
|
|
33917
33931
|
type: "string"
|
|
33918
33932
|
},
|
|
33933
|
+
hotek_metadata: {
|
|
33934
|
+
properties: {
|
|
33935
|
+
auto_join: { type: "boolean" },
|
|
33936
|
+
override: { type: "boolean" }
|
|
33937
|
+
},
|
|
33938
|
+
type: "object",
|
|
33939
|
+
"x-undocumented": "in development"
|
|
33940
|
+
},
|
|
33919
33941
|
is_multi_phone_sync_credential: {
|
|
33920
33942
|
default: false,
|
|
33921
33943
|
description: "Indicates whether the new credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials).",
|