@open-tender/types 0.4.29 → 0.4.30

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.
@@ -2,6 +2,7 @@ export * from './api';
2
2
  export * from './datetimes';
3
3
  export * from './global';
4
4
  export * from './inputs';
5
+ export * from './pizzaBuilder';
5
6
  export * from './request';
6
7
  export * from './themePos';
7
8
  export * from './errors';
@@ -5,6 +5,7 @@ tslib_1.__exportStar(require("./api"), exports);
5
5
  tslib_1.__exportStar(require("./datetimes"), exports);
6
6
  tslib_1.__exportStar(require("./global"), exports);
7
7
  tslib_1.__exportStar(require("./inputs"), exports);
8
+ tslib_1.__exportStar(require("./pizzaBuilder"), exports);
8
9
  tslib_1.__exportStar(require("./request"), exports);
9
10
  tslib_1.__exportStar(require("./themePos"), exports);
10
11
  tslib_1.__exportStar(require("./errors"), exports);
@@ -0,0 +1,7 @@
1
+ import { CartItemGroup, CartItemOption } from './api';
2
+ export declare type Coverage = '1st-half' | 'whole' | '2nd-half';
3
+ export declare type Amount = 'normal' | 'extra' | 'light';
4
+ export interface GroupOption {
5
+ group: CartItemGroup;
6
+ option: CartItemOption;
7
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -2,6 +2,7 @@ export * from './api';
2
2
  export * from './datetimes';
3
3
  export * from './global';
4
4
  export * from './inputs';
5
+ export * from './pizzaBuilder';
5
6
  export * from './request';
6
7
  export * from './themePos';
7
8
  export * from './errors';
@@ -2,6 +2,7 @@ export * from './api';
2
2
  export * from './datetimes';
3
3
  export * from './global';
4
4
  export * from './inputs';
5
+ export * from './pizzaBuilder';
5
6
  export * from './request';
6
7
  export * from './themePos';
7
8
  export * from './errors';
@@ -0,0 +1,7 @@
1
+ import { CartItemGroup, CartItemOption } from './api';
2
+ export declare type Coverage = '1st-half' | 'whole' | '2nd-half';
3
+ export declare type Amount = 'normal' | 'extra' | 'light';
4
+ export interface GroupOption {
5
+ group: CartItemGroup;
6
+ option: CartItemOption;
7
+ }
@@ -0,0 +1 @@
1
+ export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@open-tender/types",
3
- "version": "0.4.29",
3
+ "version": "0.4.30",
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",