@emilgroup/public-api-sdk 1.29.0 → 1.31.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 (48) hide show
  1. package/.openapi-generator/FILES +6 -0
  2. package/README.md +2 -2
  3. package/api/named-ranges-api.ts +20 -6
  4. package/api/product-versions-api.ts +280 -0
  5. package/api.ts +2 -0
  6. package/dist/api/named-ranges-api.d.ts +12 -3
  7. package/dist/api/named-ranges-api.js +12 -6
  8. package/dist/api/product-versions-api.d.ts +161 -0
  9. package/dist/api/product-versions-api.js +323 -0
  10. package/dist/api.d.ts +1 -0
  11. package/dist/api.js +1 -0
  12. package/dist/models/booking-funnel-class.d.ts +6 -0
  13. package/dist/models/card-details-dto.d.ts +42 -0
  14. package/dist/models/card-details-dto.js +15 -0
  15. package/dist/models/complete-adyen-payment-setup-request-dto.d.ts +80 -0
  16. package/dist/models/complete-adyen-payment-setup-request-dto.js +15 -0
  17. package/dist/models/complete-payment-setup-request-dto.d.ts +7 -0
  18. package/dist/models/complete-stripe-payment-setup-request-dto.d.ts +19 -0
  19. package/dist/models/index.d.ts +5 -0
  20. package/dist/models/index.js +5 -0
  21. package/dist/models/initiate-adyen-payment-setup-request-dto.d.ts +30 -0
  22. package/dist/models/initiate-adyen-payment-setup-request-dto.js +15 -0
  23. package/dist/models/initiate-adyen-payment-setup-response-class.d.ts +42 -0
  24. package/dist/models/initiate-adyen-payment-setup-response-class.js +15 -0
  25. package/dist/models/initiate-payment-setup-request-dto.d.ts +7 -0
  26. package/dist/models/initiate-payment-setup-response-class.d.ts +7 -0
  27. package/dist/models/link-lead-partner-request-dto.d.ts +16 -4
  28. package/dist/models/partner-role-class.d.ts +6 -0
  29. package/dist/models/payment-method-class.d.ts +30 -0
  30. package/dist/models/sepa-direct-dto.d.ts +24 -0
  31. package/dist/models/sepa-direct-dto.js +15 -0
  32. package/dist/models/update-lead-request-dto.d.ts +1 -1
  33. package/models/booking-funnel-class.ts +6 -0
  34. package/models/card-details-dto.ts +48 -0
  35. package/models/complete-adyen-payment-setup-request-dto.ts +86 -0
  36. package/models/complete-payment-setup-request-dto.ts +7 -0
  37. package/models/complete-stripe-payment-setup-request-dto.ts +19 -0
  38. package/models/index.ts +5 -0
  39. package/models/initiate-adyen-payment-setup-request-dto.ts +36 -0
  40. package/models/initiate-adyen-payment-setup-response-class.ts +48 -0
  41. package/models/initiate-payment-setup-request-dto.ts +7 -0
  42. package/models/initiate-payment-setup-response-class.ts +7 -0
  43. package/models/link-lead-partner-request-dto.ts +16 -4
  44. package/models/partner-role-class.ts +6 -0
  45. package/models/payment-method-class.ts +30 -0
  46. package/models/sepa-direct-dto.ts +30 -0
  47. package/models/update-lead-request-dto.ts +1 -1
  48. package/package.json +1 -1
@@ -0,0 +1,48 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Emil PublicAPI
5
+ * The Emil Public API description
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 InitiateAdyenPaymentSetupResponseClass
21
+ */
22
+ export interface InitiateAdyenPaymentSetupResponseClass {
23
+ /**
24
+ * The client key associated with the Adyen account.
25
+ * @type {string}
26
+ * @memberof InitiateAdyenPaymentSetupResponseClass
27
+ */
28
+ 'clientKey': string;
29
+ /**
30
+ * A unique reference for the shopper.
31
+ * @type {string}
32
+ * @memberof InitiateAdyenPaymentSetupResponseClass
33
+ */
34
+ 'shopperReference': string;
35
+ /**
36
+ * The environment in which the payment request is being made (e.g., \"TEST\" or \"LIVE\").
37
+ * @type {string}
38
+ * @memberof InitiateAdyenPaymentSetupResponseClass
39
+ */
40
+ 'environment': string;
41
+ /**
42
+ * The country code associated with the shopper\'s payment details.
43
+ * @type {string}
44
+ * @memberof InitiateAdyenPaymentSetupResponseClass
45
+ */
46
+ 'country'?: string;
47
+ }
48
+
@@ -13,6 +13,7 @@
13
13
  */
14
14
 
15
15
 
16
+ import { InitiateAdyenPaymentSetupRequestDto } from './initiate-adyen-payment-setup-request-dto';
16
17
  import { InitiateBraintreePaymentSetupRequestDto } from './initiate-braintree-payment-setup-request-dto';
17
18
  import { InitiateStripePaymentSetupRequestDto } from './initiate-stripe-payment-setup-request-dto';
18
19
 
@@ -40,5 +41,11 @@ export interface InitiatePaymentSetupRequestDto {
40
41
  * @memberof InitiatePaymentSetupRequestDto
41
42
  */
42
43
  'productSlug'?: string;
44
+ /**
45
+ *
46
+ * @type {InitiateAdyenPaymentSetupRequestDto}
47
+ * @memberof InitiatePaymentSetupRequestDto
48
+ */
49
+ 'adyen'?: InitiateAdyenPaymentSetupRequestDto;
43
50
  }
44
51
 
@@ -13,6 +13,7 @@
13
13
  */
14
14
 
15
15
 
16
+ import { InitiateAdyenPaymentSetupResponseClass } from './initiate-adyen-payment-setup-response-class';
16
17
  import { InitiateBraintreePaymentSetupResponseClass } from './initiate-braintree-payment-setup-response-class';
17
18
  import { InitiateStripePaymentSetupResponseClass } from './initiate-stripe-payment-setup-response-class';
18
19
 
@@ -34,5 +35,11 @@ export interface InitiatePaymentSetupResponseClass {
34
35
  * @memberof InitiatePaymentSetupResponseClass
35
36
  */
36
37
  'braintree': InitiateBraintreePaymentSetupResponseClass;
38
+ /**
39
+ * The Adyen response after initiating the payment setup.
40
+ * @type {InitiateAdyenPaymentSetupResponseClass}
41
+ * @memberof InitiatePaymentSetupResponseClass
42
+ */
43
+ 'adyen': InitiateAdyenPaymentSetupResponseClass;
37
44
  }
38
45
 
@@ -21,17 +21,29 @@
21
21
  */
22
22
  export interface LinkLeadPartnerRequestDto {
23
23
  /**
24
- * The code of the partner with which the lead will be linked.
24
+ * The code of the partner with which the lead will be linked. Either this field or \'partnerNumber\' must be passed (\'partnerNumber\' is preferred).
25
25
  * @type {string}
26
26
  * @memberof LinkLeadPartnerRequestDto
27
27
  */
28
- 'partnerCode': string;
28
+ 'partnerCode'?: string;
29
29
  /**
30
- * The code of role that the partner will have in the established link between the lead and the partner.
30
+ * The number of the partner with which the lead will be linked. Either this field or \'partnerCode\' must be passed (this is preferred).
31
31
  * @type {string}
32
32
  * @memberof LinkLeadPartnerRequestDto
33
33
  */
34
- 'partnerRoleCode': string;
34
+ 'partnerNumber'?: string;
35
+ /**
36
+ * The code of role that the partner will have in the established link between the lead and the partner. Either this field or \'partnerRoleSlug\' must be passed (\'partnerRoleSlug\' is preferred).
37
+ * @type {string}
38
+ * @memberof LinkLeadPartnerRequestDto
39
+ */
40
+ 'partnerRoleCode'?: string;
41
+ /**
42
+ * The slug of role that the partner will have in the established link between the lead and the partner. Either this field or \'partnerRoleCode\' must be passed (this is preferred).
43
+ * @type {string}
44
+ * @memberof LinkLeadPartnerRequestDto
45
+ */
46
+ 'partnerRoleSlug'?: string;
35
47
  /**
36
48
  * The date of the start of linking with a partner.
37
49
  * @type {string}
@@ -38,6 +38,12 @@ export interface PartnerRoleClass {
38
38
  * @memberof PartnerRoleClass
39
39
  */
40
40
  'name': string;
41
+ /**
42
+ * A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
43
+ * @type {string}
44
+ * @memberof PartnerRoleClass
45
+ */
46
+ 'slug': string;
41
47
  /**
42
48
  * A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
43
49
  * @type {string}
@@ -62,5 +62,35 @@ export interface PaymentMethodClass {
62
62
  * @memberof PaymentMethodClass
63
63
  */
64
64
  'createdAt': string;
65
+ /**
66
+ * Identifier of the user who created the record.
67
+ * @type {string}
68
+ * @memberof PaymentMethodClass
69
+ */
70
+ 'createdBy': string;
71
+ /**
72
+ * Identifier of the user who last updated the record.
73
+ * @type {string}
74
+ * @memberof PaymentMethodClass
75
+ */
76
+ 'updatedBy': string;
77
+ /**
78
+ * A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
79
+ * @type {string}
80
+ * @memberof PaymentMethodClass
81
+ */
82
+ 'productSlug'?: string;
83
+ /**
84
+ * Optional field contain extra information.
85
+ * @type {object}
86
+ * @memberof PaymentMethodClass
87
+ */
88
+ 'metadata'?: object;
89
+ /**
90
+ * Payment data details. Stored only for some payment method types.
91
+ * @type {object}
92
+ * @memberof PaymentMethodClass
93
+ */
94
+ 'details'?: object;
65
95
  }
66
96
 
@@ -0,0 +1,30 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Emil PublicAPI
5
+ * The Emil Public API description
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 SepaDirectDto
21
+ */
22
+ export interface SepaDirectDto {
23
+ /**
24
+ *
25
+ * @type {string}
26
+ * @memberof SepaDirectDto
27
+ */
28
+ 'iban': string;
29
+ }
30
+
@@ -99,7 +99,7 @@ export interface UpdateLeadRequestDto {
99
99
  */
100
100
  'validate'?: boolean;
101
101
  /**
102
- *
102
+ * Optional partner object contains necessary information to link a partner to the policy. The partner content will be validated if the \'validate\' flag is set to true.
103
103
  * @type {LinkLeadPartnerRequestDto}
104
104
  * @memberof UpdateLeadRequestDto
105
105
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@emilgroup/public-api-sdk",
3
- "version": "1.29.0",
3
+ "version": "1.31.0",
4
4
  "description": "OpenAPI client for @emilgroup/public-api-sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "keywords": [