@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
|
|
2
|
+
export interface MenuPageSection {
|
|
3
3
|
name: string;
|
|
4
4
|
pos_section_id: number;
|
|
5
5
|
position: number;
|
|
6
6
|
}
|
|
7
|
-
export declare type
|
|
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:
|
|
13
|
+
sections: MenuPageSections;
|
|
14
14
|
}
|
|
15
|
-
export declare type MenuPages =
|
|
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 =
|
|
20
|
+
export declare type MenuColors = MenuColor[];
|
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
import { OrderType } from '../global';
|
|
2
|
-
export interface
|
|
2
|
+
export interface MenuPageSection {
|
|
3
3
|
name: string;
|
|
4
4
|
pos_section_id: number;
|
|
5
5
|
position: number;
|
|
6
6
|
}
|
|
7
|
-
export declare type
|
|
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:
|
|
13
|
+
sections: MenuPageSections;
|
|
14
14
|
}
|
|
15
|
-
export declare type MenuPages =
|
|
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 =
|
|
20
|
+
export declare type MenuColors = MenuColor[];
|
package/package.json
CHANGED