@open-nav/core 0.1.0

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 (133) hide show
  1. package/LICENSE +29 -0
  2. package/README.md +132 -0
  3. package/dist/constants.d.ts +49 -0
  4. package/dist/constants.d.ts.map +1 -0
  5. package/dist/constants.js +58 -0
  6. package/dist/constants.js.map +1 -0
  7. package/dist/crypto/hash.d.ts +16 -0
  8. package/dist/crypto/hash.d.ts.map +1 -0
  9. package/dist/crypto/hash.js +30 -0
  10. package/dist/crypto/hash.js.map +1 -0
  11. package/dist/crypto/node-provider.d.ts +9 -0
  12. package/dist/crypto/node-provider.d.ts.map +1 -0
  13. package/dist/crypto/node-provider.js +18 -0
  14. package/dist/crypto/node-provider.js.map +1 -0
  15. package/dist/crypto/provider.d.ts +28 -0
  16. package/dist/crypto/provider.d.ts.map +1 -0
  17. package/dist/crypto/provider.js +14 -0
  18. package/dist/crypto/provider.js.map +1 -0
  19. package/dist/crypto/request-id.d.ts +16 -0
  20. package/dist/crypto/request-id.d.ts.map +1 -0
  21. package/dist/crypto/request-id.js +59 -0
  22. package/dist/crypto/request-id.js.map +1 -0
  23. package/dist/crypto/signature.d.ts +40 -0
  24. package/dist/crypto/signature.d.ts.map +1 -0
  25. package/dist/crypto/signature.js +38 -0
  26. package/dist/crypto/signature.js.map +1 -0
  27. package/dist/crypto/token.d.ts +14 -0
  28. package/dist/crypto/token.d.ts.map +1 -0
  29. package/dist/crypto/token.js +82 -0
  30. package/dist/crypto/token.js.map +1 -0
  31. package/dist/crypto/web-provider.d.ts +18 -0
  32. package/dist/crypto/web-provider.d.ts.map +1 -0
  33. package/dist/crypto/web-provider.js +31 -0
  34. package/dist/crypto/web-provider.js.map +1 -0
  35. package/dist/errors.d.ts +75 -0
  36. package/dist/errors.d.ts.map +1 -0
  37. package/dist/errors.js +71 -0
  38. package/dist/errors.js.map +1 -0
  39. package/dist/generated/fault-codes.d.ts +1343 -0
  40. package/dist/generated/fault-codes.d.ts.map +1 -0
  41. package/dist/generated/fault-codes.js +1331 -0
  42. package/dist/generated/fault-codes.js.map +1 -0
  43. package/dist/generated/index.d.ts +4 -0
  44. package/dist/generated/index.d.ts.map +1 -0
  45. package/dist/generated/index.js +5 -0
  46. package/dist/generated/index.js.map +1 -0
  47. package/dist/generated/schema.d.ts +13 -0
  48. package/dist/generated/schema.d.ts.map +1 -0
  49. package/dist/generated/schema.js +3756 -0
  50. package/dist/generated/schema.js.map +1 -0
  51. package/dist/generated/types.d.ts +5580 -0
  52. package/dist/generated/types.d.ts.map +1 -0
  53. package/dist/generated/types.js +6 -0
  54. package/dist/generated/types.js.map +1 -0
  55. package/dist/index.d.ts +23 -0
  56. package/dist/index.d.ts.map +1 -0
  57. package/dist/index.js +23 -0
  58. package/dist/index.js.map +1 -0
  59. package/dist/invoice/payload.d.ts +40 -0
  60. package/dist/invoice/payload.d.ts.map +1 -0
  61. package/dist/invoice/payload.js +66 -0
  62. package/dist/invoice/payload.js.map +1 -0
  63. package/dist/money/decimal.d.ts +69 -0
  64. package/dist/money/decimal.d.ts.map +1 -0
  65. package/dist/money/decimal.js +190 -0
  66. package/dist/money/decimal.js.map +1 -0
  67. package/dist/money/summary.d.ts +60 -0
  68. package/dist/money/summary.d.ts.map +1 -0
  69. package/dist/money/summary.js +236 -0
  70. package/dist/money/summary.js.map +1 -0
  71. package/dist/time.d.ts +16 -0
  72. package/dist/time.d.ts.map +1 -0
  73. package/dist/time.js +41 -0
  74. package/dist/time.js.map +1 -0
  75. package/dist/validation/issue.d.ts +67 -0
  76. package/dist/validation/issue.d.ts.map +1 -0
  77. package/dist/validation/issue.js +40 -0
  78. package/dist/validation/issue.js.map +1 -0
  79. package/dist/validation/rules.d.ts +34 -0
  80. package/dist/validation/rules.d.ts.map +1 -0
  81. package/dist/validation/rules.js +290 -0
  82. package/dist/validation/rules.js.map +1 -0
  83. package/dist/validation/schema.d.ts +14 -0
  84. package/dist/validation/schema.d.ts.map +1 -0
  85. package/dist/validation/schema.js +231 -0
  86. package/dist/validation/schema.js.map +1 -0
  87. package/dist/validation/tax-number.d.ts +39 -0
  88. package/dist/validation/tax-number.d.ts.map +1 -0
  89. package/dist/validation/tax-number.js +79 -0
  90. package/dist/validation/tax-number.js.map +1 -0
  91. package/dist/validation/validate.d.ts +29 -0
  92. package/dist/validation/validate.d.ts.map +1 -0
  93. package/dist/validation/validate.js +33 -0
  94. package/dist/validation/validate.js.map +1 -0
  95. package/dist/xml/descriptor.d.ts +82 -0
  96. package/dist/xml/descriptor.d.ts.map +1 -0
  97. package/dist/xml/descriptor.js +32 -0
  98. package/dist/xml/descriptor.js.map +1 -0
  99. package/dist/xml/read.d.ts +25 -0
  100. package/dist/xml/read.d.ts.map +1 -0
  101. package/dist/xml/read.js +230 -0
  102. package/dist/xml/read.js.map +1 -0
  103. package/dist/xml/write.d.ts +28 -0
  104. package/dist/xml/write.d.ts.map +1 -0
  105. package/dist/xml/write.js +299 -0
  106. package/dist/xml/write.js.map +1 -0
  107. package/package.json +55 -0
  108. package/src/constants.ts +76 -0
  109. package/src/crypto/hash.ts +35 -0
  110. package/src/crypto/node-provider.ts +19 -0
  111. package/src/crypto/provider.ts +37 -0
  112. package/src/crypto/request-id.ts +63 -0
  113. package/src/crypto/signature.ts +58 -0
  114. package/src/crypto/token.ts +86 -0
  115. package/src/crypto/web-provider.ts +32 -0
  116. package/src/errors.ts +109 -0
  117. package/src/generated/fault-codes.ts +1338 -0
  118. package/src/generated/index.ts +4 -0
  119. package/src/generated/schema.ts +3760 -0
  120. package/src/generated/types.ts +5829 -0
  121. package/src/index.ts +22 -0
  122. package/src/invoice/payload.ts +102 -0
  123. package/src/money/decimal.ts +218 -0
  124. package/src/money/summary.ts +380 -0
  125. package/src/time.ts +44 -0
  126. package/src/validation/issue.ts +102 -0
  127. package/src/validation/rules.ts +548 -0
  128. package/src/validation/schema.ts +315 -0
  129. package/src/validation/tax-number.ts +96 -0
  130. package/src/validation/validate.ts +45 -0
  131. package/src/xml/descriptor.ts +112 -0
  132. package/src/xml/read.ts +303 -0
  133. package/src/xml/write.ts +391 -0
@@ -0,0 +1,3760 @@
1
+ // Generated by @open-nav/codegen from the XSDs in schemas/. Do not edit.
2
+ //
3
+ // Regenerate with: pnpm codegen
4
+ // Provenance: schemas/sources.json
5
+
6
+ import type { Descriptor, RootDescriptor } from '../xml/descriptor.js';
7
+
8
+ /**
9
+ * Every type in the Online Számla schemas, keyed by `namespace:typeName`.
10
+ *
11
+ * Element order inside `fields` is schema order, which is also the order NAV
12
+ * requires on the wire. `ns` on each field is the namespace that declares
13
+ * it, not its parent's: that is why a `supplierTaxNumber` in the data
14
+ * namespace carries `taxpayerId` children in the base namespace.
15
+ */
16
+ export const TYPES: Record<string, Descriptor> = {
17
+ 'annul:AnnulmentCodeType': {
18
+ kind: 'simple',
19
+ name: 'AnnulmentCodeType',
20
+ ns: 'annul',
21
+ tsName: 'AnnulmentCodeType',
22
+ primitive: 'string',
23
+ enumValues: [
24
+ 'ERRATIC_DATA',
25
+ 'ERRATIC_INVOICE_NUMBER',
26
+ 'ERRATIC_INVOICE_ISSUE_DATE',
27
+ 'ERRATIC_ELECTRONIC_HASH_VALUE',
28
+ ],
29
+ minLength: 1,
30
+ maxLength: 32,
31
+ },
32
+ 'annul:InvoiceAnnulment': {
33
+ kind: 'complex',
34
+ name: 'InvoiceAnnulment',
35
+ ns: 'annul',
36
+ tsName: 'InvoiceAnnulment',
37
+ content: 'element',
38
+ fields: [
39
+ { name: 'annulmentReference', ns: 'annul', type: 'common:SimpleText50NotBlankType' },
40
+ { name: 'annulmentTimestamp', ns: 'annul', type: 'base:InvoiceTimestampType' },
41
+ { name: 'annulmentCode', ns: 'annul', type: 'annul:AnnulmentCodeType' },
42
+ { name: 'annulmentReason', ns: 'annul', type: 'common:SimpleText1024NotBlankType' },
43
+ ],
44
+ },
45
+ 'annul:InvoiceAnnulmentType': {
46
+ kind: 'complex',
47
+ name: 'InvoiceAnnulmentType',
48
+ ns: 'annul',
49
+ tsName: 'InvoiceAnnulmentType',
50
+ content: 'element',
51
+ fields: [
52
+ { name: 'annulmentReference', ns: 'annul', type: 'common:SimpleText50NotBlankType' },
53
+ { name: 'annulmentTimestamp', ns: 'annul', type: 'base:InvoiceTimestampType' },
54
+ { name: 'annulmentCode', ns: 'annul', type: 'annul:AnnulmentCodeType' },
55
+ { name: 'annulmentReason', ns: 'annul', type: 'common:SimpleText1024NotBlankType' },
56
+ ],
57
+ },
58
+ 'api:AdditionalQueryParamsType': {
59
+ kind: 'complex',
60
+ name: 'AdditionalQueryParamsType',
61
+ ns: 'api',
62
+ tsName: 'AdditionalQueryParamsType',
63
+ content: 'element',
64
+ fields: [
65
+ { name: 'taxNumber', ns: 'api', type: 'common:TaxpayerIdType', optional: true },
66
+ { name: 'groupMemberTaxNumber', ns: 'api', type: 'common:TaxpayerIdType', optional: true },
67
+ { name: 'name', ns: 'api', type: 'api:QueryNameType', optional: true },
68
+ { name: 'invoiceCategory', ns: 'api', type: 'base:InvoiceCategoryType', optional: true },
69
+ { name: 'paymentMethod', ns: 'api', type: 'base:PaymentMethodType', optional: true },
70
+ { name: 'invoiceAppearance', ns: 'api', type: 'base:InvoiceAppearanceType', optional: true },
71
+ { name: 'source', ns: 'api', type: 'api:SourceType', optional: true },
72
+ { name: 'currency', ns: 'api', type: 'common:CurrencyType', optional: true },
73
+ ],
74
+ },
75
+ 'api:AnnulmentDataType': {
76
+ kind: 'complex',
77
+ name: 'AnnulmentDataType',
78
+ ns: 'api',
79
+ tsName: 'AnnulmentDataType',
80
+ content: 'element',
81
+ fields: [
82
+ {
83
+ name: 'annulmentVerificationStatus',
84
+ ns: 'api',
85
+ type: 'api:AnnulmentVerificationStatusType',
86
+ },
87
+ {
88
+ name: 'annulmentDecisionDate',
89
+ ns: 'api',
90
+ type: 'base:InvoiceTimestampType',
91
+ optional: true,
92
+ },
93
+ { name: 'annulmentDecisionUser', ns: 'api', type: 'common:LoginType', optional: true },
94
+ ],
95
+ },
96
+ 'api:AnnulmentOperationListType': {
97
+ kind: 'complex',
98
+ name: 'AnnulmentOperationListType',
99
+ ns: 'api',
100
+ tsName: 'AnnulmentOperationListType',
101
+ content: 'element',
102
+ fields: [
103
+ {
104
+ name: 'annulmentOperation',
105
+ ns: 'api',
106
+ type: 'api:AnnulmentOperationType',
107
+ repeated: true,
108
+ maxOccurs: 100,
109
+ },
110
+ ],
111
+ },
112
+ 'api:AnnulmentOperationType': {
113
+ kind: 'complex',
114
+ name: 'AnnulmentOperationType',
115
+ ns: 'api',
116
+ tsName: 'AnnulmentOperationType',
117
+ content: 'element',
118
+ fields: [
119
+ { name: 'index', ns: 'api', type: 'base:InvoiceIndexType' },
120
+ { name: 'annulmentOperation', ns: 'api', type: 'api:ManageAnnulmentOperationType' },
121
+ { name: 'invoiceAnnulment', ns: 'api', type: 'xs:base64Binary' },
122
+ ],
123
+ },
124
+ 'api:AnnulmentVerificationStatusType': {
125
+ kind: 'simple',
126
+ name: 'AnnulmentVerificationStatusType',
127
+ ns: 'api',
128
+ tsName: 'AnnulmentVerificationStatusType',
129
+ primitive: 'string',
130
+ enumValues: [
131
+ 'NOT_VERIFIABLE',
132
+ 'VERIFICATION_PENDING',
133
+ 'VERIFICATION_DONE',
134
+ 'VERIFICATION_REJECTED',
135
+ ],
136
+ minLength: 1,
137
+ maxLength: 32,
138
+ },
139
+ 'api:AuditDataType': {
140
+ kind: 'complex',
141
+ name: 'AuditDataType',
142
+ ns: 'api',
143
+ tsName: 'AuditDataType',
144
+ content: 'element',
145
+ fields: [
146
+ { name: 'insdate', ns: 'api', type: 'base:InvoiceTimestampType' },
147
+ { name: 'insCusUser', ns: 'api', type: 'common:LoginType' },
148
+ { name: 'source', ns: 'api', type: 'api:SourceType' },
149
+ { name: 'transactionId', ns: 'api', type: 'common:EntityIdType', optional: true },
150
+ { name: 'index', ns: 'api', type: 'base:InvoiceIndexType', optional: true },
151
+ { name: 'batchIndex', ns: 'api', type: 'base:InvoiceUnboundedIndexType', optional: true },
152
+ { name: 'originalRequestVersion', ns: 'api', type: 'api:OriginalRequestVersionType' },
153
+ ],
154
+ },
155
+ 'api:BasicOnlineInvoiceRequestType': {
156
+ kind: 'complex',
157
+ name: 'BasicOnlineInvoiceRequestType',
158
+ ns: 'api',
159
+ tsName: 'BasicOnlineInvoiceRequestType',
160
+ content: 'element',
161
+ fields: [
162
+ { name: 'header', ns: 'common', type: 'common:BasicHeaderType' },
163
+ { name: 'user', ns: 'common', type: 'common:UserHeaderType' },
164
+ { name: 'software', ns: 'api', type: 'api:SoftwareType' },
165
+ ],
166
+ },
167
+ 'api:BasicOnlineInvoiceResponseType': {
168
+ kind: 'complex',
169
+ name: 'BasicOnlineInvoiceResponseType',
170
+ ns: 'api',
171
+ tsName: 'BasicOnlineInvoiceResponseType',
172
+ content: 'element',
173
+ fields: [
174
+ { name: 'header', ns: 'common', type: 'common:BasicHeaderType' },
175
+ { name: 'result', ns: 'common', type: 'common:BasicResultType' },
176
+ { name: 'software', ns: 'api', type: 'api:SoftwareType' },
177
+ ],
178
+ },
179
+ 'api:BusinessValidationResultType': {
180
+ kind: 'complex',
181
+ name: 'BusinessValidationResultType',
182
+ ns: 'api',
183
+ tsName: 'BusinessValidationResultType',
184
+ content: 'element',
185
+ fields: [
186
+ { name: 'validationResultCode', ns: 'api', type: 'common:BusinessResultCodeType' },
187
+ {
188
+ name: 'validationErrorCode',
189
+ ns: 'api',
190
+ type: 'common:SimpleText100NotBlankType',
191
+ optional: true,
192
+ },
193
+ { name: 'message', ns: 'api', type: 'common:SimpleText512NotBlankType', optional: true },
194
+ { name: 'pointer', ns: 'api', type: 'api:PointerType', optional: true },
195
+ ],
196
+ },
197
+ 'api:DateIntervalParamType': {
198
+ kind: 'complex',
199
+ name: 'DateIntervalParamType',
200
+ ns: 'api',
201
+ tsName: 'DateIntervalParamType',
202
+ content: 'element',
203
+ fields: [
204
+ { name: 'dateFrom', ns: 'api', type: 'base:InvoiceDateType' },
205
+ { name: 'dateTo', ns: 'api', type: 'base:InvoiceDateType' },
206
+ ],
207
+ },
208
+ 'api:DateTimeIntervalParamType': {
209
+ kind: 'complex',
210
+ name: 'DateTimeIntervalParamType',
211
+ ns: 'api',
212
+ tsName: 'DateTimeIntervalParamType',
213
+ content: 'element',
214
+ fields: [
215
+ { name: 'dateTimeFrom', ns: 'api', type: 'base:InvoiceTimestampType' },
216
+ { name: 'dateTimeTo', ns: 'api', type: 'base:InvoiceTimestampType' },
217
+ ],
218
+ },
219
+ 'api:GeneralErrorResponse': {
220
+ kind: 'complex',
221
+ name: 'GeneralErrorResponse',
222
+ ns: 'api',
223
+ tsName: 'GeneralErrorResponse',
224
+ content: 'element',
225
+ fields: [
226
+ { name: 'header', ns: 'common', type: 'common:BasicHeaderType' },
227
+ { name: 'result', ns: 'common', type: 'common:BasicResultType' },
228
+ { name: 'software', ns: 'api', type: 'api:SoftwareType' },
229
+ {
230
+ name: 'technicalValidationMessages',
231
+ ns: 'api',
232
+ type: 'common:TechnicalValidationResultType',
233
+ optional: true,
234
+ repeated: true,
235
+ },
236
+ ],
237
+ },
238
+ 'api:GeneralErrorResponseType': {
239
+ kind: 'complex',
240
+ name: 'GeneralErrorResponseType',
241
+ ns: 'api',
242
+ tsName: 'GeneralErrorResponseType',
243
+ content: 'element',
244
+ fields: [
245
+ { name: 'header', ns: 'common', type: 'common:BasicHeaderType' },
246
+ { name: 'result', ns: 'common', type: 'common:BasicResultType' },
247
+ { name: 'software', ns: 'api', type: 'api:SoftwareType' },
248
+ {
249
+ name: 'technicalValidationMessages',
250
+ ns: 'api',
251
+ type: 'common:TechnicalValidationResultType',
252
+ optional: true,
253
+ repeated: true,
254
+ },
255
+ ],
256
+ },
257
+ 'api:IncorporationType': {
258
+ kind: 'simple',
259
+ name: 'IncorporationType',
260
+ ns: 'api',
261
+ tsName: 'IncorporationType',
262
+ primitive: 'string',
263
+ enumValues: ['ORGANIZATION', 'SELF_EMPLOYED', 'TAXABLE_PERSON'],
264
+ minLength: 1,
265
+ maxLength: 15,
266
+ },
267
+ 'api:InvoiceChainDigestResultType': {
268
+ kind: 'complex',
269
+ name: 'InvoiceChainDigestResultType',
270
+ ns: 'api',
271
+ tsName: 'InvoiceChainDigestResultType',
272
+ content: 'element',
273
+ fields: [
274
+ { name: 'currentPage', ns: 'api', type: 'common:ResponsePageType' },
275
+ { name: 'availablePage', ns: 'api', type: 'common:ResponsePageType' },
276
+ {
277
+ name: 'invoiceChainElement',
278
+ ns: 'api',
279
+ type: 'api:InvoiceChainElementType',
280
+ optional: true,
281
+ repeated: true,
282
+ },
283
+ ],
284
+ },
285
+ 'api:InvoiceChainDigestType': {
286
+ kind: 'complex',
287
+ name: 'InvoiceChainDigestType',
288
+ ns: 'api',
289
+ tsName: 'InvoiceChainDigestType',
290
+ content: 'element',
291
+ fields: [
292
+ { name: 'invoiceNumber', ns: 'api', type: 'common:SimpleText50NotBlankType' },
293
+ { name: 'batchIndex', ns: 'api', type: 'base:InvoiceUnboundedIndexType', optional: true },
294
+ { name: 'invoiceOperation', ns: 'api', type: 'api:ManageInvoiceOperationType' },
295
+ { name: 'supplierTaxNumber', ns: 'api', type: 'common:TaxpayerIdType' },
296
+ { name: 'customerTaxNumber', ns: 'api', type: 'common:TaxpayerIdType', optional: true },
297
+ { name: 'insDate', ns: 'api', type: 'base:InvoiceTimestampType' },
298
+ { name: 'originalRequestVersion', ns: 'api', type: 'api:OriginalRequestVersionType' },
299
+ ],
300
+ },
301
+ 'api:InvoiceChainElementType': {
302
+ kind: 'complex',
303
+ name: 'InvoiceChainElementType',
304
+ ns: 'api',
305
+ tsName: 'InvoiceChainElementType',
306
+ content: 'element',
307
+ fields: [
308
+ { name: 'invoiceChainDigest', ns: 'api', type: 'api:InvoiceChainDigestType' },
309
+ { name: 'invoiceLines', ns: 'api', type: 'api:InvoiceLinesType', optional: true },
310
+ {
311
+ name: 'invoiceReferenceData',
312
+ ns: 'api',
313
+ type: 'api:InvoiceReferenceDataType',
314
+ optional: true,
315
+ },
316
+ ],
317
+ },
318
+ 'api:InvoiceChainQueryType': {
319
+ kind: 'complex',
320
+ name: 'InvoiceChainQueryType',
321
+ ns: 'api',
322
+ tsName: 'InvoiceChainQueryType',
323
+ content: 'element',
324
+ fields: [
325
+ { name: 'invoiceNumber', ns: 'api', type: 'common:SimpleText50NotBlankType' },
326
+ { name: 'invoiceDirection', ns: 'api', type: 'api:InvoiceDirectionType' },
327
+ { name: 'taxNumber', ns: 'api', type: 'common:TaxpayerIdType', optional: true },
328
+ ],
329
+ },
330
+ 'api:InvoiceDataResultType': {
331
+ kind: 'complex',
332
+ name: 'InvoiceDataResultType',
333
+ ns: 'api',
334
+ tsName: 'InvoiceDataResultType',
335
+ content: 'element',
336
+ fields: [
337
+ { name: 'invoiceData', ns: 'api', type: 'xs:base64Binary' },
338
+ { name: 'auditData', ns: 'api', type: 'api:AuditDataType' },
339
+ { name: 'compressedContentIndicator', ns: 'api', type: 'xs:boolean' },
340
+ { name: 'electronicInvoiceHash', ns: 'api', type: 'common:CryptoType', optional: true },
341
+ ],
342
+ },
343
+ 'api:InvoiceDigestResultType': {
344
+ kind: 'complex',
345
+ name: 'InvoiceDigestResultType',
346
+ ns: 'api',
347
+ tsName: 'InvoiceDigestResultType',
348
+ content: 'element',
349
+ fields: [
350
+ { name: 'currentPage', ns: 'api', type: 'common:ResponsePageType' },
351
+ { name: 'availablePage', ns: 'api', type: 'common:ResponsePageType' },
352
+ {
353
+ name: 'invoiceDigest',
354
+ ns: 'api',
355
+ type: 'api:InvoiceDigestType',
356
+ optional: true,
357
+ repeated: true,
358
+ },
359
+ ],
360
+ },
361
+ 'api:InvoiceDigestType': {
362
+ kind: 'complex',
363
+ name: 'InvoiceDigestType',
364
+ ns: 'api',
365
+ tsName: 'InvoiceDigestType',
366
+ content: 'element',
367
+ fields: [
368
+ { name: 'invoiceNumber', ns: 'api', type: 'common:SimpleText50NotBlankType' },
369
+ { name: 'batchIndex', ns: 'api', type: 'base:InvoiceUnboundedIndexType', optional: true },
370
+ { name: 'invoiceOperation', ns: 'api', type: 'api:ManageInvoiceOperationType' },
371
+ { name: 'invoiceCategory', ns: 'api', type: 'base:InvoiceCategoryType' },
372
+ { name: 'invoiceIssueDate', ns: 'api', type: 'base:InvoiceDateType' },
373
+ { name: 'supplierTaxNumber', ns: 'api', type: 'common:TaxpayerIdType' },
374
+ {
375
+ name: 'supplierGroupMemberTaxNumber',
376
+ ns: 'api',
377
+ type: 'common:TaxpayerIdType',
378
+ optional: true,
379
+ },
380
+ { name: 'supplierName', ns: 'api', type: 'common:SimpleText512NotBlankType' },
381
+ { name: 'customerTaxNumber', ns: 'api', type: 'common:TaxpayerIdType', optional: true },
382
+ {
383
+ name: 'customerGroupMemberTaxNumber',
384
+ ns: 'api',
385
+ type: 'common:TaxpayerIdType',
386
+ optional: true,
387
+ },
388
+ { name: 'customerName', ns: 'api', type: 'common:SimpleText512NotBlankType', optional: true },
389
+ { name: 'paymentMethod', ns: 'api', type: 'base:PaymentMethodType', optional: true },
390
+ { name: 'paymentDate', ns: 'api', type: 'base:InvoiceDateType', optional: true },
391
+ { name: 'invoiceAppearance', ns: 'api', type: 'base:InvoiceAppearanceType', optional: true },
392
+ { name: 'source', ns: 'api', type: 'api:SourceType', optional: true },
393
+ { name: 'invoiceDeliveryDate', ns: 'api', type: 'base:InvoiceDateType', optional: true },
394
+ { name: 'currency', ns: 'api', type: 'common:CurrencyType', optional: true },
395
+ { name: 'invoiceNetAmount', ns: 'api', type: 'base:MonetaryType', optional: true },
396
+ { name: 'invoiceNetAmountHUF', ns: 'api', type: 'base:MonetaryType', optional: true },
397
+ { name: 'invoiceVatAmount', ns: 'api', type: 'base:MonetaryType', optional: true },
398
+ { name: 'invoiceVatAmountHUF', ns: 'api', type: 'base:MonetaryType', optional: true },
399
+ { name: 'transactionId', ns: 'api', type: 'common:EntityIdType', optional: true },
400
+ { name: 'index', ns: 'api', type: 'base:InvoiceIndexType', optional: true },
401
+ {
402
+ name: 'originalInvoiceNumber',
403
+ ns: 'api',
404
+ type: 'common:SimpleText50NotBlankType',
405
+ optional: true,
406
+ },
407
+ {
408
+ name: 'modificationIndex',
409
+ ns: 'api',
410
+ type: 'base:InvoiceUnboundedIndexType',
411
+ optional: true,
412
+ },
413
+ { name: 'insDate', ns: 'api', type: 'base:InvoiceTimestampType' },
414
+ { name: 'completenessIndicator', ns: 'api', type: 'xs:boolean', optional: true },
415
+ ],
416
+ },
417
+ 'api:InvoiceDirectionType': {
418
+ kind: 'simple',
419
+ name: 'InvoiceDirectionType',
420
+ ns: 'api',
421
+ tsName: 'InvoiceDirectionType',
422
+ primitive: 'string',
423
+ enumValues: ['INBOUND', 'OUTBOUND'],
424
+ minLength: 1,
425
+ maxLength: 15,
426
+ },
427
+ 'api:InvoiceLinesType': {
428
+ kind: 'complex',
429
+ name: 'InvoiceLinesType',
430
+ ns: 'api',
431
+ tsName: 'InvoiceLinesType',
432
+ content: 'element',
433
+ fields: [
434
+ { name: 'maxLineNumber', ns: 'api', type: 'base:LineNumberType' },
435
+ {
436
+ name: 'newCreatedLines',
437
+ ns: 'api',
438
+ type: 'api:NewCreatedLinesType',
439
+ optional: true,
440
+ repeated: true,
441
+ },
442
+ ],
443
+ },
444
+ 'api:InvoiceNumberQueryType': {
445
+ kind: 'complex',
446
+ name: 'InvoiceNumberQueryType',
447
+ ns: 'api',
448
+ tsName: 'InvoiceNumberQueryType',
449
+ content: 'element',
450
+ fields: [
451
+ { name: 'invoiceNumber', ns: 'api', type: 'common:SimpleText50NotBlankType' },
452
+ { name: 'invoiceDirection', ns: 'api', type: 'api:InvoiceDirectionType' },
453
+ { name: 'batchIndex', ns: 'api', type: 'base:InvoiceUnboundedIndexType', optional: true },
454
+ { name: 'supplierTaxNumber', ns: 'api', type: 'common:TaxpayerIdType', optional: true },
455
+ ],
456
+ },
457
+ 'api:InvoiceOperationListType': {
458
+ kind: 'complex',
459
+ name: 'InvoiceOperationListType',
460
+ ns: 'api',
461
+ tsName: 'InvoiceOperationListType',
462
+ content: 'element',
463
+ fields: [
464
+ { name: 'compressedContent', ns: 'api', type: 'xs:boolean' },
465
+ {
466
+ name: 'invoiceOperation',
467
+ ns: 'api',
468
+ type: 'api:InvoiceOperationType',
469
+ repeated: true,
470
+ maxOccurs: 100,
471
+ },
472
+ ],
473
+ },
474
+ 'api:InvoiceOperationType': {
475
+ kind: 'complex',
476
+ name: 'InvoiceOperationType',
477
+ ns: 'api',
478
+ tsName: 'InvoiceOperationType',
479
+ content: 'element',
480
+ fields: [
481
+ { name: 'index', ns: 'api', type: 'base:InvoiceIndexType' },
482
+ { name: 'invoiceOperation', ns: 'api', type: 'api:ManageInvoiceOperationType' },
483
+ { name: 'invoiceData', ns: 'api', type: 'xs:base64Binary' },
484
+ { name: 'electronicInvoiceHash', ns: 'api', type: 'common:CryptoType', optional: true },
485
+ ],
486
+ },
487
+ 'api:InvoiceQueryParamsType': {
488
+ kind: 'complex',
489
+ name: 'InvoiceQueryParamsType',
490
+ ns: 'api',
491
+ tsName: 'InvoiceQueryParamsType',
492
+ content: 'element',
493
+ fields: [
494
+ { name: 'mandatoryQueryParams', ns: 'api', type: 'api:MandatoryQueryParamsType' },
495
+ {
496
+ name: 'additionalQueryParams',
497
+ ns: 'api',
498
+ type: 'api:AdditionalQueryParamsType',
499
+ optional: true,
500
+ },
501
+ {
502
+ name: 'relationalQueryParams',
503
+ ns: 'api',
504
+ type: 'api:RelationalQueryParamsType',
505
+ optional: true,
506
+ },
507
+ {
508
+ name: 'transactionQueryParams',
509
+ ns: 'api',
510
+ type: 'api:TransactionQueryParamsType',
511
+ optional: true,
512
+ },
513
+ ],
514
+ },
515
+ 'api:InvoiceReferenceDataType': {
516
+ kind: 'complex',
517
+ name: 'InvoiceReferenceDataType',
518
+ ns: 'api',
519
+ tsName: 'InvoiceReferenceDataType',
520
+ content: 'element',
521
+ fields: [
522
+ { name: 'originalInvoiceNumber', ns: 'api', type: 'common:SimpleText50NotBlankType' },
523
+ { name: 'modifyWithoutMaster', ns: 'api', type: 'xs:boolean' },
524
+ {
525
+ name: 'modificationTimestamp',
526
+ ns: 'api',
527
+ type: 'base:InvoiceTimestampType',
528
+ optional: true,
529
+ },
530
+ {
531
+ name: 'modificationIndex',
532
+ ns: 'api',
533
+ type: 'base:InvoiceUnboundedIndexType',
534
+ optional: true,
535
+ },
536
+ ],
537
+ choiceGroups: [{ members: ['modificationTimestamp', 'modificationIndex'], required: true }],
538
+ },
539
+ 'api:InvoiceStatusType': {
540
+ kind: 'simple',
541
+ name: 'InvoiceStatusType',
542
+ ns: 'api',
543
+ tsName: 'InvoiceStatusType',
544
+ primitive: 'string',
545
+ enumValues: ['RECEIVED', 'PROCESSING', 'SAVED', 'DONE', 'ABORTED'],
546
+ minLength: 1,
547
+ maxLength: 15,
548
+ },
549
+ 'api:ManageAnnulmentOperationType': {
550
+ kind: 'simple',
551
+ name: 'ManageAnnulmentOperationType',
552
+ ns: 'api',
553
+ tsName: 'ManageAnnulmentOperationType',
554
+ primitive: 'string',
555
+ enumValues: ['ANNUL'],
556
+ minLength: 1,
557
+ maxLength: 8,
558
+ },
559
+ 'api:ManageAnnulmentRequest': {
560
+ kind: 'complex',
561
+ name: 'ManageAnnulmentRequest',
562
+ ns: 'api',
563
+ tsName: 'ManageAnnulmentRequest',
564
+ content: 'element',
565
+ fields: [
566
+ { name: 'header', ns: 'common', type: 'common:BasicHeaderType' },
567
+ { name: 'user', ns: 'common', type: 'common:UserHeaderType' },
568
+ { name: 'software', ns: 'api', type: 'api:SoftwareType' },
569
+ { name: 'exchangeToken', ns: 'api', type: 'common:SimpleText50NotBlankType' },
570
+ { name: 'annulmentOperations', ns: 'api', type: 'api:AnnulmentOperationListType' },
571
+ ],
572
+ },
573
+ 'api:ManageAnnulmentRequestType': {
574
+ kind: 'complex',
575
+ name: 'ManageAnnulmentRequestType',
576
+ ns: 'api',
577
+ tsName: 'ManageAnnulmentRequestType',
578
+ content: 'element',
579
+ fields: [
580
+ { name: 'header', ns: 'common', type: 'common:BasicHeaderType' },
581
+ { name: 'user', ns: 'common', type: 'common:UserHeaderType' },
582
+ { name: 'software', ns: 'api', type: 'api:SoftwareType' },
583
+ { name: 'exchangeToken', ns: 'api', type: 'common:SimpleText50NotBlankType' },
584
+ { name: 'annulmentOperations', ns: 'api', type: 'api:AnnulmentOperationListType' },
585
+ ],
586
+ },
587
+ 'api:ManageAnnulmentResponse': {
588
+ kind: 'complex',
589
+ name: 'ManageAnnulmentResponse',
590
+ ns: 'api',
591
+ tsName: 'ManageAnnulmentResponse',
592
+ content: 'element',
593
+ fields: [
594
+ { name: 'header', ns: 'common', type: 'common:BasicHeaderType' },
595
+ { name: 'result', ns: 'common', type: 'common:BasicResultType' },
596
+ { name: 'software', ns: 'api', type: 'api:SoftwareType' },
597
+ { name: 'transactionId', ns: 'api', type: 'common:EntityIdType' },
598
+ ],
599
+ },
600
+ 'api:ManageInvoiceOperationType': {
601
+ kind: 'simple',
602
+ name: 'ManageInvoiceOperationType',
603
+ ns: 'api',
604
+ tsName: 'ManageInvoiceOperationType',
605
+ primitive: 'string',
606
+ enumValues: ['CREATE', 'MODIFY', 'STORNO'],
607
+ minLength: 1,
608
+ maxLength: 8,
609
+ },
610
+ 'api:ManageInvoiceRequest': {
611
+ kind: 'complex',
612
+ name: 'ManageInvoiceRequest',
613
+ ns: 'api',
614
+ tsName: 'ManageInvoiceRequest',
615
+ content: 'element',
616
+ fields: [
617
+ { name: 'header', ns: 'common', type: 'common:BasicHeaderType' },
618
+ { name: 'user', ns: 'common', type: 'common:UserHeaderType' },
619
+ { name: 'software', ns: 'api', type: 'api:SoftwareType' },
620
+ { name: 'exchangeToken', ns: 'api', type: 'common:SimpleText50NotBlankType' },
621
+ { name: 'invoiceOperations', ns: 'api', type: 'api:InvoiceOperationListType' },
622
+ ],
623
+ },
624
+ 'api:ManageInvoiceRequestType': {
625
+ kind: 'complex',
626
+ name: 'ManageInvoiceRequestType',
627
+ ns: 'api',
628
+ tsName: 'ManageInvoiceRequestType',
629
+ content: 'element',
630
+ fields: [
631
+ { name: 'header', ns: 'common', type: 'common:BasicHeaderType' },
632
+ { name: 'user', ns: 'common', type: 'common:UserHeaderType' },
633
+ { name: 'software', ns: 'api', type: 'api:SoftwareType' },
634
+ { name: 'exchangeToken', ns: 'api', type: 'common:SimpleText50NotBlankType' },
635
+ { name: 'invoiceOperations', ns: 'api', type: 'api:InvoiceOperationListType' },
636
+ ],
637
+ },
638
+ 'api:ManageInvoiceResponse': {
639
+ kind: 'complex',
640
+ name: 'ManageInvoiceResponse',
641
+ ns: 'api',
642
+ tsName: 'ManageInvoiceResponse',
643
+ content: 'element',
644
+ fields: [
645
+ { name: 'header', ns: 'common', type: 'common:BasicHeaderType' },
646
+ { name: 'result', ns: 'common', type: 'common:BasicResultType' },
647
+ { name: 'software', ns: 'api', type: 'api:SoftwareType' },
648
+ { name: 'transactionId', ns: 'api', type: 'common:EntityIdType' },
649
+ ],
650
+ },
651
+ 'api:MandatoryQueryParamsType': {
652
+ kind: 'complex',
653
+ name: 'MandatoryQueryParamsType',
654
+ ns: 'api',
655
+ tsName: 'MandatoryQueryParamsType',
656
+ content: 'element',
657
+ fields: [
658
+ { name: 'invoiceIssueDate', ns: 'api', type: 'api:DateIntervalParamType', optional: true },
659
+ { name: 'insDate', ns: 'api', type: 'api:DateTimeIntervalParamType', optional: true },
660
+ {
661
+ name: 'originalInvoiceNumber',
662
+ ns: 'api',
663
+ type: 'common:SimpleText50NotBlankType',
664
+ optional: true,
665
+ },
666
+ ],
667
+ choiceGroups: [
668
+ { members: ['invoiceIssueDate', 'insDate', 'originalInvoiceNumber'], required: true },
669
+ ],
670
+ },
671
+ 'api:NewCreatedLinesType': {
672
+ kind: 'complex',
673
+ name: 'NewCreatedLinesType',
674
+ ns: 'api',
675
+ tsName: 'NewCreatedLinesType',
676
+ content: 'element',
677
+ fields: [
678
+ { name: 'lineNumberIntervalStart', ns: 'api', type: 'base:LineNumberType' },
679
+ { name: 'lineNumberIntervalEnd', ns: 'api', type: 'base:LineNumberType' },
680
+ ],
681
+ },
682
+ 'api:OriginalRequestVersionType': {
683
+ kind: 'simple',
684
+ name: 'OriginalRequestVersionType',
685
+ ns: 'api',
686
+ tsName: 'OriginalRequestVersionType',
687
+ primitive: 'string',
688
+ enumValues: ['1.0', '1.1', '2.0', '3.0'],
689
+ minLength: 1,
690
+ maxLength: 8,
691
+ },
692
+ 'api:PointerType': {
693
+ kind: 'complex',
694
+ name: 'PointerType',
695
+ ns: 'api',
696
+ tsName: 'PointerType',
697
+ content: 'element',
698
+ fields: [
699
+ { name: 'tag', ns: 'api', type: 'common:SimpleText1024NotBlankType', optional: true },
700
+ { name: 'value', ns: 'api', type: 'common:SimpleText1024NotBlankType', optional: true },
701
+ { name: 'line', ns: 'api', type: 'base:LineNumberType', optional: true },
702
+ {
703
+ name: 'originalInvoiceNumber',
704
+ ns: 'api',
705
+ type: 'common:SimpleText50NotBlankType',
706
+ optional: true,
707
+ },
708
+ ],
709
+ },
710
+ 'api:ProcessingResultListType': {
711
+ kind: 'complex',
712
+ name: 'ProcessingResultListType',
713
+ ns: 'api',
714
+ tsName: 'ProcessingResultListType',
715
+ content: 'element',
716
+ fields: [
717
+ { name: 'processingResult', ns: 'api', type: 'api:ProcessingResultType', repeated: true },
718
+ { name: 'originalRequestVersion', ns: 'api', type: 'api:OriginalRequestVersionType' },
719
+ { name: 'annulmentData', ns: 'api', type: 'api:AnnulmentDataType', optional: true },
720
+ ],
721
+ },
722
+ 'api:ProcessingResultType': {
723
+ kind: 'complex',
724
+ name: 'ProcessingResultType',
725
+ ns: 'api',
726
+ tsName: 'ProcessingResultType',
727
+ content: 'element',
728
+ fields: [
729
+ { name: 'index', ns: 'api', type: 'base:InvoiceIndexType' },
730
+ { name: 'batchIndex', ns: 'api', type: 'base:InvoiceUnboundedIndexType', optional: true },
731
+ { name: 'invoiceStatus', ns: 'api', type: 'api:InvoiceStatusType' },
732
+ {
733
+ name: 'technicalValidationMessages',
734
+ ns: 'api',
735
+ type: 'common:TechnicalValidationResultType',
736
+ optional: true,
737
+ repeated: true,
738
+ },
739
+ {
740
+ name: 'businessValidationMessages',
741
+ ns: 'api',
742
+ type: 'api:BusinessValidationResultType',
743
+ optional: true,
744
+ repeated: true,
745
+ },
746
+ { name: 'compressedContentIndicator', ns: 'api', type: 'xs:boolean' },
747
+ { name: 'originalRequest', ns: 'api', type: 'xs:base64Binary', optional: true },
748
+ ],
749
+ },
750
+ 'api:QueryInvoiceChainDigestRequest': {
751
+ kind: 'complex',
752
+ name: 'QueryInvoiceChainDigestRequest',
753
+ ns: 'api',
754
+ tsName: 'QueryInvoiceChainDigestRequest',
755
+ content: 'element',
756
+ fields: [
757
+ { name: 'header', ns: 'common', type: 'common:BasicHeaderType' },
758
+ { name: 'user', ns: 'common', type: 'common:UserHeaderType' },
759
+ { name: 'software', ns: 'api', type: 'api:SoftwareType' },
760
+ { name: 'page', ns: 'api', type: 'common:RequestPageType' },
761
+ { name: 'invoiceChainQuery', ns: 'api', type: 'api:InvoiceChainQueryType' },
762
+ ],
763
+ },
764
+ 'api:QueryInvoiceChainDigestRequestType': {
765
+ kind: 'complex',
766
+ name: 'QueryInvoiceChainDigestRequestType',
767
+ ns: 'api',
768
+ tsName: 'QueryInvoiceChainDigestRequestType',
769
+ content: 'element',
770
+ fields: [
771
+ { name: 'header', ns: 'common', type: 'common:BasicHeaderType' },
772
+ { name: 'user', ns: 'common', type: 'common:UserHeaderType' },
773
+ { name: 'software', ns: 'api', type: 'api:SoftwareType' },
774
+ { name: 'page', ns: 'api', type: 'common:RequestPageType' },
775
+ { name: 'invoiceChainQuery', ns: 'api', type: 'api:InvoiceChainQueryType' },
776
+ ],
777
+ },
778
+ 'api:QueryInvoiceChainDigestResponse': {
779
+ kind: 'complex',
780
+ name: 'QueryInvoiceChainDigestResponse',
781
+ ns: 'api',
782
+ tsName: 'QueryInvoiceChainDigestResponse',
783
+ content: 'element',
784
+ fields: [
785
+ { name: 'header', ns: 'common', type: 'common:BasicHeaderType' },
786
+ { name: 'result', ns: 'common', type: 'common:BasicResultType' },
787
+ { name: 'software', ns: 'api', type: 'api:SoftwareType' },
788
+ { name: 'invoiceChainDigestResult', ns: 'api', type: 'api:InvoiceChainDigestResultType' },
789
+ ],
790
+ },
791
+ 'api:QueryInvoiceChainDigestResponseType': {
792
+ kind: 'complex',
793
+ name: 'QueryInvoiceChainDigestResponseType',
794
+ ns: 'api',
795
+ tsName: 'QueryInvoiceChainDigestResponseType',
796
+ content: 'element',
797
+ fields: [
798
+ { name: 'header', ns: 'common', type: 'common:BasicHeaderType' },
799
+ { name: 'result', ns: 'common', type: 'common:BasicResultType' },
800
+ { name: 'software', ns: 'api', type: 'api:SoftwareType' },
801
+ { name: 'invoiceChainDigestResult', ns: 'api', type: 'api:InvoiceChainDigestResultType' },
802
+ ],
803
+ },
804
+ 'api:QueryInvoiceCheckRequest': {
805
+ kind: 'complex',
806
+ name: 'QueryInvoiceCheckRequest',
807
+ ns: 'api',
808
+ tsName: 'QueryInvoiceCheckRequest',
809
+ content: 'element',
810
+ fields: [
811
+ { name: 'header', ns: 'common', type: 'common:BasicHeaderType' },
812
+ { name: 'user', ns: 'common', type: 'common:UserHeaderType' },
813
+ { name: 'software', ns: 'api', type: 'api:SoftwareType' },
814
+ { name: 'invoiceNumberQuery', ns: 'api', type: 'api:InvoiceNumberQueryType' },
815
+ ],
816
+ },
817
+ 'api:QueryInvoiceCheckResponse': {
818
+ kind: 'complex',
819
+ name: 'QueryInvoiceCheckResponse',
820
+ ns: 'api',
821
+ tsName: 'QueryInvoiceCheckResponse',
822
+ content: 'element',
823
+ fields: [
824
+ { name: 'header', ns: 'common', type: 'common:BasicHeaderType' },
825
+ { name: 'result', ns: 'common', type: 'common:BasicResultType' },
826
+ { name: 'software', ns: 'api', type: 'api:SoftwareType' },
827
+ { name: 'invoiceCheckResult', ns: 'api', type: 'xs:boolean' },
828
+ ],
829
+ },
830
+ 'api:QueryInvoiceCheckResponseType': {
831
+ kind: 'complex',
832
+ name: 'QueryInvoiceCheckResponseType',
833
+ ns: 'api',
834
+ tsName: 'QueryInvoiceCheckResponseType',
835
+ content: 'element',
836
+ fields: [
837
+ { name: 'header', ns: 'common', type: 'common:BasicHeaderType' },
838
+ { name: 'result', ns: 'common', type: 'common:BasicResultType' },
839
+ { name: 'software', ns: 'api', type: 'api:SoftwareType' },
840
+ { name: 'invoiceCheckResult', ns: 'api', type: 'xs:boolean' },
841
+ ],
842
+ },
843
+ 'api:QueryInvoiceDataRequest': {
844
+ kind: 'complex',
845
+ name: 'QueryInvoiceDataRequest',
846
+ ns: 'api',
847
+ tsName: 'QueryInvoiceDataRequest',
848
+ content: 'element',
849
+ fields: [
850
+ { name: 'header', ns: 'common', type: 'common:BasicHeaderType' },
851
+ { name: 'user', ns: 'common', type: 'common:UserHeaderType' },
852
+ { name: 'software', ns: 'api', type: 'api:SoftwareType' },
853
+ { name: 'invoiceNumberQuery', ns: 'api', type: 'api:InvoiceNumberQueryType' },
854
+ ],
855
+ },
856
+ 'api:QueryInvoiceDataRequestType': {
857
+ kind: 'complex',
858
+ name: 'QueryInvoiceDataRequestType',
859
+ ns: 'api',
860
+ tsName: 'QueryInvoiceDataRequestType',
861
+ content: 'element',
862
+ fields: [
863
+ { name: 'header', ns: 'common', type: 'common:BasicHeaderType' },
864
+ { name: 'user', ns: 'common', type: 'common:UserHeaderType' },
865
+ { name: 'software', ns: 'api', type: 'api:SoftwareType' },
866
+ { name: 'invoiceNumberQuery', ns: 'api', type: 'api:InvoiceNumberQueryType' },
867
+ ],
868
+ },
869
+ 'api:QueryInvoiceDataResponse': {
870
+ kind: 'complex',
871
+ name: 'QueryInvoiceDataResponse',
872
+ ns: 'api',
873
+ tsName: 'QueryInvoiceDataResponse',
874
+ content: 'element',
875
+ fields: [
876
+ { name: 'header', ns: 'common', type: 'common:BasicHeaderType' },
877
+ { name: 'result', ns: 'common', type: 'common:BasicResultType' },
878
+ { name: 'software', ns: 'api', type: 'api:SoftwareType' },
879
+ { name: 'invoiceDataResult', ns: 'api', type: 'api:InvoiceDataResultType', optional: true },
880
+ ],
881
+ },
882
+ 'api:QueryInvoiceDataResponseType': {
883
+ kind: 'complex',
884
+ name: 'QueryInvoiceDataResponseType',
885
+ ns: 'api',
886
+ tsName: 'QueryInvoiceDataResponseType',
887
+ content: 'element',
888
+ fields: [
889
+ { name: 'header', ns: 'common', type: 'common:BasicHeaderType' },
890
+ { name: 'result', ns: 'common', type: 'common:BasicResultType' },
891
+ { name: 'software', ns: 'api', type: 'api:SoftwareType' },
892
+ { name: 'invoiceDataResult', ns: 'api', type: 'api:InvoiceDataResultType', optional: true },
893
+ ],
894
+ },
895
+ 'api:QueryInvoiceDigestRequest': {
896
+ kind: 'complex',
897
+ name: 'QueryInvoiceDigestRequest',
898
+ ns: 'api',
899
+ tsName: 'QueryInvoiceDigestRequest',
900
+ content: 'element',
901
+ fields: [
902
+ { name: 'header', ns: 'common', type: 'common:BasicHeaderType' },
903
+ { name: 'user', ns: 'common', type: 'common:UserHeaderType' },
904
+ { name: 'software', ns: 'api', type: 'api:SoftwareType' },
905
+ { name: 'page', ns: 'api', type: 'common:RequestPageType' },
906
+ { name: 'invoiceDirection', ns: 'api', type: 'api:InvoiceDirectionType' },
907
+ { name: 'invoiceQueryParams', ns: 'api', type: 'api:InvoiceQueryParamsType' },
908
+ ],
909
+ },
910
+ 'api:QueryInvoiceDigestRequestType': {
911
+ kind: 'complex',
912
+ name: 'QueryInvoiceDigestRequestType',
913
+ ns: 'api',
914
+ tsName: 'QueryInvoiceDigestRequestType',
915
+ content: 'element',
916
+ fields: [
917
+ { name: 'header', ns: 'common', type: 'common:BasicHeaderType' },
918
+ { name: 'user', ns: 'common', type: 'common:UserHeaderType' },
919
+ { name: 'software', ns: 'api', type: 'api:SoftwareType' },
920
+ { name: 'page', ns: 'api', type: 'common:RequestPageType' },
921
+ { name: 'invoiceDirection', ns: 'api', type: 'api:InvoiceDirectionType' },
922
+ { name: 'invoiceQueryParams', ns: 'api', type: 'api:InvoiceQueryParamsType' },
923
+ ],
924
+ },
925
+ 'api:QueryInvoiceDigestResponse': {
926
+ kind: 'complex',
927
+ name: 'QueryInvoiceDigestResponse',
928
+ ns: 'api',
929
+ tsName: 'QueryInvoiceDigestResponse',
930
+ content: 'element',
931
+ fields: [
932
+ { name: 'header', ns: 'common', type: 'common:BasicHeaderType' },
933
+ { name: 'result', ns: 'common', type: 'common:BasicResultType' },
934
+ { name: 'software', ns: 'api', type: 'api:SoftwareType' },
935
+ { name: 'invoiceDigestResult', ns: 'api', type: 'api:InvoiceDigestResultType' },
936
+ ],
937
+ },
938
+ 'api:QueryInvoiceDigestResponseType': {
939
+ kind: 'complex',
940
+ name: 'QueryInvoiceDigestResponseType',
941
+ ns: 'api',
942
+ tsName: 'QueryInvoiceDigestResponseType',
943
+ content: 'element',
944
+ fields: [
945
+ { name: 'header', ns: 'common', type: 'common:BasicHeaderType' },
946
+ { name: 'result', ns: 'common', type: 'common:BasicResultType' },
947
+ { name: 'software', ns: 'api', type: 'api:SoftwareType' },
948
+ { name: 'invoiceDigestResult', ns: 'api', type: 'api:InvoiceDigestResultType' },
949
+ ],
950
+ },
951
+ 'api:QueryNameType': {
952
+ kind: 'simple',
953
+ name: 'QueryNameType',
954
+ ns: 'api',
955
+ tsName: 'QueryNameType',
956
+ primitive: 'string',
957
+ pattern: '.*[^\\s].*',
958
+ minLength: 5,
959
+ maxLength: 512,
960
+ },
961
+ 'api:QueryOperatorType': {
962
+ kind: 'simple',
963
+ name: 'QueryOperatorType',
964
+ ns: 'api',
965
+ tsName: 'QueryOperatorType',
966
+ primitive: 'string',
967
+ enumValues: ['EQ', 'GT', 'GTE', 'LT', 'LTE'],
968
+ minLength: 1,
969
+ maxLength: 8,
970
+ },
971
+ 'api:QueryTaxpayerRequest': {
972
+ kind: 'complex',
973
+ name: 'QueryTaxpayerRequest',
974
+ ns: 'api',
975
+ tsName: 'QueryTaxpayerRequest',
976
+ content: 'element',
977
+ fields: [
978
+ { name: 'header', ns: 'common', type: 'common:BasicHeaderType' },
979
+ { name: 'user', ns: 'common', type: 'common:UserHeaderType' },
980
+ { name: 'software', ns: 'api', type: 'api:SoftwareType' },
981
+ { name: 'taxNumber', ns: 'api', type: 'common:TaxpayerIdType' },
982
+ ],
983
+ },
984
+ 'api:QueryTaxpayerRequestType': {
985
+ kind: 'complex',
986
+ name: 'QueryTaxpayerRequestType',
987
+ ns: 'api',
988
+ tsName: 'QueryTaxpayerRequestType',
989
+ content: 'element',
990
+ fields: [
991
+ { name: 'header', ns: 'common', type: 'common:BasicHeaderType' },
992
+ { name: 'user', ns: 'common', type: 'common:UserHeaderType' },
993
+ { name: 'software', ns: 'api', type: 'api:SoftwareType' },
994
+ { name: 'taxNumber', ns: 'api', type: 'common:TaxpayerIdType' },
995
+ ],
996
+ },
997
+ 'api:QueryTaxpayerResponse': {
998
+ kind: 'complex',
999
+ name: 'QueryTaxpayerResponse',
1000
+ ns: 'api',
1001
+ tsName: 'QueryTaxpayerResponse',
1002
+ content: 'element',
1003
+ fields: [
1004
+ { name: 'header', ns: 'common', type: 'common:BasicHeaderType' },
1005
+ { name: 'result', ns: 'common', type: 'common:BasicResultType' },
1006
+ { name: 'software', ns: 'api', type: 'api:SoftwareType' },
1007
+ { name: 'infoDate', ns: 'api', type: 'xs:dateTime', optional: true },
1008
+ { name: 'taxpayerValidity', ns: 'api', type: 'xs:boolean', optional: true },
1009
+ { name: 'taxpayerData', ns: 'api', type: 'api:TaxpayerDataType', optional: true },
1010
+ ],
1011
+ },
1012
+ 'api:QueryTaxpayerResponseType': {
1013
+ kind: 'complex',
1014
+ name: 'QueryTaxpayerResponseType',
1015
+ ns: 'api',
1016
+ tsName: 'QueryTaxpayerResponseType',
1017
+ content: 'element',
1018
+ fields: [
1019
+ { name: 'header', ns: 'common', type: 'common:BasicHeaderType' },
1020
+ { name: 'result', ns: 'common', type: 'common:BasicResultType' },
1021
+ { name: 'software', ns: 'api', type: 'api:SoftwareType' },
1022
+ { name: 'infoDate', ns: 'api', type: 'xs:dateTime', optional: true },
1023
+ { name: 'taxpayerValidity', ns: 'api', type: 'xs:boolean', optional: true },
1024
+ { name: 'taxpayerData', ns: 'api', type: 'api:TaxpayerDataType', optional: true },
1025
+ ],
1026
+ },
1027
+ 'api:QueryTransactionListRequest': {
1028
+ kind: 'complex',
1029
+ name: 'QueryTransactionListRequest',
1030
+ ns: 'api',
1031
+ tsName: 'QueryTransactionListRequest',
1032
+ content: 'element',
1033
+ fields: [
1034
+ { name: 'header', ns: 'common', type: 'common:BasicHeaderType' },
1035
+ { name: 'user', ns: 'common', type: 'common:UserHeaderType' },
1036
+ { name: 'software', ns: 'api', type: 'api:SoftwareType' },
1037
+ { name: 'page', ns: 'api', type: 'common:RequestPageType' },
1038
+ { name: 'insDate', ns: 'api', type: 'api:DateTimeIntervalParamType' },
1039
+ { name: 'requestStatus', ns: 'api', type: 'api:RequestStatusType', optional: true },
1040
+ ],
1041
+ },
1042
+ 'api:QueryTransactionListRequestType': {
1043
+ kind: 'complex',
1044
+ name: 'QueryTransactionListRequestType',
1045
+ ns: 'api',
1046
+ tsName: 'QueryTransactionListRequestType',
1047
+ content: 'element',
1048
+ fields: [
1049
+ { name: 'header', ns: 'common', type: 'common:BasicHeaderType' },
1050
+ { name: 'user', ns: 'common', type: 'common:UserHeaderType' },
1051
+ { name: 'software', ns: 'api', type: 'api:SoftwareType' },
1052
+ { name: 'page', ns: 'api', type: 'common:RequestPageType' },
1053
+ { name: 'insDate', ns: 'api', type: 'api:DateTimeIntervalParamType' },
1054
+ { name: 'requestStatus', ns: 'api', type: 'api:RequestStatusType', optional: true },
1055
+ ],
1056
+ },
1057
+ 'api:QueryTransactionListResponse': {
1058
+ kind: 'complex',
1059
+ name: 'QueryTransactionListResponse',
1060
+ ns: 'api',
1061
+ tsName: 'QueryTransactionListResponse',
1062
+ content: 'element',
1063
+ fields: [
1064
+ { name: 'header', ns: 'common', type: 'common:BasicHeaderType' },
1065
+ { name: 'result', ns: 'common', type: 'common:BasicResultType' },
1066
+ { name: 'software', ns: 'api', type: 'api:SoftwareType' },
1067
+ { name: 'transactionListResult', ns: 'api', type: 'api:TransactionListResultType' },
1068
+ ],
1069
+ },
1070
+ 'api:QueryTransactionListResponseType': {
1071
+ kind: 'complex',
1072
+ name: 'QueryTransactionListResponseType',
1073
+ ns: 'api',
1074
+ tsName: 'QueryTransactionListResponseType',
1075
+ content: 'element',
1076
+ fields: [
1077
+ { name: 'header', ns: 'common', type: 'common:BasicHeaderType' },
1078
+ { name: 'result', ns: 'common', type: 'common:BasicResultType' },
1079
+ { name: 'software', ns: 'api', type: 'api:SoftwareType' },
1080
+ { name: 'transactionListResult', ns: 'api', type: 'api:TransactionListResultType' },
1081
+ ],
1082
+ },
1083
+ 'api:QueryTransactionStatusRequest': {
1084
+ kind: 'complex',
1085
+ name: 'QueryTransactionStatusRequest',
1086
+ ns: 'api',
1087
+ tsName: 'QueryTransactionStatusRequest',
1088
+ content: 'element',
1089
+ fields: [
1090
+ { name: 'header', ns: 'common', type: 'common:BasicHeaderType' },
1091
+ { name: 'user', ns: 'common', type: 'common:UserHeaderType' },
1092
+ { name: 'software', ns: 'api', type: 'api:SoftwareType' },
1093
+ { name: 'transactionId', ns: 'api', type: 'common:EntityIdType' },
1094
+ { name: 'returnOriginalRequest', ns: 'api', type: 'xs:boolean', optional: true },
1095
+ ],
1096
+ },
1097
+ 'api:QueryTransactionStatusRequestType': {
1098
+ kind: 'complex',
1099
+ name: 'QueryTransactionStatusRequestType',
1100
+ ns: 'api',
1101
+ tsName: 'QueryTransactionStatusRequestType',
1102
+ content: 'element',
1103
+ fields: [
1104
+ { name: 'header', ns: 'common', type: 'common:BasicHeaderType' },
1105
+ { name: 'user', ns: 'common', type: 'common:UserHeaderType' },
1106
+ { name: 'software', ns: 'api', type: 'api:SoftwareType' },
1107
+ { name: 'transactionId', ns: 'api', type: 'common:EntityIdType' },
1108
+ { name: 'returnOriginalRequest', ns: 'api', type: 'xs:boolean', optional: true },
1109
+ ],
1110
+ },
1111
+ 'api:QueryTransactionStatusResponse': {
1112
+ kind: 'complex',
1113
+ name: 'QueryTransactionStatusResponse',
1114
+ ns: 'api',
1115
+ tsName: 'QueryTransactionStatusResponse',
1116
+ content: 'element',
1117
+ fields: [
1118
+ { name: 'header', ns: 'common', type: 'common:BasicHeaderType' },
1119
+ { name: 'result', ns: 'common', type: 'common:BasicResultType' },
1120
+ { name: 'software', ns: 'api', type: 'api:SoftwareType' },
1121
+ {
1122
+ name: 'processingResults',
1123
+ ns: 'api',
1124
+ type: 'api:ProcessingResultListType',
1125
+ optional: true,
1126
+ },
1127
+ ],
1128
+ },
1129
+ 'api:QueryTransactionStatusResponseType': {
1130
+ kind: 'complex',
1131
+ name: 'QueryTransactionStatusResponseType',
1132
+ ns: 'api',
1133
+ tsName: 'QueryTransactionStatusResponseType',
1134
+ content: 'element',
1135
+ fields: [
1136
+ { name: 'header', ns: 'common', type: 'common:BasicHeaderType' },
1137
+ { name: 'result', ns: 'common', type: 'common:BasicResultType' },
1138
+ { name: 'software', ns: 'api', type: 'api:SoftwareType' },
1139
+ {
1140
+ name: 'processingResults',
1141
+ ns: 'api',
1142
+ type: 'api:ProcessingResultListType',
1143
+ optional: true,
1144
+ },
1145
+ ],
1146
+ },
1147
+ 'api:RelationalQueryParamsType': {
1148
+ kind: 'complex',
1149
+ name: 'RelationalQueryParamsType',
1150
+ ns: 'api',
1151
+ tsName: 'RelationalQueryParamsType',
1152
+ content: 'element',
1153
+ fields: [
1154
+ {
1155
+ name: 'invoiceDelivery',
1156
+ ns: 'api',
1157
+ type: 'api:RelationQueryDateType',
1158
+ optional: true,
1159
+ repeated: true,
1160
+ maxOccurs: 2,
1161
+ },
1162
+ {
1163
+ name: 'paymentDate',
1164
+ ns: 'api',
1165
+ type: 'api:RelationQueryDateType',
1166
+ optional: true,
1167
+ repeated: true,
1168
+ maxOccurs: 2,
1169
+ },
1170
+ {
1171
+ name: 'invoiceNetAmount',
1172
+ ns: 'api',
1173
+ type: 'api:RelationQueryMonetaryType',
1174
+ optional: true,
1175
+ repeated: true,
1176
+ maxOccurs: 2,
1177
+ },
1178
+ {
1179
+ name: 'invoiceNetAmountHUF',
1180
+ ns: 'api',
1181
+ type: 'api:RelationQueryMonetaryType',
1182
+ optional: true,
1183
+ repeated: true,
1184
+ maxOccurs: 2,
1185
+ },
1186
+ {
1187
+ name: 'invoiceVatAmount',
1188
+ ns: 'api',
1189
+ type: 'api:RelationQueryMonetaryType',
1190
+ optional: true,
1191
+ repeated: true,
1192
+ maxOccurs: 2,
1193
+ },
1194
+ {
1195
+ name: 'invoiceVatAmountHUF',
1196
+ ns: 'api',
1197
+ type: 'api:RelationQueryMonetaryType',
1198
+ optional: true,
1199
+ repeated: true,
1200
+ maxOccurs: 2,
1201
+ },
1202
+ ],
1203
+ },
1204
+ 'api:RelationQueryDateType': {
1205
+ kind: 'complex',
1206
+ name: 'RelationQueryDateType',
1207
+ ns: 'api',
1208
+ tsName: 'RelationQueryDateType',
1209
+ content: 'element',
1210
+ fields: [
1211
+ { name: 'queryOperator', ns: 'api', type: 'api:QueryOperatorType' },
1212
+ { name: 'queryValue', ns: 'api', type: 'base:InvoiceDateType' },
1213
+ ],
1214
+ },
1215
+ 'api:RelationQueryMonetaryType': {
1216
+ kind: 'complex',
1217
+ name: 'RelationQueryMonetaryType',
1218
+ ns: 'api',
1219
+ tsName: 'RelationQueryMonetaryType',
1220
+ content: 'element',
1221
+ fields: [
1222
+ { name: 'queryOperator', ns: 'api', type: 'api:QueryOperatorType' },
1223
+ { name: 'queryValue', ns: 'api', type: 'base:MonetaryType' },
1224
+ ],
1225
+ },
1226
+ 'api:RequestStatusType': {
1227
+ kind: 'simple',
1228
+ name: 'RequestStatusType',
1229
+ ns: 'api',
1230
+ tsName: 'RequestStatusType',
1231
+ primitive: 'string',
1232
+ enumValues: ['RECEIVED', 'PROCESSING', 'SAVED', 'FINISHED', 'NOTIFIED'],
1233
+ minLength: 1,
1234
+ maxLength: 15,
1235
+ },
1236
+ 'api:SoftwareIdType': {
1237
+ kind: 'simple',
1238
+ name: 'SoftwareIdType',
1239
+ ns: 'api',
1240
+ tsName: 'SoftwareIdType',
1241
+ primitive: 'string',
1242
+ pattern: '[0-9A-Z\\-]{18}',
1243
+ length: 18,
1244
+ minLength: 1,
1245
+ maxLength: 32,
1246
+ },
1247
+ 'api:SoftwareOperationType': {
1248
+ kind: 'simple',
1249
+ name: 'SoftwareOperationType',
1250
+ ns: 'api',
1251
+ tsName: 'SoftwareOperationType',
1252
+ primitive: 'string',
1253
+ enumValues: ['LOCAL_SOFTWARE', 'ONLINE_SERVICE'],
1254
+ minLength: 1,
1255
+ maxLength: 15,
1256
+ },
1257
+ 'api:SoftwareType': {
1258
+ kind: 'complex',
1259
+ name: 'SoftwareType',
1260
+ ns: 'api',
1261
+ tsName: 'SoftwareType',
1262
+ content: 'element',
1263
+ fields: [
1264
+ { name: 'softwareId', ns: 'api', type: 'api:SoftwareIdType' },
1265
+ { name: 'softwareName', ns: 'api', type: 'common:SimpleText50NotBlankType' },
1266
+ { name: 'softwareOperation', ns: 'api', type: 'api:SoftwareOperationType' },
1267
+ { name: 'softwareMainVersion', ns: 'api', type: 'common:SimpleText15NotBlankType' },
1268
+ { name: 'softwareDevName', ns: 'api', type: 'common:SimpleText512NotBlankType' },
1269
+ { name: 'softwareDevContact', ns: 'api', type: 'common:SimpleText200NotBlankType' },
1270
+ { name: 'softwareDevCountryCode', ns: 'api', type: 'common:CountryCodeType', optional: true },
1271
+ {
1272
+ name: 'softwareDevTaxNumber',
1273
+ ns: 'api',
1274
+ type: 'common:SimpleText50NotBlankType',
1275
+ optional: true,
1276
+ },
1277
+ ],
1278
+ },
1279
+ 'api:SourceType': {
1280
+ kind: 'simple',
1281
+ name: 'SourceType',
1282
+ ns: 'api',
1283
+ tsName: 'SourceType',
1284
+ primitive: 'string',
1285
+ enumValues: ['WEB', 'XML', 'MGM', 'OPG', 'OSZ'],
1286
+ minLength: 1,
1287
+ maxLength: 8,
1288
+ },
1289
+ 'api:TaxpayerAddressItemType': {
1290
+ kind: 'complex',
1291
+ name: 'TaxpayerAddressItemType',
1292
+ ns: 'api',
1293
+ tsName: 'TaxpayerAddressItemType',
1294
+ content: 'element',
1295
+ fields: [
1296
+ { name: 'taxpayerAddressType', ns: 'api', type: 'api:TaxpayerAddressTypeType' },
1297
+ { name: 'taxpayerAddress', ns: 'api', type: 'base:DetailedAddressType' },
1298
+ ],
1299
+ },
1300
+ 'api:TaxpayerAddressListType': {
1301
+ kind: 'complex',
1302
+ name: 'TaxpayerAddressListType',
1303
+ ns: 'api',
1304
+ tsName: 'TaxpayerAddressListType',
1305
+ content: 'element',
1306
+ fields: [
1307
+ {
1308
+ name: 'taxpayerAddressItem',
1309
+ ns: 'api',
1310
+ type: 'api:TaxpayerAddressItemType',
1311
+ repeated: true,
1312
+ },
1313
+ ],
1314
+ },
1315
+ 'api:TaxpayerAddressTypeType': {
1316
+ kind: 'simple',
1317
+ name: 'TaxpayerAddressTypeType',
1318
+ ns: 'api',
1319
+ tsName: 'TaxpayerAddressTypeType',
1320
+ primitive: 'string',
1321
+ enumValues: ['HQ', 'SITE', 'BRANCH'],
1322
+ minLength: 1,
1323
+ maxLength: 8,
1324
+ },
1325
+ 'api:TaxpayerDataType': {
1326
+ kind: 'complex',
1327
+ name: 'TaxpayerDataType',
1328
+ ns: 'api',
1329
+ tsName: 'TaxpayerDataType',
1330
+ content: 'element',
1331
+ fields: [
1332
+ { name: 'taxpayerName', ns: 'api', type: 'common:SimpleText512NotBlankType' },
1333
+ {
1334
+ name: 'taxpayerShortName',
1335
+ ns: 'api',
1336
+ type: 'common:SimpleText200NotBlankType',
1337
+ optional: true,
1338
+ },
1339
+ { name: 'taxNumberDetail', ns: 'api', type: 'base:TaxNumberType' },
1340
+ { name: 'incorporation', ns: 'api', type: 'api:IncorporationType' },
1341
+ { name: 'vatGroupMembership', ns: 'api', type: 'common:TaxpayerIdType', optional: true },
1342
+ {
1343
+ name: 'taxpayerAddressList',
1344
+ ns: 'api',
1345
+ type: 'api:TaxpayerAddressListType',
1346
+ optional: true,
1347
+ },
1348
+ ],
1349
+ },
1350
+ 'api:TokenExchangeRequest': {
1351
+ kind: 'complex',
1352
+ name: 'TokenExchangeRequest',
1353
+ ns: 'api',
1354
+ tsName: 'TokenExchangeRequest',
1355
+ content: 'element',
1356
+ fields: [
1357
+ { name: 'header', ns: 'common', type: 'common:BasicHeaderType' },
1358
+ { name: 'user', ns: 'common', type: 'common:UserHeaderType' },
1359
+ { name: 'software', ns: 'api', type: 'api:SoftwareType' },
1360
+ ],
1361
+ },
1362
+ 'api:TokenExchangeResponse': {
1363
+ kind: 'complex',
1364
+ name: 'TokenExchangeResponse',
1365
+ ns: 'api',
1366
+ tsName: 'TokenExchangeResponse',
1367
+ content: 'element',
1368
+ fields: [
1369
+ { name: 'header', ns: 'common', type: 'common:BasicHeaderType' },
1370
+ { name: 'result', ns: 'common', type: 'common:BasicResultType' },
1371
+ { name: 'software', ns: 'api', type: 'api:SoftwareType' },
1372
+ { name: 'encodedExchangeToken', ns: 'api', type: 'xs:base64Binary' },
1373
+ { name: 'tokenValidityFrom', ns: 'api', type: 'base:InvoiceTimestampType' },
1374
+ { name: 'tokenValidityTo', ns: 'api', type: 'base:InvoiceTimestampType' },
1375
+ ],
1376
+ },
1377
+ 'api:TokenExchangeResponseType': {
1378
+ kind: 'complex',
1379
+ name: 'TokenExchangeResponseType',
1380
+ ns: 'api',
1381
+ tsName: 'TokenExchangeResponseType',
1382
+ content: 'element',
1383
+ fields: [
1384
+ { name: 'header', ns: 'common', type: 'common:BasicHeaderType' },
1385
+ { name: 'result', ns: 'common', type: 'common:BasicResultType' },
1386
+ { name: 'software', ns: 'api', type: 'api:SoftwareType' },
1387
+ { name: 'encodedExchangeToken', ns: 'api', type: 'xs:base64Binary' },
1388
+ { name: 'tokenValidityFrom', ns: 'api', type: 'base:InvoiceTimestampType' },
1389
+ { name: 'tokenValidityTo', ns: 'api', type: 'base:InvoiceTimestampType' },
1390
+ ],
1391
+ },
1392
+ 'api:TransactionListResultType': {
1393
+ kind: 'complex',
1394
+ name: 'TransactionListResultType',
1395
+ ns: 'api',
1396
+ tsName: 'TransactionListResultType',
1397
+ content: 'element',
1398
+ fields: [
1399
+ { name: 'currentPage', ns: 'api', type: 'common:ResponsePageType' },
1400
+ { name: 'availablePage', ns: 'api', type: 'common:ResponsePageType' },
1401
+ {
1402
+ name: 'transaction',
1403
+ ns: 'api',
1404
+ type: 'api:TransactionType',
1405
+ optional: true,
1406
+ repeated: true,
1407
+ },
1408
+ ],
1409
+ },
1410
+ 'api:TransactionQueryParamsType': {
1411
+ kind: 'complex',
1412
+ name: 'TransactionQueryParamsType',
1413
+ ns: 'api',
1414
+ tsName: 'TransactionQueryParamsType',
1415
+ content: 'element',
1416
+ fields: [
1417
+ { name: 'transactionId', ns: 'api', type: 'common:EntityIdType' },
1418
+ { name: 'index', ns: 'api', type: 'base:InvoiceIndexType', optional: true },
1419
+ {
1420
+ name: 'invoiceOperation',
1421
+ ns: 'api',
1422
+ type: 'api:ManageInvoiceOperationType',
1423
+ optional: true,
1424
+ },
1425
+ ],
1426
+ },
1427
+ 'api:TransactionResponseType': {
1428
+ kind: 'complex',
1429
+ name: 'TransactionResponseType',
1430
+ ns: 'api',
1431
+ tsName: 'TransactionResponseType',
1432
+ content: 'element',
1433
+ fields: [
1434
+ { name: 'header', ns: 'common', type: 'common:BasicHeaderType' },
1435
+ { name: 'result', ns: 'common', type: 'common:BasicResultType' },
1436
+ { name: 'software', ns: 'api', type: 'api:SoftwareType' },
1437
+ { name: 'transactionId', ns: 'api', type: 'common:EntityIdType' },
1438
+ ],
1439
+ },
1440
+ 'api:TransactionType': {
1441
+ kind: 'complex',
1442
+ name: 'TransactionType',
1443
+ ns: 'api',
1444
+ tsName: 'TransactionType',
1445
+ content: 'element',
1446
+ fields: [
1447
+ { name: 'insDate', ns: 'api', type: 'base:InvoiceTimestampType' },
1448
+ { name: 'insCusUser', ns: 'api', type: 'common:LoginType' },
1449
+ { name: 'source', ns: 'api', type: 'api:SourceType' },
1450
+ { name: 'transactionId', ns: 'api', type: 'common:EntityIdType' },
1451
+ { name: 'requestStatus', ns: 'api', type: 'api:RequestStatusType' },
1452
+ { name: 'technicalAnnulment', ns: 'api', type: 'xs:boolean' },
1453
+ { name: 'originalRequestVersion', ns: 'api', type: 'api:OriginalRequestVersionType' },
1454
+ { name: 'itemCount', ns: 'api', type: 'base:InvoiceIndexType' },
1455
+ ],
1456
+ },
1457
+ 'base:AddressType': {
1458
+ kind: 'complex',
1459
+ name: 'AddressType',
1460
+ ns: 'base',
1461
+ tsName: 'AddressType',
1462
+ content: 'element',
1463
+ fields: [
1464
+ { name: 'simpleAddress', ns: 'base', type: 'base:SimpleAddressType', optional: true },
1465
+ { name: 'detailedAddress', ns: 'base', type: 'base:DetailedAddressType', optional: true },
1466
+ ],
1467
+ choiceGroups: [{ members: ['simpleAddress', 'detailedAddress'], required: true }],
1468
+ },
1469
+ 'base:DetailedAddressType': {
1470
+ kind: 'complex',
1471
+ name: 'DetailedAddressType',
1472
+ ns: 'base',
1473
+ tsName: 'DetailedAddressType',
1474
+ content: 'element',
1475
+ fields: [
1476
+ { name: 'countryCode', ns: 'base', type: 'common:CountryCodeType' },
1477
+ { name: 'region', ns: 'base', type: 'common:SimpleText50NotBlankType', optional: true },
1478
+ { name: 'postalCode', ns: 'base', type: 'common:PostalCodeType' },
1479
+ { name: 'city', ns: 'base', type: 'common:SimpleText255NotBlankType' },
1480
+ { name: 'streetName', ns: 'base', type: 'common:SimpleText255NotBlankType' },
1481
+ { name: 'publicPlaceCategory', ns: 'base', type: 'common:SimpleText50NotBlankType' },
1482
+ { name: 'number', ns: 'base', type: 'common:SimpleText50NotBlankType', optional: true },
1483
+ { name: 'building', ns: 'base', type: 'common:SimpleText50NotBlankType', optional: true },
1484
+ { name: 'staircase', ns: 'base', type: 'common:SimpleText50NotBlankType', optional: true },
1485
+ { name: 'floor', ns: 'base', type: 'common:SimpleText50NotBlankType', optional: true },
1486
+ { name: 'door', ns: 'base', type: 'common:SimpleText50NotBlankType', optional: true },
1487
+ { name: 'lotNumber', ns: 'base', type: 'common:SimpleText50NotBlankType', optional: true },
1488
+ ],
1489
+ },
1490
+ 'base:InvoiceAppearanceType': {
1491
+ kind: 'simple',
1492
+ name: 'InvoiceAppearanceType',
1493
+ ns: 'base',
1494
+ tsName: 'InvoiceAppearanceType',
1495
+ primitive: 'string',
1496
+ enumValues: ['PAPER', 'ELECTRONIC', 'EDI', 'UNKNOWN'],
1497
+ minLength: 1,
1498
+ maxLength: 15,
1499
+ },
1500
+ 'base:InvoiceCategoryType': {
1501
+ kind: 'simple',
1502
+ name: 'InvoiceCategoryType',
1503
+ ns: 'base',
1504
+ tsName: 'InvoiceCategoryType',
1505
+ primitive: 'string',
1506
+ enumValues: ['NORMAL', 'SIMPLIFIED', 'AGGREGATE'],
1507
+ minLength: 1,
1508
+ maxLength: 15,
1509
+ },
1510
+ 'base:InvoiceDateType': {
1511
+ kind: 'simple',
1512
+ name: 'InvoiceDateType',
1513
+ ns: 'base',
1514
+ tsName: 'InvoiceDateType',
1515
+ primitive: 'date',
1516
+ pattern: '\\d{4}-\\d{2}-\\d{2}',
1517
+ minInclusive: '2010-01-01',
1518
+ },
1519
+ 'base:InvoiceIndexType': {
1520
+ kind: 'simple',
1521
+ name: 'InvoiceIndexType',
1522
+ ns: 'base',
1523
+ tsName: 'InvoiceIndexType',
1524
+ primitive: 'integer',
1525
+ minInclusive: '1',
1526
+ maxInclusive: '100',
1527
+ },
1528
+ 'base:InvoiceTimestampType': {
1529
+ kind: 'simple',
1530
+ name: 'InvoiceTimestampType',
1531
+ ns: 'base',
1532
+ tsName: 'InvoiceTimestampType',
1533
+ primitive: 'dateTime',
1534
+ pattern: '\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}(.\\d{1,3})?Z',
1535
+ minInclusive: '2010-01-01T00:00:00Z',
1536
+ },
1537
+ 'base:InvoiceUnboundedIndexType': {
1538
+ kind: 'simple',
1539
+ name: 'InvoiceUnboundedIndexType',
1540
+ ns: 'base',
1541
+ tsName: 'InvoiceUnboundedIndexType',
1542
+ primitive: 'integer',
1543
+ minInclusive: '1',
1544
+ },
1545
+ 'base:LineNumberType': {
1546
+ kind: 'simple',
1547
+ name: 'LineNumberType',
1548
+ ns: 'base',
1549
+ tsName: 'LineNumberType',
1550
+ primitive: 'integer',
1551
+ totalDigits: 20,
1552
+ minInclusive: '1',
1553
+ },
1554
+ 'base:MonetaryType': {
1555
+ kind: 'simple',
1556
+ name: 'MonetaryType',
1557
+ ns: 'base',
1558
+ tsName: 'MonetaryType',
1559
+ primitive: 'decimal',
1560
+ totalDigits: 18,
1561
+ fractionDigits: 2,
1562
+ },
1563
+ 'base:PaymentMethodType': {
1564
+ kind: 'simple',
1565
+ name: 'PaymentMethodType',
1566
+ ns: 'base',
1567
+ tsName: 'PaymentMethodType',
1568
+ primitive: 'string',
1569
+ enumValues: ['TRANSFER', 'CASH', 'CARD', 'VOUCHER', 'OTHER'],
1570
+ minLength: 1,
1571
+ maxLength: 15,
1572
+ },
1573
+ 'base:SimpleAddressType': {
1574
+ kind: 'complex',
1575
+ name: 'SimpleAddressType',
1576
+ ns: 'base',
1577
+ tsName: 'SimpleAddressType',
1578
+ content: 'element',
1579
+ fields: [
1580
+ { name: 'countryCode', ns: 'base', type: 'common:CountryCodeType' },
1581
+ { name: 'region', ns: 'base', type: 'common:SimpleText50NotBlankType', optional: true },
1582
+ { name: 'postalCode', ns: 'base', type: 'common:PostalCodeType' },
1583
+ { name: 'city', ns: 'base', type: 'common:SimpleText255NotBlankType' },
1584
+ { name: 'additionalAddressDetail', ns: 'base', type: 'common:SimpleText255NotBlankType' },
1585
+ ],
1586
+ },
1587
+ 'base:TaxNumberType': {
1588
+ kind: 'complex',
1589
+ name: 'TaxNumberType',
1590
+ ns: 'base',
1591
+ tsName: 'TaxNumberType',
1592
+ content: 'element',
1593
+ fields: [
1594
+ { name: 'taxpayerId', ns: 'base', type: 'common:TaxpayerIdType' },
1595
+ { name: 'vatCode', ns: 'base', type: 'common:VatCodeType', optional: true },
1596
+ { name: 'countyCode', ns: 'base', type: 'common:CountyCodeType', optional: true },
1597
+ ],
1598
+ },
1599
+ 'common:AtomicStringType100': {
1600
+ kind: 'simple',
1601
+ name: 'AtomicStringType100',
1602
+ ns: 'common',
1603
+ tsName: 'AtomicStringType100',
1604
+ primitive: 'string',
1605
+ minLength: 1,
1606
+ maxLength: 100,
1607
+ },
1608
+ 'common:AtomicStringType1024': {
1609
+ kind: 'simple',
1610
+ name: 'AtomicStringType1024',
1611
+ ns: 'common',
1612
+ tsName: 'AtomicStringType1024',
1613
+ primitive: 'string',
1614
+ minLength: 1,
1615
+ maxLength: 1024,
1616
+ },
1617
+ 'common:AtomicStringType128': {
1618
+ kind: 'simple',
1619
+ name: 'AtomicStringType128',
1620
+ ns: 'common',
1621
+ tsName: 'AtomicStringType128',
1622
+ primitive: 'string',
1623
+ minLength: 1,
1624
+ maxLength: 128,
1625
+ },
1626
+ 'common:AtomicStringType15': {
1627
+ kind: 'simple',
1628
+ name: 'AtomicStringType15',
1629
+ ns: 'common',
1630
+ tsName: 'AtomicStringType15',
1631
+ primitive: 'string',
1632
+ minLength: 1,
1633
+ maxLength: 15,
1634
+ },
1635
+ 'common:AtomicStringType16': {
1636
+ kind: 'simple',
1637
+ name: 'AtomicStringType16',
1638
+ ns: 'common',
1639
+ tsName: 'AtomicStringType16',
1640
+ primitive: 'string',
1641
+ minLength: 1,
1642
+ maxLength: 16,
1643
+ },
1644
+ 'common:AtomicStringType2': {
1645
+ kind: 'simple',
1646
+ name: 'AtomicStringType2',
1647
+ ns: 'common',
1648
+ tsName: 'AtomicStringType2',
1649
+ primitive: 'string',
1650
+ minLength: 1,
1651
+ maxLength: 2,
1652
+ },
1653
+ 'common:AtomicStringType200': {
1654
+ kind: 'simple',
1655
+ name: 'AtomicStringType200',
1656
+ ns: 'common',
1657
+ tsName: 'AtomicStringType200',
1658
+ primitive: 'string',
1659
+ minLength: 1,
1660
+ maxLength: 200,
1661
+ },
1662
+ 'common:AtomicStringType2048': {
1663
+ kind: 'simple',
1664
+ name: 'AtomicStringType2048',
1665
+ ns: 'common',
1666
+ tsName: 'AtomicStringType2048',
1667
+ primitive: 'string',
1668
+ minLength: 1,
1669
+ maxLength: 2048,
1670
+ },
1671
+ 'common:AtomicStringType255': {
1672
+ kind: 'simple',
1673
+ name: 'AtomicStringType255',
1674
+ ns: 'common',
1675
+ tsName: 'AtomicStringType255',
1676
+ primitive: 'string',
1677
+ minLength: 1,
1678
+ maxLength: 255,
1679
+ },
1680
+ 'common:AtomicStringType256': {
1681
+ kind: 'simple',
1682
+ name: 'AtomicStringType256',
1683
+ ns: 'common',
1684
+ tsName: 'AtomicStringType256',
1685
+ primitive: 'string',
1686
+ minLength: 1,
1687
+ maxLength: 256,
1688
+ },
1689
+ 'common:AtomicStringType32': {
1690
+ kind: 'simple',
1691
+ name: 'AtomicStringType32',
1692
+ ns: 'common',
1693
+ tsName: 'AtomicStringType32',
1694
+ primitive: 'string',
1695
+ minLength: 1,
1696
+ maxLength: 32,
1697
+ },
1698
+ 'common:AtomicStringType4': {
1699
+ kind: 'simple',
1700
+ name: 'AtomicStringType4',
1701
+ ns: 'common',
1702
+ tsName: 'AtomicStringType4',
1703
+ primitive: 'string',
1704
+ minLength: 1,
1705
+ maxLength: 4,
1706
+ },
1707
+ 'common:AtomicStringType4000': {
1708
+ kind: 'simple',
1709
+ name: 'AtomicStringType4000',
1710
+ ns: 'common',
1711
+ tsName: 'AtomicStringType4000',
1712
+ primitive: 'string',
1713
+ minLength: 1,
1714
+ maxLength: 4000,
1715
+ },
1716
+ 'common:AtomicStringType50': {
1717
+ kind: 'simple',
1718
+ name: 'AtomicStringType50',
1719
+ ns: 'common',
1720
+ tsName: 'AtomicStringType50',
1721
+ primitive: 'string',
1722
+ minLength: 1,
1723
+ maxLength: 50,
1724
+ },
1725
+ 'common:AtomicStringType512': {
1726
+ kind: 'simple',
1727
+ name: 'AtomicStringType512',
1728
+ ns: 'common',
1729
+ tsName: 'AtomicStringType512',
1730
+ primitive: 'string',
1731
+ minLength: 1,
1732
+ maxLength: 512,
1733
+ },
1734
+ 'common:AtomicStringType64': {
1735
+ kind: 'simple',
1736
+ name: 'AtomicStringType64',
1737
+ ns: 'common',
1738
+ tsName: 'AtomicStringType64',
1739
+ primitive: 'string',
1740
+ minLength: 1,
1741
+ maxLength: 64,
1742
+ },
1743
+ 'common:AtomicStringType8': {
1744
+ kind: 'simple',
1745
+ name: 'AtomicStringType8',
1746
+ ns: 'common',
1747
+ tsName: 'AtomicStringType8',
1748
+ primitive: 'string',
1749
+ minLength: 1,
1750
+ maxLength: 8,
1751
+ },
1752
+ 'common:BankAccountNumberType': {
1753
+ kind: 'simple',
1754
+ name: 'BankAccountNumberType',
1755
+ ns: 'common',
1756
+ tsName: 'BankAccountNumberType',
1757
+ primitive: 'string',
1758
+ pattern:
1759
+ '[0-9]{8}[-][0-9]{8}[-][0-9]{8}|[0-9]{8}[-][0-9]{8}|[A-Z]{2}[0-9]{2}[0-9A-Za-z]{11,30}',
1760
+ minLength: 15,
1761
+ maxLength: 34,
1762
+ },
1763
+ 'common:BasicHeaderType': {
1764
+ kind: 'complex',
1765
+ name: 'BasicHeaderType',
1766
+ ns: 'common',
1767
+ tsName: 'BasicHeaderType',
1768
+ content: 'element',
1769
+ fields: [
1770
+ { name: 'requestId', ns: 'common', type: 'common:EntityIdType' },
1771
+ { name: 'timestamp', ns: 'common', type: 'common:GenericTimestampType' },
1772
+ { name: 'requestVersion', ns: 'common', type: 'common:AtomicStringType15' },
1773
+ { name: 'headerVersion', ns: 'common', type: 'common:AtomicStringType15', optional: true },
1774
+ ],
1775
+ },
1776
+ 'common:BasicRequestType': {
1777
+ kind: 'complex',
1778
+ name: 'BasicRequestType',
1779
+ ns: 'common',
1780
+ tsName: 'BasicRequestType',
1781
+ content: 'element',
1782
+ fields: [
1783
+ { name: 'header', ns: 'common', type: 'common:BasicHeaderType' },
1784
+ { name: 'user', ns: 'common', type: 'common:UserHeaderType' },
1785
+ ],
1786
+ },
1787
+ 'common:BasicResponseType': {
1788
+ kind: 'complex',
1789
+ name: 'BasicResponseType',
1790
+ ns: 'common',
1791
+ tsName: 'BasicResponseType',
1792
+ content: 'element',
1793
+ fields: [
1794
+ { name: 'header', ns: 'common', type: 'common:BasicHeaderType' },
1795
+ { name: 'result', ns: 'common', type: 'common:BasicResultType' },
1796
+ ],
1797
+ },
1798
+ 'common:BasicResultType': {
1799
+ kind: 'complex',
1800
+ name: 'BasicResultType',
1801
+ ns: 'common',
1802
+ tsName: 'BasicResultType',
1803
+ content: 'element',
1804
+ fields: [
1805
+ { name: 'funcCode', ns: 'common', type: 'common:FunctionCodeType' },
1806
+ { name: 'errorCode', ns: 'common', type: 'common:SimpleText50NotBlankType', optional: true },
1807
+ { name: 'message', ns: 'common', type: 'common:SimpleText1024NotBlankType', optional: true },
1808
+ { name: 'notifications', ns: 'common', type: 'common:NotificationsType', optional: true },
1809
+ ],
1810
+ },
1811
+ 'common:BusinessResultCodeType': {
1812
+ kind: 'simple',
1813
+ name: 'BusinessResultCodeType',
1814
+ ns: 'common',
1815
+ tsName: 'BusinessResultCodeType',
1816
+ primitive: 'string',
1817
+ enumValues: ['ERROR', 'WARN', 'INFO'],
1818
+ minLength: 1,
1819
+ maxLength: 8,
1820
+ },
1821
+ 'common:CommunityVatNumberType': {
1822
+ kind: 'simple',
1823
+ name: 'CommunityVatNumberType',
1824
+ ns: 'common',
1825
+ tsName: 'CommunityVatNumberType',
1826
+ primitive: 'string',
1827
+ pattern: '[A-Z]{2}[0-9A-Z]{2,13}',
1828
+ minLength: 4,
1829
+ maxLength: 15,
1830
+ },
1831
+ 'common:CountryCodeType': {
1832
+ kind: 'simple',
1833
+ name: 'CountryCodeType',
1834
+ ns: 'common',
1835
+ tsName: 'CountryCodeType',
1836
+ primitive: 'string',
1837
+ pattern: '[A-Z]{2}',
1838
+ length: 2,
1839
+ minLength: 1,
1840
+ maxLength: 2,
1841
+ },
1842
+ 'common:CountyCodeType': {
1843
+ kind: 'simple',
1844
+ name: 'CountyCodeType',
1845
+ ns: 'common',
1846
+ tsName: 'CountyCodeType',
1847
+ primitive: 'string',
1848
+ pattern: '[0-9]{2}',
1849
+ length: 2,
1850
+ minLength: 1,
1851
+ maxLength: 2,
1852
+ },
1853
+ 'common:CryptoType': {
1854
+ kind: 'complex',
1855
+ name: 'CryptoType',
1856
+ ns: 'common',
1857
+ tsName: 'CryptoType',
1858
+ content: 'simple',
1859
+ contentType: 'common:SimpleText512NotBlankType',
1860
+ fields: [],
1861
+ attributes: [{ name: 'cryptoType', type: 'common:SimpleText50NotBlankType', required: true }],
1862
+ },
1863
+ 'common:CurrencyType': {
1864
+ kind: 'simple',
1865
+ name: 'CurrencyType',
1866
+ ns: 'common',
1867
+ tsName: 'CurrencyType',
1868
+ primitive: 'string',
1869
+ pattern: '[A-Z]{3}',
1870
+ length: 3,
1871
+ minLength: 1,
1872
+ maxLength: 4,
1873
+ },
1874
+ 'common:EntityIdType': {
1875
+ kind: 'simple',
1876
+ name: 'EntityIdType',
1877
+ ns: 'common',
1878
+ tsName: 'EntityIdType',
1879
+ primitive: 'string',
1880
+ pattern: '[+a-zA-Z0-9_]{1,30}',
1881
+ minLength: 1,
1882
+ maxLength: 30,
1883
+ },
1884
+ 'common:FunctionCodeType': {
1885
+ kind: 'simple',
1886
+ name: 'FunctionCodeType',
1887
+ ns: 'common',
1888
+ tsName: 'FunctionCodeType',
1889
+ primitive: 'string',
1890
+ enumValues: ['OK', 'ERROR'],
1891
+ minLength: 1,
1892
+ maxLength: 8,
1893
+ },
1894
+ 'common:GeneralErrorHeaderResponse': {
1895
+ kind: 'complex',
1896
+ name: 'GeneralErrorHeaderResponse',
1897
+ ns: 'common',
1898
+ tsName: 'GeneralErrorHeaderResponse',
1899
+ content: 'element',
1900
+ fields: [
1901
+ { name: 'header', ns: 'common', type: 'common:BasicHeaderType' },
1902
+ { name: 'result', ns: 'common', type: 'common:BasicResultType' },
1903
+ ],
1904
+ },
1905
+ 'common:GeneralErrorHeaderResponseType': {
1906
+ kind: 'complex',
1907
+ name: 'GeneralErrorHeaderResponseType',
1908
+ ns: 'common',
1909
+ tsName: 'GeneralErrorHeaderResponseType',
1910
+ content: 'element',
1911
+ fields: [
1912
+ { name: 'header', ns: 'common', type: 'common:BasicHeaderType' },
1913
+ { name: 'result', ns: 'common', type: 'common:BasicResultType' },
1914
+ ],
1915
+ },
1916
+ 'common:GeneralExceptionResponse': {
1917
+ kind: 'complex',
1918
+ name: 'GeneralExceptionResponse',
1919
+ ns: 'common',
1920
+ tsName: 'GeneralExceptionResponse',
1921
+ content: 'element',
1922
+ fields: [
1923
+ { name: 'funcCode', ns: 'common', type: 'common:FunctionCodeType' },
1924
+ { name: 'errorCode', ns: 'common', type: 'common:SimpleText50NotBlankType', optional: true },
1925
+ { name: 'message', ns: 'common', type: 'common:SimpleText1024NotBlankType', optional: true },
1926
+ { name: 'notifications', ns: 'common', type: 'common:NotificationsType', optional: true },
1927
+ ],
1928
+ },
1929
+ 'common:GenericDateType': {
1930
+ kind: 'simple',
1931
+ name: 'GenericDateType',
1932
+ ns: 'common',
1933
+ tsName: 'GenericDateType',
1934
+ primitive: 'date',
1935
+ pattern: '\\d{4}-\\d{2}-\\d{2}Z',
1936
+ },
1937
+ 'common:GenericDecimalType': {
1938
+ kind: 'simple',
1939
+ name: 'GenericDecimalType',
1940
+ ns: 'common',
1941
+ tsName: 'GenericDecimalType',
1942
+ primitive: 'decimal',
1943
+ },
1944
+ 'common:GenericTimestampType': {
1945
+ kind: 'simple',
1946
+ name: 'GenericTimestampType',
1947
+ ns: 'common',
1948
+ tsName: 'GenericTimestampType',
1949
+ primitive: 'dateTime',
1950
+ pattern: '\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}(\\.\\d{1,3})?Z',
1951
+ },
1952
+ 'common:GenericUnsignedIntegerType': {
1953
+ kind: 'simple',
1954
+ name: 'GenericUnsignedIntegerType',
1955
+ ns: 'common',
1956
+ tsName: 'GenericUnsignedIntegerType',
1957
+ primitive: 'integer',
1958
+ minInclusive: '1',
1959
+ },
1960
+ 'common:LocalizationType': {
1961
+ kind: 'simple',
1962
+ name: 'LocalizationType',
1963
+ ns: 'common',
1964
+ tsName: 'LocalizationType',
1965
+ primitive: 'string',
1966
+ enumValues: ['HU', 'EN', 'DE'],
1967
+ },
1968
+ 'common:LoginType': {
1969
+ kind: 'simple',
1970
+ name: 'LoginType',
1971
+ ns: 'common',
1972
+ tsName: 'LoginType',
1973
+ primitive: 'string',
1974
+ pattern: '[a-zA-Z0-9]{6,15}',
1975
+ minLength: 6,
1976
+ maxLength: 15,
1977
+ },
1978
+ 'common:NotificationsType': {
1979
+ kind: 'complex',
1980
+ name: 'NotificationsType',
1981
+ ns: 'common',
1982
+ tsName: 'NotificationsType',
1983
+ content: 'element',
1984
+ fields: [
1985
+ { name: 'notification', ns: 'common', type: 'common:NotificationType', repeated: true },
1986
+ ],
1987
+ },
1988
+ 'common:NotificationType': {
1989
+ kind: 'complex',
1990
+ name: 'NotificationType',
1991
+ ns: 'common',
1992
+ tsName: 'NotificationType',
1993
+ content: 'element',
1994
+ fields: [
1995
+ { name: 'notificationCode', ns: 'common', type: 'common:SimpleText100NotBlankType' },
1996
+ { name: 'notificationText', ns: 'common', type: 'common:SimpleText1024NotBlankType' },
1997
+ ],
1998
+ },
1999
+ 'common:PlateNumberType': {
2000
+ kind: 'simple',
2001
+ name: 'PlateNumberType',
2002
+ ns: 'common',
2003
+ tsName: 'PlateNumberType',
2004
+ primitive: 'string',
2005
+ pattern: '[A-Z0-9ÖŐÜŰ]{2,30}',
2006
+ minLength: 2,
2007
+ maxLength: 30,
2008
+ },
2009
+ 'common:PostalCodeType': {
2010
+ kind: 'simple',
2011
+ name: 'PostalCodeType',
2012
+ ns: 'common',
2013
+ tsName: 'PostalCodeType',
2014
+ primitive: 'string',
2015
+ pattern: '[A-Z0-9][A-Z0-9\\s\\-]{1,8}[A-Z0-9]',
2016
+ minLength: 3,
2017
+ maxLength: 10,
2018
+ },
2019
+ 'common:RequestPageType': {
2020
+ kind: 'simple',
2021
+ name: 'RequestPageType',
2022
+ ns: 'common',
2023
+ tsName: 'RequestPageType',
2024
+ primitive: 'integer',
2025
+ minInclusive: '1',
2026
+ },
2027
+ 'common:ResponsePageType': {
2028
+ kind: 'simple',
2029
+ name: 'ResponsePageType',
2030
+ ns: 'common',
2031
+ tsName: 'ResponsePageType',
2032
+ primitive: 'integer',
2033
+ minInclusive: '0',
2034
+ },
2035
+ 'common:SHA256Type': {
2036
+ kind: 'simple',
2037
+ name: 'SHA256Type',
2038
+ ns: 'common',
2039
+ tsName: 'SHA256Type',
2040
+ primitive: 'string',
2041
+ pattern: '[0-9A-F]{64}',
2042
+ minLength: 1,
2043
+ maxLength: 64,
2044
+ },
2045
+ 'common:SHA512Type': {
2046
+ kind: 'simple',
2047
+ name: 'SHA512Type',
2048
+ ns: 'common',
2049
+ tsName: 'SHA512Type',
2050
+ primitive: 'string',
2051
+ pattern: '[0-9A-F]{128}',
2052
+ minLength: 1,
2053
+ maxLength: 128,
2054
+ },
2055
+ 'common:SimpleText100NotBlankType': {
2056
+ kind: 'simple',
2057
+ name: 'SimpleText100NotBlankType',
2058
+ ns: 'common',
2059
+ tsName: 'SimpleText100NotBlankType',
2060
+ primitive: 'string',
2061
+ pattern: '.*[^\\s].*',
2062
+ minLength: 1,
2063
+ maxLength: 100,
2064
+ },
2065
+ 'common:SimpleText1024NotBlankType': {
2066
+ kind: 'simple',
2067
+ name: 'SimpleText1024NotBlankType',
2068
+ ns: 'common',
2069
+ tsName: 'SimpleText1024NotBlankType',
2070
+ primitive: 'string',
2071
+ pattern: '.*[^\\s].*',
2072
+ minLength: 1,
2073
+ maxLength: 1024,
2074
+ },
2075
+ 'common:SimpleText15NotBlankType': {
2076
+ kind: 'simple',
2077
+ name: 'SimpleText15NotBlankType',
2078
+ ns: 'common',
2079
+ tsName: 'SimpleText15NotBlankType',
2080
+ primitive: 'string',
2081
+ pattern: '.*[^\\s].*',
2082
+ minLength: 1,
2083
+ maxLength: 15,
2084
+ },
2085
+ 'common:SimpleText200NotBlankType': {
2086
+ kind: 'simple',
2087
+ name: 'SimpleText200NotBlankType',
2088
+ ns: 'common',
2089
+ tsName: 'SimpleText200NotBlankType',
2090
+ primitive: 'string',
2091
+ pattern: '.*[^\\s].*',
2092
+ minLength: 1,
2093
+ maxLength: 200,
2094
+ },
2095
+ 'common:SimpleText255NotBlankType': {
2096
+ kind: 'simple',
2097
+ name: 'SimpleText255NotBlankType',
2098
+ ns: 'common',
2099
+ tsName: 'SimpleText255NotBlankType',
2100
+ primitive: 'string',
2101
+ pattern: '.*[^\\s].*',
2102
+ minLength: 1,
2103
+ maxLength: 255,
2104
+ },
2105
+ 'common:SimpleText50NotBlankType': {
2106
+ kind: 'simple',
2107
+ name: 'SimpleText50NotBlankType',
2108
+ ns: 'common',
2109
+ tsName: 'SimpleText50NotBlankType',
2110
+ primitive: 'string',
2111
+ pattern: '.*[^\\s].*',
2112
+ minLength: 1,
2113
+ maxLength: 50,
2114
+ },
2115
+ 'common:SimpleText512NotBlankType': {
2116
+ kind: 'simple',
2117
+ name: 'SimpleText512NotBlankType',
2118
+ ns: 'common',
2119
+ tsName: 'SimpleText512NotBlankType',
2120
+ primitive: 'string',
2121
+ pattern: '.*[^\\s].*',
2122
+ minLength: 1,
2123
+ maxLength: 512,
2124
+ },
2125
+ 'common:SwiftCodeType': {
2126
+ kind: 'simple',
2127
+ name: 'SwiftCodeType',
2128
+ ns: 'common',
2129
+ tsName: 'SwiftCodeType',
2130
+ primitive: 'string',
2131
+ pattern: '[A-Z]{6}[A-Z2-9][A-NP-Z0-9]([A-Z0-9]{3}){0,1}',
2132
+ minLength: 8,
2133
+ maxLength: 11,
2134
+ },
2135
+ 'common:TaxIdentificationNumberType': {
2136
+ kind: 'simple',
2137
+ name: 'TaxIdentificationNumberType',
2138
+ ns: 'common',
2139
+ tsName: 'TaxIdentificationNumberType',
2140
+ primitive: 'integer',
2141
+ pattern: '[0-9]{10}',
2142
+ totalDigits: 10,
2143
+ },
2144
+ 'common:TaxpayerIdType': {
2145
+ kind: 'simple',
2146
+ name: 'TaxpayerIdType',
2147
+ ns: 'common',
2148
+ tsName: 'TaxpayerIdType',
2149
+ primitive: 'string',
2150
+ pattern: '[0-9]{8}',
2151
+ length: 8,
2152
+ minLength: 1,
2153
+ maxLength: 8,
2154
+ },
2155
+ 'common:TechnicalResultCodeType': {
2156
+ kind: 'simple',
2157
+ name: 'TechnicalResultCodeType',
2158
+ ns: 'common',
2159
+ tsName: 'TechnicalResultCodeType',
2160
+ primitive: 'string',
2161
+ enumValues: ['CRITICAL', 'ERROR'],
2162
+ minLength: 1,
2163
+ maxLength: 8,
2164
+ },
2165
+ 'common:TechnicalValidationResultType': {
2166
+ kind: 'complex',
2167
+ name: 'TechnicalValidationResultType',
2168
+ ns: 'common',
2169
+ tsName: 'TechnicalValidationResultType',
2170
+ content: 'element',
2171
+ fields: [
2172
+ { name: 'validationResultCode', ns: 'common', type: 'common:TechnicalResultCodeType' },
2173
+ {
2174
+ name: 'validationErrorCode',
2175
+ ns: 'common',
2176
+ type: 'common:SimpleText100NotBlankType',
2177
+ optional: true,
2178
+ },
2179
+ { name: 'message', ns: 'common', type: 'common:SimpleText1024NotBlankType', optional: true },
2180
+ ],
2181
+ },
2182
+ 'common:UserHeaderType': {
2183
+ kind: 'complex',
2184
+ name: 'UserHeaderType',
2185
+ ns: 'common',
2186
+ tsName: 'UserHeaderType',
2187
+ content: 'element',
2188
+ fields: [
2189
+ { name: 'login', ns: 'common', type: 'common:LoginType' },
2190
+ { name: 'passwordHash', ns: 'common', type: 'common:CryptoType' },
2191
+ { name: 'taxNumber', ns: 'common', type: 'common:TaxpayerIdType' },
2192
+ { name: 'predecessorTaxNumber', ns: 'common', type: 'common:TaxpayerIdType', optional: true },
2193
+ { name: 'requestSignature', ns: 'common', type: 'common:CryptoType' },
2194
+ ],
2195
+ },
2196
+ 'common:VatCodeType': {
2197
+ kind: 'simple',
2198
+ name: 'VatCodeType',
2199
+ ns: 'common',
2200
+ tsName: 'VatCodeType',
2201
+ primitive: 'string',
2202
+ pattern: '[1-5]{1}',
2203
+ length: 1,
2204
+ minLength: 1,
2205
+ maxLength: 2,
2206
+ },
2207
+ 'data:AdditionalDataType': {
2208
+ kind: 'complex',
2209
+ name: 'AdditionalDataType',
2210
+ ns: 'data',
2211
+ tsName: 'AdditionalDataType',
2212
+ content: 'element',
2213
+ fields: [
2214
+ { name: 'dataName', ns: 'data', type: 'data:DataNameType' },
2215
+ { name: 'dataDescription', ns: 'data', type: 'common:SimpleText255NotBlankType' },
2216
+ { name: 'dataValue', ns: 'data', type: 'common:SimpleText512NotBlankType' },
2217
+ ],
2218
+ },
2219
+ 'data:AdvanceDataType': {
2220
+ kind: 'complex',
2221
+ name: 'AdvanceDataType',
2222
+ ns: 'data',
2223
+ tsName: 'AdvanceDataType',
2224
+ content: 'element',
2225
+ fields: [
2226
+ { name: 'advanceIndicator', ns: 'data', type: 'xs:boolean' },
2227
+ {
2228
+ name: 'advancePaymentData',
2229
+ ns: 'data',
2230
+ type: 'data:AdvancePaymentDataType',
2231
+ optional: true,
2232
+ },
2233
+ ],
2234
+ },
2235
+ 'data:AdvancePaymentDataType': {
2236
+ kind: 'complex',
2237
+ name: 'AdvancePaymentDataType',
2238
+ ns: 'data',
2239
+ tsName: 'AdvancePaymentDataType',
2240
+ content: 'element',
2241
+ fields: [
2242
+ { name: 'advanceOriginalInvoice', ns: 'data', type: 'common:SimpleText50NotBlankType' },
2243
+ { name: 'advancePaymentDate', ns: 'data', type: 'base:InvoiceDateType' },
2244
+ { name: 'advanceExchangeRate', ns: 'data', type: 'data:ExchangeRateType' },
2245
+ ],
2246
+ },
2247
+ 'data:AggregateInvoiceLineDataType': {
2248
+ kind: 'complex',
2249
+ name: 'AggregateInvoiceLineDataType',
2250
+ ns: 'data',
2251
+ tsName: 'AggregateInvoiceLineDataType',
2252
+ content: 'element',
2253
+ fields: [
2254
+ { name: 'lineExchangeRate', ns: 'data', type: 'data:ExchangeRateType', optional: true },
2255
+ { name: 'lineDeliveryDate', ns: 'data', type: 'base:InvoiceDateType' },
2256
+ ],
2257
+ },
2258
+ 'data:AircraftType': {
2259
+ kind: 'complex',
2260
+ name: 'AircraftType',
2261
+ ns: 'data',
2262
+ tsName: 'AircraftType',
2263
+ content: 'element',
2264
+ fields: [
2265
+ { name: 'takeOffWeight', ns: 'data', type: 'data:QuantityType' },
2266
+ { name: 'airCargo', ns: 'data', type: 'xs:boolean' },
2267
+ { name: 'operationHours', ns: 'data', type: 'data:QuantityType' },
2268
+ ],
2269
+ },
2270
+ 'data:BatchInvoiceType': {
2271
+ kind: 'complex',
2272
+ name: 'BatchInvoiceType',
2273
+ ns: 'data',
2274
+ tsName: 'BatchInvoiceType',
2275
+ content: 'element',
2276
+ fields: [
2277
+ { name: 'batchIndex', ns: 'data', type: 'base:InvoiceUnboundedIndexType' },
2278
+ { name: 'invoice', ns: 'data', type: 'data:InvoiceType' },
2279
+ ],
2280
+ },
2281
+ 'data:ContractNumbersType': {
2282
+ kind: 'complex',
2283
+ name: 'ContractNumbersType',
2284
+ ns: 'data',
2285
+ tsName: 'ContractNumbersType',
2286
+ content: 'element',
2287
+ fields: [
2288
+ {
2289
+ name: 'contractNumber',
2290
+ ns: 'data',
2291
+ type: 'common:SimpleText100NotBlankType',
2292
+ repeated: true,
2293
+ },
2294
+ ],
2295
+ },
2296
+ 'data:ConventionalInvoiceInfoType': {
2297
+ kind: 'complex',
2298
+ name: 'ConventionalInvoiceInfoType',
2299
+ ns: 'data',
2300
+ tsName: 'ConventionalInvoiceInfoType',
2301
+ content: 'element',
2302
+ fields: [
2303
+ { name: 'orderNumbers', ns: 'data', type: 'data:OrderNumbersType', optional: true },
2304
+ { name: 'deliveryNotes', ns: 'data', type: 'data:DeliveryNotesType', optional: true },
2305
+ { name: 'shippingDates', ns: 'data', type: 'data:ShippingDatesType', optional: true },
2306
+ { name: 'contractNumbers', ns: 'data', type: 'data:ContractNumbersType', optional: true },
2307
+ {
2308
+ name: 'supplierCompanyCodes',
2309
+ ns: 'data',
2310
+ type: 'data:SupplierCompanyCodesType',
2311
+ optional: true,
2312
+ },
2313
+ {
2314
+ name: 'customerCompanyCodes',
2315
+ ns: 'data',
2316
+ type: 'data:CustomerCompanyCodesType',
2317
+ optional: true,
2318
+ },
2319
+ { name: 'dealerCodes', ns: 'data', type: 'data:DealerCodesType', optional: true },
2320
+ { name: 'costCenters', ns: 'data', type: 'data:CostCentersType', optional: true },
2321
+ { name: 'projectNumbers', ns: 'data', type: 'data:ProjectNumbersType', optional: true },
2322
+ {
2323
+ name: 'generalLedgerAccountNumbers',
2324
+ ns: 'data',
2325
+ type: 'data:GeneralLedgerAccountNumbersType',
2326
+ optional: true,
2327
+ },
2328
+ { name: 'glnNumbersSupplier', ns: 'data', type: 'data:GlnNumbersType', optional: true },
2329
+ { name: 'glnNumbersCustomer', ns: 'data', type: 'data:GlnNumbersType', optional: true },
2330
+ { name: 'materialNumbers', ns: 'data', type: 'data:MaterialNumbersType', optional: true },
2331
+ { name: 'itemNumbers', ns: 'data', type: 'data:ItemNumbersType', optional: true },
2332
+ { name: 'ekaerIds', ns: 'data', type: 'data:EkaerIdsType', optional: true },
2333
+ ],
2334
+ },
2335
+ 'data:CostCentersType': {
2336
+ kind: 'complex',
2337
+ name: 'CostCentersType',
2338
+ ns: 'data',
2339
+ tsName: 'CostCentersType',
2340
+ content: 'element',
2341
+ fields: [
2342
+ { name: 'costCenter', ns: 'data', type: 'common:SimpleText100NotBlankType', repeated: true },
2343
+ ],
2344
+ },
2345
+ 'data:CustomerCompanyCodesType': {
2346
+ kind: 'complex',
2347
+ name: 'CustomerCompanyCodesType',
2348
+ ns: 'data',
2349
+ tsName: 'CustomerCompanyCodesType',
2350
+ content: 'element',
2351
+ fields: [
2352
+ {
2353
+ name: 'customerCompanyCode',
2354
+ ns: 'data',
2355
+ type: 'common:SimpleText100NotBlankType',
2356
+ repeated: true,
2357
+ },
2358
+ ],
2359
+ },
2360
+ 'data:CustomerDeclarationType': {
2361
+ kind: 'complex',
2362
+ name: 'CustomerDeclarationType',
2363
+ ns: 'data',
2364
+ tsName: 'CustomerDeclarationType',
2365
+ content: 'element',
2366
+ fields: [
2367
+ { name: 'productStream', ns: 'data', type: 'data:ProductStreamType' },
2368
+ { name: 'productFeeWeight', ns: 'data', type: 'data:QuantityType', optional: true },
2369
+ ],
2370
+ },
2371
+ 'data:CustomerInfoType': {
2372
+ kind: 'complex',
2373
+ name: 'CustomerInfoType',
2374
+ ns: 'data',
2375
+ tsName: 'CustomerInfoType',
2376
+ content: 'element',
2377
+ fields: [
2378
+ { name: 'customerVatStatus', ns: 'data', type: 'data:CustomerVatStatusType' },
2379
+ { name: 'customerVatData', ns: 'data', type: 'data:CustomerVatDataType', optional: true },
2380
+ {
2381
+ name: 'customerName',
2382
+ ns: 'data',
2383
+ type: 'common:SimpleText512NotBlankType',
2384
+ optional: true,
2385
+ },
2386
+ { name: 'customerAddress', ns: 'data', type: 'base:AddressType', optional: true },
2387
+ {
2388
+ name: 'customerBankAccountNumber',
2389
+ ns: 'data',
2390
+ type: 'common:BankAccountNumberType',
2391
+ optional: true,
2392
+ },
2393
+ ],
2394
+ },
2395
+ 'data:CustomerTaxNumberType': {
2396
+ kind: 'complex',
2397
+ name: 'CustomerTaxNumberType',
2398
+ ns: 'data',
2399
+ tsName: 'CustomerTaxNumberType',
2400
+ content: 'element',
2401
+ fields: [
2402
+ { name: 'taxpayerId', ns: 'base', type: 'common:TaxpayerIdType' },
2403
+ { name: 'vatCode', ns: 'base', type: 'common:VatCodeType', optional: true },
2404
+ { name: 'countyCode', ns: 'base', type: 'common:CountyCodeType', optional: true },
2405
+ { name: 'groupMemberTaxNumber', ns: 'data', type: 'base:TaxNumberType', optional: true },
2406
+ ],
2407
+ },
2408
+ 'data:CustomerVatDataType': {
2409
+ kind: 'complex',
2410
+ name: 'CustomerVatDataType',
2411
+ ns: 'data',
2412
+ tsName: 'CustomerVatDataType',
2413
+ content: 'element',
2414
+ fields: [
2415
+ { name: 'customerTaxNumber', ns: 'data', type: 'data:CustomerTaxNumberType', optional: true },
2416
+ {
2417
+ name: 'communityVatNumber',
2418
+ ns: 'data',
2419
+ type: 'common:CommunityVatNumberType',
2420
+ optional: true,
2421
+ },
2422
+ {
2423
+ name: 'thirdStateTaxId',
2424
+ ns: 'data',
2425
+ type: 'common:SimpleText50NotBlankType',
2426
+ optional: true,
2427
+ },
2428
+ ],
2429
+ choiceGroups: [
2430
+ { members: ['customerTaxNumber', 'communityVatNumber', 'thirdStateTaxId'], required: true },
2431
+ ],
2432
+ },
2433
+ 'data:CustomerVatStatusType': {
2434
+ kind: 'simple',
2435
+ name: 'CustomerVatStatusType',
2436
+ ns: 'data',
2437
+ tsName: 'CustomerVatStatusType',
2438
+ primitive: 'string',
2439
+ enumValues: ['DOMESTIC', 'OTHER', 'PRIVATE_PERSON'],
2440
+ minLength: 1,
2441
+ maxLength: 15,
2442
+ },
2443
+ 'data:DataNameType': {
2444
+ kind: 'simple',
2445
+ name: 'DataNameType',
2446
+ ns: 'data',
2447
+ tsName: 'DataNameType',
2448
+ primitive: 'string',
2449
+ pattern: '[A-Z][0-9]{5}[_][_A-Z0-9]{1,249}',
2450
+ minLength: 1,
2451
+ maxLength: 255,
2452
+ },
2453
+ 'data:DealerCodesType': {
2454
+ kind: 'complex',
2455
+ name: 'DealerCodesType',
2456
+ ns: 'data',
2457
+ tsName: 'DealerCodesType',
2458
+ content: 'element',
2459
+ fields: [
2460
+ { name: 'dealerCode', ns: 'data', type: 'common:SimpleText100NotBlankType', repeated: true },
2461
+ ],
2462
+ },
2463
+ 'data:DeliveryNotesType': {
2464
+ kind: 'complex',
2465
+ name: 'DeliveryNotesType',
2466
+ ns: 'data',
2467
+ tsName: 'DeliveryNotesType',
2468
+ content: 'element',
2469
+ fields: [
2470
+ {
2471
+ name: 'deliveryNote',
2472
+ ns: 'data',
2473
+ type: 'common:SimpleText100NotBlankType',
2474
+ repeated: true,
2475
+ },
2476
+ ],
2477
+ },
2478
+ 'data:DetailedReasonType': {
2479
+ kind: 'complex',
2480
+ name: 'DetailedReasonType',
2481
+ ns: 'data',
2482
+ tsName: 'DetailedReasonType',
2483
+ content: 'element',
2484
+ fields: [
2485
+ { name: 'case', ns: 'data', type: 'common:SimpleText50NotBlankType' },
2486
+ { name: 'reason', ns: 'data', type: 'common:SimpleText200NotBlankType' },
2487
+ ],
2488
+ },
2489
+ 'data:DieselOilPurchaseType': {
2490
+ kind: 'complex',
2491
+ name: 'DieselOilPurchaseType',
2492
+ ns: 'data',
2493
+ tsName: 'DieselOilPurchaseType',
2494
+ content: 'element',
2495
+ fields: [
2496
+ { name: 'purchaseLocation', ns: 'data', type: 'base:SimpleAddressType' },
2497
+ { name: 'purchaseDate', ns: 'data', type: 'base:InvoiceDateType' },
2498
+ { name: 'vehicleRegistrationNumber', ns: 'data', type: 'common:PlateNumberType' },
2499
+ { name: 'dieselOilQuantity', ns: 'data', type: 'data:QuantityType', optional: true },
2500
+ ],
2501
+ },
2502
+ 'data:DiscountDataType': {
2503
+ kind: 'complex',
2504
+ name: 'DiscountDataType',
2505
+ ns: 'data',
2506
+ tsName: 'DiscountDataType',
2507
+ content: 'element',
2508
+ fields: [
2509
+ {
2510
+ name: 'discountDescription',
2511
+ ns: 'data',
2512
+ type: 'common:SimpleText255NotBlankType',
2513
+ optional: true,
2514
+ },
2515
+ { name: 'discountValue', ns: 'data', type: 'base:MonetaryType', optional: true },
2516
+ { name: 'discountRate', ns: 'data', type: 'data:RateType', optional: true },
2517
+ ],
2518
+ },
2519
+ 'data:EkaerIdsType': {
2520
+ kind: 'complex',
2521
+ name: 'EkaerIdsType',
2522
+ ns: 'data',
2523
+ tsName: 'EkaerIdsType',
2524
+ content: 'element',
2525
+ fields: [{ name: 'ekaerId', ns: 'data', type: 'data:EkaerIdType', repeated: true }],
2526
+ },
2527
+ 'data:EkaerIdType': {
2528
+ kind: 'simple',
2529
+ name: 'EkaerIdType',
2530
+ ns: 'data',
2531
+ tsName: 'EkaerIdType',
2532
+ primitive: 'string',
2533
+ pattern: '[E]{1}[0-9]{6}[0-9A-F]{8}',
2534
+ minLength: 1,
2535
+ maxLength: 15,
2536
+ },
2537
+ 'data:ExchangeRateType': {
2538
+ kind: 'simple',
2539
+ name: 'ExchangeRateType',
2540
+ ns: 'data',
2541
+ tsName: 'ExchangeRateType',
2542
+ primitive: 'decimal',
2543
+ totalDigits: 14,
2544
+ fractionDigits: 6,
2545
+ minExclusive: '0',
2546
+ },
2547
+ 'data:FiscalRepresentativeType': {
2548
+ kind: 'complex',
2549
+ name: 'FiscalRepresentativeType',
2550
+ ns: 'data',
2551
+ tsName: 'FiscalRepresentativeType',
2552
+ content: 'element',
2553
+ fields: [
2554
+ { name: 'fiscalRepresentativeTaxNumber', ns: 'data', type: 'base:TaxNumberType' },
2555
+ { name: 'fiscalRepresentativeName', ns: 'data', type: 'common:SimpleText512NotBlankType' },
2556
+ { name: 'fiscalRepresentativeAddress', ns: 'data', type: 'base:AddressType' },
2557
+ {
2558
+ name: 'fiscalRepresentativeBankAccountNumber',
2559
+ ns: 'data',
2560
+ type: 'common:BankAccountNumberType',
2561
+ optional: true,
2562
+ },
2563
+ ],
2564
+ },
2565
+ 'data:GeneralLedgerAccountNumbersType': {
2566
+ kind: 'complex',
2567
+ name: 'GeneralLedgerAccountNumbersType',
2568
+ ns: 'data',
2569
+ tsName: 'GeneralLedgerAccountNumbersType',
2570
+ content: 'element',
2571
+ fields: [
2572
+ {
2573
+ name: 'generalLedgerAccountNumber',
2574
+ ns: 'data',
2575
+ type: 'common:SimpleText100NotBlankType',
2576
+ repeated: true,
2577
+ },
2578
+ ],
2579
+ },
2580
+ 'data:GlnNumbersType': {
2581
+ kind: 'complex',
2582
+ name: 'GlnNumbersType',
2583
+ ns: 'data',
2584
+ tsName: 'GlnNumbersType',
2585
+ content: 'element',
2586
+ fields: [
2587
+ { name: 'glnNumber', ns: 'data', type: 'common:SimpleText100NotBlankType', repeated: true },
2588
+ ],
2589
+ },
2590
+ 'data:InvoiceData': {
2591
+ kind: 'complex',
2592
+ name: 'InvoiceData',
2593
+ ns: 'data',
2594
+ tsName: 'InvoiceData',
2595
+ content: 'element',
2596
+ fields: [
2597
+ { name: 'invoiceNumber', ns: 'data', type: 'common:SimpleText50NotBlankType' },
2598
+ { name: 'invoiceIssueDate', ns: 'data', type: 'base:InvoiceDateType' },
2599
+ { name: 'completenessIndicator', ns: 'data', type: 'xs:boolean' },
2600
+ { name: 'invoiceMain', ns: 'data', type: 'data:InvoiceMainType' },
2601
+ ],
2602
+ },
2603
+ 'data:InvoiceDataType': {
2604
+ kind: 'complex',
2605
+ name: 'InvoiceDataType',
2606
+ ns: 'data',
2607
+ tsName: 'InvoiceDataType',
2608
+ content: 'element',
2609
+ fields: [
2610
+ { name: 'invoiceNumber', ns: 'data', type: 'common:SimpleText50NotBlankType' },
2611
+ { name: 'invoiceIssueDate', ns: 'data', type: 'base:InvoiceDateType' },
2612
+ { name: 'completenessIndicator', ns: 'data', type: 'xs:boolean' },
2613
+ { name: 'invoiceMain', ns: 'data', type: 'data:InvoiceMainType' },
2614
+ ],
2615
+ },
2616
+ 'data:InvoiceDetailType': {
2617
+ kind: 'complex',
2618
+ name: 'InvoiceDetailType',
2619
+ ns: 'data',
2620
+ tsName: 'InvoiceDetailType',
2621
+ content: 'element',
2622
+ fields: [
2623
+ { name: 'invoiceCategory', ns: 'data', type: 'base:InvoiceCategoryType' },
2624
+ { name: 'invoiceDeliveryDate', ns: 'data', type: 'base:InvoiceDateType' },
2625
+ {
2626
+ name: 'invoiceDeliveryPeriodStart',
2627
+ ns: 'data',
2628
+ type: 'base:InvoiceDateType',
2629
+ optional: true,
2630
+ },
2631
+ {
2632
+ name: 'invoiceDeliveryPeriodEnd',
2633
+ ns: 'data',
2634
+ type: 'base:InvoiceDateType',
2635
+ optional: true,
2636
+ },
2637
+ {
2638
+ name: 'invoiceAccountingDeliveryDate',
2639
+ ns: 'data',
2640
+ type: 'base:InvoiceDateType',
2641
+ optional: true,
2642
+ },
2643
+ { name: 'periodicalSettlement', ns: 'data', type: 'xs:boolean', optional: true },
2644
+ { name: 'smallBusinessIndicator', ns: 'data', type: 'xs:boolean', optional: true },
2645
+ { name: 'currencyCode', ns: 'data', type: 'common:CurrencyType' },
2646
+ { name: 'exchangeRate', ns: 'data', type: 'data:ExchangeRateType' },
2647
+ { name: 'utilitySettlementIndicator', ns: 'data', type: 'xs:boolean', optional: true },
2648
+ { name: 'selfBillingIndicator', ns: 'data', type: 'xs:boolean', optional: true },
2649
+ { name: 'paymentMethod', ns: 'data', type: 'base:PaymentMethodType', optional: true },
2650
+ { name: 'paymentDate', ns: 'data', type: 'base:InvoiceDateType', optional: true },
2651
+ { name: 'cashAccountingIndicator', ns: 'data', type: 'xs:boolean', optional: true },
2652
+ { name: 'invoiceAppearance', ns: 'data', type: 'base:InvoiceAppearanceType' },
2653
+ {
2654
+ name: 'conventionalInvoiceInfo',
2655
+ ns: 'data',
2656
+ type: 'data:ConventionalInvoiceInfoType',
2657
+ optional: true,
2658
+ },
2659
+ {
2660
+ name: 'additionalInvoiceData',
2661
+ ns: 'data',
2662
+ type: 'data:AdditionalDataType',
2663
+ optional: true,
2664
+ repeated: true,
2665
+ },
2666
+ ],
2667
+ },
2668
+ 'data:InvoiceHeadType': {
2669
+ kind: 'complex',
2670
+ name: 'InvoiceHeadType',
2671
+ ns: 'data',
2672
+ tsName: 'InvoiceHeadType',
2673
+ content: 'element',
2674
+ fields: [
2675
+ { name: 'supplierInfo', ns: 'data', type: 'data:SupplierInfoType' },
2676
+ { name: 'customerInfo', ns: 'data', type: 'data:CustomerInfoType', optional: true },
2677
+ {
2678
+ name: 'fiscalRepresentativeInfo',
2679
+ ns: 'data',
2680
+ type: 'data:FiscalRepresentativeType',
2681
+ optional: true,
2682
+ },
2683
+ { name: 'invoiceDetail', ns: 'data', type: 'data:InvoiceDetailType' },
2684
+ ],
2685
+ },
2686
+ 'data:InvoiceMainType': {
2687
+ kind: 'complex',
2688
+ name: 'InvoiceMainType',
2689
+ ns: 'data',
2690
+ tsName: 'InvoiceMainType',
2691
+ content: 'element',
2692
+ fields: [
2693
+ { name: 'invoice', ns: 'data', type: 'data:InvoiceType', optional: true },
2694
+ {
2695
+ name: 'batchInvoice',
2696
+ ns: 'data',
2697
+ type: 'data:BatchInvoiceType',
2698
+ optional: true,
2699
+ repeated: true,
2700
+ },
2701
+ ],
2702
+ choiceGroups: [{ members: ['invoice', 'batchInvoice'], required: true }],
2703
+ },
2704
+ 'data:InvoiceReferenceType': {
2705
+ kind: 'complex',
2706
+ name: 'InvoiceReferenceType',
2707
+ ns: 'data',
2708
+ tsName: 'InvoiceReferenceType',
2709
+ content: 'element',
2710
+ fields: [
2711
+ { name: 'originalInvoiceNumber', ns: 'data', type: 'common:SimpleText50NotBlankType' },
2712
+ { name: 'modifyWithoutMaster', ns: 'data', type: 'xs:boolean' },
2713
+ { name: 'modificationIndex', ns: 'data', type: 'base:InvoiceUnboundedIndexType' },
2714
+ ],
2715
+ },
2716
+ 'data:InvoiceType': {
2717
+ kind: 'complex',
2718
+ name: 'InvoiceType',
2719
+ ns: 'data',
2720
+ tsName: 'InvoiceType',
2721
+ content: 'element',
2722
+ fields: [
2723
+ { name: 'invoiceReference', ns: 'data', type: 'data:InvoiceReferenceType', optional: true },
2724
+ { name: 'invoiceHead', ns: 'data', type: 'data:InvoiceHeadType' },
2725
+ { name: 'invoiceLines', ns: 'data', type: 'data:LinesType', optional: true },
2726
+ {
2727
+ name: 'productFeeSummary',
2728
+ ns: 'data',
2729
+ type: 'data:ProductFeeSummaryType',
2730
+ optional: true,
2731
+ repeated: true,
2732
+ maxOccurs: 2,
2733
+ },
2734
+ { name: 'invoiceSummary', ns: 'data', type: 'data:SummaryType' },
2735
+ ],
2736
+ },
2737
+ 'data:ItemNumbersType': {
2738
+ kind: 'complex',
2739
+ name: 'ItemNumbersType',
2740
+ ns: 'data',
2741
+ tsName: 'ItemNumbersType',
2742
+ content: 'element',
2743
+ fields: [
2744
+ { name: 'itemNumber', ns: 'data', type: 'common:SimpleText100NotBlankType', repeated: true },
2745
+ ],
2746
+ },
2747
+ 'data:LineAmountsNormalType': {
2748
+ kind: 'complex',
2749
+ name: 'LineAmountsNormalType',
2750
+ ns: 'data',
2751
+ tsName: 'LineAmountsNormalType',
2752
+ content: 'element',
2753
+ fields: [
2754
+ { name: 'lineNetAmountData', ns: 'data', type: 'data:LineNetAmountDataType' },
2755
+ { name: 'lineVatRate', ns: 'data', type: 'data:VatRateType' },
2756
+ { name: 'lineVatData', ns: 'data', type: 'data:LineVatDataType', optional: true },
2757
+ {
2758
+ name: 'lineGrossAmountData',
2759
+ ns: 'data',
2760
+ type: 'data:LineGrossAmountDataType',
2761
+ optional: true,
2762
+ },
2763
+ ],
2764
+ },
2765
+ 'data:LineAmountsSimplifiedType': {
2766
+ kind: 'complex',
2767
+ name: 'LineAmountsSimplifiedType',
2768
+ ns: 'data',
2769
+ tsName: 'LineAmountsSimplifiedType',
2770
+ content: 'element',
2771
+ fields: [
2772
+ { name: 'lineVatRate', ns: 'data', type: 'data:VatRateType' },
2773
+ { name: 'lineGrossAmountSimplified', ns: 'data', type: 'base:MonetaryType' },
2774
+ { name: 'lineGrossAmountSimplifiedHUF', ns: 'data', type: 'base:MonetaryType' },
2775
+ ],
2776
+ },
2777
+ 'data:LineGrossAmountDataType': {
2778
+ kind: 'complex',
2779
+ name: 'LineGrossAmountDataType',
2780
+ ns: 'data',
2781
+ tsName: 'LineGrossAmountDataType',
2782
+ content: 'element',
2783
+ fields: [
2784
+ { name: 'lineGrossAmountNormal', ns: 'data', type: 'base:MonetaryType' },
2785
+ { name: 'lineGrossAmountNormalHUF', ns: 'data', type: 'base:MonetaryType' },
2786
+ ],
2787
+ },
2788
+ 'data:LineModificationReferenceType': {
2789
+ kind: 'complex',
2790
+ name: 'LineModificationReferenceType',
2791
+ ns: 'data',
2792
+ tsName: 'LineModificationReferenceType',
2793
+ content: 'element',
2794
+ fields: [
2795
+ { name: 'lineNumberReference', ns: 'data', type: 'base:LineNumberType' },
2796
+ { name: 'lineOperation', ns: 'data', type: 'data:LineOperationType' },
2797
+ ],
2798
+ },
2799
+ 'data:LineNatureIndicatorType': {
2800
+ kind: 'simple',
2801
+ name: 'LineNatureIndicatorType',
2802
+ ns: 'data',
2803
+ tsName: 'LineNatureIndicatorType',
2804
+ primitive: 'string',
2805
+ enumValues: ['PRODUCT', 'SERVICE', 'OTHER'],
2806
+ minLength: 1,
2807
+ maxLength: 15,
2808
+ },
2809
+ 'data:LineNetAmountDataType': {
2810
+ kind: 'complex',
2811
+ name: 'LineNetAmountDataType',
2812
+ ns: 'data',
2813
+ tsName: 'LineNetAmountDataType',
2814
+ content: 'element',
2815
+ fields: [
2816
+ { name: 'lineNetAmount', ns: 'data', type: 'base:MonetaryType' },
2817
+ { name: 'lineNetAmountHUF', ns: 'data', type: 'base:MonetaryType' },
2818
+ ],
2819
+ },
2820
+ 'data:LineOperationType': {
2821
+ kind: 'simple',
2822
+ name: 'LineOperationType',
2823
+ ns: 'data',
2824
+ tsName: 'LineOperationType',
2825
+ primitive: 'string',
2826
+ enumValues: ['CREATE', 'MODIFY'],
2827
+ minLength: 1,
2828
+ maxLength: 15,
2829
+ },
2830
+ 'data:LinesType': {
2831
+ kind: 'complex',
2832
+ name: 'LinesType',
2833
+ ns: 'data',
2834
+ tsName: 'LinesType',
2835
+ content: 'element',
2836
+ fields: [
2837
+ { name: 'mergedItemIndicator', ns: 'data', type: 'xs:boolean' },
2838
+ { name: 'line', ns: 'data', type: 'data:LineType', repeated: true },
2839
+ ],
2840
+ },
2841
+ 'data:LineType': {
2842
+ kind: 'complex',
2843
+ name: 'LineType',
2844
+ ns: 'data',
2845
+ tsName: 'LineType',
2846
+ content: 'element',
2847
+ fields: [
2848
+ { name: 'lineNumber', ns: 'data', type: 'base:LineNumberType' },
2849
+ {
2850
+ name: 'lineModificationReference',
2851
+ ns: 'data',
2852
+ type: 'data:LineModificationReferenceType',
2853
+ optional: true,
2854
+ },
2855
+ {
2856
+ name: 'referencesToOtherLines',
2857
+ ns: 'data',
2858
+ type: 'data:ReferencesToOtherLinesType',
2859
+ optional: true,
2860
+ },
2861
+ { name: 'advanceData', ns: 'data', type: 'data:AdvanceDataType', optional: true },
2862
+ { name: 'productCodes', ns: 'data', type: 'data:ProductCodesType', optional: true },
2863
+ { name: 'lineExpressionIndicator', ns: 'data', type: 'xs:boolean' },
2864
+ {
2865
+ name: 'lineNatureIndicator',
2866
+ ns: 'data',
2867
+ type: 'data:LineNatureIndicatorType',
2868
+ optional: true,
2869
+ },
2870
+ {
2871
+ name: 'lineDescription',
2872
+ ns: 'data',
2873
+ type: 'common:SimpleText512NotBlankType',
2874
+ optional: true,
2875
+ },
2876
+ { name: 'quantity', ns: 'data', type: 'data:QuantityType', optional: true },
2877
+ { name: 'unitOfMeasure', ns: 'data', type: 'data:UnitOfMeasureType', optional: true },
2878
+ {
2879
+ name: 'unitOfMeasureOwn',
2880
+ ns: 'data',
2881
+ type: 'common:SimpleText50NotBlankType',
2882
+ optional: true,
2883
+ },
2884
+ { name: 'unitPrice', ns: 'data', type: 'data:QuantityType', optional: true },
2885
+ { name: 'unitPriceHUF', ns: 'data', type: 'data:QuantityType', optional: true },
2886
+ { name: 'lineDiscountData', ns: 'data', type: 'data:DiscountDataType', optional: true },
2887
+ { name: 'lineAmountsNormal', ns: 'data', type: 'data:LineAmountsNormalType', optional: true },
2888
+ {
2889
+ name: 'lineAmountsSimplified',
2890
+ ns: 'data',
2891
+ type: 'data:LineAmountsSimplifiedType',
2892
+ optional: true,
2893
+ },
2894
+ { name: 'intermediatedService', ns: 'data', type: 'xs:boolean', optional: true },
2895
+ {
2896
+ name: 'aggregateInvoiceLineData',
2897
+ ns: 'data',
2898
+ type: 'data:AggregateInvoiceLineDataType',
2899
+ optional: true,
2900
+ },
2901
+ { name: 'newTransportMean', ns: 'data', type: 'data:NewTransportMeanType', optional: true },
2902
+ { name: 'depositIndicator', ns: 'data', type: 'xs:boolean', optional: true },
2903
+ { name: 'obligatedForProductFee', ns: 'data', type: 'xs:boolean', optional: true },
2904
+ { name: 'GPCExcise', ns: 'data', type: 'base:MonetaryType', optional: true },
2905
+ { name: 'dieselOilPurchase', ns: 'data', type: 'data:DieselOilPurchaseType', optional: true },
2906
+ { name: 'netaDeclaration', ns: 'data', type: 'xs:boolean', optional: true },
2907
+ { name: 'productFeeClause', ns: 'data', type: 'data:ProductFeeClauseType', optional: true },
2908
+ {
2909
+ name: 'lineProductFeeContent',
2910
+ ns: 'data',
2911
+ type: 'data:ProductFeeDataType',
2912
+ optional: true,
2913
+ repeated: true,
2914
+ },
2915
+ {
2916
+ name: 'conventionalLineInfo',
2917
+ ns: 'data',
2918
+ type: 'data:ConventionalInvoiceInfoType',
2919
+ optional: true,
2920
+ },
2921
+ {
2922
+ name: 'additionalLineData',
2923
+ ns: 'data',
2924
+ type: 'data:AdditionalDataType',
2925
+ optional: true,
2926
+ repeated: true,
2927
+ },
2928
+ ],
2929
+ choiceGroups: [{ members: ['lineAmountsNormal', 'lineAmountsSimplified'], required: false }],
2930
+ },
2931
+ 'data:LineVatDataType': {
2932
+ kind: 'complex',
2933
+ name: 'LineVatDataType',
2934
+ ns: 'data',
2935
+ tsName: 'LineVatDataType',
2936
+ content: 'element',
2937
+ fields: [
2938
+ { name: 'lineVatAmount', ns: 'data', type: 'base:MonetaryType' },
2939
+ { name: 'lineVatAmountHUF', ns: 'data', type: 'base:MonetaryType' },
2940
+ ],
2941
+ },
2942
+ 'data:MarginSchemeType': {
2943
+ kind: 'simple',
2944
+ name: 'MarginSchemeType',
2945
+ ns: 'data',
2946
+ tsName: 'MarginSchemeType',
2947
+ primitive: 'string',
2948
+ enumValues: ['TRAVEL_AGENCY', 'SECOND_HAND', 'ARTWORK', 'ANTIQUES'],
2949
+ minLength: 1,
2950
+ maxLength: 15,
2951
+ },
2952
+ 'data:MaterialNumbersType': {
2953
+ kind: 'complex',
2954
+ name: 'MaterialNumbersType',
2955
+ ns: 'data',
2956
+ tsName: 'MaterialNumbersType',
2957
+ content: 'element',
2958
+ fields: [
2959
+ {
2960
+ name: 'materialNumber',
2961
+ ns: 'data',
2962
+ type: 'common:SimpleText100NotBlankType',
2963
+ repeated: true,
2964
+ },
2965
+ ],
2966
+ },
2967
+ 'data:NewTransportMeanType': {
2968
+ kind: 'complex',
2969
+ name: 'NewTransportMeanType',
2970
+ ns: 'data',
2971
+ tsName: 'NewTransportMeanType',
2972
+ content: 'element',
2973
+ fields: [
2974
+ { name: 'brand', ns: 'data', type: 'common:SimpleText50NotBlankType', optional: true },
2975
+ { name: 'serialNum', ns: 'data', type: 'common:SimpleText255NotBlankType', optional: true },
2976
+ { name: 'engineNum', ns: 'data', type: 'common:SimpleText255NotBlankType', optional: true },
2977
+ { name: 'firstEntryIntoService', ns: 'data', type: 'base:InvoiceDateType', optional: true },
2978
+ { name: 'vehicle', ns: 'data', type: 'data:VehicleType', optional: true },
2979
+ { name: 'vessel', ns: 'data', type: 'data:VesselType', optional: true },
2980
+ { name: 'aircraft', ns: 'data', type: 'data:AircraftType', optional: true },
2981
+ ],
2982
+ choiceGroups: [{ members: ['vehicle', 'vessel', 'aircraft'], required: true }],
2983
+ },
2984
+ 'data:OrderNumbersType': {
2985
+ kind: 'complex',
2986
+ name: 'OrderNumbersType',
2987
+ ns: 'data',
2988
+ tsName: 'OrderNumbersType',
2989
+ content: 'element',
2990
+ fields: [
2991
+ { name: 'orderNumber', ns: 'data', type: 'common:SimpleText100NotBlankType', repeated: true },
2992
+ ],
2993
+ },
2994
+ 'data:PaymentEvidenceDocumentDataType': {
2995
+ kind: 'complex',
2996
+ name: 'PaymentEvidenceDocumentDataType',
2997
+ ns: 'data',
2998
+ tsName: 'PaymentEvidenceDocumentDataType',
2999
+ content: 'element',
3000
+ fields: [
3001
+ { name: 'evidenceDocumentNo', ns: 'data', type: 'common:SimpleText50NotBlankType' },
3002
+ { name: 'evidenceDocumentDate', ns: 'data', type: 'base:InvoiceDateType' },
3003
+ { name: 'obligatedName', ns: 'data', type: 'common:SimpleText255NotBlankType' },
3004
+ { name: 'obligatedAddress', ns: 'data', type: 'base:AddressType' },
3005
+ { name: 'obligatedTaxNumber', ns: 'data', type: 'base:TaxNumberType' },
3006
+ ],
3007
+ },
3008
+ 'data:ProductCodeCategoryType': {
3009
+ kind: 'simple',
3010
+ name: 'ProductCodeCategoryType',
3011
+ ns: 'data',
3012
+ tsName: 'ProductCodeCategoryType',
3013
+ primitive: 'string',
3014
+ enumValues: ['VTSZ', 'SZJ', 'KN', 'AHK', 'CSK', 'KT', 'EJ', 'TESZOR', 'OWN', 'OTHER'],
3015
+ minLength: 2,
3016
+ maxLength: 6,
3017
+ },
3018
+ 'data:ProductCodesType': {
3019
+ kind: 'complex',
3020
+ name: 'ProductCodesType',
3021
+ ns: 'data',
3022
+ tsName: 'ProductCodesType',
3023
+ content: 'element',
3024
+ fields: [{ name: 'productCode', ns: 'data', type: 'data:ProductCodeType', repeated: true }],
3025
+ },
3026
+ 'data:ProductCodeType': {
3027
+ kind: 'complex',
3028
+ name: 'ProductCodeType',
3029
+ ns: 'data',
3030
+ tsName: 'ProductCodeType',
3031
+ content: 'element',
3032
+ fields: [
3033
+ { name: 'productCodeCategory', ns: 'data', type: 'data:ProductCodeCategoryType' },
3034
+ { name: 'productCodeValue', ns: 'data', type: 'data:ProductCodeValueType', optional: true },
3035
+ {
3036
+ name: 'productCodeOwnValue',
3037
+ ns: 'data',
3038
+ type: 'common:SimpleText255NotBlankType',
3039
+ optional: true,
3040
+ },
3041
+ ],
3042
+ choiceGroups: [{ members: ['productCodeValue', 'productCodeOwnValue'], required: true }],
3043
+ },
3044
+ 'data:ProductCodeValueType': {
3045
+ kind: 'simple',
3046
+ name: 'ProductCodeValueType',
3047
+ ns: 'data',
3048
+ tsName: 'ProductCodeValueType',
3049
+ primitive: 'string',
3050
+ pattern: '[A-Z0-9]{2,30}',
3051
+ minLength: 2,
3052
+ maxLength: 30,
3053
+ },
3054
+ 'data:ProductFeeClauseType': {
3055
+ kind: 'complex',
3056
+ name: 'ProductFeeClauseType',
3057
+ ns: 'data',
3058
+ tsName: 'ProductFeeClauseType',
3059
+ content: 'element',
3060
+ fields: [
3061
+ {
3062
+ name: 'productFeeTakeoverData',
3063
+ ns: 'data',
3064
+ type: 'data:ProductFeeTakeoverDataType',
3065
+ optional: true,
3066
+ },
3067
+ {
3068
+ name: 'customerDeclaration',
3069
+ ns: 'data',
3070
+ type: 'data:CustomerDeclarationType',
3071
+ optional: true,
3072
+ },
3073
+ ],
3074
+ choiceGroups: [{ members: ['productFeeTakeoverData', 'customerDeclaration'], required: true }],
3075
+ },
3076
+ 'data:ProductFeeDataType': {
3077
+ kind: 'complex',
3078
+ name: 'ProductFeeDataType',
3079
+ ns: 'data',
3080
+ tsName: 'ProductFeeDataType',
3081
+ content: 'element',
3082
+ fields: [
3083
+ { name: 'productFeeCode', ns: 'data', type: 'data:ProductCodeType' },
3084
+ { name: 'productFeeQuantity', ns: 'data', type: 'data:QuantityType' },
3085
+ { name: 'productFeeMeasuringUnit', ns: 'data', type: 'data:ProductFeeMeasuringUnitType' },
3086
+ { name: 'productFeeRate', ns: 'data', type: 'base:MonetaryType' },
3087
+ { name: 'productFeeAmount', ns: 'data', type: 'base:MonetaryType' },
3088
+ ],
3089
+ },
3090
+ 'data:ProductFeeMeasuringUnitType': {
3091
+ kind: 'simple',
3092
+ name: 'ProductFeeMeasuringUnitType',
3093
+ ns: 'data',
3094
+ tsName: 'ProductFeeMeasuringUnitType',
3095
+ primitive: 'string',
3096
+ enumValues: ['DARAB', 'KG'],
3097
+ minLength: 1,
3098
+ maxLength: 8,
3099
+ },
3100
+ 'data:ProductFeeOperationType': {
3101
+ kind: 'simple',
3102
+ name: 'ProductFeeOperationType',
3103
+ ns: 'data',
3104
+ tsName: 'ProductFeeOperationType',
3105
+ primitive: 'string',
3106
+ enumValues: ['REFUND', 'DEPOSIT'],
3107
+ minLength: 1,
3108
+ maxLength: 8,
3109
+ },
3110
+ 'data:ProductFeeSummaryType': {
3111
+ kind: 'complex',
3112
+ name: 'ProductFeeSummaryType',
3113
+ ns: 'data',
3114
+ tsName: 'ProductFeeSummaryType',
3115
+ content: 'element',
3116
+ fields: [
3117
+ { name: 'productFeeOperation', ns: 'data', type: 'data:ProductFeeOperationType' },
3118
+ { name: 'productFeeData', ns: 'data', type: 'data:ProductFeeDataType', repeated: true },
3119
+ { name: 'productChargeSum', ns: 'data', type: 'base:MonetaryType' },
3120
+ {
3121
+ name: 'paymentEvidenceDocumentData',
3122
+ ns: 'data',
3123
+ type: 'data:PaymentEvidenceDocumentDataType',
3124
+ optional: true,
3125
+ },
3126
+ ],
3127
+ },
3128
+ 'data:ProductFeeTakeoverDataType': {
3129
+ kind: 'complex',
3130
+ name: 'ProductFeeTakeoverDataType',
3131
+ ns: 'data',
3132
+ tsName: 'ProductFeeTakeoverDataType',
3133
+ content: 'element',
3134
+ fields: [
3135
+ { name: 'takeoverReason', ns: 'data', type: 'data:TakeoverType' },
3136
+ { name: 'takeoverAmount', ns: 'data', type: 'base:MonetaryType', optional: true },
3137
+ ],
3138
+ },
3139
+ 'data:ProductStreamType': {
3140
+ kind: 'simple',
3141
+ name: 'ProductStreamType',
3142
+ ns: 'data',
3143
+ tsName: 'ProductStreamType',
3144
+ primitive: 'string',
3145
+ enumValues: [
3146
+ 'BATTERY',
3147
+ 'PACKAGING',
3148
+ 'OTHER_PETROL',
3149
+ 'ELECTRONIC',
3150
+ 'TIRE',
3151
+ 'COMMERCIAL',
3152
+ 'PLASTIC',
3153
+ 'OTHER_CHEMICAL',
3154
+ 'PAPER',
3155
+ ],
3156
+ minLength: 1,
3157
+ maxLength: 15,
3158
+ },
3159
+ 'data:ProjectNumbersType': {
3160
+ kind: 'complex',
3161
+ name: 'ProjectNumbersType',
3162
+ ns: 'data',
3163
+ tsName: 'ProjectNumbersType',
3164
+ content: 'element',
3165
+ fields: [
3166
+ {
3167
+ name: 'projectNumber',
3168
+ ns: 'data',
3169
+ type: 'common:SimpleText100NotBlankType',
3170
+ repeated: true,
3171
+ },
3172
+ ],
3173
+ },
3174
+ 'data:QuantityType': {
3175
+ kind: 'simple',
3176
+ name: 'QuantityType',
3177
+ ns: 'data',
3178
+ tsName: 'QuantityType',
3179
+ primitive: 'decimal',
3180
+ totalDigits: 22,
3181
+ fractionDigits: 10,
3182
+ },
3183
+ 'data:RateType': {
3184
+ kind: 'simple',
3185
+ name: 'RateType',
3186
+ ns: 'data',
3187
+ tsName: 'RateType',
3188
+ primitive: 'decimal',
3189
+ totalDigits: 5,
3190
+ fractionDigits: 4,
3191
+ minInclusive: '0',
3192
+ maxInclusive: '1',
3193
+ },
3194
+ 'data:ReferencesToOtherLinesType': {
3195
+ kind: 'complex',
3196
+ name: 'ReferencesToOtherLinesType',
3197
+ ns: 'data',
3198
+ tsName: 'ReferencesToOtherLinesType',
3199
+ content: 'element',
3200
+ fields: [
3201
+ { name: 'referenceToOtherLine', ns: 'data', type: 'base:LineNumberType', repeated: true },
3202
+ ],
3203
+ },
3204
+ 'data:ShippingDatesType': {
3205
+ kind: 'complex',
3206
+ name: 'ShippingDatesType',
3207
+ ns: 'data',
3208
+ tsName: 'ShippingDatesType',
3209
+ content: 'element',
3210
+ fields: [
3211
+ {
3212
+ name: 'shippingDate',
3213
+ ns: 'data',
3214
+ type: 'common:SimpleText100NotBlankType',
3215
+ repeated: true,
3216
+ },
3217
+ ],
3218
+ },
3219
+ 'data:SummaryByVatRateType': {
3220
+ kind: 'complex',
3221
+ name: 'SummaryByVatRateType',
3222
+ ns: 'data',
3223
+ tsName: 'SummaryByVatRateType',
3224
+ content: 'element',
3225
+ fields: [
3226
+ { name: 'vatRate', ns: 'data', type: 'data:VatRateType' },
3227
+ { name: 'vatRateNetData', ns: 'data', type: 'data:VatRateNetDataType' },
3228
+ { name: 'vatRateVatData', ns: 'data', type: 'data:VatRateVatDataType' },
3229
+ { name: 'vatRateGrossData', ns: 'data', type: 'data:VatRateGrossDataType', optional: true },
3230
+ ],
3231
+ },
3232
+ 'data:SummaryGrossDataType': {
3233
+ kind: 'complex',
3234
+ name: 'SummaryGrossDataType',
3235
+ ns: 'data',
3236
+ tsName: 'SummaryGrossDataType',
3237
+ content: 'element',
3238
+ fields: [
3239
+ { name: 'invoiceGrossAmount', ns: 'data', type: 'base:MonetaryType' },
3240
+ { name: 'invoiceGrossAmountHUF', ns: 'data', type: 'base:MonetaryType' },
3241
+ ],
3242
+ },
3243
+ 'data:SummaryNormalType': {
3244
+ kind: 'complex',
3245
+ name: 'SummaryNormalType',
3246
+ ns: 'data',
3247
+ tsName: 'SummaryNormalType',
3248
+ content: 'element',
3249
+ fields: [
3250
+ { name: 'summaryByVatRate', ns: 'data', type: 'data:SummaryByVatRateType', repeated: true },
3251
+ { name: 'invoiceNetAmount', ns: 'data', type: 'base:MonetaryType' },
3252
+ { name: 'invoiceNetAmountHUF', ns: 'data', type: 'base:MonetaryType' },
3253
+ { name: 'invoiceVatAmount', ns: 'data', type: 'base:MonetaryType' },
3254
+ { name: 'invoiceVatAmountHUF', ns: 'data', type: 'base:MonetaryType' },
3255
+ ],
3256
+ },
3257
+ 'data:SummarySimplifiedType': {
3258
+ kind: 'complex',
3259
+ name: 'SummarySimplifiedType',
3260
+ ns: 'data',
3261
+ tsName: 'SummarySimplifiedType',
3262
+ content: 'element',
3263
+ fields: [
3264
+ { name: 'vatRate', ns: 'data', type: 'data:VatRateType' },
3265
+ { name: 'vatContentGrossAmount', ns: 'data', type: 'base:MonetaryType' },
3266
+ { name: 'vatContentGrossAmountHUF', ns: 'data', type: 'base:MonetaryType' },
3267
+ ],
3268
+ },
3269
+ 'data:SummaryType': {
3270
+ kind: 'complex',
3271
+ name: 'SummaryType',
3272
+ ns: 'data',
3273
+ tsName: 'SummaryType',
3274
+ content: 'element',
3275
+ fields: [
3276
+ { name: 'summaryNormal', ns: 'data', type: 'data:SummaryNormalType', optional: true },
3277
+ {
3278
+ name: 'summarySimplified',
3279
+ ns: 'data',
3280
+ type: 'data:SummarySimplifiedType',
3281
+ optional: true,
3282
+ repeated: true,
3283
+ },
3284
+ { name: 'summaryGrossData', ns: 'data', type: 'data:SummaryGrossDataType', optional: true },
3285
+ ],
3286
+ choiceGroups: [{ members: ['summaryNormal', 'summarySimplified'], required: true }],
3287
+ },
3288
+ 'data:SupplierCompanyCodesType': {
3289
+ kind: 'complex',
3290
+ name: 'SupplierCompanyCodesType',
3291
+ ns: 'data',
3292
+ tsName: 'SupplierCompanyCodesType',
3293
+ content: 'element',
3294
+ fields: [
3295
+ {
3296
+ name: 'supplierCompanyCode',
3297
+ ns: 'data',
3298
+ type: 'common:SimpleText100NotBlankType',
3299
+ repeated: true,
3300
+ },
3301
+ ],
3302
+ },
3303
+ 'data:SupplierInfoType': {
3304
+ kind: 'complex',
3305
+ name: 'SupplierInfoType',
3306
+ ns: 'data',
3307
+ tsName: 'SupplierInfoType',
3308
+ content: 'element',
3309
+ fields: [
3310
+ { name: 'supplierTaxNumber', ns: 'data', type: 'base:TaxNumberType' },
3311
+ { name: 'groupMemberTaxNumber', ns: 'data', type: 'base:TaxNumberType', optional: true },
3312
+ {
3313
+ name: 'communityVatNumber',
3314
+ ns: 'data',
3315
+ type: 'common:CommunityVatNumberType',
3316
+ optional: true,
3317
+ },
3318
+ { name: 'supplierName', ns: 'data', type: 'common:SimpleText512NotBlankType' },
3319
+ { name: 'supplierAddress', ns: 'data', type: 'base:AddressType' },
3320
+ {
3321
+ name: 'supplierBankAccountNumber',
3322
+ ns: 'data',
3323
+ type: 'common:BankAccountNumberType',
3324
+ optional: true,
3325
+ },
3326
+ { name: 'individualExemption', ns: 'data', type: 'xs:boolean', optional: true },
3327
+ {
3328
+ name: 'exciseLicenceNum',
3329
+ ns: 'data',
3330
+ type: 'common:SimpleText50NotBlankType',
3331
+ optional: true,
3332
+ },
3333
+ ],
3334
+ },
3335
+ 'data:TakeoverType': {
3336
+ kind: 'simple',
3337
+ name: 'TakeoverType',
3338
+ ns: 'data',
3339
+ tsName: 'TakeoverType',
3340
+ primitive: 'string',
3341
+ enumValues: [
3342
+ '01',
3343
+ '02_aa',
3344
+ '02_ab',
3345
+ '02_b',
3346
+ '02_c',
3347
+ '02_d',
3348
+ '02_ea',
3349
+ '02_eb',
3350
+ '02_fa',
3351
+ '02_fb',
3352
+ '02_ga',
3353
+ '02_gb',
3354
+ ],
3355
+ minLength: 1,
3356
+ maxLength: 8,
3357
+ },
3358
+ 'data:UnitOfMeasureType': {
3359
+ kind: 'simple',
3360
+ name: 'UnitOfMeasureType',
3361
+ ns: 'data',
3362
+ tsName: 'UnitOfMeasureType',
3363
+ primitive: 'string',
3364
+ enumValues: [
3365
+ 'PIECE',
3366
+ 'KILOGRAM',
3367
+ 'TON',
3368
+ 'KWH',
3369
+ 'DAY',
3370
+ 'HOUR',
3371
+ 'MINUTE',
3372
+ 'MONTH',
3373
+ 'LITER',
3374
+ 'KILOMETER',
3375
+ 'CUBIC_METER',
3376
+ 'METER',
3377
+ 'LINEAR_METER',
3378
+ 'CARTON',
3379
+ 'PACK',
3380
+ 'OWN',
3381
+ ],
3382
+ minLength: 1,
3383
+ maxLength: 15,
3384
+ },
3385
+ 'data:VatAmountMismatchType': {
3386
+ kind: 'complex',
3387
+ name: 'VatAmountMismatchType',
3388
+ ns: 'data',
3389
+ tsName: 'VatAmountMismatchType',
3390
+ content: 'element',
3391
+ fields: [
3392
+ { name: 'vatRate', ns: 'data', type: 'data:RateType' },
3393
+ { name: 'case', ns: 'data', type: 'common:SimpleText50NotBlankType' },
3394
+ ],
3395
+ },
3396
+ 'data:VatRateGrossDataType': {
3397
+ kind: 'complex',
3398
+ name: 'VatRateGrossDataType',
3399
+ ns: 'data',
3400
+ tsName: 'VatRateGrossDataType',
3401
+ content: 'element',
3402
+ fields: [
3403
+ { name: 'vatRateGrossAmount', ns: 'data', type: 'base:MonetaryType' },
3404
+ { name: 'vatRateGrossAmountHUF', ns: 'data', type: 'base:MonetaryType' },
3405
+ ],
3406
+ },
3407
+ 'data:VatRateNetDataType': {
3408
+ kind: 'complex',
3409
+ name: 'VatRateNetDataType',
3410
+ ns: 'data',
3411
+ tsName: 'VatRateNetDataType',
3412
+ content: 'element',
3413
+ fields: [
3414
+ { name: 'vatRateNetAmount', ns: 'data', type: 'base:MonetaryType' },
3415
+ { name: 'vatRateNetAmountHUF', ns: 'data', type: 'base:MonetaryType' },
3416
+ ],
3417
+ },
3418
+ 'data:VatRateType': {
3419
+ kind: 'complex',
3420
+ name: 'VatRateType',
3421
+ ns: 'data',
3422
+ tsName: 'VatRateType',
3423
+ content: 'element',
3424
+ fields: [
3425
+ { name: 'vatPercentage', ns: 'data', type: 'data:RateType', optional: true },
3426
+ { name: 'vatContent', ns: 'data', type: 'data:RateType', optional: true },
3427
+ { name: 'vatExemption', ns: 'data', type: 'data:DetailedReasonType', optional: true },
3428
+ { name: 'vatOutOfScope', ns: 'data', type: 'data:DetailedReasonType', optional: true },
3429
+ { name: 'vatDomesticReverseCharge', ns: 'data', type: 'xs:boolean', optional: true },
3430
+ { name: 'marginSchemeIndicator', ns: 'data', type: 'data:MarginSchemeType', optional: true },
3431
+ { name: 'vatAmountMismatch', ns: 'data', type: 'data:VatAmountMismatchType', optional: true },
3432
+ { name: 'noVatCharge', ns: 'data', type: 'xs:boolean', optional: true },
3433
+ ],
3434
+ choiceGroups: [
3435
+ {
3436
+ members: [
3437
+ 'vatPercentage',
3438
+ 'vatContent',
3439
+ 'vatExemption',
3440
+ 'vatOutOfScope',
3441
+ 'vatDomesticReverseCharge',
3442
+ 'marginSchemeIndicator',
3443
+ 'vatAmountMismatch',
3444
+ 'noVatCharge',
3445
+ ],
3446
+ required: true,
3447
+ },
3448
+ ],
3449
+ },
3450
+ 'data:VatRateVatDataType': {
3451
+ kind: 'complex',
3452
+ name: 'VatRateVatDataType',
3453
+ ns: 'data',
3454
+ tsName: 'VatRateVatDataType',
3455
+ content: 'element',
3456
+ fields: [
3457
+ { name: 'vatRateVatAmount', ns: 'data', type: 'base:MonetaryType' },
3458
+ { name: 'vatRateVatAmountHUF', ns: 'data', type: 'base:MonetaryType' },
3459
+ ],
3460
+ },
3461
+ 'data:VehicleType': {
3462
+ kind: 'complex',
3463
+ name: 'VehicleType',
3464
+ ns: 'data',
3465
+ tsName: 'VehicleType',
3466
+ content: 'element',
3467
+ fields: [
3468
+ { name: 'engineCapacity', ns: 'data', type: 'data:QuantityType' },
3469
+ { name: 'enginePower', ns: 'data', type: 'data:QuantityType' },
3470
+ { name: 'kms', ns: 'data', type: 'data:QuantityType' },
3471
+ ],
3472
+ },
3473
+ 'data:VesselType': {
3474
+ kind: 'complex',
3475
+ name: 'VesselType',
3476
+ ns: 'data',
3477
+ tsName: 'VesselType',
3478
+ content: 'element',
3479
+ fields: [
3480
+ { name: 'length', ns: 'data', type: 'data:QuantityType' },
3481
+ { name: 'activityReferred', ns: 'data', type: 'xs:boolean' },
3482
+ { name: 'sailedHours', ns: 'data', type: 'data:QuantityType' },
3483
+ ],
3484
+ },
3485
+ 'metrics:LanguageType': {
3486
+ kind: 'simple',
3487
+ name: 'LanguageType',
3488
+ ns: 'metrics',
3489
+ tsName: 'LanguageType',
3490
+ primitive: 'string',
3491
+ enumValues: ['HU', 'EN', 'DE'],
3492
+ minLength: 1,
3493
+ maxLength: 2,
3494
+ },
3495
+ 'metrics:MetricDefinitionType': {
3496
+ kind: 'complex',
3497
+ name: 'MetricDefinitionType',
3498
+ ns: 'metrics',
3499
+ tsName: 'MetricDefinitionType',
3500
+ content: 'element',
3501
+ fields: [
3502
+ { name: 'metricName', ns: 'metrics', type: 'common:SimpleText200NotBlankType' },
3503
+ { name: 'metricType', ns: 'metrics', type: 'metrics:MetricTypeType' },
3504
+ {
3505
+ name: 'metricDescription',
3506
+ ns: 'metrics',
3507
+ type: 'metrics:MetricDescriptionType',
3508
+ repeated: true,
3509
+ maxOccurs: 3,
3510
+ },
3511
+ ],
3512
+ },
3513
+ 'metrics:MetricDescriptionType': {
3514
+ kind: 'complex',
3515
+ name: 'MetricDescriptionType',
3516
+ ns: 'metrics',
3517
+ tsName: 'MetricDescriptionType',
3518
+ content: 'element',
3519
+ fields: [
3520
+ { name: 'language', ns: 'metrics', type: 'metrics:LanguageType' },
3521
+ { name: 'localizedDescription', ns: 'metrics', type: 'common:SimpleText512NotBlankType' },
3522
+ ],
3523
+ },
3524
+ 'metrics:MetricType': {
3525
+ kind: 'complex',
3526
+ name: 'MetricType',
3527
+ ns: 'metrics',
3528
+ tsName: 'MetricType',
3529
+ content: 'element',
3530
+ fields: [
3531
+ { name: 'metricDefinition', ns: 'metrics', type: 'metrics:MetricDefinitionType' },
3532
+ {
3533
+ name: 'metricValues',
3534
+ ns: 'metrics',
3535
+ type: 'metrics:MetricValueType',
3536
+ optional: true,
3537
+ repeated: true,
3538
+ maxOccurs: 60,
3539
+ },
3540
+ ],
3541
+ },
3542
+ 'metrics:MetricTypeType': {
3543
+ kind: 'simple',
3544
+ name: 'MetricTypeType',
3545
+ ns: 'metrics',
3546
+ tsName: 'MetricTypeType',
3547
+ primitive: 'string',
3548
+ enumValues: ['COUNTER', 'GAUGE', 'HISTOGRAM', 'SUMMARY'],
3549
+ minLength: 1,
3550
+ maxLength: 15,
3551
+ },
3552
+ 'metrics:MetricValueType': {
3553
+ kind: 'complex',
3554
+ name: 'MetricValueType',
3555
+ ns: 'metrics',
3556
+ tsName: 'MetricValueType',
3557
+ content: 'element',
3558
+ fields: [
3559
+ { name: 'value', ns: 'metrics', type: 'common:GenericDecimalType' },
3560
+ { name: 'timestamp', ns: 'metrics', type: 'base:InvoiceTimestampType' },
3561
+ ],
3562
+ },
3563
+ 'metrics:QueryServiceMetricsListResponse': {
3564
+ kind: 'complex',
3565
+ name: 'QueryServiceMetricsListResponse',
3566
+ ns: 'metrics',
3567
+ tsName: 'QueryServiceMetricsListResponse',
3568
+ content: 'element',
3569
+ fields: [
3570
+ {
3571
+ name: 'metricDefinition',
3572
+ ns: 'metrics',
3573
+ type: 'metrics:MetricDefinitionType',
3574
+ optional: true,
3575
+ repeated: true,
3576
+ },
3577
+ ],
3578
+ },
3579
+ 'metrics:QueryServiceMetricsListResponseType': {
3580
+ kind: 'complex',
3581
+ name: 'QueryServiceMetricsListResponseType',
3582
+ ns: 'metrics',
3583
+ tsName: 'QueryServiceMetricsListResponseType',
3584
+ content: 'element',
3585
+ fields: [
3586
+ {
3587
+ name: 'metricDefinition',
3588
+ ns: 'metrics',
3589
+ type: 'metrics:MetricDefinitionType',
3590
+ optional: true,
3591
+ repeated: true,
3592
+ },
3593
+ ],
3594
+ },
3595
+ 'metrics:QueryServiceMetricsResponse': {
3596
+ kind: 'complex',
3597
+ name: 'QueryServiceMetricsResponse',
3598
+ ns: 'metrics',
3599
+ tsName: 'QueryServiceMetricsResponse',
3600
+ content: 'element',
3601
+ fields: [
3602
+ { name: 'result', ns: 'metrics', type: 'common:BasicResultType' },
3603
+ {
3604
+ name: 'metricsLastUpdateTime',
3605
+ ns: 'metrics',
3606
+ type: 'base:InvoiceTimestampType',
3607
+ optional: true,
3608
+ },
3609
+ { name: 'metric', ns: 'metrics', type: 'metrics:MetricType', optional: true, repeated: true },
3610
+ ],
3611
+ },
3612
+ 'metrics:QueryServiceMetricsResponseType': {
3613
+ kind: 'complex',
3614
+ name: 'QueryServiceMetricsResponseType',
3615
+ ns: 'metrics',
3616
+ tsName: 'QueryServiceMetricsResponseType',
3617
+ content: 'element',
3618
+ fields: [
3619
+ { name: 'result', ns: 'metrics', type: 'common:BasicResultType' },
3620
+ {
3621
+ name: 'metricsLastUpdateTime',
3622
+ ns: 'metrics',
3623
+ type: 'base:InvoiceTimestampType',
3624
+ optional: true,
3625
+ },
3626
+ { name: 'metric', ns: 'metrics', type: 'metrics:MetricType', optional: true, repeated: true },
3627
+ ],
3628
+ },
3629
+ };
3630
+
3631
+ /** Document roots, keyed by element name. */
3632
+ export const ROOTS: Record<string, RootDescriptor> = {
3633
+ GeneralErrorHeaderResponse: {
3634
+ name: 'GeneralErrorHeaderResponse',
3635
+ ns: 'common',
3636
+ type: 'common:GeneralErrorHeaderResponse',
3637
+ },
3638
+ GeneralErrorResponse: {
3639
+ name: 'GeneralErrorResponse',
3640
+ ns: 'api',
3641
+ type: 'api:GeneralErrorResponse',
3642
+ },
3643
+ GeneralExceptionResponse: {
3644
+ name: 'GeneralExceptionResponse',
3645
+ ns: 'common',
3646
+ type: 'common:GeneralExceptionResponse',
3647
+ },
3648
+ InvoiceAnnulment: { name: 'InvoiceAnnulment', ns: 'annul', type: 'annul:InvoiceAnnulment' },
3649
+ InvoiceData: { name: 'InvoiceData', ns: 'data', type: 'data:InvoiceData' },
3650
+ ManageAnnulmentRequest: {
3651
+ name: 'ManageAnnulmentRequest',
3652
+ ns: 'api',
3653
+ type: 'api:ManageAnnulmentRequest',
3654
+ },
3655
+ ManageAnnulmentResponse: {
3656
+ name: 'ManageAnnulmentResponse',
3657
+ ns: 'api',
3658
+ type: 'api:ManageAnnulmentResponse',
3659
+ },
3660
+ ManageInvoiceRequest: {
3661
+ name: 'ManageInvoiceRequest',
3662
+ ns: 'api',
3663
+ type: 'api:ManageInvoiceRequest',
3664
+ },
3665
+ ManageInvoiceResponse: {
3666
+ name: 'ManageInvoiceResponse',
3667
+ ns: 'api',
3668
+ type: 'api:ManageInvoiceResponse',
3669
+ },
3670
+ QueryInvoiceChainDigestRequest: {
3671
+ name: 'QueryInvoiceChainDigestRequest',
3672
+ ns: 'api',
3673
+ type: 'api:QueryInvoiceChainDigestRequest',
3674
+ },
3675
+ QueryInvoiceChainDigestResponse: {
3676
+ name: 'QueryInvoiceChainDigestResponse',
3677
+ ns: 'api',
3678
+ type: 'api:QueryInvoiceChainDigestResponse',
3679
+ },
3680
+ QueryInvoiceCheckRequest: {
3681
+ name: 'QueryInvoiceCheckRequest',
3682
+ ns: 'api',
3683
+ type: 'api:QueryInvoiceCheckRequest',
3684
+ },
3685
+ QueryInvoiceCheckResponse: {
3686
+ name: 'QueryInvoiceCheckResponse',
3687
+ ns: 'api',
3688
+ type: 'api:QueryInvoiceCheckResponse',
3689
+ },
3690
+ QueryInvoiceDataRequest: {
3691
+ name: 'QueryInvoiceDataRequest',
3692
+ ns: 'api',
3693
+ type: 'api:QueryInvoiceDataRequest',
3694
+ },
3695
+ QueryInvoiceDataResponse: {
3696
+ name: 'QueryInvoiceDataResponse',
3697
+ ns: 'api',
3698
+ type: 'api:QueryInvoiceDataResponse',
3699
+ },
3700
+ QueryInvoiceDigestRequest: {
3701
+ name: 'QueryInvoiceDigestRequest',
3702
+ ns: 'api',
3703
+ type: 'api:QueryInvoiceDigestRequest',
3704
+ },
3705
+ QueryInvoiceDigestResponse: {
3706
+ name: 'QueryInvoiceDigestResponse',
3707
+ ns: 'api',
3708
+ type: 'api:QueryInvoiceDigestResponse',
3709
+ },
3710
+ QueryServiceMetricsListResponse: {
3711
+ name: 'QueryServiceMetricsListResponse',
3712
+ ns: 'metrics',
3713
+ type: 'metrics:QueryServiceMetricsListResponse',
3714
+ },
3715
+ QueryServiceMetricsResponse: {
3716
+ name: 'QueryServiceMetricsResponse',
3717
+ ns: 'metrics',
3718
+ type: 'metrics:QueryServiceMetricsResponse',
3719
+ },
3720
+ QueryTaxpayerRequest: {
3721
+ name: 'QueryTaxpayerRequest',
3722
+ ns: 'api',
3723
+ type: 'api:QueryTaxpayerRequest',
3724
+ },
3725
+ QueryTaxpayerResponse: {
3726
+ name: 'QueryTaxpayerResponse',
3727
+ ns: 'api',
3728
+ type: 'api:QueryTaxpayerResponse',
3729
+ },
3730
+ QueryTransactionListRequest: {
3731
+ name: 'QueryTransactionListRequest',
3732
+ ns: 'api',
3733
+ type: 'api:QueryTransactionListRequest',
3734
+ },
3735
+ QueryTransactionListResponse: {
3736
+ name: 'QueryTransactionListResponse',
3737
+ ns: 'api',
3738
+ type: 'api:QueryTransactionListResponse',
3739
+ },
3740
+ QueryTransactionStatusRequest: {
3741
+ name: 'QueryTransactionStatusRequest',
3742
+ ns: 'api',
3743
+ type: 'api:QueryTransactionStatusRequest',
3744
+ },
3745
+ QueryTransactionStatusResponse: {
3746
+ name: 'QueryTransactionStatusResponse',
3747
+ ns: 'api',
3748
+ type: 'api:QueryTransactionStatusResponse',
3749
+ },
3750
+ TokenExchangeRequest: {
3751
+ name: 'TokenExchangeRequest',
3752
+ ns: 'api',
3753
+ type: 'api:TokenExchangeRequest',
3754
+ },
3755
+ TokenExchangeResponse: {
3756
+ name: 'TokenExchangeResponse',
3757
+ ns: 'api',
3758
+ type: 'api:TokenExchangeResponse',
3759
+ },
3760
+ };