@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.
Files changed (39) hide show
  1. package/dist/{EInvoice-B9lJ3ijP.js → EInvoice-vYf-dUfJ.js} +2100 -2086
  2. package/dist/api/index.d.ts +1 -2
  3. package/dist/app.js +1 -1
  4. package/dist/store/index.d.ts +457 -445
  5. package/dist/tsconfig.app.tsbuildinfo +1 -1
  6. package/dist/type/index.d.ts +2 -0
  7. package/dist/type/malaysia/components/accounting-party.dto.d.ts +625 -0
  8. package/dist/type/malaysia/components/allowance.dto.d.ts +33 -0
  9. package/dist/type/malaysia/components/billing.dto.d.ts +198 -0
  10. package/dist/type/malaysia/components/invoice-line.dto.d.ts +601 -0
  11. package/dist/type/malaysia/components/payment.dto.d.ts +38 -0
  12. package/dist/type/malaysia/components/signature.dto.d.ts +8988 -0
  13. package/dist/type/malaysia/components/tax.dto.d.ts +410 -0
  14. package/dist/type/malaysia/e-invoice-profile.do.d.ts +1756 -0
  15. package/dist/type/malaysia/e-invoice.do.d.ts +4808 -0
  16. package/dist/type/malaysia/e-invoice.dto.d.ts +5146 -0
  17. package/dist/type/malaysia/e-invoice.enum.d.ts +5 -0
  18. package/dist/type/malaysia/index.d.ts +11 -0
  19. package/dist/type/profile/e-invoice-base-profile.do.d.ts +136 -0
  20. package/dist/type/profile/e-invoice-profile.enum.d.ts +7 -0
  21. package/dist/type/profile/e-invoice.enum.d.ts +9 -0
  22. package/dist/type/report-invoice.dto.d.ts +123 -0
  23. package/dist/type/thailand/e-invoice-profile.do.d.ts +155 -128
  24. package/dist/type/thailand/e-invoice.do.d.ts +120 -110
  25. package/dist/type/thailand/e-invoice.dto.d.ts +76 -76
  26. package/dist/type/vietnam/e-invoice-profile.do.d.ts +108 -108
  27. package/dist/type/vietnam/e-invoice.do.d.ts +56 -56
  28. package/dist/type/vietnam/e-invoice.dto.d.ts +13 -13
  29. package/dist/types.d.ts +2 -3
  30. package/dist/views/EInvoiceCopyDialog.vue.d.ts +3 -56
  31. package/dist/views/manager/malaysia/MalaysiaItemSettingsDialog.vue.d.ts +1 -1
  32. package/dist/views/manager/malaysia/MalaysiaProfileDialog.vue.d.ts +1 -1
  33. package/dist/views/manager/malaysia/data.d.ts +2 -1
  34. package/dist/views/manager/malaysia/malaysia.d.ts +2 -1
  35. package/dist/views/manager/manager.d.ts +2 -2
  36. package/dist/views/manager/thailand/thailand.d.ts +2 -2
  37. package/dist/views/manager/vietnam/VietnamItemSettingsDialog.vue.d.ts +2 -2
  38. package/dist/views/submission.d.ts +2 -1
  39. package/package.json +1 -1
@@ -0,0 +1,198 @@
1
+ import { z } from 'zod';
2
+ export declare const FdtoEInvoiceAmount: z.ZodObject<{
3
+ value: z.ZodNumber;
4
+ currencyID: z.ZodString;
5
+ }, "strip", z.ZodTypeAny, {
6
+ value: number;
7
+ currencyID: string;
8
+ }, {
9
+ value: number;
10
+ currencyID: string;
11
+ }>;
12
+ export declare const FdtoEInvoiceLegalMonetaryTotal: z.ZodObject<{
13
+ LineExtensionAmount: z.ZodObject<{
14
+ value: z.ZodNumber;
15
+ currencyID: z.ZodString;
16
+ }, "strip", z.ZodTypeAny, {
17
+ value: number;
18
+ currencyID: string;
19
+ }, {
20
+ value: number;
21
+ currencyID: string;
22
+ }>;
23
+ AllowanceTotalAmount: z.ZodObject<{
24
+ value: z.ZodNumber;
25
+ currencyID: z.ZodString;
26
+ }, "strip", z.ZodTypeAny, {
27
+ value: number;
28
+ currencyID: string;
29
+ }, {
30
+ value: number;
31
+ currencyID: string;
32
+ }>;
33
+ ChargeTotalAmount: z.ZodObject<{
34
+ value: z.ZodNumber;
35
+ currencyID: z.ZodString;
36
+ }, "strip", z.ZodTypeAny, {
37
+ value: number;
38
+ currencyID: string;
39
+ }, {
40
+ value: number;
41
+ currencyID: string;
42
+ }>;
43
+ TaxExclusiveAmount: z.ZodObject<{
44
+ value: z.ZodNumber;
45
+ currencyID: z.ZodString;
46
+ }, "strip", z.ZodTypeAny, {
47
+ value: number;
48
+ currencyID: string;
49
+ }, {
50
+ value: number;
51
+ currencyID: string;
52
+ }>;
53
+ TaxInclusiveAmount: z.ZodObject<{
54
+ value: z.ZodNumber;
55
+ currencyID: z.ZodString;
56
+ }, "strip", z.ZodTypeAny, {
57
+ value: number;
58
+ currencyID: string;
59
+ }, {
60
+ value: number;
61
+ currencyID: string;
62
+ }>;
63
+ PayableRoundingAmount: z.ZodObject<{
64
+ value: z.ZodNumber;
65
+ currencyID: z.ZodString;
66
+ }, "strip", z.ZodTypeAny, {
67
+ value: number;
68
+ currencyID: string;
69
+ }, {
70
+ value: number;
71
+ currencyID: string;
72
+ }>;
73
+ PayableAmount: z.ZodObject<{
74
+ value: z.ZodNumber;
75
+ currencyID: z.ZodString;
76
+ }, "strip", z.ZodTypeAny, {
77
+ value: number;
78
+ currencyID: string;
79
+ }, {
80
+ value: number;
81
+ currencyID: string;
82
+ }>;
83
+ }, "strip", z.ZodTypeAny, {
84
+ LineExtensionAmount: {
85
+ value: number;
86
+ currencyID: string;
87
+ };
88
+ AllowanceTotalAmount: {
89
+ value: number;
90
+ currencyID: string;
91
+ };
92
+ ChargeTotalAmount: {
93
+ value: number;
94
+ currencyID: string;
95
+ };
96
+ TaxExclusiveAmount: {
97
+ value: number;
98
+ currencyID: string;
99
+ };
100
+ TaxInclusiveAmount: {
101
+ value: number;
102
+ currencyID: string;
103
+ };
104
+ PayableRoundingAmount: {
105
+ value: number;
106
+ currencyID: string;
107
+ };
108
+ PayableAmount: {
109
+ value: number;
110
+ currencyID: string;
111
+ };
112
+ }, {
113
+ LineExtensionAmount: {
114
+ value: number;
115
+ currencyID: string;
116
+ };
117
+ AllowanceTotalAmount: {
118
+ value: number;
119
+ currencyID: string;
120
+ };
121
+ ChargeTotalAmount: {
122
+ value: number;
123
+ currencyID: string;
124
+ };
125
+ TaxExclusiveAmount: {
126
+ value: number;
127
+ currencyID: string;
128
+ };
129
+ TaxInclusiveAmount: {
130
+ value: number;
131
+ currencyID: string;
132
+ };
133
+ PayableRoundingAmount: {
134
+ value: number;
135
+ currencyID: string;
136
+ };
137
+ PayableAmount: {
138
+ value: number;
139
+ currencyID: string;
140
+ };
141
+ }>;
142
+ export declare const FdtoEInvoiceAdditionalDocumentReference: z.ZodObject<{
143
+ ID: z.ZodString;
144
+ }, "strip", z.ZodTypeAny, {
145
+ ID: string;
146
+ }, {
147
+ ID: string;
148
+ }>;
149
+ export declare const FdtoEInvoiceDocumentReference: z.ZodObject<{
150
+ UUID: z.ZodString;
151
+ ID: z.ZodString;
152
+ }, "strip", z.ZodTypeAny, {
153
+ ID: string;
154
+ UUID: string;
155
+ }, {
156
+ ID: string;
157
+ UUID: string;
158
+ }>;
159
+ export declare const FdtoEInvoiceBillingReference: z.ZodObject<{
160
+ AdditionalDocumentReference: z.ZodNullable<z.ZodOptional<z.ZodObject<{
161
+ ID: z.ZodString;
162
+ }, "strip", z.ZodTypeAny, {
163
+ ID: string;
164
+ }, {
165
+ ID: string;
166
+ }>>>;
167
+ InvoiceDocumentReference: z.ZodNullable<z.ZodOptional<z.ZodObject<{
168
+ UUID: z.ZodString;
169
+ ID: z.ZodString;
170
+ }, "strip", z.ZodTypeAny, {
171
+ ID: string;
172
+ UUID: string;
173
+ }, {
174
+ ID: string;
175
+ UUID: string;
176
+ }>>>;
177
+ }, "strip", z.ZodTypeAny, {
178
+ AdditionalDocumentReference?: {
179
+ ID: string;
180
+ } | null | undefined;
181
+ InvoiceDocumentReference?: {
182
+ ID: string;
183
+ UUID: string;
184
+ } | null | undefined;
185
+ }, {
186
+ AdditionalDocumentReference?: {
187
+ ID: string;
188
+ } | null | undefined;
189
+ InvoiceDocumentReference?: {
190
+ ID: string;
191
+ UUID: string;
192
+ } | null | undefined;
193
+ }>;
194
+ export type FdtoEInvoiceAmount = z.infer<typeof FdtoEInvoiceAmount>;
195
+ export type FdtoEInvoiceLegalMonetaryTotal = z.infer<typeof FdtoEInvoiceLegalMonetaryTotal>;
196
+ export type FdtoEInvoiceAdditionalDocumentReference = z.infer<typeof FdtoEInvoiceAdditionalDocumentReference>;
197
+ export type FdtoEInvoiceDocumentReference = z.infer<typeof FdtoEInvoiceDocumentReference>;
198
+ export type FdtoEInvoiceBillingReference = z.infer<typeof FdtoEInvoiceBillingReference>;