@open-tender/types 0.0.120 → 0.0.122

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.
@@ -1,3 +1,4 @@
1
+ import { CustomerLoyalty } from "./loyalty";
1
2
  export interface Auth {
2
3
  access_token: string;
3
4
  expires_in: number;
@@ -15,6 +16,7 @@ export interface Profile {
15
16
  is_verified: boolean;
16
17
  last_name: string;
17
18
  phone: string;
19
+ program: CustomerLoyalty;
18
20
  }
19
21
  export interface LoginData {
20
22
  email: string;
@@ -353,6 +353,7 @@ export interface OrderPrep {
353
353
  export interface OrderRating {
354
354
  comments?: string | null;
355
355
  rating: number;
356
+ order_id: number;
356
357
  }
357
358
  export interface Order {
358
359
  revenue_center_id?: number;
@@ -1,3 +1,4 @@
1
+ import { CustomerLoyalty } from "./loyalty";
1
2
  export interface Auth {
2
3
  access_token: string;
3
4
  expires_in: number;
@@ -15,6 +16,7 @@ export interface Profile {
15
16
  is_verified: boolean;
16
17
  last_name: string;
17
18
  phone: string;
19
+ program: CustomerLoyalty;
18
20
  }
19
21
  export interface LoginData {
20
22
  email: string;
@@ -353,6 +353,7 @@ export interface OrderPrep {
353
353
  export interface OrderRating {
354
354
  comments?: string | null;
355
355
  rating: number;
356
+ order_id: number;
356
357
  }
357
358
  export interface Order {
358
359
  revenue_center_id?: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@open-tender/types",
3
- "version": "0.0.120",
3
+ "version": "0.0.122",
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",