@open-tender/types 0.0.32 → 0.0.34

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.
@@ -9,3 +9,5 @@ export * from './allergens';
9
9
  export * from './houseAccounts';
10
10
  export * from './rewards';
11
11
  export * from './revenueCenters';
12
+ export * from './qrcode';
13
+ export * from './thanx';
@@ -12,3 +12,5 @@ tslib_1.__exportStar(require("./allergens"), exports);
12
12
  tslib_1.__exportStar(require("./houseAccounts"), exports);
13
13
  tslib_1.__exportStar(require("./rewards"), exports);
14
14
  tslib_1.__exportStar(require("./revenueCenters"), exports);
15
+ tslib_1.__exportStar(require("./qrcode"), exports);
16
+ tslib_1.__exportStar(require("./thanx"), exports);
@@ -0,0 +1,3 @@
1
+ export interface QRCode {
2
+ qr_code_url: string;
3
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -36,5 +36,6 @@ export interface Reward {
36
36
  short_description: string;
37
37
  start_date: string;
38
38
  title: string;
39
+ ext_id?: string;
39
40
  }
40
41
  export declare type Rewards = Array<Reward>;
@@ -0,0 +1,13 @@
1
+ import { Reward } from "./rewards";
2
+ export interface ThanxProgress {
3
+ percentage: string;
4
+ towards: string;
5
+ }
6
+ export interface Thanx {
7
+ email: string;
8
+ ext_id: string;
9
+ first_name: string;
10
+ last_name: string;
11
+ progress: ThanxProgress;
12
+ rewards: Array<Partial<Reward>>;
13
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -9,3 +9,5 @@ export * from './allergens';
9
9
  export * from './houseAccounts';
10
10
  export * from './rewards';
11
11
  export * from './revenueCenters';
12
+ export * from './qrcode';
13
+ export * from './thanx';
@@ -9,3 +9,5 @@ export * from './allergens';
9
9
  export * from './houseAccounts';
10
10
  export * from './rewards';
11
11
  export * from './revenueCenters';
12
+ export * from './qrcode';
13
+ export * from './thanx';
@@ -0,0 +1,3 @@
1
+ export interface QRCode {
2
+ qr_code_url: string;
3
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -36,5 +36,6 @@ export interface Reward {
36
36
  short_description: string;
37
37
  start_date: string;
38
38
  title: string;
39
+ ext_id?: string;
39
40
  }
40
41
  export declare type Rewards = Array<Reward>;
@@ -0,0 +1,13 @@
1
+ import { Reward } from "./rewards";
2
+ export interface ThanxProgress {
3
+ percentage: string;
4
+ towards: string;
5
+ }
6
+ export interface Thanx {
7
+ email: string;
8
+ ext_id: string;
9
+ first_name: string;
10
+ last_name: string;
11
+ progress: ThanxProgress;
12
+ rewards: Array<Partial<Reward>>;
13
+ }
@@ -0,0 +1 @@
1
+ export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@open-tender/types",
3
- "version": "0.0.32",
3
+ "version": "0.0.34",
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",