@kohost/api-client 3.0.0-beta.85 → 3.0.0-beta.86

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.
@@ -10,6 +10,7 @@ export type Revenue = {
10
10
  name?: string;
11
11
  date?: string;
12
12
  price?: number;
13
+ tax?: number | null;
13
14
  [k: string]: unknown;
14
15
  }[];
15
16
  export type UpdatedAt =
@@ -23,6 +23,7 @@ export type Revenue = {
23
23
  name?: string;
24
24
  date?: string;
25
25
  price?: number;
26
+ tax?: number | null;
26
27
  [k: string]: unknown;
27
28
  }[];
28
29
  export type CreatedAt =
@@ -24,6 +24,10 @@ export interface Ticket {
24
24
  [k: string]: unknown;
25
25
  }
26
26
  )[];
27
+ openedBy?: {
28
+ userId?: string;
29
+ [k: string]: unknown;
30
+ };
27
31
  requester: {
28
32
  systemId?: string;
29
33
  systemName?: string;
@@ -23,6 +23,7 @@ export type Revenue = {
23
23
  name?: string;
24
24
  date?: string;
25
25
  price?: number;
26
+ tax?: number | null;
26
27
  [k: string]: unknown;
27
28
  }[];
28
29
  export type UpdatedAt =
@@ -212,6 +212,9 @@
212
212
  },
213
213
  "price": {
214
214
  "type": "number"
215
+ },
216
+ "tax": {
217
+ "type": ["number", "null"]
215
218
  }
216
219
  }
217
220
  }
@@ -57,6 +57,15 @@
57
57
  ]
58
58
  }
59
59
  },
60
+
61
+ "openedBy": {
62
+ "type": "object",
63
+ "properties": {
64
+ "userId": {
65
+ "type": "string"
66
+ }
67
+ }
68
+ },
60
69
  "requester": {
61
70
  "type": "object",
62
71
  "properties": {
@@ -7671,6 +7671,9 @@ var require_definitions = __commonJS({
7671
7671
  },
7672
7672
  price: {
7673
7673
  type: "number"
7674
+ },
7675
+ tax: {
7676
+ type: ["number", "null"]
7674
7677
  }
7675
7678
  }
7676
7679
  }
@@ -11983,6 +11986,14 @@ var require_ticket = __commonJS({
11983
11986
  ]
11984
11987
  }
11985
11988
  },
11989
+ openedBy: {
11990
+ type: "object",
11991
+ properties: {
11992
+ userId: {
11993
+ type: "string"
11994
+ }
11995
+ }
11996
+ },
11986
11997
  requester: {
11987
11998
  type: "object",
11988
11999
  properties: {