@vality/swag-payments 0.1.3-e658db3.0 → 0.1.3-fd6802c.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 (761) hide show
  1. package/README.md +224 -12
  2. package/{lib/api → api}/api.d.ts +1 -3
  3. package/{lib/api → api}/categories.service.d.ts +16 -15
  4. package/{lib/api → api}/contracts.service.d.ts +52 -33
  5. package/{lib/api → api}/countries.service.d.ts +16 -15
  6. package/{lib/api → api}/customers.service.d.ts +58 -36
  7. package/{lib/api → api}/invoiceTemplates.service.d.ts +40 -27
  8. package/{lib/api → api}/invoices.service.d.ts +58 -36
  9. package/{lib/api → api}/parties.service.d.ts +40 -27
  10. package/api/paymentInstitutions.service.d.ts +132 -0
  11. package/{lib/api → api}/payments.service.d.ts +88 -51
  12. package/{lib/api → api}/search.service.d.ts +22 -57
  13. package/{lib/api → api}/shops.service.d.ts +52 -33
  14. package/{lib/api → api}/tokens.service.d.ts +10 -12
  15. package/{lib/api → api}/tradeBlocs.service.d.ts +16 -15
  16. package/{lib/api → api}/webhooks.service.d.ts +34 -24
  17. package/api.base.service.d.ts +12 -0
  18. package/{lib/configuration.d.ts → configuration.d.ts} +3 -1
  19. package/fesm2022/vality-swag-payments.mjs +1187 -4352
  20. package/fesm2022/vality-swag-payments.mjs.map +1 -1
  21. package/index.d.ts +6 -5
  22. package/model/accessToken.d.ts +15 -0
  23. package/model/allocationFee.d.ts +24 -0
  24. package/model/allocationFeeTarget.d.ts +21 -0
  25. package/model/allocationTarget.d.ts +21 -0
  26. package/model/allocationTargetShop.d.ts +21 -0
  27. package/model/allocationTransaction.d.ts +32 -0
  28. package/model/apiExtensionRequest.d.ts +16 -0
  29. package/model/applePay.d.ts +22 -0
  30. package/model/articlesOfAssociation.d.ts +17 -0
  31. package/model/bankAccount.d.ts +27 -0
  32. package/model/bankCard.d.ts +23 -0
  33. package/model/bankCardDetails.d.ts +42 -0
  34. package/{lib/model → model}/bankCardTokenProviderData.d.ts +0 -2
  35. package/model/bankCardTokenizationMethod.d.ts +17 -0
  36. package/model/browserGetRequest.d.ts +16 -0
  37. package/model/browserPostRequest.d.ts +21 -0
  38. package/model/browserRequest.d.ts +15 -0
  39. package/model/cancelPayment400Response.d.ts +30 -0
  40. package/model/captureParams.d.ts +33 -0
  41. package/model/capturePayment400Response.d.ts +35 -0
  42. package/model/cardData.d.ts +30 -0
  43. package/model/category.d.ts +14 -0
  44. package/model/chargeback.d.ts +58 -0
  45. package/model/clientInfo.d.ts +26 -0
  46. package/model/contactInfo.d.ts +58 -0
  47. package/model/contract.d.ts +52 -0
  48. package/model/contractAdjustment.d.ts +30 -0
  49. package/model/contractor.d.ts +26 -0
  50. package/model/costAmountRange.d.ts +19 -0
  51. package/model/country.d.ts +20 -0
  52. package/model/createBinding400Response.d.ts +32 -0
  53. package/model/createCustomer400Response.d.ts +32 -0
  54. package/model/createInvoice400Response.d.ts +36 -0
  55. package/model/createInvoiceTemplate400Response.d.ts +32 -0
  56. package/model/createInvoiceWithTemplate400Response.d.ts +29 -0
  57. package/model/createPayment400Response.d.ts +36 -0
  58. package/model/createRefund400Response.d.ts +39 -0
  59. package/model/createWebhook400Response.d.ts +29 -0
  60. package/model/createWebhook429Response.d.ts +15 -0
  61. package/model/cryptoCurrencyTransferRequest.d.ts +24 -0
  62. package/model/cryptoWallet.d.ts +18 -0
  63. package/model/cryptoWalletData.d.ts +18 -0
  64. package/model/cryptoWalletDetails.d.ts +15 -0
  65. package/model/customer.d.ts +44 -0
  66. package/model/customerAndToken.d.ts +15 -0
  67. package/model/customerBinding.d.ts +35 -0
  68. package/model/customerBindingError.d.ts +16 -0
  69. package/model/customerBindingInteractionCompleted.d.ts +20 -0
  70. package/model/customerBindingInteractionRequested.d.ts +20 -0
  71. package/model/customerBindingParams.d.ts +17 -0
  72. package/model/customerBindingStarted.d.ts +16 -0
  73. package/model/customerBindingStatus.d.ts +25 -0
  74. package/model/customerBindingStatusChanged.d.ts +27 -0
  75. package/model/customerChange.d.ts +21 -0
  76. package/model/customerEvent.d.ts +15 -0
  77. package/model/customerParams.d.ts +29 -0
  78. package/model/customerPayer.d.ts +21 -0
  79. package/model/customersTopic.d.ts +34 -0
  80. package/model/decimal.d.ts +22 -0
  81. package/model/defaultLogicError.d.ts +26 -0
  82. package/model/deleteCustomer400Response.d.ts +28 -0
  83. package/model/digitalWallet.d.ts +18 -0
  84. package/model/digitalWalletData.d.ts +26 -0
  85. package/model/digitalWalletDetails.d.ts +15 -0
  86. package/model/externalIDConflictError.d.ts +23 -0
  87. package/model/fulfillInvoice400Response.d.ts +29 -0
  88. package/model/generalError.d.ts +12 -0
  89. package/model/googlePay.d.ts +22 -0
  90. package/model/internationalBankAccount.d.ts +26 -0
  91. package/model/internationalBankDetails.d.ts +34 -0
  92. package/model/internationalCorrespondentBankAccount.d.ts +22 -0
  93. package/model/internationalLegalEntity.d.ts +41 -0
  94. package/{lib/model → model}/invoice.d.ts +2 -2
  95. package/model/invoiceAmountRandomized.d.ts +22 -0
  96. package/model/invoiceAndToken.d.ts +15 -0
  97. package/model/invoiceBankAccount.d.ts +24 -0
  98. package/model/invoiceChange.d.ts +25 -0
  99. package/model/invoiceClientInfo.d.ts +25 -0
  100. package/model/invoiceCreated.d.ts +16 -0
  101. package/model/invoiceEvent.d.ts +15 -0
  102. package/model/invoiceLine.d.ts +32 -0
  103. package/model/invoiceLineTaxMode.d.ts +24 -0
  104. package/model/invoiceLineTaxVAT.d.ts +28 -0
  105. package/{lib/model → model}/invoiceParams.d.ts +2 -2
  106. package/model/invoiceParamsWithTemplate.d.ts +27 -0
  107. package/model/invoiceRandomizeAmount.d.ts +46 -0
  108. package/model/invoiceRussianBankAccount.d.ts +22 -0
  109. package/model/invoiceStatus.d.ts +28 -0
  110. package/model/invoiceStatusChanged.d.ts +29 -0
  111. package/model/invoiceTemplate.d.ts +45 -0
  112. package/model/invoiceTemplateAndToken.d.ts +15 -0
  113. package/model/invoiceTemplateCreateParams.d.ts +41 -0
  114. package/model/invoiceTemplateDetails.d.ts +12 -0
  115. package/model/invoiceTemplateLineCost.d.ts +15 -0
  116. package/model/invoiceTemplateLineCostFixed.d.ts +20 -0
  117. package/model/invoiceTemplateLineCostRange.d.ts +18 -0
  118. package/model/invoiceTemplateLineCostUnlim.d.ts +12 -0
  119. package/model/invoiceTemplateMultiLine.d.ts +21 -0
  120. package/model/invoiceTemplateSingleLine.d.ts +20 -0
  121. package/model/invoiceTemplateUpdateParams.d.ts +29 -0
  122. package/{lib/model → model}/invoicesTopic.d.ts +0 -2
  123. package/model/legalAgreement.d.ts +26 -0
  124. package/model/legalEntity.d.ts +26 -0
  125. package/model/lifetimeInterval.d.ts +17 -0
  126. package/model/logicError.d.ts +16 -0
  127. package/model/mobileCommerce.d.ts +18 -0
  128. package/model/mobileCommerceData.d.ts +16 -0
  129. package/model/mobileCommerceDetails.d.ts +15 -0
  130. package/model/mobileCommercePhone.d.ts +22 -0
  131. package/{lib/model → model}/models.d.ts +2 -73
  132. package/model/party.d.ts +14 -0
  133. package/model/payer.d.ts +17 -0
  134. package/model/payerSessionInfo.d.ts +18 -0
  135. package/{lib/model → model}/payment.d.ts +0 -2
  136. package/model/paymentError.d.ts +20 -0
  137. package/model/paymentFlow.d.ts +22 -0
  138. package/model/paymentFlowHold.d.ts +27 -0
  139. package/model/paymentFlowInstant.d.ts +14 -0
  140. package/model/paymentInstitution.d.ts +29 -0
  141. package/model/paymentInteractionCompleted.d.ts +20 -0
  142. package/model/paymentInteractionRequested.d.ts +20 -0
  143. package/model/paymentMethod.d.ts +25 -0
  144. package/model/paymentParams.d.ts +31 -0
  145. package/model/paymentRecurrentParent.d.ts +22 -0
  146. package/model/paymentResource.d.ts +26 -0
  147. package/model/paymentResourceClientInfo.d.ts +23 -0
  148. package/model/paymentResourceParams.d.ts +15 -0
  149. package/model/paymentResourcePayer.d.ts +29 -0
  150. package/model/paymentResourceResult.d.ts +34 -0
  151. package/{lib/model → model}/paymentSearchResult.d.ts +0 -2
  152. package/model/paymentStarted.d.ts +16 -0
  153. package/model/paymentStatus.d.ts +28 -0
  154. package/model/paymentStatusChanged.d.ts +30 -0
  155. package/model/paymentTerminal.d.ts +18 -0
  156. package/model/paymentTerminalData.d.ts +22 -0
  157. package/model/paymentTerminalDetails.d.ts +15 -0
  158. package/model/paymentTerminalReceipt.d.ts +20 -0
  159. package/model/paymentTerms.d.ts +13 -0
  160. package/model/paymentTool.d.ts +26 -0
  161. package/model/paymentToolDetails.d.ts +18 -0
  162. package/model/paymentToolDetailsBankCard.d.ts +43 -0
  163. package/model/paymentToolDetailsCryptoWallet.d.ts +16 -0
  164. package/model/paymentToolDetailsDigitalWallet.d.ts +16 -0
  165. package/model/paymentToolDetailsMobileCommerce.d.ts +16 -0
  166. package/model/paymentToolDetailsPaymentTerminal.d.ts +16 -0
  167. package/model/powerOfAttorney.d.ts +26 -0
  168. package/model/privateEntity.d.ts +25 -0
  169. package/model/qrCodeDisplayRequest.d.ts +16 -0
  170. package/model/realmMode.d.ts +17 -0
  171. package/model/reason.d.ts +15 -0
  172. package/model/recurrentPayer.d.ts +21 -0
  173. package/model/redirect.d.ts +14 -0
  174. package/{lib/model → model}/refund.d.ts +0 -2
  175. package/model/refundError.d.ts +22 -0
  176. package/model/refundParams.d.ts +37 -0
  177. package/{lib/model → model}/refundSearchResult.d.ts +8 -10
  178. package/model/refundStarted.d.ts +17 -0
  179. package/model/refundStatus.d.ts +25 -0
  180. package/model/refundStatusChanged.d.ts +28 -0
  181. package/model/registeredUser.d.ts +21 -0
  182. package/model/reportLink.d.ts +15 -0
  183. package/model/reportParams.d.ts +29 -0
  184. package/model/reportingPreferences.d.ts +16 -0
  185. package/model/representative.d.ts +24 -0
  186. package/model/representativeDocument.d.ts +22 -0
  187. package/model/rescindInvoice400Response.d.ts +30 -0
  188. package/{lib/model → model}/russianLegalEntity.d.ts +0 -2
  189. package/model/russianPrivateEntity.d.ts +31 -0
  190. package/model/samsungPay.d.ts +22 -0
  191. package/model/schedule.d.ts +17 -0
  192. package/model/searchInvoices200Response.d.ts +17 -0
  193. package/model/searchPayments200Response.d.ts +17 -0
  194. package/model/searchRefunds200Response.d.ts +14 -0
  195. package/model/serviceAcceptanceActPreferences.d.ts +20 -0
  196. package/model/serviceProvider.d.ts +30 -0
  197. package/model/shop.d.ts +46 -0
  198. package/model/shopDetails.d.ts +19 -0
  199. package/model/shopLocation.d.ts +18 -0
  200. package/model/shopLocationUrl.d.ts +19 -0
  201. package/model/subError.d.ts +19 -0
  202. package/model/tokenizedCardData.d.ts +22 -0
  203. package/model/tradeBloc.d.ts +17 -0
  204. package/model/transactionInfo.d.ts +22 -0
  205. package/model/updateInvoiceTemplate400Response.d.ts +29 -0
  206. package/model/userInteraction.d.ts +15 -0
  207. package/model/userInteractionFormInner.d.ts +19 -0
  208. package/model/webhook.d.ts +33 -0
  209. package/model/webhookScope.d.ts +25 -0
  210. package/model/yandexPay.d.ts +22 -0
  211. package/package.json +14 -10
  212. package/esm2022/lib/api/api.mjs +0 -32
  213. package/esm2022/lib/api/categories.service.mjs +0 -212
  214. package/esm2022/lib/api/contracts.service.mjs +0 -592
  215. package/esm2022/lib/api/countries.service.mjs +0 -212
  216. package/esm2022/lib/api/customers.service.mjs +0 -675
  217. package/esm2022/lib/api/invoiceTemplates.service.mjs +0 -491
  218. package/esm2022/lib/api/invoices.service.mjs +0 -698
  219. package/esm2022/lib/api/parties.service.mjs +0 -444
  220. package/esm2022/lib/api/paymentInstitutions.service.mjs +0 -622
  221. package/esm2022/lib/api/payments.service.mjs +0 -1056
  222. package/esm2022/lib/api/payouts.service.mjs +0 -541
  223. package/esm2022/lib/api/search.service.mjs +0 -616
  224. package/esm2022/lib/api/shops.service.mjs +0 -584
  225. package/esm2022/lib/api/tokens.service.mjs +0 -165
  226. package/esm2022/lib/api/tradeBlocs.service.mjs +0 -212
  227. package/esm2022/lib/api/webhooks.service.mjs +0 -401
  228. package/esm2022/lib/api.module.mjs +0 -40
  229. package/esm2022/lib/configuration.mjs +0 -102
  230. package/esm2022/lib/encoder.mjs +0 -19
  231. package/esm2022/lib/index.mjs +0 -7
  232. package/esm2022/lib/model/accessToken.mjs +0 -13
  233. package/esm2022/lib/model/allocationBodyAmount.mjs +0 -2
  234. package/esm2022/lib/model/allocationBodyAmountAllOf.mjs +0 -13
  235. package/esm2022/lib/model/allocationBodyTotal.mjs +0 -2
  236. package/esm2022/lib/model/allocationBodyTotalAllOf.mjs +0 -2
  237. package/esm2022/lib/model/allocationFee.mjs +0 -8
  238. package/esm2022/lib/model/allocationFeeFixed.mjs +0 -2
  239. package/esm2022/lib/model/allocationFeeFixedAllOf.mjs +0 -13
  240. package/esm2022/lib/model/allocationFeeShare.mjs +0 -2
  241. package/esm2022/lib/model/allocationFeeShareAllOf.mjs +0 -2
  242. package/esm2022/lib/model/allocationFeeTarget.mjs +0 -18
  243. package/esm2022/lib/model/allocationTarget.mjs +0 -18
  244. package/esm2022/lib/model/allocationTargetShop.mjs +0 -2
  245. package/esm2022/lib/model/allocationTargetShopAllOf.mjs +0 -13
  246. package/esm2022/lib/model/allocationTransaction.mjs +0 -8
  247. package/esm2022/lib/model/apiExtensionRequest.mjs +0 -2
  248. package/esm2022/lib/model/apiExtensionRequestAllOf.mjs +0 -13
  249. package/esm2022/lib/model/applePay.mjs +0 -2
  250. package/esm2022/lib/model/applePayAllOf.mjs +0 -13
  251. package/esm2022/lib/model/articlesOfAssociation.mjs +0 -2
  252. package/esm2022/lib/model/bankAccount.mjs +0 -13
  253. package/esm2022/lib/model/bankCard.mjs +0 -2
  254. package/esm2022/lib/model/bankCardAllOf.mjs +0 -2
  255. package/esm2022/lib/model/bankCardAllOfTokenProviderData.mjs +0 -19
  256. package/esm2022/lib/model/bankCardDetails.mjs +0 -19
  257. package/esm2022/lib/model/bankCardTokenProviderData.mjs +0 -19
  258. package/esm2022/lib/model/bankCardTokenizationMethod.mjs +0 -16
  259. package/esm2022/lib/model/browserGetRequest.mjs +0 -2
  260. package/esm2022/lib/model/browserGetRequestAllOf.mjs +0 -13
  261. package/esm2022/lib/model/browserPostRequest.mjs +0 -2
  262. package/esm2022/lib/model/browserPostRequestAllOf.mjs +0 -2
  263. package/esm2022/lib/model/browserRequest.mjs +0 -13
  264. package/esm2022/lib/model/cancelPayment400Response.mjs +0 -23
  265. package/esm2022/lib/model/captureParams.mjs +0 -2
  266. package/esm2022/lib/model/captureParamsAllOf.mjs +0 -2
  267. package/esm2022/lib/model/capturePayment400Response.mjs +0 -28
  268. package/esm2022/lib/model/cardData.mjs +0 -2
  269. package/esm2022/lib/model/cardDataAllOf.mjs +0 -13
  270. package/esm2022/lib/model/category.mjs +0 -13
  271. package/esm2022/lib/model/chargeback.mjs +0 -26
  272. package/esm2022/lib/model/clientInfo.mjs +0 -13
  273. package/esm2022/lib/model/contactInfo.mjs +0 -13
  274. package/esm2022/lib/model/contract.mjs +0 -8
  275. package/esm2022/lib/model/contractAdjustment.mjs +0 -13
  276. package/esm2022/lib/model/contractor.mjs +0 -20
  277. package/esm2022/lib/model/costAmountRange.mjs +0 -13
  278. package/esm2022/lib/model/country.mjs +0 -13
  279. package/esm2022/lib/model/createBinding400Response.mjs +0 -25
  280. package/esm2022/lib/model/createCustomer400Response.mjs +0 -25
  281. package/esm2022/lib/model/createInvoice400Response.mjs +0 -29
  282. package/esm2022/lib/model/createInvoiceTemplate400Response.mjs +0 -25
  283. package/esm2022/lib/model/createInvoiceWithTemplate400Response.mjs +0 -22
  284. package/esm2022/lib/model/createPayment400Response.mjs +0 -29
  285. package/esm2022/lib/model/createPayout400Response.mjs +0 -23
  286. package/esm2022/lib/model/createRefund400Response.mjs +0 -32
  287. package/esm2022/lib/model/createWebhook400Response.mjs +0 -22
  288. package/esm2022/lib/model/createWebhook429Response.mjs +0 -13
  289. package/esm2022/lib/model/cryptoCurrencyTransferRequest.mjs +0 -2
  290. package/esm2022/lib/model/cryptoCurrencyTransferRequestAllOf.mjs +0 -13
  291. package/esm2022/lib/model/cryptoWallet.mjs +0 -2
  292. package/esm2022/lib/model/cryptoWalletAllOf.mjs +0 -13
  293. package/esm2022/lib/model/cryptoWalletData.mjs +0 -2
  294. package/esm2022/lib/model/cryptoWalletDetails.mjs +0 -13
  295. package/esm2022/lib/model/customer.mjs +0 -8
  296. package/esm2022/lib/model/customerAndToken.mjs +0 -2
  297. package/esm2022/lib/model/customerBinding.mjs +0 -9
  298. package/esm2022/lib/model/customerBindingError.mjs +0 -13
  299. package/esm2022/lib/model/customerBindingInteractionCompleted.mjs +0 -2
  300. package/esm2022/lib/model/customerBindingInteractionCompletedAllOf.mjs +0 -2
  301. package/esm2022/lib/model/customerBindingInteractionRequested.mjs +0 -2
  302. package/esm2022/lib/model/customerBindingInteractionRequestedAllOf.mjs +0 -2
  303. package/esm2022/lib/model/customerBindingParams.mjs +0 -2
  304. package/esm2022/lib/model/customerBindingStarted.mjs +0 -2
  305. package/esm2022/lib/model/customerBindingStartedAllOf.mjs +0 -2
  306. package/esm2022/lib/model/customerBindingStatus.mjs +0 -9
  307. package/esm2022/lib/model/customerBindingStatusChanged.mjs +0 -9
  308. package/esm2022/lib/model/customerBindingStatusChangedAllOf.mjs +0 -13
  309. package/esm2022/lib/model/customerChange.mjs +0 -21
  310. package/esm2022/lib/model/customerEvent.mjs +0 -2
  311. package/esm2022/lib/model/customerParams.mjs +0 -2
  312. package/esm2022/lib/model/customerPayer.mjs +0 -2
  313. package/esm2022/lib/model/customerPayerAllOf.mjs +0 -2
  314. package/esm2022/lib/model/customersTopic.mjs +0 -12
  315. package/esm2022/lib/model/customersTopicAllOf.mjs +0 -23
  316. package/esm2022/lib/model/decimal.mjs +0 -13
  317. package/esm2022/lib/model/defaultLogicError.mjs +0 -19
  318. package/esm2022/lib/model/deleteCustomer400Response.mjs +0 -21
  319. package/esm2022/lib/model/digitalWallet.mjs +0 -2
  320. package/esm2022/lib/model/digitalWalletAllOf.mjs +0 -13
  321. package/esm2022/lib/model/digitalWalletData.mjs +0 -2
  322. package/esm2022/lib/model/digitalWalletDataAllOf.mjs +0 -13
  323. package/esm2022/lib/model/digitalWalletDetails.mjs +0 -13
  324. package/esm2022/lib/model/externalIDConflictError.mjs +0 -13
  325. package/esm2022/lib/model/fulfillInvoice400Response.mjs +0 -22
  326. package/esm2022/lib/model/generalError.mjs +0 -13
  327. package/esm2022/lib/model/googlePay.mjs +0 -2
  328. package/esm2022/lib/model/googlePayAllOf.mjs +0 -13
  329. package/esm2022/lib/model/internationalBankAccount.mjs +0 -2
  330. package/esm2022/lib/model/internationalBankDetails.mjs +0 -13
  331. package/esm2022/lib/model/internationalCorrespondentBankAccount.mjs +0 -2
  332. package/esm2022/lib/model/internationalLegalEntity.mjs +0 -2
  333. package/esm2022/lib/model/internationalLegalEntityAllOf.mjs +0 -13
  334. package/esm2022/lib/model/invoice.mjs +0 -10
  335. package/esm2022/lib/model/invoiceAndToken.mjs +0 -2
  336. package/esm2022/lib/model/invoiceBankAccount.mjs +0 -18
  337. package/esm2022/lib/model/invoiceChange.mjs +0 -25
  338. package/esm2022/lib/model/invoiceClientInfo.mjs +0 -19
  339. package/esm2022/lib/model/invoiceCreated.mjs +0 -2
  340. package/esm2022/lib/model/invoiceCreatedAllOf.mjs +0 -2
  341. package/esm2022/lib/model/invoiceEvent.mjs +0 -2
  342. package/esm2022/lib/model/invoiceLine.mjs +0 -2
  343. package/esm2022/lib/model/invoiceLineTaxMode.mjs +0 -18
  344. package/esm2022/lib/model/invoiceLineTaxVAT.mjs +0 -13
  345. package/esm2022/lib/model/invoiceLineTaxVATAllOf.mjs +0 -24
  346. package/esm2022/lib/model/invoiceParams.mjs +0 -2
  347. package/esm2022/lib/model/invoiceParamsWithTemplate.mjs +0 -13
  348. package/esm2022/lib/model/invoiceRussianBankAccount.mjs +0 -2
  349. package/esm2022/lib/model/invoiceRussianBankAccountAllOf.mjs +0 -13
  350. package/esm2022/lib/model/invoiceStatus.mjs +0 -21
  351. package/esm2022/lib/model/invoiceStatusChanged.mjs +0 -10
  352. package/esm2022/lib/model/invoiceTemplate.mjs +0 -2
  353. package/esm2022/lib/model/invoiceTemplateAndToken.mjs +0 -2
  354. package/esm2022/lib/model/invoiceTemplateCreateParams.mjs +0 -2
  355. package/esm2022/lib/model/invoiceTemplateDetails.mjs +0 -13
  356. package/esm2022/lib/model/invoiceTemplateLineCost.mjs +0 -13
  357. package/esm2022/lib/model/invoiceTemplateLineCostFixed.mjs +0 -2
  358. package/esm2022/lib/model/invoiceTemplateLineCostFixedAllOf.mjs +0 -13
  359. package/esm2022/lib/model/invoiceTemplateLineCostRange.mjs +0 -2
  360. package/esm2022/lib/model/invoiceTemplateLineCostRangeAllOf.mjs +0 -2
  361. package/esm2022/lib/model/invoiceTemplateLineCostUnlim.mjs +0 -2
  362. package/esm2022/lib/model/invoiceTemplateMultiLine.mjs +0 -2
  363. package/esm2022/lib/model/invoiceTemplateMultiLineAllOf.mjs +0 -2
  364. package/esm2022/lib/model/invoiceTemplateSingleLine.mjs +0 -2
  365. package/esm2022/lib/model/invoiceTemplateSingleLineAllOf.mjs +0 -2
  366. package/esm2022/lib/model/invoiceTemplateUpdateParams.mjs +0 -2
  367. package/esm2022/lib/model/invoicesTopic.mjs +0 -21
  368. package/esm2022/lib/model/invoicesTopicAllOf.mjs +0 -32
  369. package/esm2022/lib/model/legalAgreement.mjs +0 -13
  370. package/esm2022/lib/model/legalEntity.mjs +0 -2
  371. package/esm2022/lib/model/legalEntityAllOf.mjs +0 -19
  372. package/esm2022/lib/model/lifetimeInterval.mjs +0 -13
  373. package/esm2022/lib/model/logicError.mjs +0 -13
  374. package/esm2022/lib/model/mobileCommerce.mjs +0 -2
  375. package/esm2022/lib/model/mobileCommerceAllOf.mjs +0 -13
  376. package/esm2022/lib/model/mobileCommerceData.mjs +0 -2
  377. package/esm2022/lib/model/mobileCommerceDataAllOf.mjs +0 -2
  378. package/esm2022/lib/model/mobileCommerceDetails.mjs +0 -13
  379. package/esm2022/lib/model/mobileCommercePhone.mjs +0 -13
  380. package/esm2022/lib/model/models.mjs +0 -264
  381. package/esm2022/lib/model/party.mjs +0 -13
  382. package/esm2022/lib/model/payer.mjs +0 -2
  383. package/esm2022/lib/model/payerSessionInfo.mjs +0 -13
  384. package/esm2022/lib/model/payment.mjs +0 -12
  385. package/esm2022/lib/model/paymentError.mjs +0 -2
  386. package/esm2022/lib/model/paymentFlow.mjs +0 -19
  387. package/esm2022/lib/model/paymentFlowHold.mjs +0 -8
  388. package/esm2022/lib/model/paymentFlowHoldAllOf.mjs +0 -19
  389. package/esm2022/lib/model/paymentFlowInstant.mjs +0 -2
  390. package/esm2022/lib/model/paymentInstitution.mjs +0 -19
  391. package/esm2022/lib/model/paymentInteractionCompleted.mjs +0 -2
  392. package/esm2022/lib/model/paymentInteractionCompletedAllOf.mjs +0 -2
  393. package/esm2022/lib/model/paymentInteractionRequested.mjs +0 -2
  394. package/esm2022/lib/model/paymentInteractionRequestedAllOf.mjs +0 -2
  395. package/esm2022/lib/model/paymentMethod.mjs +0 -22
  396. package/esm2022/lib/model/paymentParams.mjs +0 -2
  397. package/esm2022/lib/model/paymentRecurrentParent.mjs +0 -13
  398. package/esm2022/lib/model/paymentResource.mjs +0 -2
  399. package/esm2022/lib/model/paymentResourceClientInfo.mjs +0 -13
  400. package/esm2022/lib/model/paymentResourceParams.mjs +0 -2
  401. package/esm2022/lib/model/paymentResourcePayer.mjs +0 -2
  402. package/esm2022/lib/model/paymentResourcePayerAllOf.mjs +0 -2
  403. package/esm2022/lib/model/paymentResourceResult.mjs +0 -2
  404. package/esm2022/lib/model/paymentSearchResult.mjs +0 -12
  405. package/esm2022/lib/model/paymentSearchResultAllOf.mjs +0 -2
  406. package/esm2022/lib/model/paymentStarted.mjs +0 -2
  407. package/esm2022/lib/model/paymentStartedAllOf.mjs +0 -2
  408. package/esm2022/lib/model/paymentStatus.mjs +0 -12
  409. package/esm2022/lib/model/paymentStatusChanged.mjs +0 -12
  410. package/esm2022/lib/model/paymentStatusChangedAllOf.mjs +0 -13
  411. package/esm2022/lib/model/paymentTerminal.mjs +0 -2
  412. package/esm2022/lib/model/paymentTerminalAllOf.mjs +0 -13
  413. package/esm2022/lib/model/paymentTerminalData.mjs +0 -2
  414. package/esm2022/lib/model/paymentTerminalDataAllOf.mjs +0 -13
  415. package/esm2022/lib/model/paymentTerminalDetails.mjs +0 -13
  416. package/esm2022/lib/model/paymentTerminalReceipt.mjs +0 -2
  417. package/esm2022/lib/model/paymentTerminalReceiptAllOf.mjs +0 -13
  418. package/esm2022/lib/model/paymentTerms.mjs +0 -13
  419. package/esm2022/lib/model/paymentTool.mjs +0 -23
  420. package/esm2022/lib/model/paymentToolDetails.mjs +0 -13
  421. package/esm2022/lib/model/paymentToolDetailsBankCard.mjs +0 -8
  422. package/esm2022/lib/model/paymentToolDetailsCryptoWallet.mjs +0 -2
  423. package/esm2022/lib/model/paymentToolDetailsDigitalWallet.mjs +0 -2
  424. package/esm2022/lib/model/paymentToolDetailsMobileCommerce.mjs +0 -2
  425. package/esm2022/lib/model/paymentToolDetailsPaymentTerminal.mjs +0 -2
  426. package/esm2022/lib/model/payout.mjs +0 -2
  427. package/esm2022/lib/model/payoutParams.mjs +0 -13
  428. package/esm2022/lib/model/payoutTool.mjs +0 -2
  429. package/esm2022/lib/model/payoutToolAllOf.mjs +0 -13
  430. package/esm2022/lib/model/payoutToolDetails.mjs +0 -13
  431. package/esm2022/lib/model/payoutToolDetailsBankAccount.mjs +0 -2
  432. package/esm2022/lib/model/payoutToolDetailsInternationalBankAccount.mjs +0 -2
  433. package/esm2022/lib/model/payoutToolDetailsPaymentInstitutionAccount.mjs +0 -2
  434. package/esm2022/lib/model/payoutToolDetailsWalletInfo.mjs +0 -2
  435. package/esm2022/lib/model/payoutToolDetailsWalletInfoAllOf.mjs +0 -13
  436. package/esm2022/lib/model/payoutToolParams.mjs +0 -2
  437. package/esm2022/lib/model/powerOfAttorney.mjs +0 -2
  438. package/esm2022/lib/model/privateEntity.mjs +0 -2
  439. package/esm2022/lib/model/privateEntityAllOf.mjs +0 -18
  440. package/esm2022/lib/model/qrCodeDisplayRequest.mjs +0 -2
  441. package/esm2022/lib/model/qrCodeDisplayRequestAllOf.mjs +0 -13
  442. package/esm2022/lib/model/realmMode.mjs +0 -16
  443. package/esm2022/lib/model/reason.mjs +0 -13
  444. package/esm2022/lib/model/recurrentPayer.mjs +0 -2
  445. package/esm2022/lib/model/recurrentPayerAllOf.mjs +0 -2
  446. package/esm2022/lib/model/redirect.mjs +0 -2
  447. package/esm2022/lib/model/redirectAllOf.mjs +0 -2
  448. package/esm2022/lib/model/refund.mjs +0 -9
  449. package/esm2022/lib/model/refundError.mjs +0 -13
  450. package/esm2022/lib/model/refundParams.mjs +0 -2
  451. package/esm2022/lib/model/refundSearchResult.mjs +0 -9
  452. package/esm2022/lib/model/refundSearchResultAllOf.mjs +0 -13
  453. package/esm2022/lib/model/refundStarted.mjs +0 -2
  454. package/esm2022/lib/model/refundStartedAllOf.mjs +0 -2
  455. package/esm2022/lib/model/refundStatus.mjs +0 -9
  456. package/esm2022/lib/model/refundStatusChanged.mjs +0 -9
  457. package/esm2022/lib/model/refundStatusChangedAllOf.mjs +0 -13
  458. package/esm2022/lib/model/registeredUser.mjs +0 -2
  459. package/esm2022/lib/model/registeredUserAllOf.mjs +0 -13
  460. package/esm2022/lib/model/reportLink.mjs +0 -13
  461. package/esm2022/lib/model/reportParams.mjs +0 -18
  462. package/esm2022/lib/model/reportingPreferences.mjs +0 -2
  463. package/esm2022/lib/model/representative.mjs +0 -2
  464. package/esm2022/lib/model/representativeDocument.mjs +0 -19
  465. package/esm2022/lib/model/rescindInvoice400Response.mjs +0 -23
  466. package/esm2022/lib/model/russianLegalEntity.mjs +0 -2
  467. package/esm2022/lib/model/russianLegalEntityAllOf.mjs +0 -2
  468. package/esm2022/lib/model/russianPrivateEntity.mjs +0 -2
  469. package/esm2022/lib/model/russianPrivateEntityAllOf.mjs +0 -2
  470. package/esm2022/lib/model/samsungPay.mjs +0 -2
  471. package/esm2022/lib/model/samsungPayAllOf.mjs +0 -13
  472. package/esm2022/lib/model/schedule.mjs +0 -13
  473. package/esm2022/lib/model/searchInvoices200Response.mjs +0 -2
  474. package/esm2022/lib/model/searchPayments200Response.mjs +0 -2
  475. package/esm2022/lib/model/searchPayouts200Response.mjs +0 -2
  476. package/esm2022/lib/model/searchRefunds200Response.mjs +0 -2
  477. package/esm2022/lib/model/serviceAcceptanceActPreferences.mjs +0 -2
  478. package/esm2022/lib/model/serviceProvider.mjs +0 -13
  479. package/esm2022/lib/model/shop.mjs +0 -2
  480. package/esm2022/lib/model/shopDetails.mjs +0 -13
  481. package/esm2022/lib/model/shopLocation.mjs +0 -13
  482. package/esm2022/lib/model/shopLocationUrl.mjs +0 -2
  483. package/esm2022/lib/model/shopLocationUrlAllOf.mjs +0 -13
  484. package/esm2022/lib/model/subError.mjs +0 -13
  485. package/esm2022/lib/model/tokenizedCardData.mjs +0 -2
  486. package/esm2022/lib/model/tokenizedCardDataAllOf.mjs +0 -21
  487. package/esm2022/lib/model/tradeBloc.mjs +0 -13
  488. package/esm2022/lib/model/transactionInfo.mjs +0 -13
  489. package/esm2022/lib/model/updateInvoiceTemplate400Response.mjs +0 -22
  490. package/esm2022/lib/model/userInteraction.mjs +0 -13
  491. package/esm2022/lib/model/userInteractionFormInner.mjs +0 -13
  492. package/esm2022/lib/model/webhook.mjs +0 -2
  493. package/esm2022/lib/model/webhookScope.mjs +0 -19
  494. package/esm2022/lib/model/yandexPay.mjs +0 -2
  495. package/esm2022/lib/model/yandexPayAllOf.mjs +0 -13
  496. package/esm2022/lib/param.mjs +0 -2
  497. package/esm2022/lib/variables.mjs +0 -9
  498. package/esm2022/public-api.mjs +0 -2
  499. package/esm2022/vality-swag-payments.mjs +0 -5
  500. package/lib/api/paymentInstitutions.service.d.ts +0 -245
  501. package/lib/api/payouts.service.d.ts +0 -209
  502. package/lib/index.d.ts +0 -6
  503. package/lib/model/accessToken.d.ts +0 -17
  504. package/lib/model/allocationBodyAmountAllOf.d.ts +0 -21
  505. package/lib/model/allocationBodyTotalAllOf.d.ts +0 -27
  506. package/lib/model/allocationFee.d.ts +0 -26
  507. package/lib/model/allocationFeeFixedAllOf.d.ts +0 -17
  508. package/lib/model/allocationFeeShareAllOf.d.ts +0 -19
  509. package/lib/model/allocationFeeTarget.d.ts +0 -23
  510. package/lib/model/allocationTarget.d.ts +0 -23
  511. package/lib/model/allocationTargetShop.d.ts +0 -23
  512. package/lib/model/allocationTargetShopAllOf.d.ts +0 -17
  513. package/lib/model/allocationTransaction.d.ts +0 -34
  514. package/lib/model/apiExtensionRequest.d.ts +0 -18
  515. package/lib/model/apiExtensionRequestAllOf.d.ts +0 -17
  516. package/lib/model/applePay.d.ts +0 -24
  517. package/lib/model/applePayAllOf.d.ts +0 -24
  518. package/lib/model/articlesOfAssociation.d.ts +0 -19
  519. package/lib/model/bankAccount.d.ts +0 -29
  520. package/lib/model/bankCard.d.ts +0 -26
  521. package/lib/model/bankCardAllOf.d.ts +0 -23
  522. package/lib/model/bankCardAllOfTokenProviderData.d.ts +0 -36
  523. package/lib/model/bankCardDetails.d.ts +0 -44
  524. package/lib/model/bankCardTokenizationMethod.d.ts +0 -19
  525. package/lib/model/browserGetRequest.d.ts +0 -18
  526. package/lib/model/browserGetRequestAllOf.d.ts +0 -17
  527. package/lib/model/browserPostRequest.d.ts +0 -23
  528. package/lib/model/browserPostRequestAllOf.d.ts +0 -22
  529. package/lib/model/browserRequest.d.ts +0 -17
  530. package/lib/model/cancelPayment400Response.d.ts +0 -32
  531. package/lib/model/captureParams.d.ts +0 -35
  532. package/lib/model/captureParamsAllOf.d.ts +0 -34
  533. package/lib/model/capturePayment400Response.d.ts +0 -37
  534. package/lib/model/cardData.d.ts +0 -32
  535. package/lib/model/cardDataAllOf.d.ts +0 -32
  536. package/lib/model/category.d.ts +0 -16
  537. package/lib/model/chargeback.d.ts +0 -60
  538. package/lib/model/clientInfo.d.ts +0 -28
  539. package/lib/model/contactInfo.d.ts +0 -52
  540. package/lib/model/contract.d.ts +0 -54
  541. package/lib/model/contractAdjustment.d.ts +0 -32
  542. package/lib/model/contractor.d.ts +0 -28
  543. package/lib/model/costAmountRange.d.ts +0 -21
  544. package/lib/model/country.d.ts +0 -22
  545. package/lib/model/createBinding400Response.d.ts +0 -34
  546. package/lib/model/createCustomer400Response.d.ts +0 -34
  547. package/lib/model/createInvoice400Response.d.ts +0 -38
  548. package/lib/model/createInvoiceTemplate400Response.d.ts +0 -34
  549. package/lib/model/createInvoiceWithTemplate400Response.d.ts +0 -31
  550. package/lib/model/createPayment400Response.d.ts +0 -38
  551. package/lib/model/createPayout400Response.d.ts +0 -32
  552. package/lib/model/createRefund400Response.d.ts +0 -41
  553. package/lib/model/createWebhook400Response.d.ts +0 -31
  554. package/lib/model/createWebhook429Response.d.ts +0 -17
  555. package/lib/model/cryptoCurrencyTransferRequest.d.ts +0 -26
  556. package/lib/model/cryptoCurrencyTransferRequestAllOf.d.ts +0 -25
  557. package/lib/model/cryptoWallet.d.ts +0 -20
  558. package/lib/model/cryptoWalletAllOf.d.ts +0 -17
  559. package/lib/model/cryptoWalletData.d.ts +0 -20
  560. package/lib/model/cryptoWalletDetails.d.ts +0 -17
  561. package/lib/model/customer.d.ts +0 -46
  562. package/lib/model/customerAndToken.d.ts +0 -17
  563. package/lib/model/customerBinding.d.ts +0 -37
  564. package/lib/model/customerBindingError.d.ts +0 -18
  565. package/lib/model/customerBindingInteractionCompleted.d.ts +0 -22
  566. package/lib/model/customerBindingInteractionCompletedAllOf.d.ts +0 -22
  567. package/lib/model/customerBindingInteractionRequested.d.ts +0 -22
  568. package/lib/model/customerBindingInteractionRequestedAllOf.d.ts +0 -22
  569. package/lib/model/customerBindingParams.d.ts +0 -19
  570. package/lib/model/customerBindingStarted.d.ts +0 -18
  571. package/lib/model/customerBindingStartedAllOf.d.ts +0 -15
  572. package/lib/model/customerBindingStatus.d.ts +0 -27
  573. package/lib/model/customerBindingStatusChanged.d.ts +0 -29
  574. package/lib/model/customerBindingStatusChangedAllOf.d.ts +0 -14
  575. package/lib/model/customerChange.d.ts +0 -23
  576. package/lib/model/customerEvent.d.ts +0 -17
  577. package/lib/model/customerParams.d.ts +0 -31
  578. package/lib/model/customerPayer.d.ts +0 -23
  579. package/lib/model/customerPayerAllOf.d.ts +0 -19
  580. package/lib/model/customersTopic.d.ts +0 -36
  581. package/lib/model/customersTopicAllOf.d.ts +0 -32
  582. package/lib/model/decimal.d.ts +0 -24
  583. package/lib/model/defaultLogicError.d.ts +0 -28
  584. package/lib/model/deleteCustomer400Response.d.ts +0 -30
  585. package/lib/model/digitalWallet.d.ts +0 -20
  586. package/lib/model/digitalWalletAllOf.d.ts +0 -17
  587. package/lib/model/digitalWalletData.d.ts +0 -28
  588. package/lib/model/digitalWalletDataAllOf.d.ts +0 -28
  589. package/lib/model/digitalWalletDetails.d.ts +0 -17
  590. package/lib/model/externalIDConflictError.d.ts +0 -25
  591. package/lib/model/fulfillInvoice400Response.d.ts +0 -31
  592. package/lib/model/generalError.d.ts +0 -14
  593. package/lib/model/googlePay.d.ts +0 -24
  594. package/lib/model/googlePayAllOf.d.ts +0 -24
  595. package/lib/model/internationalBankAccount.d.ts +0 -28
  596. package/lib/model/internationalBankDetails.d.ts +0 -36
  597. package/lib/model/internationalCorrespondentBankAccount.d.ts +0 -24
  598. package/lib/model/internationalLegalEntity.d.ts +0 -43
  599. package/lib/model/internationalLegalEntityAllOf.d.ts +0 -37
  600. package/lib/model/invoiceAndToken.d.ts +0 -17
  601. package/lib/model/invoiceBankAccount.d.ts +0 -26
  602. package/lib/model/invoiceChange.d.ts +0 -27
  603. package/lib/model/invoiceClientInfo.d.ts +0 -27
  604. package/lib/model/invoiceCreated.d.ts +0 -18
  605. package/lib/model/invoiceCreatedAllOf.d.ts +0 -15
  606. package/lib/model/invoiceEvent.d.ts +0 -17
  607. package/lib/model/invoiceLine.d.ts +0 -34
  608. package/lib/model/invoiceLineTaxMode.d.ts +0 -26
  609. package/lib/model/invoiceLineTaxVAT.d.ts +0 -30
  610. package/lib/model/invoiceLineTaxVATAllOf.d.ts +0 -32
  611. package/lib/model/invoiceParamsWithTemplate.d.ts +0 -29
  612. package/lib/model/invoiceRussianBankAccount.d.ts +0 -24
  613. package/lib/model/invoiceRussianBankAccountAllOf.d.ts +0 -24
  614. package/lib/model/invoiceStatus.d.ts +0 -30
  615. package/lib/model/invoiceStatusChanged.d.ts +0 -31
  616. package/lib/model/invoiceTemplate.d.ts +0 -45
  617. package/lib/model/invoiceTemplateAndToken.d.ts +0 -17
  618. package/lib/model/invoiceTemplateCreateParams.d.ts +0 -41
  619. package/lib/model/invoiceTemplateDetails.d.ts +0 -14
  620. package/lib/model/invoiceTemplateLineCost.d.ts +0 -17
  621. package/lib/model/invoiceTemplateLineCostFixed.d.ts +0 -22
  622. package/lib/model/invoiceTemplateLineCostFixedAllOf.d.ts +0 -21
  623. package/lib/model/invoiceTemplateLineCostRange.d.ts +0 -20
  624. package/lib/model/invoiceTemplateLineCostRangeAllOf.d.ts +0 -19
  625. package/lib/model/invoiceTemplateLineCostUnlim.d.ts +0 -14
  626. package/lib/model/invoiceTemplateMultiLine.d.ts +0 -23
  627. package/lib/model/invoiceTemplateMultiLineAllOf.d.ts +0 -22
  628. package/lib/model/invoiceTemplateSingleLine.d.ts +0 -22
  629. package/lib/model/invoiceTemplateSingleLineAllOf.d.ts +0 -21
  630. package/lib/model/invoiceTemplateUpdateParams.d.ts +0 -29
  631. package/lib/model/invoicesTopicAllOf.d.ts +0 -41
  632. package/lib/model/legalAgreement.d.ts +0 -28
  633. package/lib/model/legalEntity.d.ts +0 -20
  634. package/lib/model/legalEntityAllOf.d.ts +0 -24
  635. package/lib/model/lifetimeInterval.d.ts +0 -19
  636. package/lib/model/logicError.d.ts +0 -18
  637. package/lib/model/mobileCommerce.d.ts +0 -20
  638. package/lib/model/mobileCommerceAllOf.d.ts +0 -17
  639. package/lib/model/mobileCommerceData.d.ts +0 -6
  640. package/lib/model/mobileCommerceDataAllOf.d.ts +0 -18
  641. package/lib/model/mobileCommerceDetails.d.ts +0 -17
  642. package/lib/model/mobileCommercePhone.d.ts +0 -24
  643. package/lib/model/party.d.ts +0 -16
  644. package/lib/model/payer.d.ts +0 -19
  645. package/lib/model/payerSessionInfo.d.ts +0 -20
  646. package/lib/model/paymentError.d.ts +0 -22
  647. package/lib/model/paymentFlow.d.ts +0 -24
  648. package/lib/model/paymentFlowHold.d.ts +0 -29
  649. package/lib/model/paymentFlowHoldAllOf.d.ts +0 -28
  650. package/lib/model/paymentFlowInstant.d.ts +0 -16
  651. package/lib/model/paymentInstitution.d.ts +0 -31
  652. package/lib/model/paymentInteractionCompleted.d.ts +0 -22
  653. package/lib/model/paymentInteractionCompletedAllOf.d.ts +0 -22
  654. package/lib/model/paymentInteractionRequested.d.ts +0 -22
  655. package/lib/model/paymentInteractionRequestedAllOf.d.ts +0 -22
  656. package/lib/model/paymentMethod.d.ts +0 -27
  657. package/lib/model/paymentParams.d.ts +0 -33
  658. package/lib/model/paymentRecurrentParent.d.ts +0 -24
  659. package/lib/model/paymentResource.d.ts +0 -28
  660. package/lib/model/paymentResourceClientInfo.d.ts +0 -25
  661. package/lib/model/paymentResourceParams.d.ts +0 -17
  662. package/lib/model/paymentResourcePayer.d.ts +0 -31
  663. package/lib/model/paymentResourcePayerAllOf.d.ts +0 -15
  664. package/lib/model/paymentResourceResult.d.ts +0 -36
  665. package/lib/model/paymentSearchResultAllOf.d.ts +0 -73
  666. package/lib/model/paymentStarted.d.ts +0 -18
  667. package/lib/model/paymentStartedAllOf.d.ts +0 -15
  668. package/lib/model/paymentStatus.d.ts +0 -30
  669. package/lib/model/paymentStatusChanged.d.ts +0 -32
  670. package/lib/model/paymentStatusChangedAllOf.d.ts +0 -14
  671. package/lib/model/paymentTerminal.d.ts +0 -20
  672. package/lib/model/paymentTerminalAllOf.d.ts +0 -17
  673. package/lib/model/paymentTerminalData.d.ts +0 -24
  674. package/lib/model/paymentTerminalDataAllOf.d.ts +0 -24
  675. package/lib/model/paymentTerminalDetails.d.ts +0 -17
  676. package/lib/model/paymentTerminalReceipt.d.ts +0 -22
  677. package/lib/model/paymentTerminalReceiptAllOf.d.ts +0 -21
  678. package/lib/model/paymentTerms.d.ts +0 -15
  679. package/lib/model/paymentTool.d.ts +0 -28
  680. package/lib/model/paymentToolDetails.d.ts +0 -20
  681. package/lib/model/paymentToolDetailsBankCard.d.ts +0 -45
  682. package/lib/model/paymentToolDetailsCryptoWallet.d.ts +0 -18
  683. package/lib/model/paymentToolDetailsDigitalWallet.d.ts +0 -18
  684. package/lib/model/paymentToolDetailsMobileCommerce.d.ts +0 -18
  685. package/lib/model/paymentToolDetailsPaymentTerminal.d.ts +0 -18
  686. package/lib/model/payout.d.ts +0 -47
  687. package/lib/model/payoutParams.d.ts +0 -37
  688. package/lib/model/payoutTool.d.ts +0 -26
  689. package/lib/model/payoutToolAllOf.d.ts +0 -17
  690. package/lib/model/payoutToolDetails.d.ts +0 -20
  691. package/lib/model/payoutToolDetailsBankAccount.d.ts +0 -27
  692. package/lib/model/payoutToolDetailsInternationalBankAccount.d.ts +0 -26
  693. package/lib/model/payoutToolDetailsPaymentInstitutionAccount.d.ts +0 -14
  694. package/lib/model/payoutToolDetailsWalletInfo.d.ts +0 -18
  695. package/lib/model/payoutToolDetailsWalletInfoAllOf.d.ts +0 -17
  696. package/lib/model/payoutToolParams.d.ts +0 -19
  697. package/lib/model/powerOfAttorney.d.ts +0 -28
  698. package/lib/model/privateEntity.d.ts +0 -20
  699. package/lib/model/privateEntityAllOf.d.ts +0 -23
  700. package/lib/model/qrCodeDisplayRequest.d.ts +0 -18
  701. package/lib/model/qrCodeDisplayRequestAllOf.d.ts +0 -17
  702. package/lib/model/realmMode.d.ts +0 -19
  703. package/lib/model/reason.d.ts +0 -17
  704. package/lib/model/recurrentPayer.d.ts +0 -23
  705. package/lib/model/recurrentPayerAllOf.d.ts +0 -19
  706. package/lib/model/redirect.d.ts +0 -16
  707. package/lib/model/redirectAllOf.d.ts +0 -15
  708. package/lib/model/refundError.d.ts +0 -24
  709. package/lib/model/refundParams.d.ts +0 -39
  710. package/lib/model/refundSearchResultAllOf.d.ts +0 -21
  711. package/lib/model/refundStarted.d.ts +0 -19
  712. package/lib/model/refundStartedAllOf.d.ts +0 -16
  713. package/lib/model/refundStatus.d.ts +0 -27
  714. package/lib/model/refundStatusChanged.d.ts +0 -30
  715. package/lib/model/refundStatusChangedAllOf.d.ts +0 -15
  716. package/lib/model/registeredUser.d.ts +0 -23
  717. package/lib/model/registeredUserAllOf.d.ts +0 -17
  718. package/lib/model/reportLink.d.ts +0 -17
  719. package/lib/model/reportParams.d.ts +0 -31
  720. package/lib/model/reportingPreferences.d.ts +0 -18
  721. package/lib/model/representative.d.ts +0 -26
  722. package/lib/model/representativeDocument.d.ts +0 -24
  723. package/lib/model/rescindInvoice400Response.d.ts +0 -32
  724. package/lib/model/russianLegalEntityAllOf.d.ts +0 -47
  725. package/lib/model/russianPrivateEntity.d.ts +0 -33
  726. package/lib/model/russianPrivateEntityAllOf.d.ts +0 -27
  727. package/lib/model/samsungPay.d.ts +0 -24
  728. package/lib/model/samsungPayAllOf.d.ts +0 -24
  729. package/lib/model/schedule.d.ts +0 -19
  730. package/lib/model/searchInvoices200Response.d.ts +0 -19
  731. package/lib/model/searchPayments200Response.d.ts +0 -19
  732. package/lib/model/searchPayouts200Response.d.ts +0 -16
  733. package/lib/model/searchRefunds200Response.d.ts +0 -16
  734. package/lib/model/serviceAcceptanceActPreferences.d.ts +0 -22
  735. package/lib/model/serviceProvider.d.ts +0 -32
  736. package/lib/model/shop.d.ts +0 -56
  737. package/lib/model/shopDetails.d.ts +0 -21
  738. package/lib/model/shopLocation.d.ts +0 -20
  739. package/lib/model/shopLocationUrl.d.ts +0 -21
  740. package/lib/model/shopLocationUrlAllOf.d.ts +0 -17
  741. package/lib/model/subError.d.ts +0 -21
  742. package/lib/model/tokenizedCardData.d.ts +0 -17
  743. package/lib/model/tokenizedCardDataAllOf.d.ts +0 -26
  744. package/lib/model/tradeBloc.d.ts +0 -19
  745. package/lib/model/transactionInfo.d.ts +0 -24
  746. package/lib/model/updateInvoiceTemplate400Response.d.ts +0 -31
  747. package/lib/model/userInteraction.d.ts +0 -17
  748. package/lib/model/userInteractionFormInner.d.ts +0 -21
  749. package/lib/model/webhook.d.ts +0 -35
  750. package/lib/model/webhookScope.d.ts +0 -27
  751. package/lib/model/yandexPay.d.ts +0 -24
  752. package/lib/model/yandexPayAllOf.d.ts +0 -24
  753. package/public-api.d.ts +0 -1
  754. /package/{lib/api.module.d.ts → api.module.d.ts} +0 -0
  755. /package/{lib/encoder.d.ts → encoder.d.ts} +0 -0
  756. /package/{lib/model → model}/allocationBodyAmount.d.ts +0 -0
  757. /package/{lib/model → model}/allocationBodyTotal.d.ts +0 -0
  758. /package/{lib/model → model}/allocationFeeFixed.d.ts +0 -0
  759. /package/{lib/model → model}/allocationFeeShare.d.ts +0 -0
  760. /package/{lib/param.d.ts → param.d.ts} +0 -0
  761. /package/{lib/variables.d.ts → variables.d.ts} +0 -0
@@ -1,27 +0,0 @@
1
- /**
2
- * Vality Payments API
3
- * ## Description API is designed for the merchants who accept payments via user interface such as a website or a mobile app and it is the only interaction point with the system for goods and services payment transactions. ## Interaction details Whenever an API is accessed, its unique ID must be passed in the header X-Request-ID of the corresponding request: ``` X-Request-ID: 37d735d4-0f42-4f05-89fa-eaa478fb5aa9 ``` ### Content type and coding The system accepts and returns data in JSON format and UTF-8 coding: ``` Content-Type: application/json; charset=utf-8 ``` ### Date formats The system accepts and returns timestamp values in the format date-time, described in [RFC 3339](https://datatracker.ietf.org/doc/html/rfc3339): ``` 2017-01-01T00:00:00Z 2017-01-01T00:00:01+00:00 ``` ### Maximum request processing time Whenever an API is accessed, the time cutoff parameters, that define maximum request processing time of the transaction completion, can be passed in the header `X-Request-Deadline` of the corresponding request: ``` X-Request-Deadline: 10s ``` The system stops processing the request upon the specified time. It is recommended to specify a value that is not more than one minute and not less than three seconds. `X-Request-Deadline` can be: * specified in the format `date-time` according to [RFC 3339](https://datatracker.ietf.org/doc/html/rfc3339); * specified in relative values: in milliseconds (`150000ms`), in seconds (`540s`) or in minutes (`3.5m`).
4
- *
5
- * The version of the OpenAPI document: 2.0.1
6
- *
7
- *
8
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
- * https://openapi-generator.tech
10
- * Do not edit the class manually.
11
- */
12
- export interface InvoiceChange {
13
- changeType: InvoiceChange.ChangeTypeEnum;
14
- }
15
- export declare namespace InvoiceChange {
16
- type ChangeTypeEnum = 'InvoiceCreated' | 'InvoiceStatusChanged' | 'PaymentStarted' | 'PaymentStatusChanged' | 'PaymentInteractionRequested' | 'PaymentInteractionCompleted' | 'RefundStarted' | 'RefundStatusChanged';
17
- const ChangeTypeEnum: {
18
- InvoiceCreated: ChangeTypeEnum;
19
- InvoiceStatusChanged: ChangeTypeEnum;
20
- PaymentStarted: ChangeTypeEnum;
21
- PaymentStatusChanged: ChangeTypeEnum;
22
- PaymentInteractionRequested: ChangeTypeEnum;
23
- PaymentInteractionCompleted: ChangeTypeEnum;
24
- RefundStarted: ChangeTypeEnum;
25
- RefundStatusChanged: ChangeTypeEnum;
26
- };
27
- }
@@ -1,27 +0,0 @@
1
- /**
2
- * Vality Payments API
3
- * ## Description API is designed for the merchants who accept payments via user interface such as a website or a mobile app and it is the only interaction point with the system for goods and services payment transactions. ## Interaction details Whenever an API is accessed, its unique ID must be passed in the header X-Request-ID of the corresponding request: ``` X-Request-ID: 37d735d4-0f42-4f05-89fa-eaa478fb5aa9 ``` ### Content type and coding The system accepts and returns data in JSON format and UTF-8 coding: ``` Content-Type: application/json; charset=utf-8 ``` ### Date formats The system accepts and returns timestamp values in the format date-time, described in [RFC 3339](https://datatracker.ietf.org/doc/html/rfc3339): ``` 2017-01-01T00:00:00Z 2017-01-01T00:00:01+00:00 ``` ### Maximum request processing time Whenever an API is accessed, the time cutoff parameters, that define maximum request processing time of the transaction completion, can be passed in the header `X-Request-Deadline` of the corresponding request: ``` X-Request-Deadline: 10s ``` The system stops processing the request upon the specified time. It is recommended to specify a value that is not more than one minute and not less than three seconds. `X-Request-Deadline` can be: * specified in the format `date-time` according to [RFC 3339](https://datatracker.ietf.org/doc/html/rfc3339); * specified in relative values: in milliseconds (`150000ms`), in seconds (`540s`) or in minutes (`3.5m`).
4
- *
5
- * The version of the OpenAPI document: 2.0.1
6
- *
7
- *
8
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
- * https://openapi-generator.tech
10
- * Do not edit the class manually.
11
- */
12
- /**
13
- * Additional client information
14
- */
15
- export interface InvoiceClientInfo {
16
- /**
17
- * Is the payer reliable?
18
- */
19
- trustLevel: InvoiceClientInfo.TrustLevelEnum;
20
- }
21
- export declare namespace InvoiceClientInfo {
22
- type TrustLevelEnum = 'wellKnown' | 'unknown';
23
- const TrustLevelEnum: {
24
- WellKnown: TrustLevelEnum;
25
- Unknown: TrustLevelEnum;
26
- };
27
- }
@@ -1,18 +0,0 @@
1
- /**
2
- * Vality Payments API
3
- * ## Description API is designed for the merchants who accept payments via user interface such as a website or a mobile app and it is the only interaction point with the system for goods and services payment transactions. ## Interaction details Whenever an API is accessed, its unique ID must be passed in the header X-Request-ID of the corresponding request: ``` X-Request-ID: 37d735d4-0f42-4f05-89fa-eaa478fb5aa9 ``` ### Content type and coding The system accepts and returns data in JSON format and UTF-8 coding: ``` Content-Type: application/json; charset=utf-8 ``` ### Date formats The system accepts and returns timestamp values in the format date-time, described in [RFC 3339](https://datatracker.ietf.org/doc/html/rfc3339): ``` 2017-01-01T00:00:00Z 2017-01-01T00:00:01+00:00 ``` ### Maximum request processing time Whenever an API is accessed, the time cutoff parameters, that define maximum request processing time of the transaction completion, can be passed in the header `X-Request-Deadline` of the corresponding request: ``` X-Request-Deadline: 10s ``` The system stops processing the request upon the specified time. It is recommended to specify a value that is not more than one minute and not less than three seconds. `X-Request-Deadline` can be: * specified in the format `date-time` according to [RFC 3339](https://datatracker.ietf.org/doc/html/rfc3339); * specified in relative values: in milliseconds (`150000ms`), in seconds (`540s`) or in minutes (`3.5m`).
4
- *
5
- * The version of the OpenAPI document: 2.0.1
6
- *
7
- *
8
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
- * https://openapi-generator.tech
10
- * Do not edit the class manually.
11
- */
12
- import { Invoice } from './invoice';
13
- import { InvoiceChange } from './invoiceChange';
14
- export interface InvoiceCreated extends InvoiceChange {
15
- invoice: Invoice;
16
- }
17
- export declare namespace InvoiceCreated {
18
- }
@@ -1,15 +0,0 @@
1
- /**
2
- * Vality Payments API
3
- * ## Description API is designed for the merchants who accept payments via user interface such as a website or a mobile app and it is the only interaction point with the system for goods and services payment transactions. ## Interaction details Whenever an API is accessed, its unique ID must be passed in the header X-Request-ID of the corresponding request: ``` X-Request-ID: 37d735d4-0f42-4f05-89fa-eaa478fb5aa9 ``` ### Content type and coding The system accepts and returns data in JSON format and UTF-8 coding: ``` Content-Type: application/json; charset=utf-8 ``` ### Date formats The system accepts and returns timestamp values in the format date-time, described in [RFC 3339](https://datatracker.ietf.org/doc/html/rfc3339): ``` 2017-01-01T00:00:00Z 2017-01-01T00:00:01+00:00 ``` ### Maximum request processing time Whenever an API is accessed, the time cutoff parameters, that define maximum request processing time of the transaction completion, can be passed in the header `X-Request-Deadline` of the corresponding request: ``` X-Request-Deadline: 10s ``` The system stops processing the request upon the specified time. It is recommended to specify a value that is not more than one minute and not less than three seconds. `X-Request-Deadline` can be: * specified in the format `date-time` according to [RFC 3339](https://datatracker.ietf.org/doc/html/rfc3339); * specified in relative values: in milliseconds (`150000ms`), in seconds (`540s`) or in minutes (`3.5m`).
4
- *
5
- * The version of the OpenAPI document: 2.0.1
6
- *
7
- *
8
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
- * https://openapi-generator.tech
10
- * Do not edit the class manually.
11
- */
12
- import { Invoice } from './invoice';
13
- export interface InvoiceCreatedAllOf {
14
- invoice: Invoice;
15
- }
@@ -1,17 +0,0 @@
1
- /**
2
- * Vality Payments API
3
- * ## Description API is designed for the merchants who accept payments via user interface such as a website or a mobile app and it is the only interaction point with the system for goods and services payment transactions. ## Interaction details Whenever an API is accessed, its unique ID must be passed in the header X-Request-ID of the corresponding request: ``` X-Request-ID: 37d735d4-0f42-4f05-89fa-eaa478fb5aa9 ``` ### Content type and coding The system accepts and returns data in JSON format and UTF-8 coding: ``` Content-Type: application/json; charset=utf-8 ``` ### Date formats The system accepts and returns timestamp values in the format date-time, described in [RFC 3339](https://datatracker.ietf.org/doc/html/rfc3339): ``` 2017-01-01T00:00:00Z 2017-01-01T00:00:01+00:00 ``` ### Maximum request processing time Whenever an API is accessed, the time cutoff parameters, that define maximum request processing time of the transaction completion, can be passed in the header `X-Request-Deadline` of the corresponding request: ``` X-Request-Deadline: 10s ``` The system stops processing the request upon the specified time. It is recommended to specify a value that is not more than one minute and not less than three seconds. `X-Request-Deadline` can be: * specified in the format `date-time` according to [RFC 3339](https://datatracker.ietf.org/doc/html/rfc3339); * specified in relative values: in milliseconds (`150000ms`), in seconds (`540s`) or in minutes (`3.5m`).
4
- *
5
- * The version of the OpenAPI document: 2.0.1
6
- *
7
- *
8
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
- * https://openapi-generator.tech
10
- * Do not edit the class manually.
11
- */
12
- import { InvoiceChange } from './invoiceChange';
13
- export interface InvoiceEvent {
14
- id: number;
15
- createdAt: string;
16
- changes: Array<InvoiceChange>;
17
- }
@@ -1,34 +0,0 @@
1
- /**
2
- * Vality Payments API
3
- * ## Description API is designed for the merchants who accept payments via user interface such as a website or a mobile app and it is the only interaction point with the system for goods and services payment transactions. ## Interaction details Whenever an API is accessed, its unique ID must be passed in the header X-Request-ID of the corresponding request: ``` X-Request-ID: 37d735d4-0f42-4f05-89fa-eaa478fb5aa9 ``` ### Content type and coding The system accepts and returns data in JSON format and UTF-8 coding: ``` Content-Type: application/json; charset=utf-8 ``` ### Date formats The system accepts and returns timestamp values in the format date-time, described in [RFC 3339](https://datatracker.ietf.org/doc/html/rfc3339): ``` 2017-01-01T00:00:00Z 2017-01-01T00:00:01+00:00 ``` ### Maximum request processing time Whenever an API is accessed, the time cutoff parameters, that define maximum request processing time of the transaction completion, can be passed in the header `X-Request-Deadline` of the corresponding request: ``` X-Request-Deadline: 10s ``` The system stops processing the request upon the specified time. It is recommended to specify a value that is not more than one minute and not less than three seconds. `X-Request-Deadline` can be: * specified in the format `date-time` according to [RFC 3339](https://datatracker.ietf.org/doc/html/rfc3339); * specified in relative values: in milliseconds (`150000ms`), in seconds (`540s`) or in minutes (`3.5m`).
4
- *
5
- * The version of the OpenAPI document: 2.0.1
6
- *
7
- *
8
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
- * https://openapi-generator.tech
10
- * Do not edit the class manually.
11
- */
12
- import { InvoiceLineTaxMode } from './invoiceLineTaxMode';
13
- /**
14
- * Product or service item
15
- */
16
- export interface InvoiceLine {
17
- /**
18
- * Description of the goods or services offered
19
- */
20
- product: string;
21
- /**
22
- * Number of units of goods or services offered in this item
23
- */
24
- quantity: number;
25
- /**
26
- * The price of the good or service offered, in minor monetary units, e.g. cents if U.S. dollars are specified as the currency
27
- */
28
- price: number;
29
- /**
30
- * The total value of the item, taking into account the number of units of goods or services
31
- */
32
- readonly cost?: number;
33
- taxMode?: InvoiceLineTaxMode;
34
- }
@@ -1,26 +0,0 @@
1
- /**
2
- * Vality Payments API
3
- * ## Description API is designed for the merchants who accept payments via user interface such as a website or a mobile app and it is the only interaction point with the system for goods and services payment transactions. ## Interaction details Whenever an API is accessed, its unique ID must be passed in the header X-Request-ID of the corresponding request: ``` X-Request-ID: 37d735d4-0f42-4f05-89fa-eaa478fb5aa9 ``` ### Content type and coding The system accepts and returns data in JSON format and UTF-8 coding: ``` Content-Type: application/json; charset=utf-8 ``` ### Date formats The system accepts and returns timestamp values in the format date-time, described in [RFC 3339](https://datatracker.ietf.org/doc/html/rfc3339): ``` 2017-01-01T00:00:00Z 2017-01-01T00:00:01+00:00 ``` ### Maximum request processing time Whenever an API is accessed, the time cutoff parameters, that define maximum request processing time of the transaction completion, can be passed in the header `X-Request-Deadline` of the corresponding request: ``` X-Request-Deadline: 10s ``` The system stops processing the request upon the specified time. It is recommended to specify a value that is not more than one minute and not less than three seconds. `X-Request-Deadline` can be: * specified in the format `date-time` according to [RFC 3339](https://datatracker.ietf.org/doc/html/rfc3339); * specified in relative values: in milliseconds (`150000ms`), in seconds (`540s`) or in minutes (`3.5m`).
4
- *
5
- * The version of the OpenAPI document: 2.0.1
6
- *
7
- *
8
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
- * https://openapi-generator.tech
10
- * Do not edit the class manually.
11
- */
12
- /**
13
- * The tax mode for the proposed good or service. To be specified only if the proposed good or service is taxable.
14
- */
15
- export interface InvoiceLineTaxMode {
16
- /**
17
- * Tax mode
18
- */
19
- type: InvoiceLineTaxMode.TypeEnum;
20
- }
21
- export declare namespace InvoiceLineTaxMode {
22
- type TypeEnum = 'InvoiceLineTaxVAT';
23
- const TypeEnum: {
24
- InvoiceLineTaxVat: "InvoiceLineTaxVAT";
25
- };
26
- }
@@ -1,30 +0,0 @@
1
- /**
2
- * Vality Payments API
3
- * ## Description API is designed for the merchants who accept payments via user interface such as a website or a mobile app and it is the only interaction point with the system for goods and services payment transactions. ## Interaction details Whenever an API is accessed, its unique ID must be passed in the header X-Request-ID of the corresponding request: ``` X-Request-ID: 37d735d4-0f42-4f05-89fa-eaa478fb5aa9 ``` ### Content type and coding The system accepts and returns data in JSON format and UTF-8 coding: ``` Content-Type: application/json; charset=utf-8 ``` ### Date formats The system accepts and returns timestamp values in the format date-time, described in [RFC 3339](https://datatracker.ietf.org/doc/html/rfc3339): ``` 2017-01-01T00:00:00Z 2017-01-01T00:00:01+00:00 ``` ### Maximum request processing time Whenever an API is accessed, the time cutoff parameters, that define maximum request processing time of the transaction completion, can be passed in the header `X-Request-Deadline` of the corresponding request: ``` X-Request-Deadline: 10s ``` The system stops processing the request upon the specified time. It is recommended to specify a value that is not more than one minute and not less than three seconds. `X-Request-Deadline` can be: * specified in the format `date-time` according to [RFC 3339](https://datatracker.ietf.org/doc/html/rfc3339); * specified in relative values: in milliseconds (`150000ms`), in seconds (`540s`) or in minutes (`3.5m`).
4
- *
5
- * The version of the OpenAPI document: 2.0.1
6
- *
7
- *
8
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
- * https://openapi-generator.tech
10
- * Do not edit the class manually.
11
- */
12
- import { InvoiceLineTaxMode } from './invoiceLineTaxMode';
13
- export interface InvoiceLineTaxVAT extends InvoiceLineTaxMode {
14
- /**
15
- * Tax rate
16
- */
17
- rate: InvoiceLineTaxVAT.RateEnum;
18
- }
19
- export declare namespace InvoiceLineTaxVAT {
20
- type RateEnum = '0%' | '10%' | '18%' | '20%' | '10/110' | '18/118' | '20/120';
21
- const RateEnum: {
22
- _0: RateEnum;
23
- _10: RateEnum;
24
- _18: RateEnum;
25
- _20: RateEnum;
26
- _10110: RateEnum;
27
- _18118: RateEnum;
28
- _20120: RateEnum;
29
- };
30
- }
@@ -1,32 +0,0 @@
1
- /**
2
- * Vality Payments API
3
- * ## Description API is designed for the merchants who accept payments via user interface such as a website or a mobile app and it is the only interaction point with the system for goods and services payment transactions. ## Interaction details Whenever an API is accessed, its unique ID must be passed in the header X-Request-ID of the corresponding request: ``` X-Request-ID: 37d735d4-0f42-4f05-89fa-eaa478fb5aa9 ``` ### Content type and coding The system accepts and returns data in JSON format and UTF-8 coding: ``` Content-Type: application/json; charset=utf-8 ``` ### Date formats The system accepts and returns timestamp values in the format date-time, described in [RFC 3339](https://datatracker.ietf.org/doc/html/rfc3339): ``` 2017-01-01T00:00:00Z 2017-01-01T00:00:01+00:00 ``` ### Maximum request processing time Whenever an API is accessed, the time cutoff parameters, that define maximum request processing time of the transaction completion, can be passed in the header `X-Request-Deadline` of the corresponding request: ``` X-Request-Deadline: 10s ``` The system stops processing the request upon the specified time. It is recommended to specify a value that is not more than one minute and not less than three seconds. `X-Request-Deadline` can be: * specified in the format `date-time` according to [RFC 3339](https://datatracker.ietf.org/doc/html/rfc3339); * specified in relative values: in milliseconds (`150000ms`), in seconds (`540s`) or in minutes (`3.5m`).
4
- *
5
- * The version of the OpenAPI document: 2.0.1
6
- *
7
- *
8
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
- * https://openapi-generator.tech
10
- * Do not edit the class manually.
11
- */
12
- /**
13
- * Value added tax in the jurisdiction of the Russian Federation
14
- */
15
- export interface InvoiceLineTaxVATAllOf {
16
- /**
17
- * Tax rate
18
- */
19
- rate: InvoiceLineTaxVATAllOf.RateEnum;
20
- }
21
- export declare namespace InvoiceLineTaxVATAllOf {
22
- type RateEnum = '0%' | '10%' | '18%' | '20%' | '10/110' | '18/118' | '20/120';
23
- const RateEnum: {
24
- _0: RateEnum;
25
- _10: RateEnum;
26
- _18: RateEnum;
27
- _20: RateEnum;
28
- _10110: RateEnum;
29
- _18118: RateEnum;
30
- _20120: RateEnum;
31
- };
32
- }
@@ -1,29 +0,0 @@
1
- /**
2
- * Vality Payments API
3
- * ## Description API is designed for the merchants who accept payments via user interface such as a website or a mobile app and it is the only interaction point with the system for goods and services payment transactions. ## Interaction details Whenever an API is accessed, its unique ID must be passed in the header X-Request-ID of the corresponding request: ``` X-Request-ID: 37d735d4-0f42-4f05-89fa-eaa478fb5aa9 ``` ### Content type and coding The system accepts and returns data in JSON format and UTF-8 coding: ``` Content-Type: application/json; charset=utf-8 ``` ### Date formats The system accepts and returns timestamp values in the format date-time, described in [RFC 3339](https://datatracker.ietf.org/doc/html/rfc3339): ``` 2017-01-01T00:00:00Z 2017-01-01T00:00:01+00:00 ``` ### Maximum request processing time Whenever an API is accessed, the time cutoff parameters, that define maximum request processing time of the transaction completion, can be passed in the header `X-Request-Deadline` of the corresponding request: ``` X-Request-Deadline: 10s ``` The system stops processing the request upon the specified time. It is recommended to specify a value that is not more than one minute and not less than three seconds. `X-Request-Deadline` can be: * specified in the format `date-time` according to [RFC 3339](https://datatracker.ietf.org/doc/html/rfc3339); * specified in relative values: in milliseconds (`150000ms`), in seconds (`540s`) or in minutes (`3.5m`).
4
- *
5
- * The version of the OpenAPI document: 2.0.1
6
- *
7
- *
8
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
- * https://openapi-generator.tech
10
- * Do not edit the class manually.
11
- */
12
- export interface InvoiceParamsWithTemplate {
13
- /**
14
- * A platform-unique entity identifier for this party. It is used to ensure request idempotency.
15
- */
16
- externalID?: string;
17
- /**
18
- * The price of the goods or services offered, in minor monetary units, e.g. cents if U.S. dollars are specified as the currency
19
- */
20
- amount?: number;
21
- /**
22
- * Currency character code according to [ISO 4217](http://www.iso.org/iso/home/standards/currency_codes.htm).
23
- */
24
- currency?: string;
25
- /**
26
- * Invoice metadata
27
- */
28
- metadata?: object;
29
- }
@@ -1,24 +0,0 @@
1
- /**
2
- * Vality Payments API
3
- * ## Description API is designed for the merchants who accept payments via user interface such as a website or a mobile app and it is the only interaction point with the system for goods and services payment transactions. ## Interaction details Whenever an API is accessed, its unique ID must be passed in the header X-Request-ID of the corresponding request: ``` X-Request-ID: 37d735d4-0f42-4f05-89fa-eaa478fb5aa9 ``` ### Content type and coding The system accepts and returns data in JSON format and UTF-8 coding: ``` Content-Type: application/json; charset=utf-8 ``` ### Date formats The system accepts and returns timestamp values in the format date-time, described in [RFC 3339](https://datatracker.ietf.org/doc/html/rfc3339): ``` 2017-01-01T00:00:00Z 2017-01-01T00:00:01+00:00 ``` ### Maximum request processing time Whenever an API is accessed, the time cutoff parameters, that define maximum request processing time of the transaction completion, can be passed in the header `X-Request-Deadline` of the corresponding request: ``` X-Request-Deadline: 10s ``` The system stops processing the request upon the specified time. It is recommended to specify a value that is not more than one minute and not less than three seconds. `X-Request-Deadline` can be: * specified in the format `date-time` according to [RFC 3339](https://datatracker.ietf.org/doc/html/rfc3339); * specified in relative values: in milliseconds (`150000ms`), in seconds (`540s`) or in minutes (`3.5m`).
4
- *
5
- * The version of the OpenAPI document: 2.0.1
6
- *
7
- *
8
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
- * https://openapi-generator.tech
10
- * Do not edit the class manually.
11
- */
12
- import { InvoiceBankAccount } from './invoiceBankAccount';
13
- export interface InvoiceRussianBankAccount extends InvoiceBankAccount {
14
- /**
15
- * Account number
16
- */
17
- account: string;
18
- /**
19
- * BIK of the banking organization
20
- */
21
- bankBik: string;
22
- }
23
- export declare namespace InvoiceRussianBankAccount {
24
- }
@@ -1,24 +0,0 @@
1
- /**
2
- * Vality Payments API
3
- * ## Description API is designed for the merchants who accept payments via user interface such as a website or a mobile app and it is the only interaction point with the system for goods and services payment transactions. ## Interaction details Whenever an API is accessed, its unique ID must be passed in the header X-Request-ID of the corresponding request: ``` X-Request-ID: 37d735d4-0f42-4f05-89fa-eaa478fb5aa9 ``` ### Content type and coding The system accepts and returns data in JSON format and UTF-8 coding: ``` Content-Type: application/json; charset=utf-8 ``` ### Date formats The system accepts and returns timestamp values in the format date-time, described in [RFC 3339](https://datatracker.ietf.org/doc/html/rfc3339): ``` 2017-01-01T00:00:00Z 2017-01-01T00:00:01+00:00 ``` ### Maximum request processing time Whenever an API is accessed, the time cutoff parameters, that define maximum request processing time of the transaction completion, can be passed in the header `X-Request-Deadline` of the corresponding request: ``` X-Request-Deadline: 10s ``` The system stops processing the request upon the specified time. It is recommended to specify a value that is not more than one minute and not less than three seconds. `X-Request-Deadline` can be: * specified in the format `date-time` according to [RFC 3339](https://datatracker.ietf.org/doc/html/rfc3339); * specified in relative values: in milliseconds (`150000ms`), in seconds (`540s`) or in minutes (`3.5m`).
4
- *
5
- * The version of the OpenAPI document: 2.0.1
6
- *
7
- *
8
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
- * https://openapi-generator.tech
10
- * Do not edit the class manually.
11
- */
12
- /**
13
- * Data of a settlement account in a banking organization operating under the jurisdiction of the Russian Federation.
14
- */
15
- export interface InvoiceRussianBankAccountAllOf {
16
- /**
17
- * Account number
18
- */
19
- account: string;
20
- /**
21
- * BIK of the banking organization
22
- */
23
- bankBik: string;
24
- }
@@ -1,30 +0,0 @@
1
- /**
2
- * Vality Payments API
3
- * ## Description API is designed for the merchants who accept payments via user interface such as a website or a mobile app and it is the only interaction point with the system for goods and services payment transactions. ## Interaction details Whenever an API is accessed, its unique ID must be passed in the header X-Request-ID of the corresponding request: ``` X-Request-ID: 37d735d4-0f42-4f05-89fa-eaa478fb5aa9 ``` ### Content type and coding The system accepts and returns data in JSON format and UTF-8 coding: ``` Content-Type: application/json; charset=utf-8 ``` ### Date formats The system accepts and returns timestamp values in the format date-time, described in [RFC 3339](https://datatracker.ietf.org/doc/html/rfc3339): ``` 2017-01-01T00:00:00Z 2017-01-01T00:00:01+00:00 ``` ### Maximum request processing time Whenever an API is accessed, the time cutoff parameters, that define maximum request processing time of the transaction completion, can be passed in the header `X-Request-Deadline` of the corresponding request: ``` X-Request-Deadline: 10s ``` The system stops processing the request upon the specified time. It is recommended to specify a value that is not more than one minute and not less than three seconds. `X-Request-Deadline` can be: * specified in the format `date-time` according to [RFC 3339](https://datatracker.ietf.org/doc/html/rfc3339); * specified in relative values: in milliseconds (`150000ms`), in seconds (`540s`) or in minutes (`3.5m`).
4
- *
5
- * The version of the OpenAPI document: 2.0.1
6
- *
7
- *
8
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
- * https://openapi-generator.tech
10
- * Do not edit the class manually.
11
- */
12
- export interface InvoiceStatus {
13
- /**
14
- * Invoice status
15
- */
16
- status: InvoiceStatus.StatusEnum;
17
- /**
18
- * Reason for invoice cancellation or redemption
19
- */
20
- reason?: string;
21
- }
22
- export declare namespace InvoiceStatus {
23
- type StatusEnum = 'unpaid' | 'cancelled' | 'paid' | 'fulfilled';
24
- const StatusEnum: {
25
- Unpaid: StatusEnum;
26
- Cancelled: StatusEnum;
27
- Paid: StatusEnum;
28
- Fulfilled: StatusEnum;
29
- };
30
- }
@@ -1,31 +0,0 @@
1
- /**
2
- * Vality Payments API
3
- * ## Description API is designed for the merchants who accept payments via user interface such as a website or a mobile app and it is the only interaction point with the system for goods and services payment transactions. ## Interaction details Whenever an API is accessed, its unique ID must be passed in the header X-Request-ID of the corresponding request: ``` X-Request-ID: 37d735d4-0f42-4f05-89fa-eaa478fb5aa9 ``` ### Content type and coding The system accepts and returns data in JSON format and UTF-8 coding: ``` Content-Type: application/json; charset=utf-8 ``` ### Date formats The system accepts and returns timestamp values in the format date-time, described in [RFC 3339](https://datatracker.ietf.org/doc/html/rfc3339): ``` 2017-01-01T00:00:00Z 2017-01-01T00:00:01+00:00 ``` ### Maximum request processing time Whenever an API is accessed, the time cutoff parameters, that define maximum request processing time of the transaction completion, can be passed in the header `X-Request-Deadline` of the corresponding request: ``` X-Request-Deadline: 10s ``` The system stops processing the request upon the specified time. It is recommended to specify a value that is not more than one minute and not less than three seconds. `X-Request-Deadline` can be: * specified in the format `date-time` according to [RFC 3339](https://datatracker.ietf.org/doc/html/rfc3339); * specified in relative values: in milliseconds (`150000ms`), in seconds (`540s`) or in minutes (`3.5m`).
4
- *
5
- * The version of the OpenAPI document: 2.0.1
6
- *
7
- *
8
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
- * https://openapi-generator.tech
10
- * Do not edit the class manually.
11
- */
12
- import { InvoiceChange } from './invoiceChange';
13
- export interface InvoiceStatusChanged extends InvoiceChange {
14
- /**
15
- * Invoice status
16
- */
17
- status: InvoiceStatusChanged.StatusEnum;
18
- /**
19
- * Reason for invoice cancellation or redemption
20
- */
21
- reason?: string;
22
- }
23
- export declare namespace InvoiceStatusChanged {
24
- type StatusEnum = 'unpaid' | 'cancelled' | 'paid' | 'fulfilled';
25
- const StatusEnum: {
26
- Unpaid: StatusEnum;
27
- Cancelled: StatusEnum;
28
- Paid: StatusEnum;
29
- Fulfilled: StatusEnum;
30
- };
31
- }
@@ -1,45 +0,0 @@
1
- /**
2
- * Vality Payments API
3
- * ## Description API is designed for the merchants who accept payments via user interface such as a website or a mobile app and it is the only interaction point with the system for goods and services payment transactions. ## Interaction details Whenever an API is accessed, its unique ID must be passed in the header X-Request-ID of the corresponding request: ``` X-Request-ID: 37d735d4-0f42-4f05-89fa-eaa478fb5aa9 ``` ### Content type and coding The system accepts and returns data in JSON format and UTF-8 coding: ``` Content-Type: application/json; charset=utf-8 ``` ### Date formats The system accepts and returns timestamp values in the format date-time, described in [RFC 3339](https://datatracker.ietf.org/doc/html/rfc3339): ``` 2017-01-01T00:00:00Z 2017-01-01T00:00:01+00:00 ``` ### Maximum request processing time Whenever an API is accessed, the time cutoff parameters, that define maximum request processing time of the transaction completion, can be passed in the header `X-Request-Deadline` of the corresponding request: ``` X-Request-Deadline: 10s ``` The system stops processing the request upon the specified time. It is recommended to specify a value that is not more than one minute and not less than three seconds. `X-Request-Deadline` can be: * specified in the format `date-time` according to [RFC 3339](https://datatracker.ietf.org/doc/html/rfc3339); * specified in relative values: in milliseconds (`150000ms`), in seconds (`540s`) or in minutes (`3.5m`).
4
- *
5
- * The version of the OpenAPI document: 2.0.1
6
- *
7
- *
8
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
- * https://openapi-generator.tech
10
- * Do not edit the class manually.
11
- */
12
- import { InvoiceTemplateDetails } from './invoiceTemplateDetails';
13
- import { LifetimeInterval } from './lifetimeInterval';
14
- export interface InvoiceTemplate {
15
- /**
16
- * Invoice template ID
17
- */
18
- id: string;
19
- /**
20
- * External invoice template identifier
21
- */
22
- externalID?: string;
23
- /**
24
- * Shop ID
25
- */
26
- shopID: string;
27
- /**
28
- * Template name
29
- */
30
- name?: string;
31
- /**
32
- * Description of the goods or services offered
33
- */
34
- description?: string;
35
- /**
36
- * Template creation date
37
- */
38
- createdAt?: string;
39
- lifetime: LifetimeInterval;
40
- details: InvoiceTemplateDetails;
41
- /**
42
- * Metadata that will be associated with the invoice created by the template, in case other metadata is not specified in the invoice creation request.
43
- */
44
- metadata?: object;
45
- }
@@ -1,17 +0,0 @@
1
- /**
2
- * Vality Payments API
3
- * ## Description API is designed for the merchants who accept payments via user interface such as a website or a mobile app and it is the only interaction point with the system for goods and services payment transactions. ## Interaction details Whenever an API is accessed, its unique ID must be passed in the header X-Request-ID of the corresponding request: ``` X-Request-ID: 37d735d4-0f42-4f05-89fa-eaa478fb5aa9 ``` ### Content type and coding The system accepts and returns data in JSON format and UTF-8 coding: ``` Content-Type: application/json; charset=utf-8 ``` ### Date formats The system accepts and returns timestamp values in the format date-time, described in [RFC 3339](https://datatracker.ietf.org/doc/html/rfc3339): ``` 2017-01-01T00:00:00Z 2017-01-01T00:00:01+00:00 ``` ### Maximum request processing time Whenever an API is accessed, the time cutoff parameters, that define maximum request processing time of the transaction completion, can be passed in the header `X-Request-Deadline` of the corresponding request: ``` X-Request-Deadline: 10s ``` The system stops processing the request upon the specified time. It is recommended to specify a value that is not more than one minute and not less than three seconds. `X-Request-Deadline` can be: * specified in the format `date-time` according to [RFC 3339](https://datatracker.ietf.org/doc/html/rfc3339); * specified in relative values: in milliseconds (`150000ms`), in seconds (`540s`) or in minutes (`3.5m`).
4
- *
5
- * The version of the OpenAPI document: 2.0.1
6
- *
7
- *
8
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
- * https://openapi-generator.tech
10
- * Do not edit the class manually.
11
- */
12
- import { InvoiceTemplate } from './invoiceTemplate';
13
- import { AccessToken } from './accessToken';
14
- export interface InvoiceTemplateAndToken {
15
- invoiceTemplate: InvoiceTemplate;
16
- invoiceTemplateAccessToken: AccessToken;
17
- }
@@ -1,41 +0,0 @@
1
- /**
2
- * Vality Payments API
3
- * ## Description API is designed for the merchants who accept payments via user interface such as a website or a mobile app and it is the only interaction point with the system for goods and services payment transactions. ## Interaction details Whenever an API is accessed, its unique ID must be passed in the header X-Request-ID of the corresponding request: ``` X-Request-ID: 37d735d4-0f42-4f05-89fa-eaa478fb5aa9 ``` ### Content type and coding The system accepts and returns data in JSON format and UTF-8 coding: ``` Content-Type: application/json; charset=utf-8 ``` ### Date formats The system accepts and returns timestamp values in the format date-time, described in [RFC 3339](https://datatracker.ietf.org/doc/html/rfc3339): ``` 2017-01-01T00:00:00Z 2017-01-01T00:00:01+00:00 ``` ### Maximum request processing time Whenever an API is accessed, the time cutoff parameters, that define maximum request processing time of the transaction completion, can be passed in the header `X-Request-Deadline` of the corresponding request: ``` X-Request-Deadline: 10s ``` The system stops processing the request upon the specified time. It is recommended to specify a value that is not more than one minute and not less than three seconds. `X-Request-Deadline` can be: * specified in the format `date-time` according to [RFC 3339](https://datatracker.ietf.org/doc/html/rfc3339); * specified in relative values: in milliseconds (`150000ms`), in seconds (`540s`) or in minutes (`3.5m`).
4
- *
5
- * The version of the OpenAPI document: 2.0.1
6
- *
7
- *
8
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
- * https://openapi-generator.tech
10
- * Do not edit the class manually.
11
- */
12
- import { InvoiceTemplateDetails } from './invoiceTemplateDetails';
13
- import { LifetimeInterval } from './lifetimeInterval';
14
- export interface InvoiceTemplateCreateParams {
15
- /**
16
- * Shop ID
17
- */
18
- shopID: string;
19
- /**
20
- * External invoice template identifier
21
- */
22
- externalID?: string;
23
- /**
24
- * The participant\'s unique identifier within the system.
25
- */
26
- partyID?: string;
27
- /**
28
- * Template name
29
- */
30
- name?: string;
31
- /**
32
- * Description of the goods or services offered
33
- */
34
- description?: string;
35
- lifetime: LifetimeInterval;
36
- details: InvoiceTemplateDetails;
37
- /**
38
- * Metadata that will be associated with the invoice created by the template, in case other metadata is not specified in the invoice creation request.
39
- */
40
- metadata?: object;
41
- }
@@ -1,14 +0,0 @@
1
- /**
2
- * Vality Payments API
3
- * ## Description API is designed for the merchants who accept payments via user interface such as a website or a mobile app and it is the only interaction point with the system for goods and services payment transactions. ## Interaction details Whenever an API is accessed, its unique ID must be passed in the header X-Request-ID of the corresponding request: ``` X-Request-ID: 37d735d4-0f42-4f05-89fa-eaa478fb5aa9 ``` ### Content type and coding The system accepts and returns data in JSON format and UTF-8 coding: ``` Content-Type: application/json; charset=utf-8 ``` ### Date formats The system accepts and returns timestamp values in the format date-time, described in [RFC 3339](https://datatracker.ietf.org/doc/html/rfc3339): ``` 2017-01-01T00:00:00Z 2017-01-01T00:00:01+00:00 ``` ### Maximum request processing time Whenever an API is accessed, the time cutoff parameters, that define maximum request processing time of the transaction completion, can be passed in the header `X-Request-Deadline` of the corresponding request: ``` X-Request-Deadline: 10s ``` The system stops processing the request upon the specified time. It is recommended to specify a value that is not more than one minute and not less than three seconds. `X-Request-Deadline` can be: * specified in the format `date-time` according to [RFC 3339](https://datatracker.ietf.org/doc/html/rfc3339); * specified in relative values: in milliseconds (`150000ms`), in seconds (`540s`) or in minutes (`3.5m`).
4
- *
5
- * The version of the OpenAPI document: 2.0.1
6
- *
7
- *
8
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
- * https://openapi-generator.tech
10
- * Do not edit the class manually.
11
- */
12
- export interface InvoiceTemplateDetails {
13
- templateType: string;
14
- }
@@ -1,17 +0,0 @@
1
- /**
2
- * Vality Payments API
3
- * ## Description API is designed for the merchants who accept payments via user interface such as a website or a mobile app and it is the only interaction point with the system for goods and services payment transactions. ## Interaction details Whenever an API is accessed, its unique ID must be passed in the header X-Request-ID of the corresponding request: ``` X-Request-ID: 37d735d4-0f42-4f05-89fa-eaa478fb5aa9 ``` ### Content type and coding The system accepts and returns data in JSON format and UTF-8 coding: ``` Content-Type: application/json; charset=utf-8 ``` ### Date formats The system accepts and returns timestamp values in the format date-time, described in [RFC 3339](https://datatracker.ietf.org/doc/html/rfc3339): ``` 2017-01-01T00:00:00Z 2017-01-01T00:00:01+00:00 ``` ### Maximum request processing time Whenever an API is accessed, the time cutoff parameters, that define maximum request processing time of the transaction completion, can be passed in the header `X-Request-Deadline` of the corresponding request: ``` X-Request-Deadline: 10s ``` The system stops processing the request upon the specified time. It is recommended to specify a value that is not more than one minute and not less than three seconds. `X-Request-Deadline` can be: * specified in the format `date-time` according to [RFC 3339](https://datatracker.ietf.org/doc/html/rfc3339); * specified in relative values: in milliseconds (`150000ms`), in seconds (`540s`) or in minutes (`3.5m`).
4
- *
5
- * The version of the OpenAPI document: 2.0.1
6
- *
7
- *
8
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
- * https://openapi-generator.tech
10
- * Do not edit the class manually.
11
- */
12
- /**
13
- * Limitations on the value of goods and services for invoices generated by the template.
14
- */
15
- export interface InvoiceTemplateLineCost {
16
- costType: string;
17
- }
@@ -1,22 +0,0 @@
1
- /**
2
- * Vality Payments API
3
- * ## Description API is designed for the merchants who accept payments via user interface such as a website or a mobile app and it is the only interaction point with the system for goods and services payment transactions. ## Interaction details Whenever an API is accessed, its unique ID must be passed in the header X-Request-ID of the corresponding request: ``` X-Request-ID: 37d735d4-0f42-4f05-89fa-eaa478fb5aa9 ``` ### Content type and coding The system accepts and returns data in JSON format and UTF-8 coding: ``` Content-Type: application/json; charset=utf-8 ``` ### Date formats The system accepts and returns timestamp values in the format date-time, described in [RFC 3339](https://datatracker.ietf.org/doc/html/rfc3339): ``` 2017-01-01T00:00:00Z 2017-01-01T00:00:01+00:00 ``` ### Maximum request processing time Whenever an API is accessed, the time cutoff parameters, that define maximum request processing time of the transaction completion, can be passed in the header `X-Request-Deadline` of the corresponding request: ``` X-Request-Deadline: 10s ``` The system stops processing the request upon the specified time. It is recommended to specify a value that is not more than one minute and not less than three seconds. `X-Request-Deadline` can be: * specified in the format `date-time` according to [RFC 3339](https://datatracker.ietf.org/doc/html/rfc3339); * specified in relative values: in milliseconds (`150000ms`), in seconds (`540s`) or in minutes (`3.5m`).
4
- *
5
- * The version of the OpenAPI document: 2.0.1
6
- *
7
- *
8
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
- * https://openapi-generator.tech
10
- * Do not edit the class manually.
11
- */
12
- import { InvoiceTemplateLineCost } from './invoiceTemplateLineCost';
13
- export interface InvoiceTemplateLineCostFixed extends InvoiceTemplateLineCost {
14
- /**
15
- * Currency character code according to [ISO 4217](http://www.iso.org/iso/home/standards/currency_codes.htm).
16
- */
17
- currency: string;
18
- /**
19
- * The price of the goods or services offered, in minor monetary units, e.g. cents if U.S. dollars are specified as the currency
20
- */
21
- amount: number;
22
- }
@@ -1,21 +0,0 @@
1
- /**
2
- * Vality Payments API
3
- * ## Description API is designed for the merchants who accept payments via user interface such as a website or a mobile app and it is the only interaction point with the system for goods and services payment transactions. ## Interaction details Whenever an API is accessed, its unique ID must be passed in the header X-Request-ID of the corresponding request: ``` X-Request-ID: 37d735d4-0f42-4f05-89fa-eaa478fb5aa9 ``` ### Content type and coding The system accepts and returns data in JSON format and UTF-8 coding: ``` Content-Type: application/json; charset=utf-8 ``` ### Date formats The system accepts and returns timestamp values in the format date-time, described in [RFC 3339](https://datatracker.ietf.org/doc/html/rfc3339): ``` 2017-01-01T00:00:00Z 2017-01-01T00:00:01+00:00 ``` ### Maximum request processing time Whenever an API is accessed, the time cutoff parameters, that define maximum request processing time of the transaction completion, can be passed in the header `X-Request-Deadline` of the corresponding request: ``` X-Request-Deadline: 10s ``` The system stops processing the request upon the specified time. It is recommended to specify a value that is not more than one minute and not less than three seconds. `X-Request-Deadline` can be: * specified in the format `date-time` according to [RFC 3339](https://datatracker.ietf.org/doc/html/rfc3339); * specified in relative values: in milliseconds (`150000ms`), in seconds (`540s`) or in minutes (`3.5m`).
4
- *
5
- * The version of the OpenAPI document: 2.0.1
6
- *
7
- *
8
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
- * https://openapi-generator.tech
10
- * Do not edit the class manually.
11
- */
12
- export interface InvoiceTemplateLineCostFixedAllOf {
13
- /**
14
- * Currency character code according to [ISO 4217](http://www.iso.org/iso/home/standards/currency_codes.htm).
15
- */
16
- currency: string;
17
- /**
18
- * The price of the goods or services offered, in minor monetary units, e.g. cents if U.S. dollars are specified as the currency
19
- */
20
- amount: number;
21
- }
@@ -1,20 +0,0 @@
1
- /**
2
- * Vality Payments API
3
- * ## Description API is designed for the merchants who accept payments via user interface such as a website or a mobile app and it is the only interaction point with the system for goods and services payment transactions. ## Interaction details Whenever an API is accessed, its unique ID must be passed in the header X-Request-ID of the corresponding request: ``` X-Request-ID: 37d735d4-0f42-4f05-89fa-eaa478fb5aa9 ``` ### Content type and coding The system accepts and returns data in JSON format and UTF-8 coding: ``` Content-Type: application/json; charset=utf-8 ``` ### Date formats The system accepts and returns timestamp values in the format date-time, described in [RFC 3339](https://datatracker.ietf.org/doc/html/rfc3339): ``` 2017-01-01T00:00:00Z 2017-01-01T00:00:01+00:00 ``` ### Maximum request processing time Whenever an API is accessed, the time cutoff parameters, that define maximum request processing time of the transaction completion, can be passed in the header `X-Request-Deadline` of the corresponding request: ``` X-Request-Deadline: 10s ``` The system stops processing the request upon the specified time. It is recommended to specify a value that is not more than one minute and not less than three seconds. `X-Request-Deadline` can be: * specified in the format `date-time` according to [RFC 3339](https://datatracker.ietf.org/doc/html/rfc3339); * specified in relative values: in milliseconds (`150000ms`), in seconds (`540s`) or in minutes (`3.5m`).
4
- *
5
- * The version of the OpenAPI document: 2.0.1
6
- *
7
- *
8
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
- * https://openapi-generator.tech
10
- * Do not edit the class manually.
11
- */
12
- import { CostAmountRange } from './costAmountRange';
13
- import { InvoiceTemplateLineCost } from './invoiceTemplateLineCost';
14
- export interface InvoiceTemplateLineCostRange extends InvoiceTemplateLineCost {
15
- /**
16
- * Currency character code according to [ISO 4217](http://www.iso.org/iso/home/standards/currency_codes.htm).
17
- */
18
- currency: string;
19
- range: CostAmountRange;
20
- }