@kohost/api-client 3.3.6 → 3.3.7

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/esm/utils.js CHANGED
@@ -11774,6 +11774,9 @@ var require_ticket = __commonJS({
11774
11774
  tipAmount: {
11775
11775
  type: "string"
11776
11776
  },
11777
+ autoCloseAt: {
11778
+ $ref: "definitions.json#/definitions/date"
11779
+ },
11777
11780
  scheduleDate: {
11778
11781
  $ref: "definitions.json#/definitions/date"
11779
11782
  },
@@ -13335,7 +13338,14 @@ var require_property = __commonJS({
13335
13338
  title: "Property",
13336
13339
  type: "object",
13337
13340
  description: "A property is a physical asset or building",
13338
- required: ["id", "name", "type", "organization"],
13341
+ required: [
13342
+ "id",
13343
+ "name",
13344
+ "type",
13345
+ "organization",
13346
+ "timezone",
13347
+ "discriminator"
13348
+ ],
13339
13349
  properties: {
13340
13350
  id: {
13341
13351
  $ref: "definitions.json#/definitions/id"
@@ -13385,7 +13395,10 @@ var require_property = __commonJS({
13385
13395
  }
13386
13396
  },
13387
13397
  timezone: {
13388
- type: "string"
13398
+ type: "string",
13399
+ description: "IANA timezone string",
13400
+ pattern: "^([a-zA-Z]+/[a-zA-Z_]+)$",
13401
+ examples: ["America/New_York", "America/Los_Angeles"]
13389
13402
  },
13390
13403
  smsNumber: {
13391
13404
  type: "string"