@feedmepos/mf-e-invoice 0.0.65 → 0.0.68
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/{EInvoice-B9lJ3ijP.js → EInvoice-vYf-dUfJ.js} +2100 -2086
- package/dist/api/index.d.ts +1 -2
- package/dist/app.js +1 -1
- package/dist/store/index.d.ts +457 -445
- package/dist/tsconfig.app.tsbuildinfo +1 -1
- package/dist/type/index.d.ts +2 -0
- package/dist/type/malaysia/components/accounting-party.dto.d.ts +625 -0
- package/dist/type/malaysia/components/allowance.dto.d.ts +33 -0
- package/dist/type/malaysia/components/billing.dto.d.ts +198 -0
- package/dist/type/malaysia/components/invoice-line.dto.d.ts +601 -0
- package/dist/type/malaysia/components/payment.dto.d.ts +38 -0
- package/dist/type/malaysia/components/signature.dto.d.ts +8988 -0
- package/dist/type/malaysia/components/tax.dto.d.ts +410 -0
- package/dist/type/malaysia/e-invoice-profile.do.d.ts +1756 -0
- package/dist/type/malaysia/e-invoice.do.d.ts +4808 -0
- package/dist/type/malaysia/e-invoice.dto.d.ts +5146 -0
- package/dist/type/malaysia/e-invoice.enum.d.ts +5 -0
- package/dist/type/malaysia/index.d.ts +11 -0
- package/dist/type/profile/e-invoice-base-profile.do.d.ts +136 -0
- package/dist/type/profile/e-invoice-profile.enum.d.ts +7 -0
- package/dist/type/profile/e-invoice.enum.d.ts +9 -0
- package/dist/type/report-invoice.dto.d.ts +123 -0
- package/dist/type/thailand/e-invoice-profile.do.d.ts +155 -128
- package/dist/type/thailand/e-invoice.do.d.ts +120 -110
- package/dist/type/thailand/e-invoice.dto.d.ts +76 -76
- package/dist/type/vietnam/e-invoice-profile.do.d.ts +108 -108
- package/dist/type/vietnam/e-invoice.do.d.ts +56 -56
- package/dist/type/vietnam/e-invoice.dto.d.ts +13 -13
- package/dist/types.d.ts +2 -3
- package/dist/views/EInvoiceCopyDialog.vue.d.ts +3 -56
- package/dist/views/manager/malaysia/MalaysiaItemSettingsDialog.vue.d.ts +1 -1
- package/dist/views/manager/malaysia/MalaysiaProfileDialog.vue.d.ts +1 -1
- package/dist/views/manager/malaysia/data.d.ts +2 -1
- package/dist/views/manager/malaysia/malaysia.d.ts +2 -1
- package/dist/views/manager/manager.d.ts +2 -2
- package/dist/views/manager/thailand/thailand.d.ts +2 -2
- package/dist/views/manager/vietnam/VietnamItemSettingsDialog.vue.d.ts +2 -2
- package/dist/views/submission.d.ts +2 -1
- package/package.json +1 -1
package/dist/store/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { type AnyEInvoiceMerchantProfile } from "@/api";
|
|
2
|
+
import type { FdoMyEInvoiceSetting } from "@/type";
|
|
2
3
|
import type { MarketingEInvoice, MerchantEInvoice, RestaurantEInvoice } from "@/types";
|
|
3
4
|
import type { EInvoiceManager } from "@/views/manager/manager";
|
|
4
|
-
import { FdoMyEInvoiceSetting } from "@feedmepos/core/entity";
|
|
5
5
|
export interface AppLoading {
|
|
6
6
|
message: string;
|
|
7
7
|
exec: () => Promise<void> | void;
|
|
@@ -24,23 +24,16 @@ export declare const useStore: import("pinia").StoreDefinition<"mf-e-invoice-app
|
|
|
24
24
|
};
|
|
25
25
|
type: "marketing";
|
|
26
26
|
profile: {
|
|
27
|
-
queryToken?: string | null | undefined;
|
|
28
27
|
phoneNo?: string | null | undefined;
|
|
29
28
|
active?: string | null | undefined;
|
|
30
29
|
schedule?: {
|
|
31
30
|
day: number;
|
|
32
31
|
hour: number;
|
|
33
32
|
} | null | undefined;
|
|
34
|
-
|
|
35
|
-
username?: string | null | undefined;
|
|
36
|
-
password?: string | null | undefined;
|
|
37
|
-
templateId?: string | null | undefined;
|
|
38
|
-
isDev?: boolean | null | undefined;
|
|
39
|
-
email: string;
|
|
40
|
-
tinNo: string;
|
|
41
|
-
_id: string;
|
|
33
|
+
queryToken?: string | null | undefined;
|
|
42
34
|
type: "marketing";
|
|
43
35
|
name: string;
|
|
36
|
+
_id: string;
|
|
44
37
|
address: {
|
|
45
38
|
coordinates?: number[] | null | undefined;
|
|
46
39
|
line2?: string | null | undefined;
|
|
@@ -52,14 +45,18 @@ export declare const useStore: import("pinia").StoreDefinition<"mf-e-invoice-app
|
|
|
52
45
|
};
|
|
53
46
|
businessId: string;
|
|
54
47
|
regNo: string;
|
|
55
|
-
|
|
48
|
+
tinNo: string;
|
|
56
49
|
email: string;
|
|
57
|
-
|
|
50
|
+
msicCode: string;
|
|
51
|
+
sstRegNo: string;
|
|
52
|
+
} | {
|
|
58
53
|
phoneNo?: string | null | undefined;
|
|
59
|
-
|
|
60
|
-
|
|
54
|
+
email?: string | null | undefined;
|
|
55
|
+
queryToken?: string | null | undefined;
|
|
56
|
+
branchCode?: string | null | undefined;
|
|
61
57
|
type: "marketing";
|
|
62
58
|
name: string;
|
|
59
|
+
_id: string;
|
|
63
60
|
address: {
|
|
64
61
|
coordinates?: number[] | null | undefined;
|
|
65
62
|
line2?: string | null | undefined;
|
|
@@ -69,27 +66,26 @@ export declare const useStore: import("pinia").StoreDefinition<"mf-e-invoice-app
|
|
|
69
66
|
city: string;
|
|
70
67
|
postcode: string;
|
|
71
68
|
};
|
|
72
|
-
branchCode: string;
|
|
73
69
|
businessId: string;
|
|
74
70
|
regNo: string;
|
|
71
|
+
tinNo: string;
|
|
72
|
+
taxRegNo: string;
|
|
73
|
+
} | {
|
|
74
|
+
phoneNo?: string | null | undefined;
|
|
75
75
|
active?: string | null | undefined;
|
|
76
76
|
schedule?: {
|
|
77
77
|
day: number;
|
|
78
78
|
hour: number;
|
|
79
79
|
} | null | undefined;
|
|
80
|
+
queryToken?: string | null | undefined;
|
|
80
81
|
appid?: string | null | undefined;
|
|
81
82
|
username?: string | null | undefined;
|
|
82
83
|
password?: string | null | undefined;
|
|
83
84
|
templateId?: string | null | undefined;
|
|
84
85
|
isDev?: boolean | null | undefined;
|
|
85
|
-
} | {
|
|
86
|
-
email: string;
|
|
87
|
-
queryToken?: string | null | undefined;
|
|
88
|
-
phoneNo?: string | null | undefined;
|
|
89
|
-
tinNo: string;
|
|
90
|
-
_id: string;
|
|
91
86
|
type: "marketing";
|
|
92
87
|
name: string;
|
|
88
|
+
_id: string;
|
|
93
89
|
address: {
|
|
94
90
|
coordinates?: number[] | null | undefined;
|
|
95
91
|
line2?: string | null | undefined;
|
|
@@ -99,24 +95,21 @@ export declare const useStore: import("pinia").StoreDefinition<"mf-e-invoice-app
|
|
|
99
95
|
city: string;
|
|
100
96
|
postcode: string;
|
|
101
97
|
};
|
|
102
|
-
branchCode: string;
|
|
103
98
|
businessId: string;
|
|
104
99
|
regNo: string;
|
|
100
|
+
tinNo: string;
|
|
101
|
+
email: string;
|
|
102
|
+
} | {
|
|
103
|
+
phoneNo?: string | null | undefined;
|
|
105
104
|
active?: string | null | undefined;
|
|
106
105
|
schedule?: {
|
|
107
106
|
day: number;
|
|
108
107
|
hour: number;
|
|
109
108
|
} | null | undefined;
|
|
110
|
-
sstRegNo: string;
|
|
111
|
-
msicCode: string;
|
|
112
|
-
} | {
|
|
113
|
-
email?: string | null | undefined;
|
|
114
109
|
queryToken?: string | null | undefined;
|
|
115
|
-
phoneNo?: string | null | undefined;
|
|
116
|
-
tinNo: string;
|
|
117
|
-
_id: string;
|
|
118
110
|
type: "marketing";
|
|
119
111
|
name: string;
|
|
112
|
+
_id: string;
|
|
120
113
|
address: {
|
|
121
114
|
coordinates?: number[] | null | undefined;
|
|
122
115
|
line2?: string | null | undefined;
|
|
@@ -126,28 +119,25 @@ export declare const useStore: import("pinia").StoreDefinition<"mf-e-invoice-app
|
|
|
126
119
|
city: string;
|
|
127
120
|
postcode: string;
|
|
128
121
|
};
|
|
129
|
-
branchCode: string;
|
|
130
122
|
businessId: string;
|
|
131
123
|
regNo: string;
|
|
124
|
+
tinNo: string;
|
|
125
|
+
email: string;
|
|
126
|
+
msicCode: string;
|
|
127
|
+
sstRegNo: string;
|
|
128
|
+
branchCode?: string | null | undefined;
|
|
132
129
|
taxRegNo: string;
|
|
133
130
|
} | {
|
|
134
|
-
queryToken?: string | null | undefined;
|
|
135
131
|
phoneNo?: string | null | undefined;
|
|
136
132
|
active?: string | null | undefined;
|
|
137
133
|
schedule?: {
|
|
138
134
|
day: number;
|
|
139
135
|
hour: number;
|
|
140
136
|
} | null | undefined;
|
|
141
|
-
|
|
142
|
-
username?: string | null | undefined;
|
|
143
|
-
password?: string | null | undefined;
|
|
144
|
-
templateId?: string | null | undefined;
|
|
145
|
-
isDev?: boolean | null | undefined;
|
|
146
|
-
email: string;
|
|
147
|
-
tinNo: string;
|
|
148
|
-
_id: string;
|
|
137
|
+
queryToken?: string | null | undefined;
|
|
149
138
|
type: "marketing";
|
|
150
139
|
name: string;
|
|
140
|
+
_id: string;
|
|
151
141
|
address: {
|
|
152
142
|
coordinates?: number[] | null | undefined;
|
|
153
143
|
line2?: string | null | undefined;
|
|
@@ -159,26 +149,23 @@ export declare const useStore: import("pinia").StoreDefinition<"mf-e-invoice-app
|
|
|
159
149
|
};
|
|
160
150
|
businessId: string;
|
|
161
151
|
regNo: string;
|
|
162
|
-
|
|
152
|
+
tinNo: string;
|
|
153
|
+
email: string;
|
|
163
154
|
msicCode: string;
|
|
164
|
-
|
|
165
|
-
queryToken?: string | null | undefined;
|
|
166
|
-
phoneNo?: string | null | undefined;
|
|
167
|
-
active?: string | null | undefined;
|
|
168
|
-
schedule?: {
|
|
169
|
-
day: number;
|
|
170
|
-
hour: number;
|
|
171
|
-
} | null | undefined;
|
|
155
|
+
sstRegNo: string;
|
|
172
156
|
appid?: string | null | undefined;
|
|
173
157
|
username?: string | null | undefined;
|
|
174
158
|
password?: string | null | undefined;
|
|
175
159
|
templateId?: string | null | undefined;
|
|
176
160
|
isDev?: boolean | null | undefined;
|
|
161
|
+
} | {
|
|
162
|
+
phoneNo?: string | null | undefined;
|
|
177
163
|
email: string;
|
|
178
|
-
|
|
179
|
-
|
|
164
|
+
queryToken?: string | null | undefined;
|
|
165
|
+
branchCode?: string | null | undefined;
|
|
180
166
|
type: "marketing";
|
|
181
167
|
name: string;
|
|
168
|
+
_id: string;
|
|
182
169
|
address: {
|
|
183
170
|
coordinates?: number[] | null | undefined;
|
|
184
171
|
line2?: string | null | undefined;
|
|
@@ -190,18 +177,23 @@ export declare const useStore: import("pinia").StoreDefinition<"mf-e-invoice-app
|
|
|
190
177
|
};
|
|
191
178
|
businessId: string;
|
|
192
179
|
regNo: string;
|
|
193
|
-
|
|
180
|
+
tinNo: string;
|
|
194
181
|
taxRegNo: string;
|
|
195
|
-
} | {
|
|
196
182
|
active?: string | null | undefined;
|
|
197
|
-
phoneNo?: string | null | undefined;
|
|
198
183
|
schedule?: {
|
|
199
184
|
day: number;
|
|
200
185
|
hour: number;
|
|
201
186
|
} | null | undefined;
|
|
187
|
+
msicCode: string;
|
|
188
|
+
sstRegNo: string;
|
|
189
|
+
} | {
|
|
190
|
+
phoneNo?: string | null | undefined;
|
|
191
|
+
email: string;
|
|
202
192
|
queryToken?: string | null | undefined;
|
|
203
|
-
|
|
193
|
+
branchCode?: string | null | undefined;
|
|
204
194
|
type: "marketing";
|
|
195
|
+
name: string;
|
|
196
|
+
_id: string;
|
|
205
197
|
address: {
|
|
206
198
|
coordinates?: number[] | null | undefined;
|
|
207
199
|
line2?: string | null | undefined;
|
|
@@ -211,28 +203,36 @@ export declare const useStore: import("pinia").StoreDefinition<"mf-e-invoice-app
|
|
|
211
203
|
city: string;
|
|
212
204
|
postcode: string;
|
|
213
205
|
};
|
|
214
|
-
email: string;
|
|
215
|
-
_id: string;
|
|
216
|
-
regNo: string;
|
|
217
|
-
sstRegNo: string;
|
|
218
206
|
businessId: string;
|
|
207
|
+
regNo: string;
|
|
219
208
|
tinNo: string;
|
|
220
|
-
|
|
209
|
+
taxRegNo: string;
|
|
210
|
+
active?: string | null | undefined;
|
|
211
|
+
schedule?: {
|
|
212
|
+
day: number;
|
|
213
|
+
hour: number;
|
|
214
|
+
} | null | undefined;
|
|
221
215
|
appid?: string | null | undefined;
|
|
222
216
|
username?: string | null | undefined;
|
|
223
217
|
password?: string | null | undefined;
|
|
224
218
|
templateId?: string | null | undefined;
|
|
225
219
|
isDev?: boolean | null | undefined;
|
|
226
220
|
} | {
|
|
227
|
-
active?: string | null | undefined;
|
|
228
221
|
phoneNo?: string | null | undefined;
|
|
222
|
+
active?: string | null | undefined;
|
|
229
223
|
schedule?: {
|
|
230
224
|
day: number;
|
|
231
225
|
hour: number;
|
|
232
226
|
} | null | undefined;
|
|
233
227
|
queryToken?: string | null | undefined;
|
|
234
|
-
|
|
228
|
+
appid?: string | null | undefined;
|
|
229
|
+
username?: string | null | undefined;
|
|
230
|
+
password?: string | null | undefined;
|
|
231
|
+
templateId?: string | null | undefined;
|
|
232
|
+
isDev?: boolean | null | undefined;
|
|
235
233
|
type: "marketing";
|
|
234
|
+
name: string;
|
|
235
|
+
_id: string;
|
|
236
236
|
address: {
|
|
237
237
|
coordinates?: number[] | null | undefined;
|
|
238
238
|
line2?: string | null | undefined;
|
|
@@ -242,23 +242,28 @@ export declare const useStore: import("pinia").StoreDefinition<"mf-e-invoice-app
|
|
|
242
242
|
city: string;
|
|
243
243
|
postcode: string;
|
|
244
244
|
};
|
|
245
|
-
email: string;
|
|
246
|
-
_id: string;
|
|
247
|
-
regNo: string;
|
|
248
|
-
sstRegNo: string;
|
|
249
245
|
businessId: string;
|
|
246
|
+
regNo: string;
|
|
250
247
|
tinNo: string;
|
|
248
|
+
email: string;
|
|
251
249
|
msicCode: string;
|
|
250
|
+
sstRegNo: string;
|
|
252
251
|
} | {
|
|
253
|
-
active?: string | null | undefined;
|
|
254
252
|
phoneNo?: string | null | undefined;
|
|
253
|
+
active?: string | null | undefined;
|
|
255
254
|
schedule?: {
|
|
256
255
|
day: number;
|
|
257
256
|
hour: number;
|
|
258
257
|
} | null | undefined;
|
|
259
258
|
queryToken?: string | null | undefined;
|
|
260
|
-
|
|
259
|
+
appid?: string | null | undefined;
|
|
260
|
+
username?: string | null | undefined;
|
|
261
|
+
password?: string | null | undefined;
|
|
262
|
+
templateId?: string | null | undefined;
|
|
263
|
+
isDev?: boolean | null | undefined;
|
|
261
264
|
type: "marketing";
|
|
265
|
+
name: string;
|
|
266
|
+
_id: string;
|
|
262
267
|
address: {
|
|
263
268
|
coordinates?: number[] | null | undefined;
|
|
264
269
|
line2?: string | null | undefined;
|
|
@@ -268,14 +273,11 @@ export declare const useStore: import("pinia").StoreDefinition<"mf-e-invoice-app
|
|
|
268
273
|
city: string;
|
|
269
274
|
postcode: string;
|
|
270
275
|
};
|
|
271
|
-
email: string;
|
|
272
|
-
_id: string;
|
|
273
|
-
regNo: string;
|
|
274
|
-
sstRegNo: string;
|
|
275
276
|
businessId: string;
|
|
277
|
+
regNo: string;
|
|
276
278
|
tinNo: string;
|
|
277
|
-
|
|
278
|
-
branchCode
|
|
279
|
+
email: string;
|
|
280
|
+
branchCode?: string | null | undefined;
|
|
279
281
|
taxRegNo: string;
|
|
280
282
|
};
|
|
281
283
|
businessId: string;
|
|
@@ -289,23 +291,16 @@ export declare const useStore: import("pinia").StoreDefinition<"mf-e-invoice-app
|
|
|
289
291
|
};
|
|
290
292
|
type: "marketing";
|
|
291
293
|
profile: {
|
|
292
|
-
queryToken?: string | null | undefined;
|
|
293
294
|
phoneNo?: string | null | undefined;
|
|
294
295
|
active?: string | null | undefined;
|
|
295
296
|
schedule?: {
|
|
296
297
|
day: number;
|
|
297
298
|
hour: number;
|
|
298
299
|
} | null | undefined;
|
|
299
|
-
|
|
300
|
-
username?: string | null | undefined;
|
|
301
|
-
password?: string | null | undefined;
|
|
302
|
-
templateId?: string | null | undefined;
|
|
303
|
-
isDev?: boolean | null | undefined;
|
|
304
|
-
email: string;
|
|
305
|
-
tinNo: string;
|
|
306
|
-
_id: string;
|
|
300
|
+
queryToken?: string | null | undefined;
|
|
307
301
|
type: "marketing";
|
|
308
302
|
name: string;
|
|
303
|
+
_id: string;
|
|
309
304
|
address: {
|
|
310
305
|
coordinates?: number[] | null | undefined;
|
|
311
306
|
line2?: string | null | undefined;
|
|
@@ -317,14 +312,18 @@ export declare const useStore: import("pinia").StoreDefinition<"mf-e-invoice-app
|
|
|
317
312
|
};
|
|
318
313
|
businessId: string;
|
|
319
314
|
regNo: string;
|
|
320
|
-
|
|
315
|
+
tinNo: string;
|
|
321
316
|
email: string;
|
|
322
|
-
|
|
317
|
+
msicCode: string;
|
|
318
|
+
sstRegNo: string;
|
|
319
|
+
} | {
|
|
323
320
|
phoneNo?: string | null | undefined;
|
|
324
|
-
|
|
325
|
-
|
|
321
|
+
email?: string | null | undefined;
|
|
322
|
+
queryToken?: string | null | undefined;
|
|
323
|
+
branchCode?: string | null | undefined;
|
|
326
324
|
type: "marketing";
|
|
327
325
|
name: string;
|
|
326
|
+
_id: string;
|
|
328
327
|
address: {
|
|
329
328
|
coordinates?: number[] | null | undefined;
|
|
330
329
|
line2?: string | null | undefined;
|
|
@@ -334,27 +333,26 @@ export declare const useStore: import("pinia").StoreDefinition<"mf-e-invoice-app
|
|
|
334
333
|
city: string;
|
|
335
334
|
postcode: string;
|
|
336
335
|
};
|
|
337
|
-
branchCode: string;
|
|
338
336
|
businessId: string;
|
|
339
337
|
regNo: string;
|
|
338
|
+
tinNo: string;
|
|
339
|
+
taxRegNo: string;
|
|
340
|
+
} | {
|
|
341
|
+
phoneNo?: string | null | undefined;
|
|
340
342
|
active?: string | null | undefined;
|
|
341
343
|
schedule?: {
|
|
342
344
|
day: number;
|
|
343
345
|
hour: number;
|
|
344
346
|
} | null | undefined;
|
|
347
|
+
queryToken?: string | null | undefined;
|
|
345
348
|
appid?: string | null | undefined;
|
|
346
349
|
username?: string | null | undefined;
|
|
347
350
|
password?: string | null | undefined;
|
|
348
351
|
templateId?: string | null | undefined;
|
|
349
352
|
isDev?: boolean | null | undefined;
|
|
350
|
-
} | {
|
|
351
|
-
email: string;
|
|
352
|
-
queryToken?: string | null | undefined;
|
|
353
|
-
phoneNo?: string | null | undefined;
|
|
354
|
-
tinNo: string;
|
|
355
|
-
_id: string;
|
|
356
353
|
type: "marketing";
|
|
357
354
|
name: string;
|
|
355
|
+
_id: string;
|
|
358
356
|
address: {
|
|
359
357
|
coordinates?: number[] | null | undefined;
|
|
360
358
|
line2?: string | null | undefined;
|
|
@@ -364,24 +362,21 @@ export declare const useStore: import("pinia").StoreDefinition<"mf-e-invoice-app
|
|
|
364
362
|
city: string;
|
|
365
363
|
postcode: string;
|
|
366
364
|
};
|
|
367
|
-
branchCode: string;
|
|
368
365
|
businessId: string;
|
|
369
366
|
regNo: string;
|
|
367
|
+
tinNo: string;
|
|
368
|
+
email: string;
|
|
369
|
+
} | {
|
|
370
|
+
phoneNo?: string | null | undefined;
|
|
370
371
|
active?: string | null | undefined;
|
|
371
372
|
schedule?: {
|
|
372
373
|
day: number;
|
|
373
374
|
hour: number;
|
|
374
375
|
} | null | undefined;
|
|
375
|
-
sstRegNo: string;
|
|
376
|
-
msicCode: string;
|
|
377
|
-
} | {
|
|
378
|
-
email?: string | null | undefined;
|
|
379
376
|
queryToken?: string | null | undefined;
|
|
380
|
-
phoneNo?: string | null | undefined;
|
|
381
|
-
tinNo: string;
|
|
382
|
-
_id: string;
|
|
383
377
|
type: "marketing";
|
|
384
378
|
name: string;
|
|
379
|
+
_id: string;
|
|
385
380
|
address: {
|
|
386
381
|
coordinates?: number[] | null | undefined;
|
|
387
382
|
line2?: string | null | undefined;
|
|
@@ -391,28 +386,25 @@ export declare const useStore: import("pinia").StoreDefinition<"mf-e-invoice-app
|
|
|
391
386
|
city: string;
|
|
392
387
|
postcode: string;
|
|
393
388
|
};
|
|
394
|
-
branchCode: string;
|
|
395
389
|
businessId: string;
|
|
396
390
|
regNo: string;
|
|
391
|
+
tinNo: string;
|
|
392
|
+
email: string;
|
|
393
|
+
msicCode: string;
|
|
394
|
+
sstRegNo: string;
|
|
395
|
+
branchCode?: string | null | undefined;
|
|
397
396
|
taxRegNo: string;
|
|
398
397
|
} | {
|
|
399
|
-
queryToken?: string | null | undefined;
|
|
400
398
|
phoneNo?: string | null | undefined;
|
|
401
399
|
active?: string | null | undefined;
|
|
402
400
|
schedule?: {
|
|
403
401
|
day: number;
|
|
404
402
|
hour: number;
|
|
405
403
|
} | null | undefined;
|
|
406
|
-
|
|
407
|
-
username?: string | null | undefined;
|
|
408
|
-
password?: string | null | undefined;
|
|
409
|
-
templateId?: string | null | undefined;
|
|
410
|
-
isDev?: boolean | null | undefined;
|
|
411
|
-
email: string;
|
|
412
|
-
tinNo: string;
|
|
413
|
-
_id: string;
|
|
404
|
+
queryToken?: string | null | undefined;
|
|
414
405
|
type: "marketing";
|
|
415
406
|
name: string;
|
|
407
|
+
_id: string;
|
|
416
408
|
address: {
|
|
417
409
|
coordinates?: number[] | null | undefined;
|
|
418
410
|
line2?: string | null | undefined;
|
|
@@ -424,26 +416,23 @@ export declare const useStore: import("pinia").StoreDefinition<"mf-e-invoice-app
|
|
|
424
416
|
};
|
|
425
417
|
businessId: string;
|
|
426
418
|
regNo: string;
|
|
427
|
-
|
|
419
|
+
tinNo: string;
|
|
420
|
+
email: string;
|
|
428
421
|
msicCode: string;
|
|
429
|
-
|
|
430
|
-
queryToken?: string | null | undefined;
|
|
431
|
-
phoneNo?: string | null | undefined;
|
|
432
|
-
active?: string | null | undefined;
|
|
433
|
-
schedule?: {
|
|
434
|
-
day: number;
|
|
435
|
-
hour: number;
|
|
436
|
-
} | null | undefined;
|
|
422
|
+
sstRegNo: string;
|
|
437
423
|
appid?: string | null | undefined;
|
|
438
424
|
username?: string | null | undefined;
|
|
439
425
|
password?: string | null | undefined;
|
|
440
426
|
templateId?: string | null | undefined;
|
|
441
427
|
isDev?: boolean | null | undefined;
|
|
428
|
+
} | {
|
|
429
|
+
phoneNo?: string | null | undefined;
|
|
442
430
|
email: string;
|
|
443
|
-
|
|
444
|
-
|
|
431
|
+
queryToken?: string | null | undefined;
|
|
432
|
+
branchCode?: string | null | undefined;
|
|
445
433
|
type: "marketing";
|
|
446
434
|
name: string;
|
|
435
|
+
_id: string;
|
|
447
436
|
address: {
|
|
448
437
|
coordinates?: number[] | null | undefined;
|
|
449
438
|
line2?: string | null | undefined;
|
|
@@ -455,18 +444,23 @@ export declare const useStore: import("pinia").StoreDefinition<"mf-e-invoice-app
|
|
|
455
444
|
};
|
|
456
445
|
businessId: string;
|
|
457
446
|
regNo: string;
|
|
458
|
-
|
|
447
|
+
tinNo: string;
|
|
459
448
|
taxRegNo: string;
|
|
460
|
-
} | {
|
|
461
449
|
active?: string | null | undefined;
|
|
462
|
-
phoneNo?: string | null | undefined;
|
|
463
450
|
schedule?: {
|
|
464
451
|
day: number;
|
|
465
452
|
hour: number;
|
|
466
453
|
} | null | undefined;
|
|
454
|
+
msicCode: string;
|
|
455
|
+
sstRegNo: string;
|
|
456
|
+
} | {
|
|
457
|
+
phoneNo?: string | null | undefined;
|
|
458
|
+
email: string;
|
|
467
459
|
queryToken?: string | null | undefined;
|
|
468
|
-
|
|
460
|
+
branchCode?: string | null | undefined;
|
|
469
461
|
type: "marketing";
|
|
462
|
+
name: string;
|
|
463
|
+
_id: string;
|
|
470
464
|
address: {
|
|
471
465
|
coordinates?: number[] | null | undefined;
|
|
472
466
|
line2?: string | null | undefined;
|
|
@@ -476,28 +470,36 @@ export declare const useStore: import("pinia").StoreDefinition<"mf-e-invoice-app
|
|
|
476
470
|
city: string;
|
|
477
471
|
postcode: string;
|
|
478
472
|
};
|
|
479
|
-
email: string;
|
|
480
|
-
_id: string;
|
|
481
|
-
regNo: string;
|
|
482
|
-
sstRegNo: string;
|
|
483
473
|
businessId: string;
|
|
474
|
+
regNo: string;
|
|
484
475
|
tinNo: string;
|
|
485
|
-
|
|
476
|
+
taxRegNo: string;
|
|
477
|
+
active?: string | null | undefined;
|
|
478
|
+
schedule?: {
|
|
479
|
+
day: number;
|
|
480
|
+
hour: number;
|
|
481
|
+
} | null | undefined;
|
|
486
482
|
appid?: string | null | undefined;
|
|
487
483
|
username?: string | null | undefined;
|
|
488
484
|
password?: string | null | undefined;
|
|
489
485
|
templateId?: string | null | undefined;
|
|
490
486
|
isDev?: boolean | null | undefined;
|
|
491
487
|
} | {
|
|
492
|
-
active?: string | null | undefined;
|
|
493
488
|
phoneNo?: string | null | undefined;
|
|
489
|
+
active?: string | null | undefined;
|
|
494
490
|
schedule?: {
|
|
495
491
|
day: number;
|
|
496
492
|
hour: number;
|
|
497
493
|
} | null | undefined;
|
|
498
494
|
queryToken?: string | null | undefined;
|
|
499
|
-
|
|
495
|
+
appid?: string | null | undefined;
|
|
496
|
+
username?: string | null | undefined;
|
|
497
|
+
password?: string | null | undefined;
|
|
498
|
+
templateId?: string | null | undefined;
|
|
499
|
+
isDev?: boolean | null | undefined;
|
|
500
500
|
type: "marketing";
|
|
501
|
+
name: string;
|
|
502
|
+
_id: string;
|
|
501
503
|
address: {
|
|
502
504
|
coordinates?: number[] | null | undefined;
|
|
503
505
|
line2?: string | null | undefined;
|
|
@@ -507,23 +509,28 @@ export declare const useStore: import("pinia").StoreDefinition<"mf-e-invoice-app
|
|
|
507
509
|
city: string;
|
|
508
510
|
postcode: string;
|
|
509
511
|
};
|
|
510
|
-
email: string;
|
|
511
|
-
_id: string;
|
|
512
|
-
regNo: string;
|
|
513
|
-
sstRegNo: string;
|
|
514
512
|
businessId: string;
|
|
513
|
+
regNo: string;
|
|
515
514
|
tinNo: string;
|
|
515
|
+
email: string;
|
|
516
516
|
msicCode: string;
|
|
517
|
+
sstRegNo: string;
|
|
517
518
|
} | {
|
|
518
|
-
active?: string | null | undefined;
|
|
519
519
|
phoneNo?: string | null | undefined;
|
|
520
|
+
active?: string | null | undefined;
|
|
520
521
|
schedule?: {
|
|
521
522
|
day: number;
|
|
522
523
|
hour: number;
|
|
523
524
|
} | null | undefined;
|
|
524
525
|
queryToken?: string | null | undefined;
|
|
525
|
-
|
|
526
|
+
appid?: string | null | undefined;
|
|
527
|
+
username?: string | null | undefined;
|
|
528
|
+
password?: string | null | undefined;
|
|
529
|
+
templateId?: string | null | undefined;
|
|
530
|
+
isDev?: boolean | null | undefined;
|
|
526
531
|
type: "marketing";
|
|
532
|
+
name: string;
|
|
533
|
+
_id: string;
|
|
527
534
|
address: {
|
|
528
535
|
coordinates?: number[] | null | undefined;
|
|
529
536
|
line2?: string | null | undefined;
|
|
@@ -533,36 +540,33 @@ export declare const useStore: import("pinia").StoreDefinition<"mf-e-invoice-app
|
|
|
533
540
|
city: string;
|
|
534
541
|
postcode: string;
|
|
535
542
|
};
|
|
536
|
-
email: string;
|
|
537
|
-
_id: string;
|
|
538
|
-
regNo: string;
|
|
539
|
-
sstRegNo: string;
|
|
540
543
|
businessId: string;
|
|
544
|
+
regNo: string;
|
|
541
545
|
tinNo: string;
|
|
542
|
-
|
|
543
|
-
branchCode
|
|
546
|
+
email: string;
|
|
547
|
+
branchCode?: string | null | undefined;
|
|
544
548
|
taxRegNo: string;
|
|
545
549
|
};
|
|
546
550
|
businessId: string;
|
|
547
551
|
} | null>;
|
|
548
552
|
settings: import("vue").Ref<{
|
|
553
|
+
_id: string;
|
|
554
|
+
businessId: string;
|
|
549
555
|
items: Record<string, {
|
|
550
556
|
taxExemptionReason?: string | null | undefined;
|
|
551
557
|
}>;
|
|
558
|
+
} | null, {
|
|
552
559
|
_id: string;
|
|
553
560
|
businessId: string;
|
|
554
|
-
} | null, {
|
|
555
561
|
items: Record<string, {
|
|
556
562
|
taxExemptionReason?: string | null | undefined;
|
|
557
563
|
}>;
|
|
564
|
+
} | {
|
|
558
565
|
_id: string;
|
|
559
566
|
businessId: string;
|
|
560
|
-
} | {
|
|
561
567
|
items: Record<string, {
|
|
562
568
|
taxExemptionReason?: string | null | undefined;
|
|
563
569
|
}>;
|
|
564
|
-
_id: string;
|
|
565
|
-
businessId: string;
|
|
566
570
|
} | null>;
|
|
567
571
|
menu: import("vue").Ref<{
|
|
568
572
|
id: string;
|
|
@@ -631,23 +635,16 @@ export declare const useStore: import("pinia").StoreDefinition<"mf-e-invoice-app
|
|
|
631
635
|
};
|
|
632
636
|
type: "marketing";
|
|
633
637
|
profile: {
|
|
634
|
-
queryToken?: string | null | undefined;
|
|
635
638
|
phoneNo?: string | null | undefined;
|
|
636
639
|
active?: string | null | undefined;
|
|
637
640
|
schedule?: {
|
|
638
641
|
day: number;
|
|
639
642
|
hour: number;
|
|
640
643
|
} | null | undefined;
|
|
641
|
-
|
|
642
|
-
username?: string | null | undefined;
|
|
643
|
-
password?: string | null | undefined;
|
|
644
|
-
templateId?: string | null | undefined;
|
|
645
|
-
isDev?: boolean | null | undefined;
|
|
646
|
-
email: string;
|
|
647
|
-
tinNo: string;
|
|
648
|
-
_id: string;
|
|
644
|
+
queryToken?: string | null | undefined;
|
|
649
645
|
type: "marketing";
|
|
650
646
|
name: string;
|
|
647
|
+
_id: string;
|
|
651
648
|
address: {
|
|
652
649
|
coordinates?: number[] | null | undefined;
|
|
653
650
|
line2?: string | null | undefined;
|
|
@@ -659,14 +656,18 @@ export declare const useStore: import("pinia").StoreDefinition<"mf-e-invoice-app
|
|
|
659
656
|
};
|
|
660
657
|
businessId: string;
|
|
661
658
|
regNo: string;
|
|
662
|
-
|
|
659
|
+
tinNo: string;
|
|
663
660
|
email: string;
|
|
664
|
-
|
|
661
|
+
msicCode: string;
|
|
662
|
+
sstRegNo: string;
|
|
663
|
+
} | {
|
|
665
664
|
phoneNo?: string | null | undefined;
|
|
666
|
-
|
|
667
|
-
|
|
665
|
+
email?: string | null | undefined;
|
|
666
|
+
queryToken?: string | null | undefined;
|
|
667
|
+
branchCode?: string | null | undefined;
|
|
668
668
|
type: "marketing";
|
|
669
669
|
name: string;
|
|
670
|
+
_id: string;
|
|
670
671
|
address: {
|
|
671
672
|
coordinates?: number[] | null | undefined;
|
|
672
673
|
line2?: string | null | undefined;
|
|
@@ -676,27 +677,26 @@ export declare const useStore: import("pinia").StoreDefinition<"mf-e-invoice-app
|
|
|
676
677
|
city: string;
|
|
677
678
|
postcode: string;
|
|
678
679
|
};
|
|
679
|
-
branchCode: string;
|
|
680
680
|
businessId: string;
|
|
681
681
|
regNo: string;
|
|
682
|
+
tinNo: string;
|
|
683
|
+
taxRegNo: string;
|
|
684
|
+
} | {
|
|
685
|
+
phoneNo?: string | null | undefined;
|
|
682
686
|
active?: string | null | undefined;
|
|
683
687
|
schedule?: {
|
|
684
688
|
day: number;
|
|
685
689
|
hour: number;
|
|
686
690
|
} | null | undefined;
|
|
691
|
+
queryToken?: string | null | undefined;
|
|
687
692
|
appid?: string | null | undefined;
|
|
688
693
|
username?: string | null | undefined;
|
|
689
694
|
password?: string | null | undefined;
|
|
690
695
|
templateId?: string | null | undefined;
|
|
691
696
|
isDev?: boolean | null | undefined;
|
|
692
|
-
} | {
|
|
693
|
-
email: string;
|
|
694
|
-
queryToken?: string | null | undefined;
|
|
695
|
-
phoneNo?: string | null | undefined;
|
|
696
|
-
tinNo: string;
|
|
697
|
-
_id: string;
|
|
698
697
|
type: "marketing";
|
|
699
698
|
name: string;
|
|
699
|
+
_id: string;
|
|
700
700
|
address: {
|
|
701
701
|
coordinates?: number[] | null | undefined;
|
|
702
702
|
line2?: string | null | undefined;
|
|
@@ -706,24 +706,21 @@ export declare const useStore: import("pinia").StoreDefinition<"mf-e-invoice-app
|
|
|
706
706
|
city: string;
|
|
707
707
|
postcode: string;
|
|
708
708
|
};
|
|
709
|
-
branchCode: string;
|
|
710
709
|
businessId: string;
|
|
711
710
|
regNo: string;
|
|
711
|
+
tinNo: string;
|
|
712
|
+
email: string;
|
|
713
|
+
} | {
|
|
714
|
+
phoneNo?: string | null | undefined;
|
|
712
715
|
active?: string | null | undefined;
|
|
713
716
|
schedule?: {
|
|
714
717
|
day: number;
|
|
715
718
|
hour: number;
|
|
716
719
|
} | null | undefined;
|
|
717
|
-
sstRegNo: string;
|
|
718
|
-
msicCode: string;
|
|
719
|
-
} | {
|
|
720
|
-
email?: string | null | undefined;
|
|
721
720
|
queryToken?: string | null | undefined;
|
|
722
|
-
phoneNo?: string | null | undefined;
|
|
723
|
-
tinNo: string;
|
|
724
|
-
_id: string;
|
|
725
721
|
type: "marketing";
|
|
726
722
|
name: string;
|
|
723
|
+
_id: string;
|
|
727
724
|
address: {
|
|
728
725
|
coordinates?: number[] | null | undefined;
|
|
729
726
|
line2?: string | null | undefined;
|
|
@@ -733,28 +730,25 @@ export declare const useStore: import("pinia").StoreDefinition<"mf-e-invoice-app
|
|
|
733
730
|
city: string;
|
|
734
731
|
postcode: string;
|
|
735
732
|
};
|
|
736
|
-
branchCode: string;
|
|
737
733
|
businessId: string;
|
|
738
734
|
regNo: string;
|
|
735
|
+
tinNo: string;
|
|
736
|
+
email: string;
|
|
737
|
+
msicCode: string;
|
|
738
|
+
sstRegNo: string;
|
|
739
|
+
branchCode?: string | null | undefined;
|
|
739
740
|
taxRegNo: string;
|
|
740
741
|
} | {
|
|
741
|
-
queryToken?: string | null | undefined;
|
|
742
742
|
phoneNo?: string | null | undefined;
|
|
743
743
|
active?: string | null | undefined;
|
|
744
744
|
schedule?: {
|
|
745
745
|
day: number;
|
|
746
746
|
hour: number;
|
|
747
747
|
} | null | undefined;
|
|
748
|
-
|
|
749
|
-
username?: string | null | undefined;
|
|
750
|
-
password?: string | null | undefined;
|
|
751
|
-
templateId?: string | null | undefined;
|
|
752
|
-
isDev?: boolean | null | undefined;
|
|
753
|
-
email: string;
|
|
754
|
-
tinNo: string;
|
|
755
|
-
_id: string;
|
|
748
|
+
queryToken?: string | null | undefined;
|
|
756
749
|
type: "marketing";
|
|
757
750
|
name: string;
|
|
751
|
+
_id: string;
|
|
758
752
|
address: {
|
|
759
753
|
coordinates?: number[] | null | undefined;
|
|
760
754
|
line2?: string | null | undefined;
|
|
@@ -766,26 +760,23 @@ export declare const useStore: import("pinia").StoreDefinition<"mf-e-invoice-app
|
|
|
766
760
|
};
|
|
767
761
|
businessId: string;
|
|
768
762
|
regNo: string;
|
|
769
|
-
|
|
763
|
+
tinNo: string;
|
|
764
|
+
email: string;
|
|
770
765
|
msicCode: string;
|
|
771
|
-
|
|
772
|
-
queryToken?: string | null | undefined;
|
|
773
|
-
phoneNo?: string | null | undefined;
|
|
774
|
-
active?: string | null | undefined;
|
|
775
|
-
schedule?: {
|
|
776
|
-
day: number;
|
|
777
|
-
hour: number;
|
|
778
|
-
} | null | undefined;
|
|
766
|
+
sstRegNo: string;
|
|
779
767
|
appid?: string | null | undefined;
|
|
780
768
|
username?: string | null | undefined;
|
|
781
769
|
password?: string | null | undefined;
|
|
782
770
|
templateId?: string | null | undefined;
|
|
783
771
|
isDev?: boolean | null | undefined;
|
|
772
|
+
} | {
|
|
773
|
+
phoneNo?: string | null | undefined;
|
|
784
774
|
email: string;
|
|
785
|
-
|
|
786
|
-
|
|
775
|
+
queryToken?: string | null | undefined;
|
|
776
|
+
branchCode?: string | null | undefined;
|
|
787
777
|
type: "marketing";
|
|
788
778
|
name: string;
|
|
779
|
+
_id: string;
|
|
789
780
|
address: {
|
|
790
781
|
coordinates?: number[] | null | undefined;
|
|
791
782
|
line2?: string | null | undefined;
|
|
@@ -797,18 +788,23 @@ export declare const useStore: import("pinia").StoreDefinition<"mf-e-invoice-app
|
|
|
797
788
|
};
|
|
798
789
|
businessId: string;
|
|
799
790
|
regNo: string;
|
|
800
|
-
|
|
791
|
+
tinNo: string;
|
|
801
792
|
taxRegNo: string;
|
|
802
|
-
} | {
|
|
803
793
|
active?: string | null | undefined;
|
|
804
|
-
phoneNo?: string | null | undefined;
|
|
805
794
|
schedule?: {
|
|
806
795
|
day: number;
|
|
807
796
|
hour: number;
|
|
808
797
|
} | null | undefined;
|
|
798
|
+
msicCode: string;
|
|
799
|
+
sstRegNo: string;
|
|
800
|
+
} | {
|
|
801
|
+
phoneNo?: string | null | undefined;
|
|
802
|
+
email: string;
|
|
809
803
|
queryToken?: string | null | undefined;
|
|
810
|
-
|
|
804
|
+
branchCode?: string | null | undefined;
|
|
811
805
|
type: "marketing";
|
|
806
|
+
name: string;
|
|
807
|
+
_id: string;
|
|
812
808
|
address: {
|
|
813
809
|
coordinates?: number[] | null | undefined;
|
|
814
810
|
line2?: string | null | undefined;
|
|
@@ -818,28 +814,36 @@ export declare const useStore: import("pinia").StoreDefinition<"mf-e-invoice-app
|
|
|
818
814
|
city: string;
|
|
819
815
|
postcode: string;
|
|
820
816
|
};
|
|
821
|
-
email: string;
|
|
822
|
-
_id: string;
|
|
823
|
-
regNo: string;
|
|
824
|
-
sstRegNo: string;
|
|
825
817
|
businessId: string;
|
|
818
|
+
regNo: string;
|
|
826
819
|
tinNo: string;
|
|
827
|
-
|
|
820
|
+
taxRegNo: string;
|
|
821
|
+
active?: string | null | undefined;
|
|
822
|
+
schedule?: {
|
|
823
|
+
day: number;
|
|
824
|
+
hour: number;
|
|
825
|
+
} | null | undefined;
|
|
828
826
|
appid?: string | null | undefined;
|
|
829
827
|
username?: string | null | undefined;
|
|
830
828
|
password?: string | null | undefined;
|
|
831
829
|
templateId?: string | null | undefined;
|
|
832
830
|
isDev?: boolean | null | undefined;
|
|
833
831
|
} | {
|
|
834
|
-
active?: string | null | undefined;
|
|
835
832
|
phoneNo?: string | null | undefined;
|
|
833
|
+
active?: string | null | undefined;
|
|
836
834
|
schedule?: {
|
|
837
835
|
day: number;
|
|
838
836
|
hour: number;
|
|
839
837
|
} | null | undefined;
|
|
840
838
|
queryToken?: string | null | undefined;
|
|
841
|
-
|
|
839
|
+
appid?: string | null | undefined;
|
|
840
|
+
username?: string | null | undefined;
|
|
841
|
+
password?: string | null | undefined;
|
|
842
|
+
templateId?: string | null | undefined;
|
|
843
|
+
isDev?: boolean | null | undefined;
|
|
842
844
|
type: "marketing";
|
|
845
|
+
name: string;
|
|
846
|
+
_id: string;
|
|
843
847
|
address: {
|
|
844
848
|
coordinates?: number[] | null | undefined;
|
|
845
849
|
line2?: string | null | undefined;
|
|
@@ -849,23 +853,28 @@ export declare const useStore: import("pinia").StoreDefinition<"mf-e-invoice-app
|
|
|
849
853
|
city: string;
|
|
850
854
|
postcode: string;
|
|
851
855
|
};
|
|
852
|
-
email: string;
|
|
853
|
-
_id: string;
|
|
854
|
-
regNo: string;
|
|
855
|
-
sstRegNo: string;
|
|
856
856
|
businessId: string;
|
|
857
|
+
regNo: string;
|
|
857
858
|
tinNo: string;
|
|
859
|
+
email: string;
|
|
858
860
|
msicCode: string;
|
|
861
|
+
sstRegNo: string;
|
|
859
862
|
} | {
|
|
860
|
-
active?: string | null | undefined;
|
|
861
863
|
phoneNo?: string | null | undefined;
|
|
864
|
+
active?: string | null | undefined;
|
|
862
865
|
schedule?: {
|
|
863
866
|
day: number;
|
|
864
867
|
hour: number;
|
|
865
868
|
} | null | undefined;
|
|
866
869
|
queryToken?: string | null | undefined;
|
|
867
|
-
|
|
870
|
+
appid?: string | null | undefined;
|
|
871
|
+
username?: string | null | undefined;
|
|
872
|
+
password?: string | null | undefined;
|
|
873
|
+
templateId?: string | null | undefined;
|
|
874
|
+
isDev?: boolean | null | undefined;
|
|
868
875
|
type: "marketing";
|
|
876
|
+
name: string;
|
|
877
|
+
_id: string;
|
|
869
878
|
address: {
|
|
870
879
|
coordinates?: number[] | null | undefined;
|
|
871
880
|
line2?: string | null | undefined;
|
|
@@ -875,14 +884,11 @@ export declare const useStore: import("pinia").StoreDefinition<"mf-e-invoice-app
|
|
|
875
884
|
city: string;
|
|
876
885
|
postcode: string;
|
|
877
886
|
};
|
|
878
|
-
email: string;
|
|
879
|
-
_id: string;
|
|
880
|
-
regNo: string;
|
|
881
|
-
sstRegNo: string;
|
|
882
887
|
businessId: string;
|
|
888
|
+
regNo: string;
|
|
883
889
|
tinNo: string;
|
|
884
|
-
|
|
885
|
-
branchCode
|
|
890
|
+
email: string;
|
|
891
|
+
branchCode?: string | null | undefined;
|
|
886
892
|
taxRegNo: string;
|
|
887
893
|
};
|
|
888
894
|
businessId: string;
|
|
@@ -896,23 +902,16 @@ export declare const useStore: import("pinia").StoreDefinition<"mf-e-invoice-app
|
|
|
896
902
|
};
|
|
897
903
|
type: "marketing";
|
|
898
904
|
profile: {
|
|
899
|
-
queryToken?: string | null | undefined;
|
|
900
905
|
phoneNo?: string | null | undefined;
|
|
901
906
|
active?: string | null | undefined;
|
|
902
907
|
schedule?: {
|
|
903
908
|
day: number;
|
|
904
909
|
hour: number;
|
|
905
910
|
} | null | undefined;
|
|
906
|
-
|
|
907
|
-
username?: string | null | undefined;
|
|
908
|
-
password?: string | null | undefined;
|
|
909
|
-
templateId?: string | null | undefined;
|
|
910
|
-
isDev?: boolean | null | undefined;
|
|
911
|
-
email: string;
|
|
912
|
-
tinNo: string;
|
|
913
|
-
_id: string;
|
|
911
|
+
queryToken?: string | null | undefined;
|
|
914
912
|
type: "marketing";
|
|
915
913
|
name: string;
|
|
914
|
+
_id: string;
|
|
916
915
|
address: {
|
|
917
916
|
coordinates?: number[] | null | undefined;
|
|
918
917
|
line2?: string | null | undefined;
|
|
@@ -924,14 +923,18 @@ export declare const useStore: import("pinia").StoreDefinition<"mf-e-invoice-app
|
|
|
924
923
|
};
|
|
925
924
|
businessId: string;
|
|
926
925
|
regNo: string;
|
|
927
|
-
|
|
926
|
+
tinNo: string;
|
|
928
927
|
email: string;
|
|
929
|
-
|
|
928
|
+
msicCode: string;
|
|
929
|
+
sstRegNo: string;
|
|
930
|
+
} | {
|
|
930
931
|
phoneNo?: string | null | undefined;
|
|
931
|
-
|
|
932
|
-
|
|
932
|
+
email?: string | null | undefined;
|
|
933
|
+
queryToken?: string | null | undefined;
|
|
934
|
+
branchCode?: string | null | undefined;
|
|
933
935
|
type: "marketing";
|
|
934
936
|
name: string;
|
|
937
|
+
_id: string;
|
|
935
938
|
address: {
|
|
936
939
|
coordinates?: number[] | null | undefined;
|
|
937
940
|
line2?: string | null | undefined;
|
|
@@ -941,27 +944,26 @@ export declare const useStore: import("pinia").StoreDefinition<"mf-e-invoice-app
|
|
|
941
944
|
city: string;
|
|
942
945
|
postcode: string;
|
|
943
946
|
};
|
|
944
|
-
branchCode: string;
|
|
945
947
|
businessId: string;
|
|
946
948
|
regNo: string;
|
|
949
|
+
tinNo: string;
|
|
950
|
+
taxRegNo: string;
|
|
951
|
+
} | {
|
|
952
|
+
phoneNo?: string | null | undefined;
|
|
947
953
|
active?: string | null | undefined;
|
|
948
954
|
schedule?: {
|
|
949
955
|
day: number;
|
|
950
956
|
hour: number;
|
|
951
957
|
} | null | undefined;
|
|
958
|
+
queryToken?: string | null | undefined;
|
|
952
959
|
appid?: string | null | undefined;
|
|
953
960
|
username?: string | null | undefined;
|
|
954
961
|
password?: string | null | undefined;
|
|
955
962
|
templateId?: string | null | undefined;
|
|
956
963
|
isDev?: boolean | null | undefined;
|
|
957
|
-
} | {
|
|
958
|
-
email: string;
|
|
959
|
-
queryToken?: string | null | undefined;
|
|
960
|
-
phoneNo?: string | null | undefined;
|
|
961
|
-
tinNo: string;
|
|
962
|
-
_id: string;
|
|
963
964
|
type: "marketing";
|
|
964
965
|
name: string;
|
|
966
|
+
_id: string;
|
|
965
967
|
address: {
|
|
966
968
|
coordinates?: number[] | null | undefined;
|
|
967
969
|
line2?: string | null | undefined;
|
|
@@ -971,24 +973,21 @@ export declare const useStore: import("pinia").StoreDefinition<"mf-e-invoice-app
|
|
|
971
973
|
city: string;
|
|
972
974
|
postcode: string;
|
|
973
975
|
};
|
|
974
|
-
branchCode: string;
|
|
975
976
|
businessId: string;
|
|
976
977
|
regNo: string;
|
|
978
|
+
tinNo: string;
|
|
979
|
+
email: string;
|
|
980
|
+
} | {
|
|
981
|
+
phoneNo?: string | null | undefined;
|
|
977
982
|
active?: string | null | undefined;
|
|
978
983
|
schedule?: {
|
|
979
984
|
day: number;
|
|
980
985
|
hour: number;
|
|
981
986
|
} | null | undefined;
|
|
982
|
-
sstRegNo: string;
|
|
983
|
-
msicCode: string;
|
|
984
|
-
} | {
|
|
985
|
-
email?: string | null | undefined;
|
|
986
987
|
queryToken?: string | null | undefined;
|
|
987
|
-
phoneNo?: string | null | undefined;
|
|
988
|
-
tinNo: string;
|
|
989
|
-
_id: string;
|
|
990
988
|
type: "marketing";
|
|
991
989
|
name: string;
|
|
990
|
+
_id: string;
|
|
992
991
|
address: {
|
|
993
992
|
coordinates?: number[] | null | undefined;
|
|
994
993
|
line2?: string | null | undefined;
|
|
@@ -998,28 +997,25 @@ export declare const useStore: import("pinia").StoreDefinition<"mf-e-invoice-app
|
|
|
998
997
|
city: string;
|
|
999
998
|
postcode: string;
|
|
1000
999
|
};
|
|
1001
|
-
branchCode: string;
|
|
1002
1000
|
businessId: string;
|
|
1003
1001
|
regNo: string;
|
|
1002
|
+
tinNo: string;
|
|
1003
|
+
email: string;
|
|
1004
|
+
msicCode: string;
|
|
1005
|
+
sstRegNo: string;
|
|
1006
|
+
branchCode?: string | null | undefined;
|
|
1004
1007
|
taxRegNo: string;
|
|
1005
1008
|
} | {
|
|
1006
|
-
queryToken?: string | null | undefined;
|
|
1007
1009
|
phoneNo?: string | null | undefined;
|
|
1008
1010
|
active?: string | null | undefined;
|
|
1009
1011
|
schedule?: {
|
|
1010
1012
|
day: number;
|
|
1011
1013
|
hour: number;
|
|
1012
1014
|
} | null | undefined;
|
|
1013
|
-
|
|
1014
|
-
username?: string | null | undefined;
|
|
1015
|
-
password?: string | null | undefined;
|
|
1016
|
-
templateId?: string | null | undefined;
|
|
1017
|
-
isDev?: boolean | null | undefined;
|
|
1018
|
-
email: string;
|
|
1019
|
-
tinNo: string;
|
|
1020
|
-
_id: string;
|
|
1015
|
+
queryToken?: string | null | undefined;
|
|
1021
1016
|
type: "marketing";
|
|
1022
1017
|
name: string;
|
|
1018
|
+
_id: string;
|
|
1023
1019
|
address: {
|
|
1024
1020
|
coordinates?: number[] | null | undefined;
|
|
1025
1021
|
line2?: string | null | undefined;
|
|
@@ -1031,26 +1027,23 @@ export declare const useStore: import("pinia").StoreDefinition<"mf-e-invoice-app
|
|
|
1031
1027
|
};
|
|
1032
1028
|
businessId: string;
|
|
1033
1029
|
regNo: string;
|
|
1034
|
-
|
|
1030
|
+
tinNo: string;
|
|
1031
|
+
email: string;
|
|
1035
1032
|
msicCode: string;
|
|
1036
|
-
|
|
1037
|
-
queryToken?: string | null | undefined;
|
|
1038
|
-
phoneNo?: string | null | undefined;
|
|
1039
|
-
active?: string | null | undefined;
|
|
1040
|
-
schedule?: {
|
|
1041
|
-
day: number;
|
|
1042
|
-
hour: number;
|
|
1043
|
-
} | null | undefined;
|
|
1033
|
+
sstRegNo: string;
|
|
1044
1034
|
appid?: string | null | undefined;
|
|
1045
1035
|
username?: string | null | undefined;
|
|
1046
1036
|
password?: string | null | undefined;
|
|
1047
1037
|
templateId?: string | null | undefined;
|
|
1048
1038
|
isDev?: boolean | null | undefined;
|
|
1039
|
+
} | {
|
|
1040
|
+
phoneNo?: string | null | undefined;
|
|
1049
1041
|
email: string;
|
|
1050
|
-
|
|
1051
|
-
|
|
1042
|
+
queryToken?: string | null | undefined;
|
|
1043
|
+
branchCode?: string | null | undefined;
|
|
1052
1044
|
type: "marketing";
|
|
1053
1045
|
name: string;
|
|
1046
|
+
_id: string;
|
|
1054
1047
|
address: {
|
|
1055
1048
|
coordinates?: number[] | null | undefined;
|
|
1056
1049
|
line2?: string | null | undefined;
|
|
@@ -1062,18 +1055,23 @@ export declare const useStore: import("pinia").StoreDefinition<"mf-e-invoice-app
|
|
|
1062
1055
|
};
|
|
1063
1056
|
businessId: string;
|
|
1064
1057
|
regNo: string;
|
|
1065
|
-
|
|
1058
|
+
tinNo: string;
|
|
1066
1059
|
taxRegNo: string;
|
|
1067
|
-
} | {
|
|
1068
1060
|
active?: string | null | undefined;
|
|
1069
|
-
phoneNo?: string | null | undefined;
|
|
1070
1061
|
schedule?: {
|
|
1071
1062
|
day: number;
|
|
1072
1063
|
hour: number;
|
|
1073
1064
|
} | null | undefined;
|
|
1065
|
+
msicCode: string;
|
|
1066
|
+
sstRegNo: string;
|
|
1067
|
+
} | {
|
|
1068
|
+
phoneNo?: string | null | undefined;
|
|
1069
|
+
email: string;
|
|
1074
1070
|
queryToken?: string | null | undefined;
|
|
1075
|
-
|
|
1071
|
+
branchCode?: string | null | undefined;
|
|
1076
1072
|
type: "marketing";
|
|
1073
|
+
name: string;
|
|
1074
|
+
_id: string;
|
|
1077
1075
|
address: {
|
|
1078
1076
|
coordinates?: number[] | null | undefined;
|
|
1079
1077
|
line2?: string | null | undefined;
|
|
@@ -1083,28 +1081,36 @@ export declare const useStore: import("pinia").StoreDefinition<"mf-e-invoice-app
|
|
|
1083
1081
|
city: string;
|
|
1084
1082
|
postcode: string;
|
|
1085
1083
|
};
|
|
1086
|
-
email: string;
|
|
1087
|
-
_id: string;
|
|
1088
|
-
regNo: string;
|
|
1089
|
-
sstRegNo: string;
|
|
1090
1084
|
businessId: string;
|
|
1085
|
+
regNo: string;
|
|
1091
1086
|
tinNo: string;
|
|
1092
|
-
|
|
1087
|
+
taxRegNo: string;
|
|
1088
|
+
active?: string | null | undefined;
|
|
1089
|
+
schedule?: {
|
|
1090
|
+
day: number;
|
|
1091
|
+
hour: number;
|
|
1092
|
+
} | null | undefined;
|
|
1093
1093
|
appid?: string | null | undefined;
|
|
1094
1094
|
username?: string | null | undefined;
|
|
1095
1095
|
password?: string | null | undefined;
|
|
1096
1096
|
templateId?: string | null | undefined;
|
|
1097
1097
|
isDev?: boolean | null | undefined;
|
|
1098
1098
|
} | {
|
|
1099
|
-
active?: string | null | undefined;
|
|
1100
1099
|
phoneNo?: string | null | undefined;
|
|
1100
|
+
active?: string | null | undefined;
|
|
1101
1101
|
schedule?: {
|
|
1102
1102
|
day: number;
|
|
1103
1103
|
hour: number;
|
|
1104
1104
|
} | null | undefined;
|
|
1105
1105
|
queryToken?: string | null | undefined;
|
|
1106
|
-
|
|
1106
|
+
appid?: string | null | undefined;
|
|
1107
|
+
username?: string | null | undefined;
|
|
1108
|
+
password?: string | null | undefined;
|
|
1109
|
+
templateId?: string | null | undefined;
|
|
1110
|
+
isDev?: boolean | null | undefined;
|
|
1107
1111
|
type: "marketing";
|
|
1112
|
+
name: string;
|
|
1113
|
+
_id: string;
|
|
1108
1114
|
address: {
|
|
1109
1115
|
coordinates?: number[] | null | undefined;
|
|
1110
1116
|
line2?: string | null | undefined;
|
|
@@ -1114,23 +1120,28 @@ export declare const useStore: import("pinia").StoreDefinition<"mf-e-invoice-app
|
|
|
1114
1120
|
city: string;
|
|
1115
1121
|
postcode: string;
|
|
1116
1122
|
};
|
|
1117
|
-
email: string;
|
|
1118
|
-
_id: string;
|
|
1119
|
-
regNo: string;
|
|
1120
|
-
sstRegNo: string;
|
|
1121
1123
|
businessId: string;
|
|
1124
|
+
regNo: string;
|
|
1122
1125
|
tinNo: string;
|
|
1126
|
+
email: string;
|
|
1123
1127
|
msicCode: string;
|
|
1128
|
+
sstRegNo: string;
|
|
1124
1129
|
} | {
|
|
1125
|
-
active?: string | null | undefined;
|
|
1126
1130
|
phoneNo?: string | null | undefined;
|
|
1131
|
+
active?: string | null | undefined;
|
|
1127
1132
|
schedule?: {
|
|
1128
1133
|
day: number;
|
|
1129
1134
|
hour: number;
|
|
1130
1135
|
} | null | undefined;
|
|
1131
1136
|
queryToken?: string | null | undefined;
|
|
1132
|
-
|
|
1137
|
+
appid?: string | null | undefined;
|
|
1138
|
+
username?: string | null | undefined;
|
|
1139
|
+
password?: string | null | undefined;
|
|
1140
|
+
templateId?: string | null | undefined;
|
|
1141
|
+
isDev?: boolean | null | undefined;
|
|
1133
1142
|
type: "marketing";
|
|
1143
|
+
name: string;
|
|
1144
|
+
_id: string;
|
|
1134
1145
|
address: {
|
|
1135
1146
|
coordinates?: number[] | null | undefined;
|
|
1136
1147
|
line2?: string | null | undefined;
|
|
@@ -1140,36 +1151,33 @@ export declare const useStore: import("pinia").StoreDefinition<"mf-e-invoice-app
|
|
|
1140
1151
|
city: string;
|
|
1141
1152
|
postcode: string;
|
|
1142
1153
|
};
|
|
1143
|
-
email: string;
|
|
1144
|
-
_id: string;
|
|
1145
|
-
regNo: string;
|
|
1146
|
-
sstRegNo: string;
|
|
1147
1154
|
businessId: string;
|
|
1155
|
+
regNo: string;
|
|
1148
1156
|
tinNo: string;
|
|
1149
|
-
|
|
1150
|
-
branchCode
|
|
1157
|
+
email: string;
|
|
1158
|
+
branchCode?: string | null | undefined;
|
|
1151
1159
|
taxRegNo: string;
|
|
1152
1160
|
};
|
|
1153
1161
|
businessId: string;
|
|
1154
1162
|
} | null>;
|
|
1155
1163
|
settings: import("vue").Ref<{
|
|
1164
|
+
_id: string;
|
|
1165
|
+
businessId: string;
|
|
1156
1166
|
items: Record<string, {
|
|
1157
1167
|
taxExemptionReason?: string | null | undefined;
|
|
1158
1168
|
}>;
|
|
1169
|
+
} | null, {
|
|
1159
1170
|
_id: string;
|
|
1160
1171
|
businessId: string;
|
|
1161
|
-
} | null, {
|
|
1162
1172
|
items: Record<string, {
|
|
1163
1173
|
taxExemptionReason?: string | null | undefined;
|
|
1164
1174
|
}>;
|
|
1175
|
+
} | {
|
|
1165
1176
|
_id: string;
|
|
1166
1177
|
businessId: string;
|
|
1167
|
-
} | {
|
|
1168
1178
|
items: Record<string, {
|
|
1169
1179
|
taxExemptionReason?: string | null | undefined;
|
|
1170
1180
|
}>;
|
|
1171
|
-
_id: string;
|
|
1172
|
-
businessId: string;
|
|
1173
1181
|
} | null>;
|
|
1174
1182
|
menu: import("vue").Ref<{
|
|
1175
1183
|
id: string;
|
|
@@ -1238,23 +1246,16 @@ export declare const useStore: import("pinia").StoreDefinition<"mf-e-invoice-app
|
|
|
1238
1246
|
};
|
|
1239
1247
|
type: "marketing";
|
|
1240
1248
|
profile: {
|
|
1241
|
-
queryToken?: string | null | undefined;
|
|
1242
1249
|
phoneNo?: string | null | undefined;
|
|
1243
1250
|
active?: string | null | undefined;
|
|
1244
1251
|
schedule?: {
|
|
1245
1252
|
day: number;
|
|
1246
1253
|
hour: number;
|
|
1247
1254
|
} | null | undefined;
|
|
1248
|
-
|
|
1249
|
-
username?: string | null | undefined;
|
|
1250
|
-
password?: string | null | undefined;
|
|
1251
|
-
templateId?: string | null | undefined;
|
|
1252
|
-
isDev?: boolean | null | undefined;
|
|
1253
|
-
email: string;
|
|
1254
|
-
tinNo: string;
|
|
1255
|
-
_id: string;
|
|
1255
|
+
queryToken?: string | null | undefined;
|
|
1256
1256
|
type: "marketing";
|
|
1257
1257
|
name: string;
|
|
1258
|
+
_id: string;
|
|
1258
1259
|
address: {
|
|
1259
1260
|
coordinates?: number[] | null | undefined;
|
|
1260
1261
|
line2?: string | null | undefined;
|
|
@@ -1266,14 +1267,18 @@ export declare const useStore: import("pinia").StoreDefinition<"mf-e-invoice-app
|
|
|
1266
1267
|
};
|
|
1267
1268
|
businessId: string;
|
|
1268
1269
|
regNo: string;
|
|
1269
|
-
|
|
1270
|
+
tinNo: string;
|
|
1270
1271
|
email: string;
|
|
1271
|
-
|
|
1272
|
+
msicCode: string;
|
|
1273
|
+
sstRegNo: string;
|
|
1274
|
+
} | {
|
|
1272
1275
|
phoneNo?: string | null | undefined;
|
|
1273
|
-
|
|
1274
|
-
|
|
1276
|
+
email?: string | null | undefined;
|
|
1277
|
+
queryToken?: string | null | undefined;
|
|
1278
|
+
branchCode?: string | null | undefined;
|
|
1275
1279
|
type: "marketing";
|
|
1276
1280
|
name: string;
|
|
1281
|
+
_id: string;
|
|
1277
1282
|
address: {
|
|
1278
1283
|
coordinates?: number[] | null | undefined;
|
|
1279
1284
|
line2?: string | null | undefined;
|
|
@@ -1283,27 +1288,26 @@ export declare const useStore: import("pinia").StoreDefinition<"mf-e-invoice-app
|
|
|
1283
1288
|
city: string;
|
|
1284
1289
|
postcode: string;
|
|
1285
1290
|
};
|
|
1286
|
-
branchCode: string;
|
|
1287
1291
|
businessId: string;
|
|
1288
1292
|
regNo: string;
|
|
1293
|
+
tinNo: string;
|
|
1294
|
+
taxRegNo: string;
|
|
1295
|
+
} | {
|
|
1296
|
+
phoneNo?: string | null | undefined;
|
|
1289
1297
|
active?: string | null | undefined;
|
|
1290
1298
|
schedule?: {
|
|
1291
1299
|
day: number;
|
|
1292
1300
|
hour: number;
|
|
1293
1301
|
} | null | undefined;
|
|
1302
|
+
queryToken?: string | null | undefined;
|
|
1294
1303
|
appid?: string | null | undefined;
|
|
1295
1304
|
username?: string | null | undefined;
|
|
1296
1305
|
password?: string | null | undefined;
|
|
1297
1306
|
templateId?: string | null | undefined;
|
|
1298
1307
|
isDev?: boolean | null | undefined;
|
|
1299
|
-
} | {
|
|
1300
|
-
email: string;
|
|
1301
|
-
queryToken?: string | null | undefined;
|
|
1302
|
-
phoneNo?: string | null | undefined;
|
|
1303
|
-
tinNo: string;
|
|
1304
|
-
_id: string;
|
|
1305
1308
|
type: "marketing";
|
|
1306
1309
|
name: string;
|
|
1310
|
+
_id: string;
|
|
1307
1311
|
address: {
|
|
1308
1312
|
coordinates?: number[] | null | undefined;
|
|
1309
1313
|
line2?: string | null | undefined;
|
|
@@ -1313,24 +1317,21 @@ export declare const useStore: import("pinia").StoreDefinition<"mf-e-invoice-app
|
|
|
1313
1317
|
city: string;
|
|
1314
1318
|
postcode: string;
|
|
1315
1319
|
};
|
|
1316
|
-
branchCode: string;
|
|
1317
1320
|
businessId: string;
|
|
1318
1321
|
regNo: string;
|
|
1322
|
+
tinNo: string;
|
|
1323
|
+
email: string;
|
|
1324
|
+
} | {
|
|
1325
|
+
phoneNo?: string | null | undefined;
|
|
1319
1326
|
active?: string | null | undefined;
|
|
1320
1327
|
schedule?: {
|
|
1321
1328
|
day: number;
|
|
1322
1329
|
hour: number;
|
|
1323
1330
|
} | null | undefined;
|
|
1324
|
-
sstRegNo: string;
|
|
1325
|
-
msicCode: string;
|
|
1326
|
-
} | {
|
|
1327
|
-
email?: string | null | undefined;
|
|
1328
1331
|
queryToken?: string | null | undefined;
|
|
1329
|
-
phoneNo?: string | null | undefined;
|
|
1330
|
-
tinNo: string;
|
|
1331
|
-
_id: string;
|
|
1332
1332
|
type: "marketing";
|
|
1333
1333
|
name: string;
|
|
1334
|
+
_id: string;
|
|
1334
1335
|
address: {
|
|
1335
1336
|
coordinates?: number[] | null | undefined;
|
|
1336
1337
|
line2?: string | null | undefined;
|
|
@@ -1340,28 +1341,25 @@ export declare const useStore: import("pinia").StoreDefinition<"mf-e-invoice-app
|
|
|
1340
1341
|
city: string;
|
|
1341
1342
|
postcode: string;
|
|
1342
1343
|
};
|
|
1343
|
-
branchCode: string;
|
|
1344
1344
|
businessId: string;
|
|
1345
1345
|
regNo: string;
|
|
1346
|
+
tinNo: string;
|
|
1347
|
+
email: string;
|
|
1348
|
+
msicCode: string;
|
|
1349
|
+
sstRegNo: string;
|
|
1350
|
+
branchCode?: string | null | undefined;
|
|
1346
1351
|
taxRegNo: string;
|
|
1347
1352
|
} | {
|
|
1348
|
-
queryToken?: string | null | undefined;
|
|
1349
1353
|
phoneNo?: string | null | undefined;
|
|
1350
1354
|
active?: string | null | undefined;
|
|
1351
1355
|
schedule?: {
|
|
1352
1356
|
day: number;
|
|
1353
1357
|
hour: number;
|
|
1354
1358
|
} | null | undefined;
|
|
1355
|
-
|
|
1356
|
-
username?: string | null | undefined;
|
|
1357
|
-
password?: string | null | undefined;
|
|
1358
|
-
templateId?: string | null | undefined;
|
|
1359
|
-
isDev?: boolean | null | undefined;
|
|
1360
|
-
email: string;
|
|
1361
|
-
tinNo: string;
|
|
1362
|
-
_id: string;
|
|
1359
|
+
queryToken?: string | null | undefined;
|
|
1363
1360
|
type: "marketing";
|
|
1364
1361
|
name: string;
|
|
1362
|
+
_id: string;
|
|
1365
1363
|
address: {
|
|
1366
1364
|
coordinates?: number[] | null | undefined;
|
|
1367
1365
|
line2?: string | null | undefined;
|
|
@@ -1373,26 +1371,23 @@ export declare const useStore: import("pinia").StoreDefinition<"mf-e-invoice-app
|
|
|
1373
1371
|
};
|
|
1374
1372
|
businessId: string;
|
|
1375
1373
|
regNo: string;
|
|
1376
|
-
|
|
1374
|
+
tinNo: string;
|
|
1375
|
+
email: string;
|
|
1377
1376
|
msicCode: string;
|
|
1378
|
-
|
|
1379
|
-
queryToken?: string | null | undefined;
|
|
1380
|
-
phoneNo?: string | null | undefined;
|
|
1381
|
-
active?: string | null | undefined;
|
|
1382
|
-
schedule?: {
|
|
1383
|
-
day: number;
|
|
1384
|
-
hour: number;
|
|
1385
|
-
} | null | undefined;
|
|
1377
|
+
sstRegNo: string;
|
|
1386
1378
|
appid?: string | null | undefined;
|
|
1387
1379
|
username?: string | null | undefined;
|
|
1388
1380
|
password?: string | null | undefined;
|
|
1389
1381
|
templateId?: string | null | undefined;
|
|
1390
1382
|
isDev?: boolean | null | undefined;
|
|
1383
|
+
} | {
|
|
1384
|
+
phoneNo?: string | null | undefined;
|
|
1391
1385
|
email: string;
|
|
1392
|
-
|
|
1393
|
-
|
|
1386
|
+
queryToken?: string | null | undefined;
|
|
1387
|
+
branchCode?: string | null | undefined;
|
|
1394
1388
|
type: "marketing";
|
|
1395
1389
|
name: string;
|
|
1390
|
+
_id: string;
|
|
1396
1391
|
address: {
|
|
1397
1392
|
coordinates?: number[] | null | undefined;
|
|
1398
1393
|
line2?: string | null | undefined;
|
|
@@ -1404,18 +1399,23 @@ export declare const useStore: import("pinia").StoreDefinition<"mf-e-invoice-app
|
|
|
1404
1399
|
};
|
|
1405
1400
|
businessId: string;
|
|
1406
1401
|
regNo: string;
|
|
1407
|
-
|
|
1402
|
+
tinNo: string;
|
|
1408
1403
|
taxRegNo: string;
|
|
1409
|
-
} | {
|
|
1410
1404
|
active?: string | null | undefined;
|
|
1411
|
-
phoneNo?: string | null | undefined;
|
|
1412
1405
|
schedule?: {
|
|
1413
1406
|
day: number;
|
|
1414
1407
|
hour: number;
|
|
1415
1408
|
} | null | undefined;
|
|
1409
|
+
msicCode: string;
|
|
1410
|
+
sstRegNo: string;
|
|
1411
|
+
} | {
|
|
1412
|
+
phoneNo?: string | null | undefined;
|
|
1413
|
+
email: string;
|
|
1416
1414
|
queryToken?: string | null | undefined;
|
|
1417
|
-
|
|
1415
|
+
branchCode?: string | null | undefined;
|
|
1418
1416
|
type: "marketing";
|
|
1417
|
+
name: string;
|
|
1418
|
+
_id: string;
|
|
1419
1419
|
address: {
|
|
1420
1420
|
coordinates?: number[] | null | undefined;
|
|
1421
1421
|
line2?: string | null | undefined;
|
|
@@ -1425,28 +1425,36 @@ export declare const useStore: import("pinia").StoreDefinition<"mf-e-invoice-app
|
|
|
1425
1425
|
city: string;
|
|
1426
1426
|
postcode: string;
|
|
1427
1427
|
};
|
|
1428
|
-
email: string;
|
|
1429
|
-
_id: string;
|
|
1430
|
-
regNo: string;
|
|
1431
|
-
sstRegNo: string;
|
|
1432
1428
|
businessId: string;
|
|
1429
|
+
regNo: string;
|
|
1433
1430
|
tinNo: string;
|
|
1434
|
-
|
|
1431
|
+
taxRegNo: string;
|
|
1432
|
+
active?: string | null | undefined;
|
|
1433
|
+
schedule?: {
|
|
1434
|
+
day: number;
|
|
1435
|
+
hour: number;
|
|
1436
|
+
} | null | undefined;
|
|
1435
1437
|
appid?: string | null | undefined;
|
|
1436
1438
|
username?: string | null | undefined;
|
|
1437
1439
|
password?: string | null | undefined;
|
|
1438
1440
|
templateId?: string | null | undefined;
|
|
1439
1441
|
isDev?: boolean | null | undefined;
|
|
1440
1442
|
} | {
|
|
1441
|
-
active?: string | null | undefined;
|
|
1442
1443
|
phoneNo?: string | null | undefined;
|
|
1444
|
+
active?: string | null | undefined;
|
|
1443
1445
|
schedule?: {
|
|
1444
1446
|
day: number;
|
|
1445
1447
|
hour: number;
|
|
1446
1448
|
} | null | undefined;
|
|
1447
1449
|
queryToken?: string | null | undefined;
|
|
1448
|
-
|
|
1450
|
+
appid?: string | null | undefined;
|
|
1451
|
+
username?: string | null | undefined;
|
|
1452
|
+
password?: string | null | undefined;
|
|
1453
|
+
templateId?: string | null | undefined;
|
|
1454
|
+
isDev?: boolean | null | undefined;
|
|
1449
1455
|
type: "marketing";
|
|
1456
|
+
name: string;
|
|
1457
|
+
_id: string;
|
|
1450
1458
|
address: {
|
|
1451
1459
|
coordinates?: number[] | null | undefined;
|
|
1452
1460
|
line2?: string | null | undefined;
|
|
@@ -1456,23 +1464,28 @@ export declare const useStore: import("pinia").StoreDefinition<"mf-e-invoice-app
|
|
|
1456
1464
|
city: string;
|
|
1457
1465
|
postcode: string;
|
|
1458
1466
|
};
|
|
1459
|
-
email: string;
|
|
1460
|
-
_id: string;
|
|
1461
|
-
regNo: string;
|
|
1462
|
-
sstRegNo: string;
|
|
1463
1467
|
businessId: string;
|
|
1468
|
+
regNo: string;
|
|
1464
1469
|
tinNo: string;
|
|
1470
|
+
email: string;
|
|
1465
1471
|
msicCode: string;
|
|
1472
|
+
sstRegNo: string;
|
|
1466
1473
|
} | {
|
|
1467
|
-
active?: string | null | undefined;
|
|
1468
1474
|
phoneNo?: string | null | undefined;
|
|
1475
|
+
active?: string | null | undefined;
|
|
1469
1476
|
schedule?: {
|
|
1470
1477
|
day: number;
|
|
1471
1478
|
hour: number;
|
|
1472
1479
|
} | null | undefined;
|
|
1473
1480
|
queryToken?: string | null | undefined;
|
|
1474
|
-
|
|
1481
|
+
appid?: string | null | undefined;
|
|
1482
|
+
username?: string | null | undefined;
|
|
1483
|
+
password?: string | null | undefined;
|
|
1484
|
+
templateId?: string | null | undefined;
|
|
1485
|
+
isDev?: boolean | null | undefined;
|
|
1475
1486
|
type: "marketing";
|
|
1487
|
+
name: string;
|
|
1488
|
+
_id: string;
|
|
1476
1489
|
address: {
|
|
1477
1490
|
coordinates?: number[] | null | undefined;
|
|
1478
1491
|
line2?: string | null | undefined;
|
|
@@ -1482,14 +1495,11 @@ export declare const useStore: import("pinia").StoreDefinition<"mf-e-invoice-app
|
|
|
1482
1495
|
city: string;
|
|
1483
1496
|
postcode: string;
|
|
1484
1497
|
};
|
|
1485
|
-
email: string;
|
|
1486
|
-
_id: string;
|
|
1487
|
-
regNo: string;
|
|
1488
|
-
sstRegNo: string;
|
|
1489
1498
|
businessId: string;
|
|
1499
|
+
regNo: string;
|
|
1490
1500
|
tinNo: string;
|
|
1491
|
-
|
|
1492
|
-
branchCode
|
|
1501
|
+
email: string;
|
|
1502
|
+
branchCode?: string | null | undefined;
|
|
1493
1503
|
taxRegNo: string;
|
|
1494
1504
|
};
|
|
1495
1505
|
businessId: string;
|
|
@@ -1503,23 +1513,16 @@ export declare const useStore: import("pinia").StoreDefinition<"mf-e-invoice-app
|
|
|
1503
1513
|
};
|
|
1504
1514
|
type: "marketing";
|
|
1505
1515
|
profile: {
|
|
1506
|
-
queryToken?: string | null | undefined;
|
|
1507
1516
|
phoneNo?: string | null | undefined;
|
|
1508
1517
|
active?: string | null | undefined;
|
|
1509
1518
|
schedule?: {
|
|
1510
1519
|
day: number;
|
|
1511
1520
|
hour: number;
|
|
1512
1521
|
} | null | undefined;
|
|
1513
|
-
|
|
1514
|
-
username?: string | null | undefined;
|
|
1515
|
-
password?: string | null | undefined;
|
|
1516
|
-
templateId?: string | null | undefined;
|
|
1517
|
-
isDev?: boolean | null | undefined;
|
|
1518
|
-
email: string;
|
|
1519
|
-
tinNo: string;
|
|
1520
|
-
_id: string;
|
|
1522
|
+
queryToken?: string | null | undefined;
|
|
1521
1523
|
type: "marketing";
|
|
1522
1524
|
name: string;
|
|
1525
|
+
_id: string;
|
|
1523
1526
|
address: {
|
|
1524
1527
|
coordinates?: number[] | null | undefined;
|
|
1525
1528
|
line2?: string | null | undefined;
|
|
@@ -1531,14 +1534,18 @@ export declare const useStore: import("pinia").StoreDefinition<"mf-e-invoice-app
|
|
|
1531
1534
|
};
|
|
1532
1535
|
businessId: string;
|
|
1533
1536
|
regNo: string;
|
|
1534
|
-
|
|
1537
|
+
tinNo: string;
|
|
1535
1538
|
email: string;
|
|
1536
|
-
|
|
1539
|
+
msicCode: string;
|
|
1540
|
+
sstRegNo: string;
|
|
1541
|
+
} | {
|
|
1537
1542
|
phoneNo?: string | null | undefined;
|
|
1538
|
-
|
|
1539
|
-
|
|
1543
|
+
email?: string | null | undefined;
|
|
1544
|
+
queryToken?: string | null | undefined;
|
|
1545
|
+
branchCode?: string | null | undefined;
|
|
1540
1546
|
type: "marketing";
|
|
1541
1547
|
name: string;
|
|
1548
|
+
_id: string;
|
|
1542
1549
|
address: {
|
|
1543
1550
|
coordinates?: number[] | null | undefined;
|
|
1544
1551
|
line2?: string | null | undefined;
|
|
@@ -1548,27 +1555,26 @@ export declare const useStore: import("pinia").StoreDefinition<"mf-e-invoice-app
|
|
|
1548
1555
|
city: string;
|
|
1549
1556
|
postcode: string;
|
|
1550
1557
|
};
|
|
1551
|
-
branchCode: string;
|
|
1552
1558
|
businessId: string;
|
|
1553
1559
|
regNo: string;
|
|
1560
|
+
tinNo: string;
|
|
1561
|
+
taxRegNo: string;
|
|
1562
|
+
} | {
|
|
1563
|
+
phoneNo?: string | null | undefined;
|
|
1554
1564
|
active?: string | null | undefined;
|
|
1555
1565
|
schedule?: {
|
|
1556
1566
|
day: number;
|
|
1557
1567
|
hour: number;
|
|
1558
1568
|
} | null | undefined;
|
|
1569
|
+
queryToken?: string | null | undefined;
|
|
1559
1570
|
appid?: string | null | undefined;
|
|
1560
1571
|
username?: string | null | undefined;
|
|
1561
1572
|
password?: string | null | undefined;
|
|
1562
1573
|
templateId?: string | null | undefined;
|
|
1563
1574
|
isDev?: boolean | null | undefined;
|
|
1564
|
-
} | {
|
|
1565
|
-
email: string;
|
|
1566
|
-
queryToken?: string | null | undefined;
|
|
1567
|
-
phoneNo?: string | null | undefined;
|
|
1568
|
-
tinNo: string;
|
|
1569
|
-
_id: string;
|
|
1570
1575
|
type: "marketing";
|
|
1571
1576
|
name: string;
|
|
1577
|
+
_id: string;
|
|
1572
1578
|
address: {
|
|
1573
1579
|
coordinates?: number[] | null | undefined;
|
|
1574
1580
|
line2?: string | null | undefined;
|
|
@@ -1578,24 +1584,21 @@ export declare const useStore: import("pinia").StoreDefinition<"mf-e-invoice-app
|
|
|
1578
1584
|
city: string;
|
|
1579
1585
|
postcode: string;
|
|
1580
1586
|
};
|
|
1581
|
-
branchCode: string;
|
|
1582
1587
|
businessId: string;
|
|
1583
1588
|
regNo: string;
|
|
1589
|
+
tinNo: string;
|
|
1590
|
+
email: string;
|
|
1591
|
+
} | {
|
|
1592
|
+
phoneNo?: string | null | undefined;
|
|
1584
1593
|
active?: string | null | undefined;
|
|
1585
1594
|
schedule?: {
|
|
1586
1595
|
day: number;
|
|
1587
1596
|
hour: number;
|
|
1588
1597
|
} | null | undefined;
|
|
1589
|
-
sstRegNo: string;
|
|
1590
|
-
msicCode: string;
|
|
1591
|
-
} | {
|
|
1592
|
-
email?: string | null | undefined;
|
|
1593
1598
|
queryToken?: string | null | undefined;
|
|
1594
|
-
phoneNo?: string | null | undefined;
|
|
1595
|
-
tinNo: string;
|
|
1596
|
-
_id: string;
|
|
1597
1599
|
type: "marketing";
|
|
1598
1600
|
name: string;
|
|
1601
|
+
_id: string;
|
|
1599
1602
|
address: {
|
|
1600
1603
|
coordinates?: number[] | null | undefined;
|
|
1601
1604
|
line2?: string | null | undefined;
|
|
@@ -1605,28 +1608,25 @@ export declare const useStore: import("pinia").StoreDefinition<"mf-e-invoice-app
|
|
|
1605
1608
|
city: string;
|
|
1606
1609
|
postcode: string;
|
|
1607
1610
|
};
|
|
1608
|
-
branchCode: string;
|
|
1609
1611
|
businessId: string;
|
|
1610
1612
|
regNo: string;
|
|
1613
|
+
tinNo: string;
|
|
1614
|
+
email: string;
|
|
1615
|
+
msicCode: string;
|
|
1616
|
+
sstRegNo: string;
|
|
1617
|
+
branchCode?: string | null | undefined;
|
|
1611
1618
|
taxRegNo: string;
|
|
1612
1619
|
} | {
|
|
1613
|
-
queryToken?: string | null | undefined;
|
|
1614
1620
|
phoneNo?: string | null | undefined;
|
|
1615
1621
|
active?: string | null | undefined;
|
|
1616
1622
|
schedule?: {
|
|
1617
1623
|
day: number;
|
|
1618
1624
|
hour: number;
|
|
1619
1625
|
} | null | undefined;
|
|
1620
|
-
|
|
1621
|
-
username?: string | null | undefined;
|
|
1622
|
-
password?: string | null | undefined;
|
|
1623
|
-
templateId?: string | null | undefined;
|
|
1624
|
-
isDev?: boolean | null | undefined;
|
|
1625
|
-
email: string;
|
|
1626
|
-
tinNo: string;
|
|
1627
|
-
_id: string;
|
|
1626
|
+
queryToken?: string | null | undefined;
|
|
1628
1627
|
type: "marketing";
|
|
1629
1628
|
name: string;
|
|
1629
|
+
_id: string;
|
|
1630
1630
|
address: {
|
|
1631
1631
|
coordinates?: number[] | null | undefined;
|
|
1632
1632
|
line2?: string | null | undefined;
|
|
@@ -1638,26 +1638,23 @@ export declare const useStore: import("pinia").StoreDefinition<"mf-e-invoice-app
|
|
|
1638
1638
|
};
|
|
1639
1639
|
businessId: string;
|
|
1640
1640
|
regNo: string;
|
|
1641
|
-
|
|
1641
|
+
tinNo: string;
|
|
1642
|
+
email: string;
|
|
1642
1643
|
msicCode: string;
|
|
1643
|
-
|
|
1644
|
-
queryToken?: string | null | undefined;
|
|
1645
|
-
phoneNo?: string | null | undefined;
|
|
1646
|
-
active?: string | null | undefined;
|
|
1647
|
-
schedule?: {
|
|
1648
|
-
day: number;
|
|
1649
|
-
hour: number;
|
|
1650
|
-
} | null | undefined;
|
|
1644
|
+
sstRegNo: string;
|
|
1651
1645
|
appid?: string | null | undefined;
|
|
1652
1646
|
username?: string | null | undefined;
|
|
1653
1647
|
password?: string | null | undefined;
|
|
1654
1648
|
templateId?: string | null | undefined;
|
|
1655
1649
|
isDev?: boolean | null | undefined;
|
|
1650
|
+
} | {
|
|
1651
|
+
phoneNo?: string | null | undefined;
|
|
1656
1652
|
email: string;
|
|
1657
|
-
|
|
1658
|
-
|
|
1653
|
+
queryToken?: string | null | undefined;
|
|
1654
|
+
branchCode?: string | null | undefined;
|
|
1659
1655
|
type: "marketing";
|
|
1660
1656
|
name: string;
|
|
1657
|
+
_id: string;
|
|
1661
1658
|
address: {
|
|
1662
1659
|
coordinates?: number[] | null | undefined;
|
|
1663
1660
|
line2?: string | null | undefined;
|
|
@@ -1669,18 +1666,23 @@ export declare const useStore: import("pinia").StoreDefinition<"mf-e-invoice-app
|
|
|
1669
1666
|
};
|
|
1670
1667
|
businessId: string;
|
|
1671
1668
|
regNo: string;
|
|
1672
|
-
|
|
1669
|
+
tinNo: string;
|
|
1673
1670
|
taxRegNo: string;
|
|
1674
|
-
} | {
|
|
1675
1671
|
active?: string | null | undefined;
|
|
1676
|
-
phoneNo?: string | null | undefined;
|
|
1677
1672
|
schedule?: {
|
|
1678
1673
|
day: number;
|
|
1679
1674
|
hour: number;
|
|
1680
1675
|
} | null | undefined;
|
|
1676
|
+
msicCode: string;
|
|
1677
|
+
sstRegNo: string;
|
|
1678
|
+
} | {
|
|
1679
|
+
phoneNo?: string | null | undefined;
|
|
1680
|
+
email: string;
|
|
1681
1681
|
queryToken?: string | null | undefined;
|
|
1682
|
-
|
|
1682
|
+
branchCode?: string | null | undefined;
|
|
1683
1683
|
type: "marketing";
|
|
1684
|
+
name: string;
|
|
1685
|
+
_id: string;
|
|
1684
1686
|
address: {
|
|
1685
1687
|
coordinates?: number[] | null | undefined;
|
|
1686
1688
|
line2?: string | null | undefined;
|
|
@@ -1690,28 +1692,36 @@ export declare const useStore: import("pinia").StoreDefinition<"mf-e-invoice-app
|
|
|
1690
1692
|
city: string;
|
|
1691
1693
|
postcode: string;
|
|
1692
1694
|
};
|
|
1693
|
-
email: string;
|
|
1694
|
-
_id: string;
|
|
1695
|
-
regNo: string;
|
|
1696
|
-
sstRegNo: string;
|
|
1697
1695
|
businessId: string;
|
|
1696
|
+
regNo: string;
|
|
1698
1697
|
tinNo: string;
|
|
1699
|
-
|
|
1698
|
+
taxRegNo: string;
|
|
1699
|
+
active?: string | null | undefined;
|
|
1700
|
+
schedule?: {
|
|
1701
|
+
day: number;
|
|
1702
|
+
hour: number;
|
|
1703
|
+
} | null | undefined;
|
|
1700
1704
|
appid?: string | null | undefined;
|
|
1701
1705
|
username?: string | null | undefined;
|
|
1702
1706
|
password?: string | null | undefined;
|
|
1703
1707
|
templateId?: string | null | undefined;
|
|
1704
1708
|
isDev?: boolean | null | undefined;
|
|
1705
1709
|
} | {
|
|
1706
|
-
active?: string | null | undefined;
|
|
1707
1710
|
phoneNo?: string | null | undefined;
|
|
1711
|
+
active?: string | null | undefined;
|
|
1708
1712
|
schedule?: {
|
|
1709
1713
|
day: number;
|
|
1710
1714
|
hour: number;
|
|
1711
1715
|
} | null | undefined;
|
|
1712
1716
|
queryToken?: string | null | undefined;
|
|
1713
|
-
|
|
1717
|
+
appid?: string | null | undefined;
|
|
1718
|
+
username?: string | null | undefined;
|
|
1719
|
+
password?: string | null | undefined;
|
|
1720
|
+
templateId?: string | null | undefined;
|
|
1721
|
+
isDev?: boolean | null | undefined;
|
|
1714
1722
|
type: "marketing";
|
|
1723
|
+
name: string;
|
|
1724
|
+
_id: string;
|
|
1715
1725
|
address: {
|
|
1716
1726
|
coordinates?: number[] | null | undefined;
|
|
1717
1727
|
line2?: string | null | undefined;
|
|
@@ -1721,23 +1731,28 @@ export declare const useStore: import("pinia").StoreDefinition<"mf-e-invoice-app
|
|
|
1721
1731
|
city: string;
|
|
1722
1732
|
postcode: string;
|
|
1723
1733
|
};
|
|
1724
|
-
email: string;
|
|
1725
|
-
_id: string;
|
|
1726
|
-
regNo: string;
|
|
1727
|
-
sstRegNo: string;
|
|
1728
1734
|
businessId: string;
|
|
1735
|
+
regNo: string;
|
|
1729
1736
|
tinNo: string;
|
|
1737
|
+
email: string;
|
|
1730
1738
|
msicCode: string;
|
|
1739
|
+
sstRegNo: string;
|
|
1731
1740
|
} | {
|
|
1732
|
-
active?: string | null | undefined;
|
|
1733
1741
|
phoneNo?: string | null | undefined;
|
|
1742
|
+
active?: string | null | undefined;
|
|
1734
1743
|
schedule?: {
|
|
1735
1744
|
day: number;
|
|
1736
1745
|
hour: number;
|
|
1737
1746
|
} | null | undefined;
|
|
1738
1747
|
queryToken?: string | null | undefined;
|
|
1739
|
-
|
|
1748
|
+
appid?: string | null | undefined;
|
|
1749
|
+
username?: string | null | undefined;
|
|
1750
|
+
password?: string | null | undefined;
|
|
1751
|
+
templateId?: string | null | undefined;
|
|
1752
|
+
isDev?: boolean | null | undefined;
|
|
1740
1753
|
type: "marketing";
|
|
1754
|
+
name: string;
|
|
1755
|
+
_id: string;
|
|
1741
1756
|
address: {
|
|
1742
1757
|
coordinates?: number[] | null | undefined;
|
|
1743
1758
|
line2?: string | null | undefined;
|
|
@@ -1747,36 +1762,33 @@ export declare const useStore: import("pinia").StoreDefinition<"mf-e-invoice-app
|
|
|
1747
1762
|
city: string;
|
|
1748
1763
|
postcode: string;
|
|
1749
1764
|
};
|
|
1750
|
-
email: string;
|
|
1751
|
-
_id: string;
|
|
1752
|
-
regNo: string;
|
|
1753
|
-
sstRegNo: string;
|
|
1754
1765
|
businessId: string;
|
|
1766
|
+
regNo: string;
|
|
1755
1767
|
tinNo: string;
|
|
1756
|
-
|
|
1757
|
-
branchCode
|
|
1768
|
+
email: string;
|
|
1769
|
+
branchCode?: string | null | undefined;
|
|
1758
1770
|
taxRegNo: string;
|
|
1759
1771
|
};
|
|
1760
1772
|
businessId: string;
|
|
1761
1773
|
} | null>;
|
|
1762
1774
|
settings: import("vue").Ref<{
|
|
1775
|
+
_id: string;
|
|
1776
|
+
businessId: string;
|
|
1763
1777
|
items: Record<string, {
|
|
1764
1778
|
taxExemptionReason?: string | null | undefined;
|
|
1765
1779
|
}>;
|
|
1780
|
+
} | null, {
|
|
1766
1781
|
_id: string;
|
|
1767
1782
|
businessId: string;
|
|
1768
|
-
} | null, {
|
|
1769
1783
|
items: Record<string, {
|
|
1770
1784
|
taxExemptionReason?: string | null | undefined;
|
|
1771
1785
|
}>;
|
|
1786
|
+
} | {
|
|
1772
1787
|
_id: string;
|
|
1773
1788
|
businessId: string;
|
|
1774
|
-
} | {
|
|
1775
1789
|
items: Record<string, {
|
|
1776
1790
|
taxExemptionReason?: string | null | undefined;
|
|
1777
1791
|
}>;
|
|
1778
|
-
_id: string;
|
|
1779
|
-
businessId: string;
|
|
1780
1792
|
} | null>;
|
|
1781
1793
|
menu: import("vue").Ref<{
|
|
1782
1794
|
id: string;
|