@emilgroup/payment-sdk-node 1.23.1-beta.2 → 1.23.1-beta.21

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 (45) hide show
  1. package/.openapi-generator/FILES +12 -0
  2. package/README.md +2 -2
  3. package/api/ibanvalidator-api.ts +169 -0
  4. package/api/payment-requests-api.ts +697 -0
  5. package/api.ts +4 -0
  6. package/dist/api/ibanvalidator-api.d.ts +97 -0
  7. package/dist/api/ibanvalidator-api.js +228 -0
  8. package/dist/api/payment-requests-api.d.ts +393 -0
  9. package/dist/api/payment-requests-api.js +648 -0
  10. package/dist/api.d.ts +2 -0
  11. package/dist/api.js +2 -0
  12. package/dist/models/bank-data-class.d.ts +36 -0
  13. package/dist/models/bank-data-class.js +15 -0
  14. package/dist/models/create-payment-request-request-dto.d.ts +103 -0
  15. package/dist/models/create-payment-request-request-dto.js +32 -0
  16. package/dist/models/create-payment-request-response-class.d.ts +25 -0
  17. package/dist/models/create-payment-request-response-class.js +15 -0
  18. package/dist/models/get-payment-request-response-class.d.ts +25 -0
  19. package/dist/models/get-payment-request-response-class.js +15 -0
  20. package/dist/models/index.d.ts +10 -0
  21. package/dist/models/index.js +10 -0
  22. package/dist/models/list-payment-requests-response-class.d.ts +31 -0
  23. package/dist/models/list-payment-requests-response-class.js +15 -0
  24. package/dist/models/payment-request-class.d.ts +148 -0
  25. package/dist/models/payment-request-class.js +40 -0
  26. package/dist/models/update-payment-request-request-dto.d.ts +39 -0
  27. package/dist/models/update-payment-request-request-dto.js +24 -0
  28. package/dist/models/update-payment-request-response-class.d.ts +25 -0
  29. package/dist/models/update-payment-request-response-class.js +15 -0
  30. package/dist/models/validate-iban-request-dto.d.ts +24 -0
  31. package/dist/models/validate-iban-request-dto.js +15 -0
  32. package/dist/models/validate-iban-response-class.d.ts +31 -0
  33. package/dist/models/validate-iban-response-class.js +15 -0
  34. package/models/bank-data-class.ts +42 -0
  35. package/models/create-payment-request-request-dto.ts +114 -0
  36. package/models/create-payment-request-response-class.ts +31 -0
  37. package/models/get-payment-request-response-class.ts +31 -0
  38. package/models/index.ts +10 -0
  39. package/models/list-payment-requests-response-class.ts +37 -0
  40. package/models/payment-request-class.ts +160 -0
  41. package/models/update-payment-request-request-dto.ts +48 -0
  42. package/models/update-payment-request-response-class.ts +31 -0
  43. package/models/validate-iban-request-dto.ts +30 -0
  44. package/models/validate-iban-response-class.ts +37 -0
  45. package/package.json +1 -1
@@ -0,0 +1,48 @@
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
+
17
+ /**
18
+ *
19
+ * @export
20
+ * @interface UpdatePaymentRequestRequestDto
21
+ */
22
+ export interface UpdatePaymentRequestRequestDto {
23
+ /**
24
+ * Unique identifier for the object.
25
+ * @type {string}
26
+ * @memberof UpdatePaymentRequestRequestDto
27
+ */
28
+ 'code': string;
29
+ /**
30
+ * New status for the payment request. Valid statuses: open, approved, pending, succeeded, failed, withdrawn
31
+ * @type {string}
32
+ * @memberof UpdatePaymentRequestRequestDto
33
+ */
34
+ 'status': UpdatePaymentRequestRequestDtoStatusEnum;
35
+ }
36
+
37
+ export const UpdatePaymentRequestRequestDtoStatusEnum = {
38
+ Open: 'open',
39
+ Approved: 'approved',
40
+ Pending: 'pending',
41
+ Succeeded: 'succeeded',
42
+ Failed: 'failed',
43
+ Withdrawn: 'withdrawn'
44
+ } as const;
45
+
46
+ export type UpdatePaymentRequestRequestDtoStatusEnum = typeof UpdatePaymentRequestRequestDtoStatusEnum[keyof typeof UpdatePaymentRequestRequestDtoStatusEnum];
47
+
48
+
@@ -0,0 +1,31 @@
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 { PaymentRequestClass } from './payment-request-class';
17
+
18
+ /**
19
+ *
20
+ * @export
21
+ * @interface UpdatePaymentRequestResponseClass
22
+ */
23
+ export interface UpdatePaymentRequestResponseClass {
24
+ /**
25
+ * The updated payment request with the new status.
26
+ * @type {PaymentRequestClass}
27
+ * @memberof UpdatePaymentRequestResponseClass
28
+ */
29
+ 'paymentRequest': PaymentRequestClass;
30
+ }
31
+
@@ -0,0 +1,30 @@
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
+
17
+ /**
18
+ *
19
+ * @export
20
+ * @interface ValidateIbanRequestDto
21
+ */
22
+ export interface ValidateIbanRequestDto {
23
+ /**
24
+ * iban
25
+ * @type {string}
26
+ * @memberof ValidateIbanRequestDto
27
+ */
28
+ 'iban': string;
29
+ }
30
+
@@ -0,0 +1,37 @@
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 { BankDataClass } from './bank-data-class';
17
+
18
+ /**
19
+ *
20
+ * @export
21
+ * @interface ValidateIbanResponseClass
22
+ */
23
+ export interface ValidateIbanResponseClass {
24
+ /**
25
+ * valid
26
+ * @type {boolean}
27
+ * @memberof ValidateIbanResponseClass
28
+ */
29
+ 'valid': boolean;
30
+ /**
31
+ * bankData
32
+ * @type {BankDataClass}
33
+ * @memberof ValidateIbanResponseClass
34
+ */
35
+ 'bankData'?: BankDataClass;
36
+ }
37
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@emilgroup/payment-sdk-node",
3
- "version": "1.23.1-beta.2",
3
+ "version": "1.23.1-beta.21",
4
4
  "description": "OpenAPI client for @emilgroup/payment-sdk-node",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "keywords": [