@feedmepos/mf-common 1.2.0 → 1.4.0
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/api/index.d.ts +4 -1
- package/dist/app.d.ts +2 -10174
- package/dist/app.js +11073 -10987
- package/dist/components/AllStoreDialog.vue.d.ts +2 -0
- package/dist/components/UserInfo.vue.d.ts +14 -235
- package/dist/logo.svg +15 -0
- package/dist/store.d.ts +8666 -1270
- package/dist/style.css +1 -1
- package/dist/tsconfig.app.tsbuildinfo +1 -1
- package/package.json +2 -2
@@ -0,0 +1,2 @@
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
|
2
|
+
export default _default;
|
@@ -1,70 +1,13 @@
|
|
1
1
|
import { type PropType } from 'vue';
|
2
2
|
import type { FeedMeUser } from '../auth';
|
3
|
-
import type
|
4
|
-
declare const _default: import("vue").DefineComponent<{
|
3
|
+
import { type FmpBusiness } from '../store';
|
4
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
5
5
|
user: {
|
6
6
|
type: PropType<FeedMeUser | null>;
|
7
7
|
default: undefined;
|
8
8
|
};
|
9
9
|
businesses: {
|
10
|
-
type: PropType<
|
11
|
-
internal?: boolean | null | undefined;
|
12
|
-
expiredAt?: string | null | undefined;
|
13
|
-
url?: string | null | undefined;
|
14
|
-
agentId?: string | null | undefined;
|
15
|
-
pf_agent?: {
|
16
|
-
clickupId?: string | null | undefined;
|
17
|
-
members?: {
|
18
|
-
pf_user?: {
|
19
|
-
email?: string | null | undefined;
|
20
|
-
photoURL?: string | null | undefined;
|
21
|
-
displayName?: string | null | undefined;
|
22
|
-
phoneNumber?: string | null | undefined;
|
23
|
-
birthday?: Date | null | undefined;
|
24
|
-
gender?: "MALE" | "FEMALE" | null | undefined;
|
25
|
-
addresses?: {
|
26
|
-
address: string;
|
27
|
-
name: string;
|
28
|
-
coordinates: number[];
|
29
|
-
}[] | null | undefined;
|
30
|
-
imported?: {
|
31
|
-
source: "FEEDME" | "CITY_POS" | "STOREHUB" | "KERUYUn" | "QISOFT" | "WECHAT" | "TEABAR" | "NULL_MEMBER" | "UMAI_POS" | "QASHIER" | "XILNET" | "GENIUSPOS" | "YHOFOODIE";
|
32
|
-
raw: Record<string, any>;
|
33
|
-
} | null | undefined;
|
34
|
-
_id: string;
|
35
|
-
} | null | undefined;
|
36
|
-
userId: string;
|
37
|
-
role: "ADMIN";
|
38
|
-
}[] | null | undefined;
|
39
|
-
code: string;
|
40
|
-
name: string;
|
41
|
-
_id: string;
|
42
|
-
isReseller: boolean;
|
43
|
-
} | null | undefined;
|
44
|
-
thumbnail?: string | null | undefined;
|
45
|
-
billingInfos?: {
|
46
|
-
_id?: string | undefined;
|
47
|
-
address: {
|
48
|
-
coordinates?: number[] | undefined;
|
49
|
-
line2?: string | undefined;
|
50
|
-
state: string;
|
51
|
-
line1: string;
|
52
|
-
city: string;
|
53
|
-
postcode: string;
|
54
|
-
country: string;
|
55
|
-
};
|
56
|
-
name: string;
|
57
|
-
email: string;
|
58
|
-
companyName: string;
|
59
|
-
contact: string;
|
60
|
-
}[] | null | undefined;
|
61
|
-
name: string;
|
62
|
-
_id: string;
|
63
|
-
ownerId: string;
|
64
|
-
restaurantQuota: number;
|
65
|
-
warehouseQuota: number;
|
66
|
-
menuVersion: "v2" | "v3" | "v4";
|
67
|
-
}[]>;
|
10
|
+
type: PropType<FmpBusiness[]>;
|
68
11
|
required: true;
|
69
12
|
};
|
70
13
|
currentBusiness: {
|
@@ -111,64 +54,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
111
54
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
112
55
|
login: () => void;
|
113
56
|
logout: () => void;
|
114
|
-
"select-business": (business:
|
115
|
-
internal?: boolean | null | undefined;
|
116
|
-
expiredAt?: string | null | undefined;
|
117
|
-
url?: string | null | undefined;
|
118
|
-
agentId?: string | null | undefined;
|
119
|
-
pf_agent?: {
|
120
|
-
clickupId?: string | null | undefined;
|
121
|
-
members?: {
|
122
|
-
pf_user?: {
|
123
|
-
email?: string | null | undefined;
|
124
|
-
photoURL?: string | null | undefined;
|
125
|
-
displayName?: string | null | undefined;
|
126
|
-
phoneNumber?: string | null | undefined;
|
127
|
-
birthday?: Date | null | undefined;
|
128
|
-
gender?: "MALE" | "FEMALE" | null | undefined;
|
129
|
-
addresses?: {
|
130
|
-
address: string;
|
131
|
-
name: string;
|
132
|
-
coordinates: number[];
|
133
|
-
}[] | null | undefined;
|
134
|
-
imported?: {
|
135
|
-
source: "FEEDME" | "CITY_POS" | "STOREHUB" | "KERUYUn" | "QISOFT" | "WECHAT" | "TEABAR" | "NULL_MEMBER" | "UMAI_POS" | "QASHIER" | "XILNET" | "GENIUSPOS" | "YHOFOODIE";
|
136
|
-
raw: Record<string, any>;
|
137
|
-
} | null | undefined;
|
138
|
-
_id: string;
|
139
|
-
} | null | undefined;
|
140
|
-
userId: string;
|
141
|
-
role: "ADMIN";
|
142
|
-
}[] | null | undefined;
|
143
|
-
code: string;
|
144
|
-
name: string;
|
145
|
-
_id: string;
|
146
|
-
isReseller: boolean;
|
147
|
-
} | null | undefined;
|
148
|
-
thumbnail?: string | null | undefined;
|
149
|
-
billingInfos?: {
|
150
|
-
_id?: string | undefined;
|
151
|
-
address: {
|
152
|
-
coordinates?: number[] | undefined;
|
153
|
-
line2?: string | undefined;
|
154
|
-
state: string;
|
155
|
-
line1: string;
|
156
|
-
city: string;
|
157
|
-
postcode: string;
|
158
|
-
country: string;
|
159
|
-
};
|
160
|
-
name: string;
|
161
|
-
email: string;
|
162
|
-
companyName: string;
|
163
|
-
contact: string;
|
164
|
-
}[] | null | undefined;
|
165
|
-
name: string;
|
166
|
-
_id: string;
|
167
|
-
ownerId: string;
|
168
|
-
restaurantQuota: number;
|
169
|
-
warehouseQuota: number;
|
170
|
-
menuVersion: "v2" | "v3" | "v4";
|
171
|
-
}) => void;
|
57
|
+
"select-business": (business: FmpBusiness) => void;
|
172
58
|
"select-country": (country: {
|
173
59
|
code: "AF" | "AX" | "AL" | "DZ" | "AS" | "AD" | "AO" | "AI" | "AQ" | "AG" | "AR" | "AM" | "AW" | "AU" | "AT" | "AZ" | "BS" | "BH" | "BD" | "BB" | "BY" | "BE" | "BZ" | "BJ" | "BM" | "BT" | "BO" | "BQ" | "BA" | "BW" | "BV" | "BR" | "IO" | "BN" | "BG" | "BF" | "BI" | "KH" | "CM" | "CA" | "CV" | "KY" | "CF" | "TD" | "CL" | "CN" | "CX" | "CC" | "CO" | "KM" | "CG" | "CD" | "CK" | "CR" | "CI" | "HR" | "CU" | "CW" | "CY" | "CZ" | "DK" | "DJ" | "DM" | "DO" | "EC" | "EG" | "SV" | "GQ" | "ER" | "EE" | "ET" | "FK" | "FO" | "FJ" | "FI" | "FR" | "GF" | "PF" | "TF" | "GA" | "GM" | "GE" | "DE" | "GH" | "GI" | "GR" | "GL" | "GD" | "GP" | "GU" | "GT" | "GG" | "GN" | "GW" | "GY" | "HT" | "HM" | "VA" | "HN" | "HK" | "HU" | "IS" | "IN" | "ID" | "IR" | "IQ" | "IE" | "IM" | "IL" | "IT" | "JM" | "JP" | "JE" | "JO" | "KZ" | "KE" | "KI" | "KR" | "KP" | "KW" | "KG" | "LA" | "LV" | "LB" | "LS" | "LR" | "LY" | "LI" | "LT" | "LU" | "MO" | "MK" | "MG" | "MW" | "MY" | "MV" | "ML" | "MT" | "MH" | "MQ" | "MR" | "MU" | "YT" | "MX" | "FM" | "MD" | "MC" | "MN" | "ME" | "MS" | "MA" | "MZ" | "MM" | "NA" | "NR" | "NP" | "NL" | "NC" | "NZ" | "NI" | "NE" | "NG" | "NU" | "NF" | "MP" | "NO" | "OM" | "PK" | "PW" | "PS" | "PA" | "PG" | "PY" | "PE" | "PH" | "PN" | "PL" | "PT" | "PR" | "QA" | "RE" | "RO" | "RU" | "RW" | "BL" | "SH" | "KN" | "LC" | "MF" | "PM" | "VC" | "WS" | "SM" | "ST" | "SA" | "SN" | "RS" | "SC" | "SL" | "SG" | "SX" | "SK" | "SI" | "SB" | "SO" | "ZA" | "GS" | "SS" | "ES" | "LK" | "SD" | "SR" | "SJ" | "SZ" | "SE" | "CH" | "SY" | "TW" | "TJ" | "TZ" | "TH" | "TL" | "TG" | "TK" | "TO" | "TT" | "TN" | "TR" | "TM" | "TC" | "TV" | "UG" | "UA" | "AE" | "GB" | "US" | "UM" | "UY" | "UZ" | "VU" | "VE" | "VN" | "VG" | "VI" | "WF" | "EH" | "YE" | "ZM" | "ZW";
|
174
60
|
name: string;
|
@@ -205,64 +91,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
205
91
|
default: undefined;
|
206
92
|
};
|
207
93
|
businesses: {
|
208
|
-
type: PropType<
|
209
|
-
internal?: boolean | null | undefined;
|
210
|
-
expiredAt?: string | null | undefined;
|
211
|
-
url?: string | null | undefined;
|
212
|
-
agentId?: string | null | undefined;
|
213
|
-
pf_agent?: {
|
214
|
-
clickupId?: string | null | undefined;
|
215
|
-
members?: {
|
216
|
-
pf_user?: {
|
217
|
-
email?: string | null | undefined;
|
218
|
-
photoURL?: string | null | undefined;
|
219
|
-
displayName?: string | null | undefined;
|
220
|
-
phoneNumber?: string | null | undefined;
|
221
|
-
birthday?: Date | null | undefined;
|
222
|
-
gender?: "MALE" | "FEMALE" | null | undefined;
|
223
|
-
addresses?: {
|
224
|
-
address: string;
|
225
|
-
name: string;
|
226
|
-
coordinates: number[];
|
227
|
-
}[] | null | undefined;
|
228
|
-
imported?: {
|
229
|
-
source: "FEEDME" | "CITY_POS" | "STOREHUB" | "KERUYUn" | "QISOFT" | "WECHAT" | "TEABAR" | "NULL_MEMBER" | "UMAI_POS" | "QASHIER" | "XILNET" | "GENIUSPOS" | "YHOFOODIE";
|
230
|
-
raw: Record<string, any>;
|
231
|
-
} | null | undefined;
|
232
|
-
_id: string;
|
233
|
-
} | null | undefined;
|
234
|
-
userId: string;
|
235
|
-
role: "ADMIN";
|
236
|
-
}[] | null | undefined;
|
237
|
-
code: string;
|
238
|
-
name: string;
|
239
|
-
_id: string;
|
240
|
-
isReseller: boolean;
|
241
|
-
} | null | undefined;
|
242
|
-
thumbnail?: string | null | undefined;
|
243
|
-
billingInfos?: {
|
244
|
-
_id?: string | undefined;
|
245
|
-
address: {
|
246
|
-
coordinates?: number[] | undefined;
|
247
|
-
line2?: string | undefined;
|
248
|
-
state: string;
|
249
|
-
line1: string;
|
250
|
-
city: string;
|
251
|
-
postcode: string;
|
252
|
-
country: string;
|
253
|
-
};
|
254
|
-
name: string;
|
255
|
-
email: string;
|
256
|
-
companyName: string;
|
257
|
-
contact: string;
|
258
|
-
}[] | null | undefined;
|
259
|
-
name: string;
|
260
|
-
_id: string;
|
261
|
-
ownerId: string;
|
262
|
-
restaurantQuota: number;
|
263
|
-
warehouseQuota: number;
|
264
|
-
menuVersion: "v2" | "v3" | "v4";
|
265
|
-
}[]>;
|
94
|
+
type: PropType<FmpBusiness[]>;
|
266
95
|
required: true;
|
267
96
|
};
|
268
97
|
currentBusiness: {
|
@@ -309,64 +138,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
309
138
|
}>> & {
|
310
139
|
onLogin?: (() => any) | undefined;
|
311
140
|
onLogout?: (() => any) | undefined;
|
312
|
-
"onSelect-business"?: ((business:
|
313
|
-
internal?: boolean | null | undefined;
|
314
|
-
expiredAt?: string | null | undefined;
|
315
|
-
url?: string | null | undefined;
|
316
|
-
agentId?: string | null | undefined;
|
317
|
-
pf_agent?: {
|
318
|
-
clickupId?: string | null | undefined;
|
319
|
-
members?: {
|
320
|
-
pf_user?: {
|
321
|
-
email?: string | null | undefined;
|
322
|
-
photoURL?: string | null | undefined;
|
323
|
-
displayName?: string | null | undefined;
|
324
|
-
phoneNumber?: string | null | undefined;
|
325
|
-
birthday?: Date | null | undefined;
|
326
|
-
gender?: "MALE" | "FEMALE" | null | undefined;
|
327
|
-
addresses?: {
|
328
|
-
address: string;
|
329
|
-
name: string;
|
330
|
-
coordinates: number[];
|
331
|
-
}[] | null | undefined;
|
332
|
-
imported?: {
|
333
|
-
source: "FEEDME" | "CITY_POS" | "STOREHUB" | "KERUYUn" | "QISOFT" | "WECHAT" | "TEABAR" | "NULL_MEMBER" | "UMAI_POS" | "QASHIER" | "XILNET" | "GENIUSPOS" | "YHOFOODIE";
|
334
|
-
raw: Record<string, any>;
|
335
|
-
} | null | undefined;
|
336
|
-
_id: string;
|
337
|
-
} | null | undefined;
|
338
|
-
userId: string;
|
339
|
-
role: "ADMIN";
|
340
|
-
}[] | null | undefined;
|
341
|
-
code: string;
|
342
|
-
name: string;
|
343
|
-
_id: string;
|
344
|
-
isReseller: boolean;
|
345
|
-
} | null | undefined;
|
346
|
-
thumbnail?: string | null | undefined;
|
347
|
-
billingInfos?: {
|
348
|
-
_id?: string | undefined;
|
349
|
-
address: {
|
350
|
-
coordinates?: number[] | undefined;
|
351
|
-
line2?: string | undefined;
|
352
|
-
state: string;
|
353
|
-
line1: string;
|
354
|
-
city: string;
|
355
|
-
postcode: string;
|
356
|
-
country: string;
|
357
|
-
};
|
358
|
-
name: string;
|
359
|
-
email: string;
|
360
|
-
companyName: string;
|
361
|
-
contact: string;
|
362
|
-
}[] | null | undefined;
|
363
|
-
name: string;
|
364
|
-
_id: string;
|
365
|
-
ownerId: string;
|
366
|
-
restaurantQuota: number;
|
367
|
-
warehouseQuota: number;
|
368
|
-
menuVersion: "v2" | "v3" | "v4";
|
369
|
-
}) => any) | undefined;
|
141
|
+
"onSelect-business"?: ((business: FmpBusiness) => any) | undefined;
|
370
142
|
"onSelect-country"?: ((country: {
|
371
143
|
code: "AF" | "AX" | "AL" | "DZ" | "AS" | "AD" | "AO" | "AI" | "AQ" | "AG" | "AR" | "AM" | "AW" | "AU" | "AT" | "AZ" | "BS" | "BH" | "BD" | "BB" | "BY" | "BE" | "BZ" | "BJ" | "BM" | "BT" | "BO" | "BQ" | "BA" | "BW" | "BV" | "BR" | "IO" | "BN" | "BG" | "BF" | "BI" | "KH" | "CM" | "CA" | "CV" | "KY" | "CF" | "TD" | "CL" | "CN" | "CX" | "CC" | "CO" | "KM" | "CG" | "CD" | "CK" | "CR" | "CI" | "HR" | "CU" | "CW" | "CY" | "CZ" | "DK" | "DJ" | "DM" | "DO" | "EC" | "EG" | "SV" | "GQ" | "ER" | "EE" | "ET" | "FK" | "FO" | "FJ" | "FI" | "FR" | "GF" | "PF" | "TF" | "GA" | "GM" | "GE" | "DE" | "GH" | "GI" | "GR" | "GL" | "GD" | "GP" | "GU" | "GT" | "GG" | "GN" | "GW" | "GY" | "HT" | "HM" | "VA" | "HN" | "HK" | "HU" | "IS" | "IN" | "ID" | "IR" | "IQ" | "IE" | "IM" | "IL" | "IT" | "JM" | "JP" | "JE" | "JO" | "KZ" | "KE" | "KI" | "KR" | "KP" | "KW" | "KG" | "LA" | "LV" | "LB" | "LS" | "LR" | "LY" | "LI" | "LT" | "LU" | "MO" | "MK" | "MG" | "MW" | "MY" | "MV" | "ML" | "MT" | "MH" | "MQ" | "MR" | "MU" | "YT" | "MX" | "FM" | "MD" | "MC" | "MN" | "ME" | "MS" | "MA" | "MZ" | "MM" | "NA" | "NR" | "NP" | "NL" | "NC" | "NZ" | "NI" | "NE" | "NG" | "NU" | "NF" | "MP" | "NO" | "OM" | "PK" | "PW" | "PS" | "PA" | "PG" | "PY" | "PE" | "PH" | "PN" | "PL" | "PT" | "PR" | "QA" | "RE" | "RO" | "RU" | "RW" | "BL" | "SH" | "KN" | "LC" | "MF" | "PM" | "VC" | "WS" | "SM" | "ST" | "SA" | "SN" | "RS" | "SC" | "SL" | "SG" | "SX" | "SK" | "SI" | "SB" | "SO" | "ZA" | "GS" | "SS" | "ES" | "LK" | "SD" | "SR" | "SJ" | "SZ" | "SE" | "CH" | "SY" | "TW" | "TJ" | "TZ" | "TH" | "TL" | "TG" | "TK" | "TO" | "TT" | "TN" | "TR" | "TM" | "TC" | "TV" | "UG" | "UA" | "AE" | "GB" | "US" | "UM" | "UY" | "UZ" | "VU" | "VE" | "VN" | "VG" | "VI" | "WF" | "EH" | "YE" | "ZM" | "ZW";
|
372
144
|
name: string;
|
@@ -400,5 +172,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
400
172
|
}, {
|
401
173
|
currentBusiness: FmpBusiness;
|
402
174
|
user: FeedMeUser | null;
|
403
|
-
}, {}
|
175
|
+
}, {}>, {
|
176
|
+
actions?(_: {}): any;
|
177
|
+
}>;
|
404
178
|
export default _default;
|
179
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
180
|
+
new (): {
|
181
|
+
$slots: S;
|
182
|
+
};
|
183
|
+
};
|
package/dist/logo.svg
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
<svg width="388" height="388" viewBox="0 0 388 388" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path d="M239.449 0H148.553C66.5106 0 0.00195312 66.5086 0.00195312 148.551V239.447C0.00195312 321.489 66.5106 387.998 148.553 387.998H239.449C321.491 387.998 388 321.489 388 239.447V148.551C388 66.5086 321.491 0 239.449 0Z" fill="url(#paint0_linear_8849_557)" style=""/>
|
3
|
+
<mask id="mask0_8849_557" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="0" y="0" width="388" height="388">
|
4
|
+
<path d="M239.447 0H148.551C66.5086 0 0 66.5086 0 148.551V239.447C0 321.489 66.5086 387.998 148.551 387.998H239.447C321.49 387.998 387.998 321.489 387.998 239.447V148.551C387.998 66.5086 321.49 0 239.447 0Z" fill="white" style="fill:white;fill-opacity:1;"/>
|
5
|
+
</mask>
|
6
|
+
<g mask="url(#mask0_8849_557)">
|
7
|
+
<path d="M82.587 258.589V258.76C83.2747 264.893 84.1917 271.598 85.3953 278.648L101.271 392.296H127.462V253.946C127.462 241.395 137.033 231.194 148.839 231.194H150.329C162.135 231.194 171.706 241.395 171.706 253.946V392.296H216.352V253.946C216.352 241.395 225.923 231.194 237.729 231.194H239.219C251.025 231.194 260.596 241.395 260.596 253.946V392.296H286.959L302.835 277.788C303.981 271.025 304.841 264.549 305.471 258.589V258.187C307.649 238.759 307.649 225.061 307.649 225.061C307.649 182.938 290.054 148.264 252.286 119.78C241.97 112.043 233.029 100.466 232.17 75.7079C232.17 75.7079 229.705 12.9519 253.719 -33.7568H134.339C158.353 12.9519 155.888 75.7079 155.888 75.7079C155.029 100.409 146.088 111.986 135.772 119.78C97.9465 148.321 80.4092 182.938 80.4092 225.061C80.4092 225.061 80.4092 238.873 82.587 258.474V258.589Z" fill="white" style="fill:white;fill-opacity:1;"/>
|
8
|
+
</g>
|
9
|
+
<defs>
|
10
|
+
<linearGradient id="paint0_linear_8849_557" x1="43.5013" y1="344.556" x2="344.501" y2="43.5567" gradientUnits="userSpaceOnUse">
|
11
|
+
<stop stop-color="#FF5D53" style="stop-color:#FF5D53;stop-color:color(display-p3 1.0000 0.3647 0.3255);stop-opacity:1;"/>
|
12
|
+
<stop offset="1" stop-color="#FCA23E" style="stop-color:#FCA23E;stop-color:color(display-p3 0.9882 0.6353 0.2431);stop-opacity:1;"/>
|
13
|
+
</linearGradient>
|
14
|
+
</defs>
|
15
|
+
</svg>
|