@open-tender/types 0.4.163 → 0.4.165

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.
@@ -7,6 +7,7 @@ import { Order, OrderCustomer, OrderDiscounts, OrderFulfillment, OrderSurcharge
7
7
  export interface SimpleCartOption {
8
8
  id: number;
9
9
  quantity: number;
10
+ pos_ext_id: string | null;
10
11
  groups: SimpleCartGroups;
11
12
  }
12
13
  export interface SimpleCartGroup {
@@ -57,6 +57,7 @@ export interface Switch {
57
57
  on?: boolean;
58
58
  onChange?: React.ChangeEventHandler<HTMLInputElement>;
59
59
  type: string;
60
+ error?: string | null;
60
61
  }
61
62
  export interface Textarea {
62
63
  disabled?: boolean;
@@ -7,6 +7,7 @@ import { Order, OrderCustomer, OrderDiscounts, OrderFulfillment, OrderSurcharge
7
7
  export interface SimpleCartOption {
8
8
  id: number;
9
9
  quantity: number;
10
+ pos_ext_id: string | null;
10
11
  groups: SimpleCartGroups;
11
12
  }
12
13
  export interface SimpleCartGroup {
@@ -57,6 +57,7 @@ export interface Switch {
57
57
  on?: boolean;
58
58
  onChange?: React.ChangeEventHandler<HTMLInputElement>;
59
59
  type: string;
60
+ error?: string | null;
60
61
  }
61
62
  export interface Textarea {
62
63
  disabled?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@open-tender/types",
3
- "version": "0.4.163",
3
+ "version": "0.4.165",
4
4
  "description": "A library of types for use with Open Tender applications that utilize our cloud-based Order API.",
5
5
  "main": "./dist/cjs/index.js",
6
6
  "module": "./dist/esm/index.js",