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