@emilgroup/payment-sdk 1.13.1-beta.15 → 1.13.1-beta.17

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 (59) hide show
  1. package/.openapi-generator/FILES +1 -0
  2. package/README.md +2 -2
  3. package/api/bank-accounts-api.ts +55 -13
  4. package/api/bank-orders-api.ts +71 -29
  5. package/api/bank-transaction-api.ts +45 -17
  6. package/api/payment-methods-api.ts +55 -13
  7. package/api/payment-reminders-api.ts +55 -13
  8. package/api/payments-api.ts +55 -13
  9. package/api/refunds-api.ts +45 -17
  10. package/api/tenant-bank-account-api.ts +45 -17
  11. package/dist/api/bank-accounts-api.d.ts +35 -8
  12. package/dist/api/bank-accounts-api.js +29 -11
  13. package/dist/api/bank-orders-api.d.ts +51 -24
  14. package/dist/api/bank-orders-api.js +41 -23
  15. package/dist/api/bank-transaction-api.d.ts +28 -10
  16. package/dist/api/bank-transaction-api.js +24 -12
  17. package/dist/api/payment-methods-api.d.ts +35 -8
  18. package/dist/api/payment-methods-api.js +29 -11
  19. package/dist/api/payment-reminders-api.d.ts +35 -8
  20. package/dist/api/payment-reminders-api.js +29 -11
  21. package/dist/api/payments-api.d.ts +35 -8
  22. package/dist/api/payments-api.js +29 -11
  23. package/dist/api/refunds-api.d.ts +28 -10
  24. package/dist/api/refunds-api.js +24 -12
  25. package/dist/api/tenant-bank-account-api.d.ts +28 -10
  26. package/dist/api/tenant-bank-account-api.js +24 -12
  27. package/dist/models/bank-order-class.d.ts +7 -7
  28. package/dist/models/create-bank-order-request-dto.d.ts +3 -3
  29. package/dist/models/create-payment-reminder-request-dto.d.ts +7 -1
  30. package/dist/models/create-payment-request-dto.d.ts +7 -1
  31. package/dist/models/create-psp-payment-method-request-dto.d.ts +7 -1
  32. package/dist/models/deactivated-payment-reminder-class.d.ts +7 -1
  33. package/dist/models/financial-account-class.d.ts +111 -0
  34. package/dist/models/financial-account-class.js +24 -0
  35. package/dist/models/index.d.ts +1 -0
  36. package/dist/models/index.js +1 -0
  37. package/dist/models/initiate-adyen-payment-setup-request-dto.d.ts +6 -0
  38. package/dist/models/initiate-braintree-payment-setup-request-dto.d.ts +6 -0
  39. package/dist/models/initiate-stripe-payment-setup-request-dto.d.ts +6 -0
  40. package/dist/models/payment-class-without-expand-properties.d.ts +7 -1
  41. package/dist/models/payment-class.d.ts +7 -1
  42. package/dist/models/payment-reminder-class.d.ts +7 -1
  43. package/dist/models/refund-class.d.ts +7 -1
  44. package/models/bank-order-class.ts +7 -7
  45. package/models/create-bank-order-request-dto.ts +3 -3
  46. package/models/create-payment-reminder-request-dto.ts +7 -1
  47. package/models/create-payment-request-dto.ts +7 -1
  48. package/models/create-psp-payment-method-request-dto.ts +7 -1
  49. package/models/deactivated-payment-reminder-class.ts +7 -1
  50. package/models/financial-account-class.ts +120 -0
  51. package/models/index.ts +1 -0
  52. package/models/initiate-adyen-payment-setup-request-dto.ts +6 -0
  53. package/models/initiate-braintree-payment-setup-request-dto.ts +6 -0
  54. package/models/initiate-stripe-payment-setup-request-dto.ts +6 -0
  55. package/models/payment-class-without-expand-properties.ts +7 -1
  56. package/models/payment-class.ts +7 -1
  57. package/models/payment-reminder-class.ts +7 -1
  58. package/models/refund-class.ts +7 -1
  59. package/package.json +1 -1
@@ -43,7 +43,13 @@ export interface PaymentClassWithoutExpandProperties {
43
43
  * @type {string}
44
44
  * @memberof PaymentClassWithoutExpandProperties
45
45
  */
46
- 'accountCode': string;
46
+ 'accountCode'?: string;
47
+ /**
48
+ * Partner code associated to that payment.
49
+ * @type {string}
50
+ * @memberof PaymentClassWithoutExpandProperties
51
+ */
52
+ 'partnerCode'?: string;
47
53
  /**
48
54
  * Amount to be paid in cents. 100 to charge 1€.
49
55
  * @type {number}
@@ -44,7 +44,13 @@ export interface PaymentClass {
44
44
  * @type {string}
45
45
  * @memberof PaymentClass
46
46
  */
47
- 'accountCode': string;
47
+ 'accountCode'?: string;
48
+ /**
49
+ * Partner code associated to that payment.
50
+ * @type {string}
51
+ * @memberof PaymentClass
52
+ */
53
+ 'partnerCode'?: string;
48
54
  /**
49
55
  * Amount to be paid in cents. 100 to charge 1€.
50
56
  * @type {number}
@@ -43,7 +43,13 @@ export interface PaymentReminderClass {
43
43
  * @type {string}
44
44
  * @memberof PaymentReminderClass
45
45
  */
46
- 'accountCode': string;
46
+ 'accountCode'?: string;
47
+ /**
48
+ * Unique identifier of related partner.
49
+ * @type {string}
50
+ * @memberof PaymentReminderClass
51
+ */
52
+ 'partnerCode'?: string;
47
53
  /**
48
54
  * Type of the invoice
49
55
  * @type {string}
@@ -44,7 +44,13 @@ export interface RefundClass {
44
44
  * @type {string}
45
45
  * @memberof RefundClass
46
46
  */
47
- 'accountCode': string;
47
+ 'accountCode'?: string;
48
+ /**
49
+ * Partner code associated with the payment.
50
+ * @type {string}
51
+ * @memberof RefundClass
52
+ */
53
+ 'partnerCode'?: string;
48
54
  /**
49
55
  * Amount that was refunded in cents. 100 to refund 1€.
50
56
  * @type {number}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@emilgroup/payment-sdk",
3
- "version": "1.13.1-beta.15",
3
+ "version": "1.13.1-beta.17",
4
4
  "description": "OpenAPI client for @emilgroup/payment-sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "keywords": [