@seamapi/types 1.914.0 → 1.915.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 +12 -6
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +24 -0
- package/dist/index.cjs +12 -6
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/events/access-codes.js +24 -12
- package/lib/seam/connect/models/events/access-codes.js.map +1 -1
- package/lib/seam/connect/openapi.js +6 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +24 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/events/access-codes.ts +32 -20
- package/src/lib/seam/connect/openapi.ts +6 -0
- package/src/lib/seam/connect/route-types.ts +24 -0
package/dist/connect.cjs
CHANGED
|
@@ -5398,10 +5398,10 @@ var access_code_name_changed_event = access_code_event.extend({
|
|
|
5398
5398
|
event_type: zod.z.literal("access_code.name_changed"),
|
|
5399
5399
|
from: zod.z.object({
|
|
5400
5400
|
name: zod.z.string().nullable().describe("Previous name of the access code.")
|
|
5401
|
-
}),
|
|
5401
|
+
}).describe("Previous access code name configuration."),
|
|
5402
5402
|
to: zod.z.object({
|
|
5403
5403
|
name: zod.z.string().nullable().describe("New name of the access code.")
|
|
5404
|
-
}),
|
|
5404
|
+
}).describe("New access code name configuration."),
|
|
5405
5405
|
description: zod.z.string().describe("Human-readable description of the change and its source.")
|
|
5406
5406
|
}).describe(`
|
|
5407
5407
|
---
|
|
@@ -5413,10 +5413,10 @@ var access_code_code_changed_event = access_code_event.extend({
|
|
|
5413
5413
|
event_type: zod.z.literal("access_code.code_changed"),
|
|
5414
5414
|
from: zod.z.object({
|
|
5415
5415
|
code: zod.z.string().nullable().describe("Previous pin code.")
|
|
5416
|
-
}),
|
|
5416
|
+
}).describe("Previous pin code configuration."),
|
|
5417
5417
|
to: zod.z.object({
|
|
5418
5418
|
code: zod.z.string().nullable().describe("New pin code.")
|
|
5419
|
-
}),
|
|
5419
|
+
}).describe("New pin code configuration."),
|
|
5420
5420
|
description: zod.z.string().describe("Human-readable description of the change and its source.")
|
|
5421
5421
|
}).describe(`
|
|
5422
5422
|
---
|
|
@@ -5429,11 +5429,11 @@ var access_code_time_frame_changed_event = access_code_event.extend({
|
|
|
5429
5429
|
from: zod.z.object({
|
|
5430
5430
|
starts_at: zod.z.string().nullable().describe("Previous start time."),
|
|
5431
5431
|
ends_at: zod.z.string().nullable().describe("Previous end time.")
|
|
5432
|
-
}),
|
|
5432
|
+
}).describe("Previous time frame configuration."),
|
|
5433
5433
|
to: zod.z.object({
|
|
5434
5434
|
starts_at: zod.z.string().nullable().describe("New start time."),
|
|
5435
5435
|
ends_at: zod.z.string().nullable().describe("New end time.")
|
|
5436
|
-
}),
|
|
5436
|
+
}).describe("New time frame configuration."),
|
|
5437
5437
|
description: zod.z.string().describe("Human-readable description of the change and its source.")
|
|
5438
5438
|
}).describe(`
|
|
5439
5439
|
---
|
|
@@ -22692,6 +22692,7 @@ var openapi = {
|
|
|
22692
22692
|
type: "string"
|
|
22693
22693
|
},
|
|
22694
22694
|
from: {
|
|
22695
|
+
description: "Previous access code name configuration.",
|
|
22695
22696
|
properties: {
|
|
22696
22697
|
name: {
|
|
22697
22698
|
description: "Previous name of the access code.",
|
|
@@ -22708,6 +22709,7 @@ var openapi = {
|
|
|
22708
22709
|
type: "string"
|
|
22709
22710
|
},
|
|
22710
22711
|
to: {
|
|
22712
|
+
description: "New access code name configuration.",
|
|
22711
22713
|
properties: {
|
|
22712
22714
|
name: {
|
|
22713
22715
|
description: "New name of the access code.",
|
|
@@ -22791,6 +22793,7 @@ var openapi = {
|
|
|
22791
22793
|
type: "string"
|
|
22792
22794
|
},
|
|
22793
22795
|
from: {
|
|
22796
|
+
description: "Previous pin code configuration.",
|
|
22794
22797
|
properties: {
|
|
22795
22798
|
code: {
|
|
22796
22799
|
description: "Previous pin code.",
|
|
@@ -22807,6 +22810,7 @@ var openapi = {
|
|
|
22807
22810
|
type: "string"
|
|
22808
22811
|
},
|
|
22809
22812
|
to: {
|
|
22813
|
+
description: "New pin code configuration.",
|
|
22810
22814
|
properties: {
|
|
22811
22815
|
code: {
|
|
22812
22816
|
description: "New pin code.",
|
|
@@ -22890,6 +22894,7 @@ var openapi = {
|
|
|
22890
22894
|
type: "string"
|
|
22891
22895
|
},
|
|
22892
22896
|
from: {
|
|
22897
|
+
description: "Previous time frame configuration.",
|
|
22893
22898
|
properties: {
|
|
22894
22899
|
ends_at: {
|
|
22895
22900
|
description: "Previous end time.",
|
|
@@ -22911,6 +22916,7 @@ var openapi = {
|
|
|
22911
22916
|
type: "string"
|
|
22912
22917
|
},
|
|
22913
22918
|
to: {
|
|
22919
|
+
description: "New time frame configuration.",
|
|
22914
22920
|
properties: {
|
|
22915
22921
|
ends_at: {
|
|
22916
22922
|
description: "New end time.",
|