@seamapi/types 1.895.0 → 1.896.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 +9 -9
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +18 -18
- package/dist/index.cjs +9 -9
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/events/access-codes.d.ts +20 -20
- package/lib/seam/connect/models/events/access-codes.js +2 -2
- package/lib/seam/connect/models/events/access-codes.js.map +1 -1
- package/lib/seam/connect/models/events/seam-event.d.ts +10 -10
- package/lib/seam/connect/openapi.js +7 -7
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +8 -8
- package/package.json +1 -1
- package/src/lib/seam/connect/models/events/access-codes.ts +2 -2
- package/src/lib/seam/connect/openapi.ts +8 -8
- package/src/lib/seam/connect/route-types.ts +8 -8
package/dist/connect.cjs
CHANGED
|
@@ -5544,8 +5544,8 @@ var access_code_changed_event = access_code_event.extend({
|
|
|
5544
5544
|
changed_properties: zod.z.array(
|
|
5545
5545
|
zod.z.object({
|
|
5546
5546
|
property: zod.z.string().describe("Name of the property that changed (e.g. `code`)."),
|
|
5547
|
-
|
|
5548
|
-
|
|
5547
|
+
from: zod.z.string().nullable().describe("Previous value of the property, or null if not set."),
|
|
5548
|
+
to: zod.z.string().nullable().describe("New value of the property, or null if cleared.")
|
|
5549
5549
|
})
|
|
5550
5550
|
).optional().describe("List of properties that changed on the access code."),
|
|
5551
5551
|
change_reason: zod.z.string().optional().describe(
|
|
@@ -23073,12 +23073,7 @@ var openapi = {
|
|
|
23073
23073
|
description: "List of properties that changed on the access code.",
|
|
23074
23074
|
items: {
|
|
23075
23075
|
properties: {
|
|
23076
|
-
|
|
23077
|
-
description: "New value of the property, or null if cleared.",
|
|
23078
|
-
nullable: true,
|
|
23079
|
-
type: "string"
|
|
23080
|
-
},
|
|
23081
|
-
previous_value: {
|
|
23076
|
+
from: {
|
|
23082
23077
|
description: "Previous value of the property, or null if not set.",
|
|
23083
23078
|
nullable: true,
|
|
23084
23079
|
type: "string"
|
|
@@ -23086,9 +23081,14 @@ var openapi = {
|
|
|
23086
23081
|
property: {
|
|
23087
23082
|
description: "Name of the property that changed (e.g. `code`).",
|
|
23088
23083
|
type: "string"
|
|
23084
|
+
},
|
|
23085
|
+
to: {
|
|
23086
|
+
description: "New value of the property, or null if cleared.",
|
|
23087
|
+
nullable: true,
|
|
23088
|
+
type: "string"
|
|
23089
23089
|
}
|
|
23090
23090
|
},
|
|
23091
|
-
required: ["property", "
|
|
23091
|
+
required: ["property", "from", "to"],
|
|
23092
23092
|
type: "object"
|
|
23093
23093
|
},
|
|
23094
23094
|
type: "array"
|