@emilgroup/payment-sdk 1.14.1-beta.58 → 1.14.1-beta.59

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 (31) hide show
  1. package/.openapi-generator/FILES +6 -0
  2. package/README.md +2 -2
  3. package/api/payout-methods-api.ts +672 -0
  4. package/api.ts +2 -0
  5. package/dist/api/payout-methods-api.d.ts +382 -0
  6. package/dist/api/payout-methods-api.js +635 -0
  7. package/dist/api.d.ts +1 -0
  8. package/dist/api.js +1 -0
  9. package/dist/models/create-billing-address-request-dto.d.ts +1 -7
  10. package/dist/models/create-payout-method-request-dto.d.ts +60 -0
  11. package/dist/models/create-payout-method-request-dto.js +15 -0
  12. package/dist/models/create-payout-method-response-class.d.ts +25 -0
  13. package/dist/models/create-payout-method-response-class.js +15 -0
  14. package/dist/models/get-payout-method-response-class.d.ts +25 -0
  15. package/dist/models/get-payout-method-response-class.js +15 -0
  16. package/dist/models/index.d.ts +5 -0
  17. package/dist/models/index.js +5 -0
  18. package/dist/models/list-payout-methods-response-class.d.ts +43 -0
  19. package/dist/models/list-payout-methods-response-class.js +15 -0
  20. package/dist/models/payout-method-class.d.ts +115 -0
  21. package/dist/models/payout-method-class.js +15 -0
  22. package/dist/models/update-billing-address-request-dto.d.ts +1 -7
  23. package/models/create-billing-address-request-dto.ts +1 -7
  24. package/models/create-payout-method-request-dto.ts +66 -0
  25. package/models/create-payout-method-response-class.ts +31 -0
  26. package/models/get-payout-method-response-class.ts +31 -0
  27. package/models/index.ts +5 -0
  28. package/models/list-payout-methods-response-class.ts +49 -0
  29. package/models/payout-method-class.ts +121 -0
  30. package/models/update-billing-address-request-dto.ts +1 -7
  31. package/package.json +1 -1
@@ -0,0 +1,49 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Emil Payment Service
5
+ * This service directly communicates with the various Payment Service Providers (PSPs) in order to charge or refund customers. This service will automatically connect to the PSP linked in your admin configuration; meaning if you configured Stripe, it will automatically create a payment on Stripe when you create it in Emil.
6
+ *
7
+ * The version of the OpenAPI document: 1.0
8
+ * Contact: kontakt@emil.de
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+ import { PayoutMethodClass } from './payout-method-class';
17
+
18
+ /**
19
+ *
20
+ * @export
21
+ * @interface ListPayoutMethodsResponseClass
22
+ */
23
+ export interface ListPayoutMethodsResponseClass {
24
+ /**
25
+ * The payout methods
26
+ * @type {Array<PayoutMethodClass>}
27
+ * @memberof ListPayoutMethodsResponseClass
28
+ */
29
+ 'items': Array<PayoutMethodClass>;
30
+ /**
31
+ * Next page token.
32
+ * @type {string}
33
+ * @memberof ListPayoutMethodsResponseClass
34
+ */
35
+ 'nextPageToken': string;
36
+ /**
37
+ * Items per page.
38
+ * @type {number}
39
+ * @memberof ListPayoutMethodsResponseClass
40
+ */
41
+ 'itemsPerPage': number;
42
+ /**
43
+ * Total amount of items.
44
+ * @type {number}
45
+ * @memberof ListPayoutMethodsResponseClass
46
+ */
47
+ 'totalItems': number;
48
+ }
49
+
@@ -0,0 +1,121 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Emil Payment Service
5
+ * This service directly communicates with the various Payment Service Providers (PSPs) in order to charge or refund customers. This service will automatically connect to the PSP linked in your admin configuration; meaning if you configured Stripe, it will automatically create a payment on Stripe when you create it in Emil.
6
+ *
7
+ * The version of the OpenAPI document: 1.0
8
+ * Contact: kontakt@emil.de
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+ import { BillingAddressClass } from './billing-address-class';
17
+
18
+ /**
19
+ *
20
+ * @export
21
+ * @interface PayoutMethodClass
22
+ */
23
+ export interface PayoutMethodClass {
24
+ /**
25
+ * Internal unique identifier for the object. You should not have to use this, use code instead.
26
+ * @type {number}
27
+ * @memberof PayoutMethodClass
28
+ */
29
+ 'id': number;
30
+ /**
31
+ * Unique identifier for the object.
32
+ * @type {string}
33
+ * @memberof PayoutMethodClass
34
+ */
35
+ 'code': string;
36
+ /**
37
+ * First name
38
+ * @type {string}
39
+ * @memberof PayoutMethodClass
40
+ */
41
+ 'firstName': string;
42
+ /**
43
+ * Last name
44
+ * @type {string}
45
+ * @memberof PayoutMethodClass
46
+ */
47
+ 'lastName': string;
48
+ /**
49
+ * IBAN
50
+ * @type {string}
51
+ * @memberof PayoutMethodClass
52
+ */
53
+ 'iban': string;
54
+ /**
55
+ * BIC
56
+ * @type {string}
57
+ * @memberof PayoutMethodClass
58
+ */
59
+ 'bic': string;
60
+ /**
61
+ * Bank name
62
+ * @type {string}
63
+ * @memberof PayoutMethodClass
64
+ */
65
+ 'bankName': string;
66
+ /**
67
+ * Whether the payout method is active
68
+ * @type {boolean}
69
+ * @memberof PayoutMethodClass
70
+ */
71
+ 'isActive': boolean;
72
+ /**
73
+ * Billing address ID
74
+ * @type {number}
75
+ * @memberof PayoutMethodClass
76
+ */
77
+ 'billingAddressId': number;
78
+ /**
79
+ * Unique identifier of the account that this object belongs to.
80
+ * @type {string}
81
+ * @memberof PayoutMethodClass
82
+ */
83
+ 'accountCode': string;
84
+ /**
85
+ * Unique identifier of the partner that this object belongs to.
86
+ * @type {string}
87
+ * @memberof PayoutMethodClass
88
+ */
89
+ 'partnerCode': string;
90
+ /**
91
+ * Billing address
92
+ * @type {BillingAddressClass}
93
+ * @memberof PayoutMethodClass
94
+ */
95
+ 'billingAddress'?: BillingAddressClass;
96
+ /**
97
+ * Time at which the object was created.
98
+ * @type {string}
99
+ * @memberof PayoutMethodClass
100
+ */
101
+ 'createdAt': string;
102
+ /**
103
+ * Time at which the object was updated.
104
+ * @type {string}
105
+ * @memberof PayoutMethodClass
106
+ */
107
+ 'updatedAt': string;
108
+ /**
109
+ * Identifier of the user who created the record.
110
+ * @type {string}
111
+ * @memberof PayoutMethodClass
112
+ */
113
+ 'createdBy': string;
114
+ /**
115
+ * Identifier of the user who last updated the record.
116
+ * @type {string}
117
+ * @memberof PayoutMethodClass
118
+ */
119
+ 'updatedBy': string;
120
+ }
121
+
@@ -62,17 +62,11 @@ export interface UpdateBillingAddressRequestDto {
62
62
  * @memberof UpdateBillingAddressRequestDto
63
63
  */
64
64
  'countryCode'?: string;
65
- /**
66
- * Unique identifier of the account that this object belongs to.
67
- * @type {string}
68
- * @memberof UpdateBillingAddressRequestDto
69
- */
70
- 'accountCode'?: string;
71
65
  /**
72
66
  * Unique identifier of the partner that this object belongs to.
73
67
  * @type {string}
74
68
  * @memberof UpdateBillingAddressRequestDto
75
69
  */
76
- 'partnerCode'?: string;
70
+ 'partnerCode': string;
77
71
  }
78
72
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@emilgroup/payment-sdk",
3
- "version": "1.14.1-beta.58",
3
+ "version": "1.14.1-beta.59",
4
4
  "description": "OpenAPI client for @emilgroup/payment-sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "keywords": [