@orderingstack/front-hooks 6.6.2 → 6.6.3-beta-0
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/index.cjs.js +1 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +538 -532
- package/dist/index.es.js.map +1 -1
- package/dist/packages/analytics-plugin/dist/index.cjs.d.ts +49 -0
- package/dist/packages/analytics-plugin/dist/index.cjs.d.ts.map +1 -0
- package/dist/packages/analytics-plugin/dist/index.es.d.ts +48 -0
- package/dist/packages/analytics-plugin/dist/index.es.d.ts.map +1 -0
- package/dist/packages/hooks/dist/index.cjs.d.ts +34 -51
- package/dist/packages/hooks/dist/index.cjs.d.ts.map +1 -1
- package/dist/packages/hooks/dist/index.es.d.ts +35 -52
- package/dist/packages/hooks/dist/index.es.d.ts.map +1 -1
- package/dist/packages/menu/dist/index.cjs.d.ts +23 -0
- package/dist/packages/menu/dist/index.cjs.d.ts.map +1 -0
- package/dist/packages/menu/dist/index.es.d.ts +23 -0
- package/dist/packages/menu/dist/index.es.d.ts.map +1 -0
- package/dist/packages/menu/src/Menu.d.ts +1 -1
- package/dist/packages/menu/src/Menu.d.ts.map +1 -1
- package/dist/packages/menu/src/components/Chip.d.ts +1 -1
- package/dist/packages/menu/src/components/Chip.d.ts.map +1 -1
- package/dist/packages/menu/src/components/default/BottomNav.d.ts.map +1 -1
- package/dist/packages/menu/src/components/default/Categories.d.ts +1 -1
- package/dist/packages/menu/src/components/default/Categories.d.ts.map +1 -1
- package/dist/packages/menu/src/components/default/CategorySection.d.ts +1 -1
- package/dist/packages/menu/src/components/default/CategorySection.d.ts.map +1 -1
- package/dist/packages/menu/src/components/default/ProductTile.d.ts +1 -1
- package/dist/packages/menu/src/components/default/ProductTile.d.ts.map +1 -1
- package/dist/packages/menu/src/components/default/TopNav.d.ts +1 -1
- package/dist/packages/menu/src/components/default/TopNav.d.ts.map +1 -1
- package/dist/packages/mparticle-plugin/dist/index.cjs.d.ts +6 -4
- package/dist/packages/mparticle-plugin/dist/index.cjs.d.ts.map +1 -1
- package/dist/packages/mparticle-plugin/dist/index.es.d.ts +6 -4
- package/dist/packages/mparticle-plugin/dist/index.es.d.ts.map +1 -1
- package/dist/packages/mparticle-plugin/src/index.d.ts +3 -1
- package/dist/packages/mparticle-plugin/src/index.d.ts.map +1 -1
- package/dist/packages/phone-input/dist/index.cjs.d.ts +17 -0
- package/dist/packages/phone-input/dist/index.cjs.d.ts.map +1 -0
- package/dist/packages/phone-input/dist/index.es.d.ts +17 -0
- package/dist/packages/phone-input/dist/index.es.d.ts.map +1 -0
- package/dist/types/__tests__/calculateProductPriceWithParentQuantity.test.d.ts +2 -0
- package/dist/types/__tests__/calculateProductPriceWithParentQuantity.test.d.ts.map +1 -0
- package/dist/types/useDisplayPrice.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
export default k;
|
|
2
|
+
declare function k(e: any): {
|
|
3
|
+
name: string;
|
|
4
|
+
page: ({ payload: o }: {
|
|
5
|
+
payload: any;
|
|
6
|
+
}) => void;
|
|
7
|
+
track: ({ payload: o }: {
|
|
8
|
+
payload: any;
|
|
9
|
+
}) => void;
|
|
10
|
+
loaded: () => boolean;
|
|
11
|
+
};
|
|
12
|
+
declare namespace v {
|
|
13
|
+
function reset({ config: e }: {
|
|
14
|
+
config: any;
|
|
15
|
+
}): void;
|
|
16
|
+
}
|
|
17
|
+
declare namespace T {
|
|
18
|
+
export { _ as mapItemToGaItem };
|
|
19
|
+
export { y as mapSelectedMenuToViewItemList };
|
|
20
|
+
export { b as mapOrderToPayload };
|
|
21
|
+
export { g as linesToGaCartItems };
|
|
22
|
+
export { f as couponToGaPromotion };
|
|
23
|
+
}
|
|
24
|
+
declare function _(e: any): {
|
|
25
|
+
item_id: any;
|
|
26
|
+
item_name: any;
|
|
27
|
+
item_fiscal: any;
|
|
28
|
+
item_extra: any;
|
|
29
|
+
};
|
|
30
|
+
declare function y(e: any): {
|
|
31
|
+
item_list_id: any;
|
|
32
|
+
item_list_name: any;
|
|
33
|
+
items: any;
|
|
34
|
+
};
|
|
35
|
+
declare function b(e: any, t: any, o: any, i: any): {
|
|
36
|
+
currency: any;
|
|
37
|
+
value: number;
|
|
38
|
+
items: any[];
|
|
39
|
+
};
|
|
40
|
+
declare function g(e: any, t: any, o: any, i: any): {
|
|
41
|
+
value: number;
|
|
42
|
+
items: any[];
|
|
43
|
+
};
|
|
44
|
+
declare function f(e: any): {
|
|
45
|
+
coupon: any;
|
|
46
|
+
promotion_name: any;
|
|
47
|
+
};
|
|
48
|
+
export { v as googleAnalyticsResetExtension, T as utils };
|
|
49
|
+
//# sourceMappingURL=index.cjs.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.cjs.d.ts","sourceRoot":"","sources":["../../../../../analytics-plugin/dist/index.cjs.js"],"names":[],"mappings":";AAAwJ;;;;;;;;;EAAoY;;IAAe;;aAAoU;;;;;;;;;AAAE;;;;;EAA6T;AAAA;;;;EAAuK;AAA6xB;;;;EAA0O;AAAA;;;EAAiM;AAAxsC;;;EAA0F"}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
declare function orderingstackPlugin(config: any): {
|
|
2
|
+
name: string;
|
|
3
|
+
page: ({ payload }: {
|
|
4
|
+
payload: any;
|
|
5
|
+
}) => void;
|
|
6
|
+
track: ({ payload }: {
|
|
7
|
+
payload: any;
|
|
8
|
+
}) => void;
|
|
9
|
+
loaded: () => boolean;
|
|
10
|
+
};
|
|
11
|
+
export namespace googleAnalyticsResetExtension {
|
|
12
|
+
function reset({ config }: {
|
|
13
|
+
config: any;
|
|
14
|
+
}): void;
|
|
15
|
+
}
|
|
16
|
+
export namespace utils {
|
|
17
|
+
export { mapItemToGaItem };
|
|
18
|
+
export { mapSelectedMenuToViewItemList };
|
|
19
|
+
export { mapOrderToPayload };
|
|
20
|
+
export { linesToGaCartItems };
|
|
21
|
+
export { couponToGaPromotion };
|
|
22
|
+
}
|
|
23
|
+
declare function mapItemToGaItem(item: any): {
|
|
24
|
+
item_id: any;
|
|
25
|
+
item_name: any;
|
|
26
|
+
item_fiscal: any;
|
|
27
|
+
item_extra: any;
|
|
28
|
+
};
|
|
29
|
+
declare function mapSelectedMenuToViewItemList(product: any): {
|
|
30
|
+
item_list_id: any;
|
|
31
|
+
item_list_name: any;
|
|
32
|
+
items: any;
|
|
33
|
+
};
|
|
34
|
+
declare function mapOrderToPayload(order: any, coupons: any, currency: any, venue: any): {
|
|
35
|
+
currency: any;
|
|
36
|
+
value: number;
|
|
37
|
+
items: any[];
|
|
38
|
+
};
|
|
39
|
+
declare function linesToGaCartItems(lines: any, venue: any, coupons: any, quantity: any): {
|
|
40
|
+
value: number;
|
|
41
|
+
items: any[];
|
|
42
|
+
};
|
|
43
|
+
declare function couponToGaPromotion(coupon: any): {
|
|
44
|
+
coupon: any;
|
|
45
|
+
promotion_name: any;
|
|
46
|
+
};
|
|
47
|
+
export { orderingstackPlugin as default };
|
|
48
|
+
//# sourceMappingURL=index.es.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.es.d.ts","sourceRoot":"","sources":["../../../../../analytics-plugin/dist/index.es.js"],"names":[],"mappings":"AACA;;;;;;;;;EA2BC;;IAEQ;;aAQN;;;;;;;;;AAEH;;;;;EAWC;AACD;;;;EAOC;AAyCD;;;;EAiBC;AACD;;;EAeC;AAzED;;;EAMC"}
|
|
@@ -1,11 +1,10 @@
|
|
|
1
|
-
declare let
|
|
1
|
+
declare let H: {
|
|
2
2
|
new (): {};
|
|
3
3
|
getInstance(): {};
|
|
4
4
|
instance: {} | undefined;
|
|
5
5
|
};
|
|
6
6
|
declare function Ur(t: any): number;
|
|
7
|
-
declare function
|
|
8
|
-
declare function vg({ product: t, state: e, selected: r, cheapestGroupOptionsProduct: n, basePrice: s, dangerouslyOverwritePrice: a }: {
|
|
7
|
+
declare function kh({ product: t, state: e, selected: r, cheapestGroupOptionsProduct: n, basePrice: i, dangerouslyOverwritePrice: a }: {
|
|
9
8
|
product: any;
|
|
10
9
|
state: any;
|
|
11
10
|
selected: any;
|
|
@@ -18,38 +17,22 @@ declare function vg({ product: t, state: e, selected: r, cheapestGroupOptionsPro
|
|
|
18
17
|
calculatedPriceDefaultProductState: any;
|
|
19
18
|
calculatedChildrensBasePrice: any;
|
|
20
19
|
};
|
|
21
|
-
declare function
|
|
22
|
-
declare function
|
|
23
|
-
declare function
|
|
24
|
-
declare function
|
|
25
|
-
declare function
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
declare function
|
|
31
|
-
declare function sd(t: any, e: any, r: any): any;
|
|
32
|
-
declare function hn(t: any, e?: number): any;
|
|
33
|
-
declare function vs(t: any): any;
|
|
34
|
-
declare function $s(t: any): any[] | undefined;
|
|
35
|
-
declare function pe(t: any, e: any): any;
|
|
36
|
-
declare function ye(t: any): any[];
|
|
37
|
-
declare function vt(t: any): boolean;
|
|
38
|
-
declare function ht(t: any, e: any): any;
|
|
39
|
-
declare function ds(t: any, e: any): boolean;
|
|
40
|
-
declare function Ot(t: any, e: any, r: any): boolean;
|
|
41
|
-
declare function ue(t: any, e: any): any;
|
|
42
|
-
declare function dt(t: any, e: any): void;
|
|
43
|
-
declare function dg(t: any, e: any): void;
|
|
44
|
-
declare function hs(t: any): number;
|
|
45
|
-
declare function rn(t: any, e?: boolean, r?: undefined, n?: number): never[];
|
|
46
|
-
declare function Kt(t: any, e: number | undefined, r: boolean | undefined, n: any, s: any): {
|
|
20
|
+
declare function wu(t: any, e: any, r?: string, n?: number): string;
|
|
21
|
+
declare function Pg(t: any): any[] | null;
|
|
22
|
+
declare function Xr(t: any, e?: number): any;
|
|
23
|
+
declare function Lu(t: any): any;
|
|
24
|
+
declare function le(t: any): any[];
|
|
25
|
+
declare function lt(t: any, e: any): any;
|
|
26
|
+
declare function Pr(t: any, e: any): any;
|
|
27
|
+
declare function Du(t: any): number;
|
|
28
|
+
declare function Wr(t: any, e?: boolean, r?: undefined, n?: number): any;
|
|
29
|
+
declare function Nt(t: any, e: number | undefined, r: boolean | undefined, n: any, i: any): {
|
|
47
30
|
value: any;
|
|
48
31
|
isError: boolean;
|
|
49
32
|
isLoading: boolean;
|
|
50
|
-
refresh: (
|
|
33
|
+
refresh: (c: any) => Promise<any>;
|
|
51
34
|
};
|
|
52
|
-
declare function
|
|
35
|
+
declare function Fg({ id: t, intervalSeconds: e, withLocalStorage: r }: {
|
|
53
36
|
id: any;
|
|
54
37
|
intervalSeconds: any;
|
|
55
38
|
withLocalStorage: any;
|
|
@@ -57,9 +40,9 @@ declare function ud({ id: t, intervalSeconds: e, withLocalStorage: r }: {
|
|
|
57
40
|
value: any;
|
|
58
41
|
isError: boolean;
|
|
59
42
|
isLoading: boolean;
|
|
60
|
-
refresh: (
|
|
43
|
+
refresh: (c: any) => Promise<any>;
|
|
61
44
|
};
|
|
62
|
-
declare function
|
|
45
|
+
declare function Vr({ product: t, state: e, selected: r, cheapestGroupOptionsProduct: n, basePrice: i, dangerouslyOverwritePrice: a }: {
|
|
63
46
|
product: any;
|
|
64
47
|
state: any;
|
|
65
48
|
selected: any;
|
|
@@ -72,14 +55,14 @@ declare function an({ product: t, state: e, selected: r, cheapestGroupOptionsPro
|
|
|
72
55
|
calculatedPriceDefaultProductState: any;
|
|
73
56
|
calculatedChildrensBasePrice: any;
|
|
74
57
|
};
|
|
75
|
-
declare function
|
|
76
|
-
declare function
|
|
77
|
-
declare function
|
|
58
|
+
declare function Ug(t: any): any[];
|
|
59
|
+
declare function Tt(t: any, e: any): () => void;
|
|
60
|
+
declare function Hg(t: any): {
|
|
78
61
|
dineInOpen: any;
|
|
79
62
|
takeAwayOpen: any;
|
|
80
63
|
loaded: boolean;
|
|
81
64
|
};
|
|
82
|
-
declare function
|
|
65
|
+
declare function Zr({ kioskMediaId: t, kioskMediaType: e, intervalSeconds: r, withLocalStorage: n, baseUrl: i, tenant: a, venue: s, locale: u }: {
|
|
83
66
|
kioskMediaId: any;
|
|
84
67
|
kioskMediaType: any;
|
|
85
68
|
intervalSeconds?: number | undefined;
|
|
@@ -95,9 +78,9 @@ declare function cn({ kioskMediaId: t, kioskMediaType: e, intervalSeconds: r, wi
|
|
|
95
78
|
isError: boolean;
|
|
96
79
|
isLoading: boolean;
|
|
97
80
|
imageDisplayTime: any;
|
|
98
|
-
refresh: (
|
|
81
|
+
refresh: (c: any) => Promise<any>;
|
|
99
82
|
};
|
|
100
|
-
declare function
|
|
83
|
+
declare function Gg({ kioskMediaId: t, kioskMediaType: e, venue: r, language: n, intervalSeconds: i, withLocalStorage: a }: {
|
|
101
84
|
kioskMediaId: any;
|
|
102
85
|
kioskMediaType: any;
|
|
103
86
|
venue: any;
|
|
@@ -111,35 +94,35 @@ declare function fd({ kioskMediaId: t, kioskMediaType: e, venue: r, language: n,
|
|
|
111
94
|
isError: boolean;
|
|
112
95
|
isLoading: boolean;
|
|
113
96
|
imageDisplayTime: any;
|
|
114
|
-
refresh: (
|
|
97
|
+
refresh: (c: any) => Promise<any>;
|
|
115
98
|
};
|
|
116
|
-
declare function
|
|
99
|
+
declare function Bg(t: any, e: any, r: any, n?: number, i?: boolean): {
|
|
117
100
|
url: any;
|
|
118
101
|
fallbackUrl: any;
|
|
119
102
|
isError: boolean;
|
|
120
103
|
mediaType: any;
|
|
121
|
-
refresh: (
|
|
104
|
+
refresh: (c: any) => Promise<any>;
|
|
122
105
|
};
|
|
123
|
-
declare function
|
|
106
|
+
declare function Jr(t: any, e: any, r: any, n: number | undefined, i: boolean | undefined, a: any, s: any): {
|
|
124
107
|
url: any;
|
|
125
108
|
fallbackUrl: any;
|
|
126
109
|
isError: boolean;
|
|
127
110
|
mediaType: any;
|
|
128
|
-
refresh: (
|
|
111
|
+
refresh: (c: any) => Promise<any>;
|
|
129
112
|
};
|
|
130
|
-
declare function
|
|
131
|
-
declare function
|
|
113
|
+
declare function Qg(t: any, e?: number): any;
|
|
114
|
+
declare function Xh({ originalMenu: t, markOnly: e, timeZone: r, interval: n, enableKeys: i }: {
|
|
132
115
|
originalMenu: any;
|
|
133
116
|
markOnly?: boolean | undefined;
|
|
134
117
|
timeZone: any;
|
|
135
118
|
interval?: number | undefined;
|
|
136
119
|
enableKeys?: any[] | undefined;
|
|
137
|
-
}):
|
|
138
|
-
declare function
|
|
139
|
-
declare function
|
|
120
|
+
}): any;
|
|
121
|
+
declare function Yg(t: any, e: any): void;
|
|
122
|
+
declare function zr(t: any, e: number | undefined, r: boolean | undefined, n: any, i: any, a: any): {
|
|
140
123
|
value: any;
|
|
141
124
|
isError: boolean;
|
|
142
|
-
refresh: (
|
|
125
|
+
refresh: (c: any) => Promise<any>;
|
|
143
126
|
};
|
|
144
|
-
export {
|
|
127
|
+
export { H as MediaProxy, Ur as addDiscounts, kh as calculateDisplayPrice, wu as formatPrice, Pg as getGroupedBucketLines, Xr as getMediaUrl, Lu as getProductAcronym, le as groupOrderLines, lt as isChannelOpen, Pr as isProductEnabled, Du as summarizeLineDiscounts, Wr as useAvailability, Nt as useCms, Fg as useCmsInConfigContext, Vr as useDisplayPrice, Ug as useGroupOrderLines, Tt as useInterval, Hg as useKioskChannelsAvailability, Zr as useKioskMediaCms, Gg as useKioskMediaCmsWithContext, Bg as useLocalizedVenueMedia, Jr as useLocalizedVenueMediaLegacy, Qg as useMediaUrl, Xh as useMenu, Yg as useOnClickOutside, zr as useVenueCms };
|
|
145
128
|
//# sourceMappingURL=index.cjs.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.cjs.d.ts","sourceRoot":"","sources":["../../../index.cjs.js"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.cjs.d.ts","sourceRoot":"","sources":["../../../index.cjs.js"],"names":[],"mappings":"AAAu0jD;;;;EAAQ;AAAlmwB,oCAAkF;AAAw4S;;;;;;;;;;;;EAAg/C;AAAl1V,oEAAuF;AAAwoZ,0CAAqE;AAAk7X,6CAAwD;AAA9gxB,iCAA4T;AAAk1W,mCAAqzB;AAAnrqB,yCAAoJ;AAAm7Q,yCAAyK;AAAtS,oCAAsC;AAAojM,yEAAkN;AAAk5N;;;;;EAAmtC;AAAA;;;;;;;;;EAAkM;AAA3sK;;;;;;;;;;;;EAAg/C;AAAi3D,mCAA4B;AAA1usC,gDAA0R;AAA43zC;;;;EAAoZ;AAAn9C;;;;;;;;;;;;;;;;;EAAsd;AAAA;;;;;;;;;;;;;;;EAA0U;AAA/9C;;;;;;EAA2K;AAAA;;;;;;EAAohB;AAAksS,6CAAoC;AAAz3kB;;;;;;QAA8H;AAAqzT,0CAA+R;AAA9lE;;;;EAAgW"}
|
|
@@ -1,11 +1,10 @@
|
|
|
1
|
-
declare let
|
|
1
|
+
declare let H: {
|
|
2
2
|
new (): {};
|
|
3
3
|
getInstance(): {};
|
|
4
4
|
instance: {} | undefined;
|
|
5
5
|
};
|
|
6
|
-
declare function
|
|
7
|
-
declare function
|
|
8
|
-
declare function yv({ product: t, state: r, selected: e, cheapestGroupOptionsProduct: n, basePrice: s, dangerouslyOverwritePrice: a }: {
|
|
6
|
+
declare function If(t: any): number;
|
|
7
|
+
declare function Zg({ product: t, state: r, selected: e, cheapestGroupOptionsProduct: n, basePrice: i, dangerouslyOverwritePrice: a }: {
|
|
9
8
|
product: any;
|
|
10
9
|
state: any;
|
|
11
10
|
selected: any;
|
|
@@ -18,38 +17,22 @@ declare function yv({ product: t, state: r, selected: e, cheapestGroupOptionsPro
|
|
|
18
17
|
calculatedPriceDefaultProductState: any;
|
|
19
18
|
calculatedChildrensBasePrice: any;
|
|
20
19
|
};
|
|
21
|
-
declare function
|
|
22
|
-
declare function
|
|
23
|
-
declare function
|
|
24
|
-
declare function
|
|
25
|
-
declare function
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
declare function
|
|
31
|
-
declare function Av(t: any, r: any, e: any): any;
|
|
32
|
-
declare function sv(t: any, r?: number): any;
|
|
33
|
-
declare function vv(t: any): any;
|
|
34
|
-
declare function $v(t: any): any[] | undefined;
|
|
35
|
-
declare function nn(t: any, r: any): any;
|
|
36
|
-
declare function rn(t: any): any[];
|
|
37
|
-
declare function wt(t: any): boolean;
|
|
38
|
-
declare function yt(t: any, r: any): any;
|
|
39
|
-
declare function gv(t: any, r: any): boolean;
|
|
40
|
-
declare function zt(t: any, r: any, e: any): boolean;
|
|
41
|
-
declare function Le(t: any, r: any): any;
|
|
42
|
-
declare function St(t: any, r: any): void;
|
|
43
|
-
declare function pv(t: any, r: any): void;
|
|
44
|
-
declare function lv(t: any): number;
|
|
45
|
-
declare function sg(t: any, r?: boolean, e?: undefined, n?: number): never[];
|
|
46
|
-
declare function dr(t: any, r: number | undefined, e: boolean | undefined, n: any, s: any): {
|
|
20
|
+
declare function Vg(t: any, r: any, e?: string, n?: number): string;
|
|
21
|
+
declare function Xg(t: any): any[] | null;
|
|
22
|
+
declare function Gg(t: any, r?: number): any;
|
|
23
|
+
declare function zg(t: any): any;
|
|
24
|
+
declare function Ke(t: any): any[];
|
|
25
|
+
declare function pt(t: any, r: any): any;
|
|
26
|
+
declare function Of(t: any, r: any): any;
|
|
27
|
+
declare function qg(t: any): number;
|
|
28
|
+
declare function Kh(t: any, r?: boolean, e?: undefined, n?: number): any;
|
|
29
|
+
declare function hr(t: any, r: number | undefined, e: boolean | undefined, n: any, i: any): {
|
|
47
30
|
value: any;
|
|
48
31
|
isError: boolean;
|
|
49
32
|
isLoading: boolean;
|
|
50
|
-
refresh: (
|
|
33
|
+
refresh: (c: any) => Promise<boolean | void>;
|
|
51
34
|
};
|
|
52
|
-
declare function
|
|
35
|
+
declare function kg({ id: t, intervalSeconds: r, withLocalStorage: e }: {
|
|
53
36
|
id: any;
|
|
54
37
|
intervalSeconds: any;
|
|
55
38
|
withLocalStorage: any;
|
|
@@ -57,9 +40,9 @@ declare function Tv({ id: t, intervalSeconds: r, withLocalStorage: e }: {
|
|
|
57
40
|
value: any;
|
|
58
41
|
isError: boolean;
|
|
59
42
|
isLoading: boolean;
|
|
60
|
-
refresh: (
|
|
43
|
+
refresh: (c: any) => Promise<boolean | void>;
|
|
61
44
|
};
|
|
62
|
-
declare function
|
|
45
|
+
declare function Vh({ product: t, state: r, selected: e, cheapestGroupOptionsProduct: n, basePrice: i, dangerouslyOverwritePrice: a }: {
|
|
63
46
|
product: any;
|
|
64
47
|
state: any;
|
|
65
48
|
selected: any;
|
|
@@ -72,14 +55,14 @@ declare function og({ product: t, state: r, selected: e, cheapestGroupOptionsPro
|
|
|
72
55
|
calculatedPriceDefaultProductState: any;
|
|
73
56
|
calculatedChildrensBasePrice: any;
|
|
74
57
|
};
|
|
75
|
-
declare function
|
|
76
|
-
declare function
|
|
77
|
-
declare function
|
|
58
|
+
declare function Qg(t: any): any[];
|
|
59
|
+
declare function tr(t: any, r: any): () => void;
|
|
60
|
+
declare function n$(t: any): {
|
|
78
61
|
dineInOpen: any;
|
|
79
62
|
takeAwayOpen: any;
|
|
80
63
|
loaded: boolean;
|
|
81
64
|
};
|
|
82
|
-
declare function
|
|
65
|
+
declare function Ng({ kioskMediaId: t, kioskMediaType: r, intervalSeconds: e, withLocalStorage: n, baseUrl: i, tenant: a, venue: s, locale: f }: {
|
|
83
66
|
kioskMediaId: any;
|
|
84
67
|
kioskMediaType: any;
|
|
85
68
|
intervalSeconds?: number | undefined;
|
|
@@ -95,9 +78,9 @@ declare function Qg({ kioskMediaId: t, kioskMediaType: r, intervalSeconds: e, wi
|
|
|
95
78
|
isError: boolean;
|
|
96
79
|
isLoading: boolean;
|
|
97
80
|
imageDisplayTime: any;
|
|
98
|
-
refresh: (
|
|
81
|
+
refresh: (c: any) => Promise<boolean | void>;
|
|
99
82
|
};
|
|
100
|
-
declare function
|
|
83
|
+
declare function r$({ kioskMediaId: t, kioskMediaType: r, venue: e, language: n, intervalSeconds: i, withLocalStorage: a }: {
|
|
101
84
|
kioskMediaId: any;
|
|
102
85
|
kioskMediaType: any;
|
|
103
86
|
venue: any;
|
|
@@ -111,35 +94,35 @@ declare function Iv({ kioskMediaId: t, kioskMediaType: r, venue: e, language: n,
|
|
|
111
94
|
isError: boolean;
|
|
112
95
|
isLoading: boolean;
|
|
113
96
|
imageDisplayTime: any;
|
|
114
|
-
refresh: (
|
|
97
|
+
refresh: (c: any) => Promise<boolean | void>;
|
|
115
98
|
};
|
|
116
|
-
declare function
|
|
99
|
+
declare function t$(t: any, r: any, e: any, n?: number, i?: boolean): {
|
|
117
100
|
url: any;
|
|
118
101
|
fallbackUrl: any;
|
|
119
102
|
isError: boolean;
|
|
120
103
|
mediaType: any;
|
|
121
|
-
refresh: (
|
|
104
|
+
refresh: (c: any) => Promise<boolean | void>;
|
|
122
105
|
};
|
|
123
|
-
declare function
|
|
106
|
+
declare function jg(t: any, r: any, e: any, n: number | undefined, i: boolean | undefined, a: any, s: any): {
|
|
124
107
|
url: any;
|
|
125
108
|
fallbackUrl: any;
|
|
126
109
|
isError: boolean;
|
|
127
110
|
mediaType: any;
|
|
128
|
-
refresh: (
|
|
111
|
+
refresh: (c: any) => Promise<boolean | void>;
|
|
129
112
|
};
|
|
130
|
-
declare function
|
|
131
|
-
declare function
|
|
113
|
+
declare function a$(t: any, r?: number): any;
|
|
114
|
+
declare function Jg({ originalMenu: t, markOnly: r, timeZone: e, interval: n, enableKeys: i }: {
|
|
132
115
|
originalMenu: any;
|
|
133
116
|
markOnly?: boolean | undefined;
|
|
134
117
|
timeZone: any;
|
|
135
118
|
interval?: number | undefined;
|
|
136
119
|
enableKeys?: any[] | undefined;
|
|
137
|
-
}):
|
|
138
|
-
declare function
|
|
139
|
-
declare function
|
|
120
|
+
}): any;
|
|
121
|
+
declare function e$(t: any, r: any): void;
|
|
122
|
+
declare function Lg(t: any, r: number | undefined, e: boolean | undefined, n: any, i: any, a: any): {
|
|
140
123
|
value: any;
|
|
141
124
|
isError: boolean;
|
|
142
|
-
refresh: (
|
|
125
|
+
refresh: (c: any) => Promise<boolean | void>;
|
|
143
126
|
};
|
|
144
|
-
export {
|
|
127
|
+
export { H as MediaProxy, If as addDiscounts, Zg as calculateDisplayPrice, Vg as formatPrice, Xg as getGroupedBucketLines, Gg as getMediaUrl, zg as getProductAcronym, Ke as groupOrderLines, pt as isChannelOpen, Of as isProductEnabled, qg as summarizeLineDiscounts, Kh as useAvailability, hr as useCms, kg as useCmsInConfigContext, Vh as useDisplayPrice, Qg as useGroupOrderLines, tr as useInterval, n$ as useKioskChannelsAvailability, Ng as useKioskMediaCms, r$ as useKioskMediaCmsWithContext, t$ as useLocalizedVenueMedia, jg as useLocalizedVenueMediaLegacy, a$ as useMediaUrl, Jg as useMenu, e$ as useOnClickOutside, Lg as useVenueCms };
|
|
145
128
|
//# sourceMappingURL=index.es.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.es.d.ts","sourceRoot":"","sources":["../../../index.es.js"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.es.d.ts","sourceRoot":"","sources":["../../../index.es.js"],"names":[],"mappings":"AAgkEA;;;;EAAU;AA9gCV,oCAGC;AAuWD;;;;;;;;;;;;EA4DU;AA/ZV,oEAEC;AAkgBD,0CAEC;AAyhBD,6CAEC;AAzhCD,iCAIC;AAwdD,mCA4BC;AAz6BD,yCAMC;AAsaD,yCAIC;AAVD,oCAEC;AA0PD,yEAoBC;AAiQD;;;;;EAsDC;AACD;;;;;;;;;EAeC;AAjPD;;;;;;;;;;;;EA4DU;AAkGV,mCAEC;AAtjDD,gDAkBC;AAqvDD;;;;EAaC;AAxFD;;;;;;;;;;;;;;;;;EAiCC;AACD;;;;;;;;;;;;;;;EAqBC;AA1FD;;;;;;EAaC;AACD;;;;;;EAoBC;AA0ZD,6CAEC;AA5wBD;;;;;;QASC;AAgaD,0CAkBC;AA9HD;;;;EAgBC"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
export { nl as Menu };
|
|
2
|
+
declare function nl({ menu: e, handleSelectProduct: t, fallbackImg: r, lazyLoadImg: n, currency: i, timeZone: s, availabilityMarkOnly: a, availabilityCheckInterval: l, cols: f, colsLg: c, transitionProps: m, stacking: h, onMenuCategoryViewed: O, goToCheckout: A, goToStart: I, order: R, changeQuantity: k, components: P, onSelectCategory: g }: {
|
|
3
|
+
menu: any;
|
|
4
|
+
handleSelectProduct: any;
|
|
5
|
+
fallbackImg?: string | undefined;
|
|
6
|
+
lazyLoadImg: any;
|
|
7
|
+
currency: any;
|
|
8
|
+
timeZone: any;
|
|
9
|
+
availabilityMarkOnly: any;
|
|
10
|
+
availabilityCheckInterval: any;
|
|
11
|
+
cols: any;
|
|
12
|
+
colsLg: any;
|
|
13
|
+
transitionProps: any;
|
|
14
|
+
stacking?: string | undefined;
|
|
15
|
+
onMenuCategoryViewed: any;
|
|
16
|
+
goToCheckout: any;
|
|
17
|
+
goToStart: any;
|
|
18
|
+
order: any;
|
|
19
|
+
changeQuantity: any;
|
|
20
|
+
components: any;
|
|
21
|
+
onSelectCategory: any;
|
|
22
|
+
}): any;
|
|
23
|
+
//# sourceMappingURL=index.cjs.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.cjs.d.ts","sourceRoot":"","sources":["../../../../../menu/dist/index.cjs.js"],"names":[],"mappings":";AA0BiqnG;;;;;;;;;;;;;;;;;;;;QAA4+I"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
export { vl as Menu };
|
|
2
|
+
declare function vl({ menu: e, handleSelectProduct: t, fallbackImg: r, lazyLoadImg: n, currency: i, timeZone: s, availabilityMarkOnly: a, availabilityCheckInterval: l, cols: f, colsLg: c, transitionProps: m, stacking: h, onMenuCategoryViewed: O, goToCheckout: A, goToStart: I, order: R, changeQuantity: k, components: S, onSelectCategory: g }: {
|
|
3
|
+
menu: any;
|
|
4
|
+
handleSelectProduct: any;
|
|
5
|
+
fallbackImg?: string | undefined;
|
|
6
|
+
lazyLoadImg: any;
|
|
7
|
+
currency: any;
|
|
8
|
+
timeZone: any;
|
|
9
|
+
availabilityMarkOnly: any;
|
|
10
|
+
availabilityCheckInterval: any;
|
|
11
|
+
cols: any;
|
|
12
|
+
colsLg: any;
|
|
13
|
+
transitionProps: any;
|
|
14
|
+
stacking?: string | undefined;
|
|
15
|
+
onMenuCategoryViewed: any;
|
|
16
|
+
goToCheckout: any;
|
|
17
|
+
goToStart: any;
|
|
18
|
+
order: any;
|
|
19
|
+
changeQuantity: any;
|
|
20
|
+
components: any;
|
|
21
|
+
onSelectCategory: any;
|
|
22
|
+
}): any;
|
|
23
|
+
//# sourceMappingURL=index.es.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.es.d.ts","sourceRoot":"","sources":["../../../../../menu/dist/index.es.js"],"names":[],"mappings":";AAs0IA;;;;;;;;;;;;;;;;;;;;QA8LC"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { IMenuProps } from '@orderingstack/ordering-types';
|
|
2
2
|
|
|
3
|
-
export declare function Menu({ menu: originalMenu, handleSelectProduct, fallbackImg, lazyLoadImg, currency, timeZone, availabilityMarkOnly, availabilityCheckInterval, cols, colsLg, transitionProps, stacking, onMenuCategoryViewed, goToCheckout, goToStart, order, changeQuantity, components, }: IMenuProps):
|
|
3
|
+
export declare function Menu({ menu: originalMenu, handleSelectProduct, fallbackImg, lazyLoadImg, currency, timeZone, availabilityMarkOnly, availabilityCheckInterval, cols, colsLg, transitionProps, stacking, onMenuCategoryViewed, goToCheckout, goToStart, order, changeQuantity, components, }: IMenuProps): JSX.Element;
|
|
4
4
|
//# sourceMappingURL=Menu.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Menu.d.ts","sourceRoot":"","sources":["../../../../../menu/src/Menu.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAY,UAAU,EAAE,MAAM,+BAA+B,CAAC;AAkBrE,wBAAgB,IAAI,CAAC,EACnB,IAAI,EAAE,YAAY,EAClB,mBAAmB,EACnB,WAAsB,EACtB,WAAW,EACX,QAAQ,EACR,QAAQ,EACR,oBAAoB,EACpB,yBAAyB,EACzB,IAAI,EACJ,MAAM,EACN,eAAe,EACf,QAAqB,EACrB,oBAAoB,EACpB,YAAY,EACZ,SAAS,EACT,KAAK,EACL,cAAc,EACd,UAAU,GACX,EAAE,UAAU
|
|
1
|
+
{"version":3,"file":"Menu.d.ts","sourceRoot":"","sources":["../../../../../menu/src/Menu.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAY,UAAU,EAAE,MAAM,+BAA+B,CAAC;AAkBrE,wBAAgB,IAAI,CAAC,EACnB,IAAI,EAAE,YAAY,EAClB,mBAAmB,EACnB,WAAsB,EACtB,WAAW,EACX,QAAQ,EACR,QAAQ,EACR,oBAAoB,EACpB,yBAAyB,EACzB,IAAI,EACJ,MAAM,EACN,eAAe,EACf,QAAqB,EACrB,oBAAoB,EACpB,YAAY,EACZ,SAAS,EACT,KAAK,EACL,cAAc,EACd,UAAU,GACX,EAAE,UAAU,eAyQZ"}
|
|
@@ -5,6 +5,6 @@ interface Props {
|
|
|
5
5
|
id?: string;
|
|
6
6
|
innerClassname?: string;
|
|
7
7
|
}
|
|
8
|
-
export default function Chip(props: Props):
|
|
8
|
+
export default function Chip(props: Props): JSX.Element;
|
|
9
9
|
export {};
|
|
10
10
|
//# sourceMappingURL=Chip.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Chip.d.ts","sourceRoot":"","sources":["../../../../../../menu/src/components/Chip.tsx"],"names":[],"mappings":"AACA,UAAU,KAAK;IACb,KAAK,EAAE,MAAM,CAAC;IACd,aAAa,EAAE,MAAM,IAAI,CAAC;IAC1B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,cAAc,CAAC,EAAE,MAAM,CAAC;CACzB;AAED,MAAM,CAAC,OAAO,UAAU,IAAI,CAAC,KAAK,EAAE,KAAK
|
|
1
|
+
{"version":3,"file":"Chip.d.ts","sourceRoot":"","sources":["../../../../../../menu/src/components/Chip.tsx"],"names":[],"mappings":"AACA,UAAU,KAAK;IACb,KAAK,EAAE,MAAM,CAAC;IACd,aAAa,EAAE,MAAM,IAAI,CAAC;IAC1B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,cAAc,CAAC,EAAE,MAAM,CAAC;CACzB;AAED,MAAM,CAAC,OAAO,UAAU,IAAI,CAAC,KAAK,EAAE,KAAK,eAsBxC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BottomNav.d.ts","sourceRoot":"","sources":["../../../../../../../menu/src/components/default/BottomNav.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"BottomNav.d.ts","sourceRoot":"","sources":["../../../../../../../menu/src/components/default/BottomNav.tsx"],"names":[],"mappings":"AAEA,OAAO,EAIL,mBAAmB,EAEpB,MAAM,+BAA+B,CAAC;AA6BvC,MAAM,CAAC,OAAO,UAAU,SAAS,CAAC,EAChC,YAAY,EACZ,KAAK,EACL,QAAQ,EACR,WAAW,EACX,cAAc,GACf,EAAE,mBAAmB,eA2HrB"}
|
|
@@ -6,6 +6,6 @@ interface CategoriesProps {
|
|
|
6
6
|
onSelect: (category: ICategory) => void;
|
|
7
7
|
fallbackImg: string;
|
|
8
8
|
}
|
|
9
|
-
export default function Categories({ categories, selectedCategoryId, onSelect, fallbackImg, }: CategoriesProps):
|
|
9
|
+
export default function Categories({ categories, selectedCategoryId, onSelect, fallbackImg, }: CategoriesProps): JSX.Element | null;
|
|
10
10
|
export {};
|
|
11
11
|
//# sourceMappingURL=Categories.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Categories.d.ts","sourceRoot":"","sources":["../../../../../../../menu/src/components/default/Categories.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAKxC,UAAU,eAAe;IACvB,UAAU,CAAC,EAAE,SAAS,EAAE,CAAC;IACzB,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B,QAAQ,EAAE,CAAC,QAAQ,EAAE,SAAS,KAAK,IAAI,CAAC;IACxC,WAAW,EAAE,MAAM,CAAC;CACrB;AAED,MAAM,CAAC,OAAO,UAAU,UAAU,CAAC,EACjC,UAAU,EACV,kBAAkB,EAClB,QAAQ,EACR,WAAW,GACZ,EAAE,eAAe,
|
|
1
|
+
{"version":3,"file":"Categories.d.ts","sourceRoot":"","sources":["../../../../../../../menu/src/components/default/Categories.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAKxC,UAAU,eAAe;IACvB,UAAU,CAAC,EAAE,SAAS,EAAE,CAAC;IACzB,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B,QAAQ,EAAE,CAAC,QAAQ,EAAE,SAAS,KAAK,IAAI,CAAC;IACxC,WAAW,EAAE,MAAM,CAAC;CACrB;AAED,MAAM,CAAC,OAAO,UAAU,UAAU,CAAC,EACjC,UAAU,EACV,kBAAkB,EAClB,QAAQ,EACR,WAAW,GACZ,EAAE,eAAe,sBAmDjB"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { IMenuCategorySectionProps } from '@orderingstack/ordering-types';
|
|
2
2
|
|
|
3
|
-
declare function CategorySection({ category, onProductClicked, fallbackImg, lazyLoadImg, currency, cols, colsLg, MenuTile, }: IMenuCategorySectionProps):
|
|
3
|
+
declare function CategorySection({ category, onProductClicked, fallbackImg, lazyLoadImg, currency, cols, colsLg, MenuTile, }: IMenuCategorySectionProps): JSX.Element;
|
|
4
4
|
export default CategorySection;
|
|
5
5
|
//# sourceMappingURL=CategorySection.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CategorySection.d.ts","sourceRoot":"","sources":["../../../../../../../menu/src/components/default/CategorySection.tsx"],"names":[],"mappings":"AAAA,OAAO,EAEL,yBAAyB,EAE1B,MAAM,+BAA+B,CAAC;AAUvC,iBAAS,eAAe,CAAC,EACvB,QAAQ,EACR,gBAAgB,EAChB,WAAW,EACX,WAAW,EACX,QAAQ,EACR,IAAI,EACJ,MAAM,EACN,QAAQ,GACT,EAAE,yBAAyB
|
|
1
|
+
{"version":3,"file":"CategorySection.d.ts","sourceRoot":"","sources":["../../../../../../../menu/src/components/default/CategorySection.tsx"],"names":[],"mappings":"AAAA,OAAO,EAEL,yBAAyB,EAE1B,MAAM,+BAA+B,CAAC;AAUvC,iBAAS,eAAe,CAAC,EACvB,QAAQ,EACR,gBAAgB,EAChB,WAAW,EACX,WAAW,EACX,QAAQ,EACR,IAAI,EACJ,MAAM,EACN,QAAQ,GACT,EAAE,yBAAyB,eAuF3B;AAED,eAAe,eAAe,CAAC"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { IMenuTileProps } from '@orderingstack/ordering-types';
|
|
2
2
|
|
|
3
|
-
export declare function ProductTile({ product, onProductClicked, fallbackImg, currency, lazyLoadImg, }: IMenuTileProps):
|
|
3
|
+
export declare function ProductTile({ product, onProductClicked, fallbackImg, currency, lazyLoadImg, }: IMenuTileProps): JSX.Element;
|
|
4
4
|
//# sourceMappingURL=ProductTile.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ProductTile.d.ts","sourceRoot":"","sources":["../../../../../../../menu/src/components/default/ProductTile.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAgB,cAAc,EAAE,MAAM,+BAA+B,CAAC;AAQ7E,wBAAgB,WAAW,CAAC,EAC1B,OAAO,EACP,gBAAgB,EAChB,WAAW,EACX,QAAQ,EACR,WAAW,GACZ,EAAE,cAAc
|
|
1
|
+
{"version":3,"file":"ProductTile.d.ts","sourceRoot":"","sources":["../../../../../../../menu/src/components/default/ProductTile.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAgB,cAAc,EAAE,MAAM,+BAA+B,CAAC;AAQ7E,wBAAgB,WAAW,CAAC,EAC1B,OAAO,EACP,gBAAgB,EAChB,WAAW,EACX,QAAQ,EACR,WAAW,GACZ,EAAE,cAAc,eAkEhB"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { IMenuTopNavProps } from '@orderingstack/ordering-types';
|
|
2
2
|
|
|
3
|
-
export default function TopNav({ order, goToCheckout, goToStart, }: IMenuTopNavProps):
|
|
3
|
+
export default function TopNav({ order, goToCheckout, goToStart, }: IMenuTopNavProps): JSX.Element;
|
|
4
4
|
//# sourceMappingURL=TopNav.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TopNav.d.ts","sourceRoot":"","sources":["../../../../../../../menu/src/components/default/TopNav.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAc,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAO7E,MAAM,CAAC,OAAO,UAAU,MAAM,CAAC,EAC7B,KAAK,EACL,YAAY,EACZ,SAAS,GACV,EAAE,gBAAgB
|
|
1
|
+
{"version":3,"file":"TopNav.d.ts","sourceRoot":"","sources":["../../../../../../../menu/src/components/default/TopNav.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAc,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAO7E,MAAM,CAAC,OAAO,UAAU,MAAM,CAAC,EAC7B,KAAK,EACL,YAAY,EACZ,SAAS,GACV,EAAE,gBAAgB,eA+BlB"}
|
|
@@ -1,11 +1,13 @@
|
|
|
1
|
-
export =
|
|
2
|
-
declare function
|
|
1
|
+
export = be;
|
|
2
|
+
declare function be(r: any): {
|
|
3
3
|
name: string;
|
|
4
4
|
initialize: () => void;
|
|
5
|
-
page: ({ payload:
|
|
5
|
+
page: ({ payload: e }: {
|
|
6
|
+
payload: any;
|
|
7
|
+
}) => void;
|
|
8
|
+
track: ({ payload: e }: {
|
|
6
9
|
payload: any;
|
|
7
10
|
}) => void;
|
|
8
|
-
track: (s: any) => void;
|
|
9
11
|
loaded: () => boolean;
|
|
10
12
|
reset: () => void;
|
|
11
13
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.cjs.d.ts","sourceRoot":"","sources":["../../../../../mparticle-plugin/dist/index.cjs.js"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"index.cjs.d.ts","sourceRoot":"","sources":["../../../../../mparticle-plugin/dist/index.cjs.js"],"names":[],"mappings":";AAAa;;;;;;;;;;;EAA2sO"}
|
|
@@ -1,11 +1,13 @@
|
|
|
1
|
-
export {
|
|
2
|
-
declare function
|
|
1
|
+
export { orderingstackMParticlePlugin as default };
|
|
2
|
+
declare function orderingstackMParticlePlugin(pluginConfig: any): {
|
|
3
3
|
name: string;
|
|
4
4
|
initialize: () => void;
|
|
5
|
-
page: ({ payload
|
|
5
|
+
page: ({ payload }: {
|
|
6
|
+
payload: any;
|
|
7
|
+
}) => void;
|
|
8
|
+
track: ({ payload }: {
|
|
6
9
|
payload: any;
|
|
7
10
|
}) => void;
|
|
8
|
-
track: (c: any) => void;
|
|
9
11
|
loaded: () => boolean;
|
|
10
12
|
reset: () => void;
|
|
11
13
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.es.d.ts","sourceRoot":"","sources":["../../../../../mparticle-plugin/dist/index.es.js"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"index.es.d.ts","sourceRoot":"","sources":["../../../../../mparticle-plugin/dist/index.es.js"],"names":[],"mappings":";AAAA;;;;;;;;;;;EA0OC"}
|