@open-tender/types 0.0.122 → 0.0.124

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.
@@ -634,6 +634,14 @@ export interface ConfigThemeLayout {
634
634
  padding: string;
635
635
  paddingMobile: string;
636
636
  }
637
+ export interface ConfigCategoriesItem {
638
+ desktop: {
639
+ displayType: string;
640
+ };
641
+ mobile: {
642
+ displayType: string;
643
+ };
644
+ }
637
645
  export interface ConfigThemeButtons {
638
646
  colors: {
639
647
  cart: ButtonColor;
@@ -786,4 +794,5 @@ export interface ConfigTheme {
786
794
  color: string;
787
795
  };
788
796
  welcome: ConfigThemeWelcome;
797
+ categories: ConfigCategoriesItem;
789
798
  }
@@ -36,4 +36,4 @@ export interface PicklistOption {
36
36
  disabled?: boolean;
37
37
  }
38
38
  export declare type PicklistOptions = PicklistOption[];
39
- export declare type AuthType = 'GUEST' | 'ACCOUNT' | 'VERIFIED' | 'HOME';
39
+ export declare type AuthType = 'GUEST' | 'ACCOUNT' | 'VERIFIED' | 'HOME' | 'MENU' | 'ORDER_TYPE' | 'CATERING';
@@ -634,6 +634,14 @@ export interface ConfigThemeLayout {
634
634
  padding: string;
635
635
  paddingMobile: string;
636
636
  }
637
+ export interface ConfigCategoriesItem {
638
+ desktop: {
639
+ displayType: string;
640
+ };
641
+ mobile: {
642
+ displayType: string;
643
+ };
644
+ }
637
645
  export interface ConfigThemeButtons {
638
646
  colors: {
639
647
  cart: ButtonColor;
@@ -786,4 +794,5 @@ export interface ConfigTheme {
786
794
  color: string;
787
795
  };
788
796
  welcome: ConfigThemeWelcome;
797
+ categories: ConfigCategoriesItem;
789
798
  }
@@ -36,4 +36,4 @@ export interface PicklistOption {
36
36
  disabled?: boolean;
37
37
  }
38
38
  export declare type PicklistOptions = PicklistOption[];
39
- export declare type AuthType = 'GUEST' | 'ACCOUNT' | 'VERIFIED' | 'HOME';
39
+ export declare type AuthType = 'GUEST' | 'ACCOUNT' | 'VERIFIED' | 'HOME' | 'MENU' | 'ORDER_TYPE' | 'CATERING';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@open-tender/types",
3
- "version": "0.0.122",
3
+ "version": "0.0.124",
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",