@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.
@@ -4,7 +4,14 @@
4
4
  "title": "Property",
5
5
  "type": "object",
6
6
  "description": "A property is a physical asset or building",
7
- "required": ["id", "name", "type", "organization"],
7
+ "required": [
8
+ "id",
9
+ "name",
10
+ "type",
11
+ "organization",
12
+ "timezone",
13
+ "discriminator"
14
+ ],
8
15
  "properties": {
9
16
  "id": {
10
17
  "$ref": "definitions.json#/definitions/id"
@@ -54,7 +61,10 @@
54
61
  }
55
62
  },
56
63
  "timezone": {
57
- "type": "string"
64
+ "type": "string",
65
+ "description": "IANA timezone string",
66
+ "pattern": "^([a-zA-Z]+/[a-zA-Z_]+)$",
67
+ "examples": ["America/New_York", "America/Los_Angeles"]
58
68
  },
59
69
  "smsNumber": {
60
70
  "type": "string"
@@ -169,6 +169,9 @@
169
169
  "tipAmount": {
170
170
  "type": "string"
171
171
  },
172
+ "autoCloseAt": {
173
+ "$ref": "definitions.json#/definitions/date"
174
+ },
172
175
  "scheduleDate": {
173
176
  "$ref": "definitions.json#/definitions/date"
174
177
  },
@@ -11717,6 +11717,9 @@ var require_ticket = __commonJS({
11717
11717
  tipAmount: {
11718
11718
  type: "string"
11719
11719
  },
11720
+ autoCloseAt: {
11721
+ $ref: "definitions.json#/definitions/date"
11722
+ },
11720
11723
  scheduleDate: {
11721
11724
  $ref: "definitions.json#/definitions/date"
11722
11725
  },
@@ -13278,7 +13281,14 @@ var require_property = __commonJS({
13278
13281
  title: "Property",
13279
13282
  type: "object",
13280
13283
  description: "A property is a physical asset or building",
13281
- required: ["id", "name", "type", "organization"],
13284
+ required: [
13285
+ "id",
13286
+ "name",
13287
+ "type",
13288
+ "organization",
13289
+ "timezone",
13290
+ "discriminator"
13291
+ ],
13282
13292
  properties: {
13283
13293
  id: {
13284
13294
  $ref: "definitions.json#/definitions/id"
@@ -13328,7 +13338,10 @@ var require_property = __commonJS({
13328
13338
  }
13329
13339
  },
13330
13340
  timezone: {
13331
- type: "string"
13341
+ type: "string",
13342
+ description: "IANA timezone string",
13343
+ pattern: "^([a-zA-Z]+/[a-zA-Z_]+)$",
13344
+ examples: ["America/New_York", "America/Los_Angeles"]
13332
13345
  },
13333
13346
  smsNumber: {
13334
13347
  type: "string"