@feedmepos/mf-e-invoice 0.0.65 → 0.0.66

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