@orderingstack/ordering-types 1.8.3 → 1.8.5
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/cjs/index.d.ts +8 -7
- package/dist/esm/index.d.ts +8 -7
- package/package.json +1 -1
package/dist/cjs/index.d.ts
CHANGED
|
@@ -64,13 +64,13 @@ export type TMedia = {
|
|
|
64
64
|
name: string;
|
|
65
65
|
};
|
|
66
66
|
export interface IProductAvailability {
|
|
67
|
-
MON?: [
|
|
68
|
-
TUE?: [
|
|
69
|
-
WED?: [
|
|
70
|
-
THU?: [
|
|
71
|
-
FRI?: [
|
|
72
|
-
SAT?: [
|
|
73
|
-
SUN?: [
|
|
67
|
+
MON?: string[];
|
|
68
|
+
TUE?: string[];
|
|
69
|
+
WED?: string[];
|
|
70
|
+
THU?: string[];
|
|
71
|
+
FRI?: string[];
|
|
72
|
+
SAT?: string[];
|
|
73
|
+
SUN?: string[];
|
|
74
74
|
}
|
|
75
75
|
/**
|
|
76
76
|
* IProductExtra interface
|
|
@@ -399,6 +399,7 @@ export interface IOrderProduct {
|
|
|
399
399
|
img: string;
|
|
400
400
|
quantity: string;
|
|
401
401
|
price: string;
|
|
402
|
+
vat: string;
|
|
402
403
|
extra: Record<string, string>;
|
|
403
404
|
}
|
|
404
405
|
export declare enum EOrderLineStatus {
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -64,13 +64,13 @@ export type TMedia = {
|
|
|
64
64
|
name: string;
|
|
65
65
|
};
|
|
66
66
|
export interface IProductAvailability {
|
|
67
|
-
MON?: [
|
|
68
|
-
TUE?: [
|
|
69
|
-
WED?: [
|
|
70
|
-
THU?: [
|
|
71
|
-
FRI?: [
|
|
72
|
-
SAT?: [
|
|
73
|
-
SUN?: [
|
|
67
|
+
MON?: string[];
|
|
68
|
+
TUE?: string[];
|
|
69
|
+
WED?: string[];
|
|
70
|
+
THU?: string[];
|
|
71
|
+
FRI?: string[];
|
|
72
|
+
SAT?: string[];
|
|
73
|
+
SUN?: string[];
|
|
74
74
|
}
|
|
75
75
|
/**
|
|
76
76
|
* IProductExtra interface
|
|
@@ -399,6 +399,7 @@ export interface IOrderProduct {
|
|
|
399
399
|
img: string;
|
|
400
400
|
quantity: string;
|
|
401
401
|
price: string;
|
|
402
|
+
vat: string;
|
|
402
403
|
extra: Record<string, string>;
|
|
403
404
|
}
|
|
404
405
|
export declare enum EOrderLineStatus {
|