@open-tender/types 0.2.46 → 0.2.47

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.
package/dist/.DS_Store ADDED
Binary file
@@ -1,20 +1,20 @@
1
1
  import { OrderType } from '../global';
2
- export interface MenuSection {
2
+ export interface MenuPageSection {
3
3
  name: string;
4
4
  pos_section_id: number;
5
5
  position: number;
6
6
  }
7
- export declare type MenuSections = Array<MenuSection>;
7
+ export declare type MenuPageSections = MenuPageSection[];
8
8
  export interface MenuPage {
9
9
  name: string;
10
10
  order_type: OrderType;
11
11
  pos_page_id: number;
12
12
  position: number;
13
- sections: MenuSections;
13
+ sections: MenuPageSections;
14
14
  }
15
- export declare type MenuPages = Array<MenuPage>;
15
+ export declare type MenuPages = MenuPage[];
16
16
  export interface MenuColor {
17
17
  id: number;
18
18
  color: string;
19
19
  }
20
- export declare type MenuColors = Array<MenuColor>;
20
+ export declare type MenuColors = MenuColor[];
@@ -1,20 +1,20 @@
1
1
  import { OrderType } from '../global';
2
- export interface MenuSection {
2
+ export interface MenuPageSection {
3
3
  name: string;
4
4
  pos_section_id: number;
5
5
  position: number;
6
6
  }
7
- export declare type MenuSections = Array<MenuSection>;
7
+ export declare type MenuPageSections = MenuPageSection[];
8
8
  export interface MenuPage {
9
9
  name: string;
10
10
  order_type: OrderType;
11
11
  pos_page_id: number;
12
12
  position: number;
13
- sections: MenuSections;
13
+ sections: MenuPageSections;
14
14
  }
15
- export declare type MenuPages = Array<MenuPage>;
15
+ export declare type MenuPages = MenuPage[];
16
16
  export interface MenuColor {
17
17
  id: number;
18
18
  color: string;
19
19
  }
20
- export declare type MenuColors = Array<MenuColor>;
20
+ export declare type MenuColors = MenuColor[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@open-tender/types",
3
- "version": "0.2.46",
3
+ "version": "0.2.47",
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",