@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
@@ -0,0 +1,601 @@
1
+ import { z } from 'zod';
2
+ export declare const FdtoEInvoicedQuantity: z.ZodObject<{
3
+ value: z.ZodNumber;
4
+ unitCode: z.ZodNullable<z.ZodOptional<z.ZodString>>;
5
+ }, "strip", z.ZodTypeAny, {
6
+ unitCode?: string | null | undefined;
7
+ value: number;
8
+ }, {
9
+ unitCode?: string | null | undefined;
10
+ value: number;
11
+ }>;
12
+ export declare const FdtoEInvoiceClassificationCode: z.ZodObject<{
13
+ value: z.ZodString;
14
+ listID: z.ZodOptional<z.ZodString>;
15
+ }, "strip", z.ZodTypeAny, {
16
+ listID?: string | undefined;
17
+ value: string;
18
+ }, {
19
+ listID?: string | undefined;
20
+ value: string;
21
+ }>;
22
+ export declare const FdtoEInvoiceCommodityClassification: z.ZodObject<{
23
+ ItemClassificationCode: z.ZodArray<z.ZodObject<{
24
+ value: z.ZodString;
25
+ listID: z.ZodOptional<z.ZodString>;
26
+ }, "strip", z.ZodTypeAny, {
27
+ listID?: string | undefined;
28
+ value: string;
29
+ }, {
30
+ listID?: string | undefined;
31
+ value: string;
32
+ }>, "many">;
33
+ }, "strip", z.ZodTypeAny, {
34
+ ItemClassificationCode: {
35
+ listID?: string | undefined;
36
+ value: string;
37
+ }[];
38
+ }, {
39
+ ItemClassificationCode: {
40
+ listID?: string | undefined;
41
+ value: string;
42
+ }[];
43
+ }>;
44
+ export declare const FdtoEInvoiceItem: z.ZodObject<{
45
+ CommodityClassification: z.ZodObject<{
46
+ ItemClassificationCode: z.ZodArray<z.ZodObject<{
47
+ value: z.ZodString;
48
+ listID: z.ZodOptional<z.ZodString>;
49
+ }, "strip", z.ZodTypeAny, {
50
+ listID?: string | undefined;
51
+ value: string;
52
+ }, {
53
+ listID?: string | undefined;
54
+ value: string;
55
+ }>, "many">;
56
+ }, "strip", z.ZodTypeAny, {
57
+ ItemClassificationCode: {
58
+ listID?: string | undefined;
59
+ value: string;
60
+ }[];
61
+ }, {
62
+ ItemClassificationCode: {
63
+ listID?: string | undefined;
64
+ value: string;
65
+ }[];
66
+ }>;
67
+ Description: z.ZodString;
68
+ }, "strip", z.ZodTypeAny, {
69
+ CommodityClassification: {
70
+ ItemClassificationCode: {
71
+ listID?: string | undefined;
72
+ value: string;
73
+ }[];
74
+ };
75
+ Description: string;
76
+ }, {
77
+ CommodityClassification: {
78
+ ItemClassificationCode: {
79
+ listID?: string | undefined;
80
+ value: string;
81
+ }[];
82
+ };
83
+ Description: string;
84
+ }>;
85
+ export declare const FdtoEInvoicePrice: z.ZodObject<{
86
+ PriceAmount: z.ZodObject<{
87
+ value: z.ZodNumber;
88
+ currencyID: z.ZodString;
89
+ }, "strip", z.ZodTypeAny, {
90
+ value: number;
91
+ currencyID: string;
92
+ }, {
93
+ value: number;
94
+ currencyID: string;
95
+ }>;
96
+ }, "strip", z.ZodTypeAny, {
97
+ PriceAmount: {
98
+ value: number;
99
+ currencyID: string;
100
+ };
101
+ }, {
102
+ PriceAmount: {
103
+ value: number;
104
+ currencyID: string;
105
+ };
106
+ }>;
107
+ export declare const FdtoEInvoiceItemPriceExtension: z.ZodObject<{
108
+ Amount: z.ZodObject<{
109
+ value: z.ZodNumber;
110
+ currencyID: z.ZodString;
111
+ }, "strip", z.ZodTypeAny, {
112
+ value: number;
113
+ currencyID: string;
114
+ }, {
115
+ value: number;
116
+ currencyID: string;
117
+ }>;
118
+ }, "strip", z.ZodTypeAny, {
119
+ Amount: {
120
+ value: number;
121
+ currencyID: string;
122
+ };
123
+ }, {
124
+ Amount: {
125
+ value: number;
126
+ currencyID: string;
127
+ };
128
+ }>;
129
+ export declare const FdtoEInvoiceLine: z.ZodObject<{
130
+ ID: z.ZodString;
131
+ Item: z.ZodObject<{
132
+ CommodityClassification: z.ZodObject<{
133
+ ItemClassificationCode: z.ZodArray<z.ZodObject<{
134
+ value: z.ZodString;
135
+ listID: z.ZodOptional<z.ZodString>;
136
+ }, "strip", z.ZodTypeAny, {
137
+ listID?: string | undefined;
138
+ value: string;
139
+ }, {
140
+ listID?: string | undefined;
141
+ value: string;
142
+ }>, "many">;
143
+ }, "strip", z.ZodTypeAny, {
144
+ ItemClassificationCode: {
145
+ listID?: string | undefined;
146
+ value: string;
147
+ }[];
148
+ }, {
149
+ ItemClassificationCode: {
150
+ listID?: string | undefined;
151
+ value: string;
152
+ }[];
153
+ }>;
154
+ Description: z.ZodString;
155
+ }, "strip", z.ZodTypeAny, {
156
+ CommodityClassification: {
157
+ ItemClassificationCode: {
158
+ listID?: string | undefined;
159
+ value: string;
160
+ }[];
161
+ };
162
+ Description: string;
163
+ }, {
164
+ CommodityClassification: {
165
+ ItemClassificationCode: {
166
+ listID?: string | undefined;
167
+ value: string;
168
+ }[];
169
+ };
170
+ Description: string;
171
+ }>;
172
+ Price: z.ZodObject<{
173
+ PriceAmount: z.ZodObject<{
174
+ value: z.ZodNumber;
175
+ currencyID: z.ZodString;
176
+ }, "strip", z.ZodTypeAny, {
177
+ value: number;
178
+ currencyID: string;
179
+ }, {
180
+ value: number;
181
+ currencyID: string;
182
+ }>;
183
+ }, "strip", z.ZodTypeAny, {
184
+ PriceAmount: {
185
+ value: number;
186
+ currencyID: string;
187
+ };
188
+ }, {
189
+ PriceAmount: {
190
+ value: number;
191
+ currencyID: string;
192
+ };
193
+ }>;
194
+ InvoicedQuantity: z.ZodObject<{
195
+ value: z.ZodNumber;
196
+ unitCode: z.ZodNullable<z.ZodOptional<z.ZodString>>;
197
+ }, "strip", z.ZodTypeAny, {
198
+ unitCode?: string | null | undefined;
199
+ value: number;
200
+ }, {
201
+ unitCode?: string | null | undefined;
202
+ value: number;
203
+ }>;
204
+ ItemPriceExtension: z.ZodObject<{
205
+ Amount: z.ZodObject<{
206
+ value: z.ZodNumber;
207
+ currencyID: z.ZodString;
208
+ }, "strip", z.ZodTypeAny, {
209
+ value: number;
210
+ currencyID: string;
211
+ }, {
212
+ value: number;
213
+ currencyID: string;
214
+ }>;
215
+ }, "strip", z.ZodTypeAny, {
216
+ Amount: {
217
+ value: number;
218
+ currencyID: string;
219
+ };
220
+ }, {
221
+ Amount: {
222
+ value: number;
223
+ currencyID: string;
224
+ };
225
+ }>;
226
+ AllowanceCharge: z.ZodArray<z.ZodObject<{
227
+ ChargeIndicator: z.ZodBoolean;
228
+ AllowanceChargeReason: z.ZodString;
229
+ MultiplierFactorNumeric: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
230
+ Amount: z.ZodObject<{
231
+ value: z.ZodNumber;
232
+ currencyID: z.ZodString;
233
+ }, "strip", z.ZodTypeAny, {
234
+ value: number;
235
+ currencyID: string;
236
+ }, {
237
+ value: number;
238
+ currencyID: string;
239
+ }>;
240
+ }, "strip", z.ZodTypeAny, {
241
+ MultiplierFactorNumeric?: number | null | undefined;
242
+ ChargeIndicator: boolean;
243
+ AllowanceChargeReason: string;
244
+ Amount: {
245
+ value: number;
246
+ currencyID: string;
247
+ };
248
+ }, {
249
+ MultiplierFactorNumeric?: number | null | undefined;
250
+ ChargeIndicator: boolean;
251
+ AllowanceChargeReason: string;
252
+ Amount: {
253
+ value: number;
254
+ currencyID: string;
255
+ };
256
+ }>, "many">;
257
+ LineExtensionAmount: z.ZodObject<{
258
+ value: z.ZodNumber;
259
+ currencyID: z.ZodString;
260
+ }, "strip", z.ZodTypeAny, {
261
+ value: number;
262
+ currencyID: string;
263
+ }, {
264
+ value: number;
265
+ currencyID: string;
266
+ }>;
267
+ TaxTotal: z.ZodObject<{
268
+ TaxAmount: z.ZodObject<{
269
+ value: z.ZodNumber;
270
+ currencyID: z.ZodString;
271
+ }, "strip", z.ZodTypeAny, {
272
+ value: number;
273
+ currencyID: string;
274
+ }, {
275
+ value: number;
276
+ currencyID: string;
277
+ }>;
278
+ TaxSubtotal: z.ZodArray<z.ZodObject<{
279
+ TaxableAmount: z.ZodObject<{
280
+ value: z.ZodNumber;
281
+ currencyID: z.ZodString;
282
+ }, "strip", z.ZodTypeAny, {
283
+ value: number;
284
+ currencyID: string;
285
+ }, {
286
+ value: number;
287
+ currencyID: string;
288
+ }>;
289
+ TaxAmount: z.ZodObject<{
290
+ value: z.ZodNumber;
291
+ currencyID: z.ZodString;
292
+ }, "strip", z.ZodTypeAny, {
293
+ value: number;
294
+ currencyID: string;
295
+ }, {
296
+ value: number;
297
+ currencyID: string;
298
+ }>;
299
+ Percent: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
300
+ TaxCategory: z.ZodObject<{
301
+ ID: z.ZodString;
302
+ Percent: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
303
+ TaxScheme: z.ZodObject<{
304
+ ID: z.ZodObject<{
305
+ value: z.ZodString;
306
+ schemeID: z.ZodString;
307
+ schemeAgencyID: z.ZodString;
308
+ }, "strip", z.ZodTypeAny, {
309
+ value: string;
310
+ schemeID: string;
311
+ schemeAgencyID: string;
312
+ }, {
313
+ value: string;
314
+ schemeID: string;
315
+ schemeAgencyID: string;
316
+ }>;
317
+ }, "strip", z.ZodTypeAny, {
318
+ ID: {
319
+ value: string;
320
+ schemeID: string;
321
+ schemeAgencyID: string;
322
+ };
323
+ }, {
324
+ ID: {
325
+ value: string;
326
+ schemeID: string;
327
+ schemeAgencyID: string;
328
+ };
329
+ }>;
330
+ TaxExemptionReason: z.ZodNullable<z.ZodOptional<z.ZodString>>;
331
+ }, "strip", z.ZodTypeAny, {
332
+ Percent?: number | null | undefined;
333
+ TaxExemptionReason?: string | null | undefined;
334
+ ID: string;
335
+ TaxScheme: {
336
+ ID: {
337
+ value: string;
338
+ schemeID: string;
339
+ schemeAgencyID: string;
340
+ };
341
+ };
342
+ }, {
343
+ Percent?: number | null | undefined;
344
+ TaxExemptionReason?: string | null | undefined;
345
+ ID: string;
346
+ TaxScheme: {
347
+ ID: {
348
+ value: string;
349
+ schemeID: string;
350
+ schemeAgencyID: string;
351
+ };
352
+ };
353
+ }>;
354
+ }, "strip", z.ZodTypeAny, {
355
+ Percent?: number | null | undefined;
356
+ TaxableAmount: {
357
+ value: number;
358
+ currencyID: string;
359
+ };
360
+ TaxAmount: {
361
+ value: number;
362
+ currencyID: string;
363
+ };
364
+ TaxCategory: {
365
+ Percent?: number | null | undefined;
366
+ TaxExemptionReason?: string | null | undefined;
367
+ ID: string;
368
+ TaxScheme: {
369
+ ID: {
370
+ value: string;
371
+ schemeID: string;
372
+ schemeAgencyID: string;
373
+ };
374
+ };
375
+ };
376
+ }, {
377
+ Percent?: number | null | undefined;
378
+ TaxableAmount: {
379
+ value: number;
380
+ currencyID: string;
381
+ };
382
+ TaxAmount: {
383
+ value: number;
384
+ currencyID: string;
385
+ };
386
+ TaxCategory: {
387
+ Percent?: number | null | undefined;
388
+ TaxExemptionReason?: string | null | undefined;
389
+ ID: string;
390
+ TaxScheme: {
391
+ ID: {
392
+ value: string;
393
+ schemeID: string;
394
+ schemeAgencyID: string;
395
+ };
396
+ };
397
+ };
398
+ }>, "many">;
399
+ }, "strip", z.ZodTypeAny, {
400
+ TaxAmount: {
401
+ value: number;
402
+ currencyID: string;
403
+ };
404
+ TaxSubtotal: {
405
+ Percent?: number | null | undefined;
406
+ TaxableAmount: {
407
+ value: number;
408
+ currencyID: string;
409
+ };
410
+ TaxAmount: {
411
+ value: number;
412
+ currencyID: string;
413
+ };
414
+ TaxCategory: {
415
+ Percent?: number | null | undefined;
416
+ TaxExemptionReason?: string | null | undefined;
417
+ ID: string;
418
+ TaxScheme: {
419
+ ID: {
420
+ value: string;
421
+ schemeID: string;
422
+ schemeAgencyID: string;
423
+ };
424
+ };
425
+ };
426
+ }[];
427
+ }, {
428
+ TaxAmount: {
429
+ value: number;
430
+ currencyID: string;
431
+ };
432
+ TaxSubtotal: {
433
+ Percent?: number | null | undefined;
434
+ TaxableAmount: {
435
+ value: number;
436
+ currencyID: string;
437
+ };
438
+ TaxAmount: {
439
+ value: number;
440
+ currencyID: string;
441
+ };
442
+ TaxCategory: {
443
+ Percent?: number | null | undefined;
444
+ TaxExemptionReason?: string | null | undefined;
445
+ ID: string;
446
+ TaxScheme: {
447
+ ID: {
448
+ value: string;
449
+ schemeID: string;
450
+ schemeAgencyID: string;
451
+ };
452
+ };
453
+ };
454
+ }[];
455
+ }>;
456
+ }, "strip", z.ZodTypeAny, {
457
+ ID: string;
458
+ LineExtensionAmount: {
459
+ value: number;
460
+ currencyID: string;
461
+ };
462
+ Item: {
463
+ CommodityClassification: {
464
+ ItemClassificationCode: {
465
+ listID?: string | undefined;
466
+ value: string;
467
+ }[];
468
+ };
469
+ Description: string;
470
+ };
471
+ Price: {
472
+ PriceAmount: {
473
+ value: number;
474
+ currencyID: string;
475
+ };
476
+ };
477
+ InvoicedQuantity: {
478
+ unitCode?: string | null | undefined;
479
+ value: number;
480
+ };
481
+ ItemPriceExtension: {
482
+ Amount: {
483
+ value: number;
484
+ currencyID: string;
485
+ };
486
+ };
487
+ AllowanceCharge: {
488
+ MultiplierFactorNumeric?: number | null | undefined;
489
+ ChargeIndicator: boolean;
490
+ AllowanceChargeReason: string;
491
+ Amount: {
492
+ value: number;
493
+ currencyID: string;
494
+ };
495
+ }[];
496
+ TaxTotal: {
497
+ TaxAmount: {
498
+ value: number;
499
+ currencyID: string;
500
+ };
501
+ TaxSubtotal: {
502
+ Percent?: number | null | undefined;
503
+ TaxableAmount: {
504
+ value: number;
505
+ currencyID: string;
506
+ };
507
+ TaxAmount: {
508
+ value: number;
509
+ currencyID: string;
510
+ };
511
+ TaxCategory: {
512
+ Percent?: number | null | undefined;
513
+ TaxExemptionReason?: string | null | undefined;
514
+ ID: string;
515
+ TaxScheme: {
516
+ ID: {
517
+ value: string;
518
+ schemeID: string;
519
+ schemeAgencyID: string;
520
+ };
521
+ };
522
+ };
523
+ }[];
524
+ };
525
+ }, {
526
+ ID: string;
527
+ LineExtensionAmount: {
528
+ value: number;
529
+ currencyID: string;
530
+ };
531
+ Item: {
532
+ CommodityClassification: {
533
+ ItemClassificationCode: {
534
+ listID?: string | undefined;
535
+ value: string;
536
+ }[];
537
+ };
538
+ Description: string;
539
+ };
540
+ Price: {
541
+ PriceAmount: {
542
+ value: number;
543
+ currencyID: string;
544
+ };
545
+ };
546
+ InvoicedQuantity: {
547
+ unitCode?: string | null | undefined;
548
+ value: number;
549
+ };
550
+ ItemPriceExtension: {
551
+ Amount: {
552
+ value: number;
553
+ currencyID: string;
554
+ };
555
+ };
556
+ AllowanceCharge: {
557
+ MultiplierFactorNumeric?: number | null | undefined;
558
+ ChargeIndicator: boolean;
559
+ AllowanceChargeReason: string;
560
+ Amount: {
561
+ value: number;
562
+ currencyID: string;
563
+ };
564
+ }[];
565
+ TaxTotal: {
566
+ TaxAmount: {
567
+ value: number;
568
+ currencyID: string;
569
+ };
570
+ TaxSubtotal: {
571
+ Percent?: number | null | undefined;
572
+ TaxableAmount: {
573
+ value: number;
574
+ currencyID: string;
575
+ };
576
+ TaxAmount: {
577
+ value: number;
578
+ currencyID: string;
579
+ };
580
+ TaxCategory: {
581
+ Percent?: number | null | undefined;
582
+ TaxExemptionReason?: string | null | undefined;
583
+ ID: string;
584
+ TaxScheme: {
585
+ ID: {
586
+ value: string;
587
+ schemeID: string;
588
+ schemeAgencyID: string;
589
+ };
590
+ };
591
+ };
592
+ }[];
593
+ };
594
+ }>;
595
+ export type FdtoEInvoicedQuantity = z.infer<typeof FdtoEInvoicedQuantity>;
596
+ export type FdtoEInvoiceClassificationCode = z.infer<typeof FdtoEInvoiceClassificationCode>;
597
+ export type FdtoEInvoiceCommodityClassification = z.infer<typeof FdtoEInvoiceCommodityClassification>;
598
+ export type FdtoEInvoiceItem = z.infer<typeof FdtoEInvoiceItem>;
599
+ export type FdtoEInvoicePrice = z.infer<typeof FdtoEInvoicePrice>;
600
+ export type FdtoEInvoiceItemPriceExtension = z.infer<typeof FdtoEInvoiceItemPriceExtension>;
601
+ export type FdtoEInvoiceLine = z.infer<typeof FdtoEInvoiceLine>;
@@ -0,0 +1,38 @@
1
+ import { z } from 'zod';
2
+ export declare const FdtoEInvoicePayeeFinancialAccount: z.ZodObject<{
3
+ ID: z.ZodString;
4
+ }, "strip", z.ZodTypeAny, {
5
+ ID: string;
6
+ }, {
7
+ ID: string;
8
+ }>;
9
+ export declare const FdtoEInvoicePaymentMeans: z.ZodObject<{
10
+ PaymentMeansCode: z.ZodNullable<z.ZodOptional<z.ZodString>>;
11
+ PayeeFinancialAccount: z.ZodNullable<z.ZodOptional<z.ZodObject<{
12
+ ID: z.ZodString;
13
+ }, "strip", z.ZodTypeAny, {
14
+ ID: string;
15
+ }, {
16
+ ID: string;
17
+ }>>>;
18
+ }, "strip", z.ZodTypeAny, {
19
+ PaymentMeansCode?: string | null | undefined;
20
+ PayeeFinancialAccount?: {
21
+ ID: string;
22
+ } | null | undefined;
23
+ }, {
24
+ PaymentMeansCode?: string | null | undefined;
25
+ PayeeFinancialAccount?: {
26
+ ID: string;
27
+ } | null | undefined;
28
+ }>;
29
+ export declare const FdtoEInvoicePaymentTerms: z.ZodObject<{
30
+ Note: z.ZodNullable<z.ZodOptional<z.ZodString>>;
31
+ }, "strip", z.ZodTypeAny, {
32
+ Note?: string | null | undefined;
33
+ }, {
34
+ Note?: string | null | undefined;
35
+ }>;
36
+ export type FdtoEInvoicePayeeFinancialAccount = z.infer<typeof FdtoEInvoicePayeeFinancialAccount>;
37
+ export type FdtoEInvoicePaymentMeans = z.infer<typeof FdtoEInvoicePaymentMeans>;
38
+ export type FdtoEInvoicePaymentTerms = z.infer<typeof FdtoEInvoicePaymentTerms>;