@open-tender/types 0.4.64 → 0.4.66

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.
@@ -296,7 +296,7 @@ export interface OrderCreatePos extends Omit<OrderCreate, 'customer'> {
296
296
  customer: CustomerIdentify | null;
297
297
  made_for?: string | null;
298
298
  phone?: string | null;
299
- prep_type?: PrepType;
299
+ prep_type?: PrepType | null;
300
300
  }
301
301
  export interface OrderCreateSendReceipt {
302
302
  email: string | null;
@@ -6,10 +6,11 @@ export interface Dimensions {
6
6
  export declare type KioskContent = Record<string, unknown>;
7
7
  export declare type KioskStyles = Record<string, Record<string, string | number>>;
8
8
  export interface KioskBrand {
9
+ brand: string;
9
10
  email: string;
10
11
  logo: string;
11
12
  logoLight: string;
12
- web_app_url: string;
13
+ webAppUrl: string;
13
14
  }
14
15
  export interface KioskDisplaySettings {
15
16
  hasCustomize: boolean;
@@ -296,7 +296,7 @@ export interface OrderCreatePos extends Omit<OrderCreate, 'customer'> {
296
296
  customer: CustomerIdentify | null;
297
297
  made_for?: string | null;
298
298
  phone?: string | null;
299
- prep_type?: PrepType;
299
+ prep_type?: PrepType | null;
300
300
  }
301
301
  export interface OrderCreateSendReceipt {
302
302
  email: string | null;
@@ -6,10 +6,11 @@ export interface Dimensions {
6
6
  export declare type KioskContent = Record<string, unknown>;
7
7
  export declare type KioskStyles = Record<string, Record<string, string | number>>;
8
8
  export interface KioskBrand {
9
+ brand: string;
9
10
  email: string;
10
11
  logo: string;
11
12
  logoLight: string;
12
- web_app_url: string;
13
+ webAppUrl: string;
13
14
  }
14
15
  export interface KioskDisplaySettings {
15
16
  hasCustomize: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@open-tender/types",
3
- "version": "0.4.64",
3
+ "version": "0.4.66",
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",