@kohost/api-client 3.3.6 → 3.3.8

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
@@ -10499,6 +10499,12 @@ var require_mediaSource = __commonJS({
10499
10499
  type: "string"
10500
10500
  }
10501
10501
  },
10502
+ supportedOutputs: {
10503
+ type: "array",
10504
+ items: {
10505
+ type: "string"
10506
+ }
10507
+ },
10502
10508
  command: {
10503
10509
  type: ["string", "null"],
10504
10510
  enum: [
@@ -11763,6 +11769,9 @@ var require_ticket = __commonJS({
11763
11769
  type: "string"
11764
11770
  }
11765
11771
  },
11772
+ department: {
11773
+ type: "string"
11774
+ },
11766
11775
  rating: {
11767
11776
  type: "number",
11768
11777
  minimum: 0,
@@ -11774,6 +11783,9 @@ var require_ticket = __commonJS({
11774
11783
  tipAmount: {
11775
11784
  type: "string"
11776
11785
  },
11786
+ autoCloseAt: {
11787
+ $ref: "definitions.json#/definitions/date"
11788
+ },
11777
11789
  scheduleDate: {
11778
11790
  $ref: "definitions.json#/definitions/date"
11779
11791
  },
@@ -13335,7 +13347,14 @@ var require_property = __commonJS({
13335
13347
  title: "Property",
13336
13348
  type: "object",
13337
13349
  description: "A property is a physical asset or building",
13338
- required: ["id", "name", "type", "organization"],
13350
+ required: [
13351
+ "id",
13352
+ "name",
13353
+ "type",
13354
+ "organization",
13355
+ "timezone",
13356
+ "discriminator"
13357
+ ],
13339
13358
  properties: {
13340
13359
  id: {
13341
13360
  $ref: "definitions.json#/definitions/id"
@@ -13385,7 +13404,10 @@ var require_property = __commonJS({
13385
13404
  }
13386
13405
  },
13387
13406
  timezone: {
13388
- type: "string"
13407
+ type: "string",
13408
+ description: "IANA timezone string",
13409
+ pattern: "^([a-zA-Z]+/[a-zA-Z_]+)$",
13410
+ examples: ["America/New_York", "America/Los_Angeles"]
13389
13411
  },
13390
13412
  smsNumber: {
13391
13413
  type: "string"