@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 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
- previous_value: zod.z.string().nullable().describe("Previous value of the property, or null if not set."),
5548
- new_value: zod.z.string().nullable().describe("New value of the property, or null if cleared.")
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
- new_value: {
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", "previous_value", "new_value"],
23091
+ required: ["property", "from", "to"],
23092
23092
  type: "object"
23093
23093
  },
23094
23094
  type: "array"