@emilgroup/public-api-sdk-node 1.32.0 → 1.34.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.
- package/.openapi-generator/FILES +1 -0
- package/README.md +2 -2
- package/api/named-ranges-api.ts +20 -6
- package/api/product-versions-api.ts +284 -0
- package/api.ts +2 -0
- package/base.ts +1 -0
- package/dist/api/named-ranges-api.d.ts +12 -3
- package/dist/api/named-ranges-api.js +12 -6
- package/dist/api/product-versions-api.d.ts +161 -0
- package/dist/api/product-versions-api.js +327 -0
- package/dist/api.d.ts +1 -0
- package/dist/api.js +1 -0
- package/dist/base.d.ts +1 -0
- package/dist/base.js +1 -0
- package/dist/models/booking-funnel-class.d.ts +6 -0
- package/dist/models/complete-stripe-payment-setup-request-dto.d.ts +19 -0
- package/dist/models/link-lead-partner-request-dto.d.ts +14 -2
- package/dist/models/partner-role-class.d.ts +6 -0
- package/dist/models/payment-method-class.d.ts +6 -0
- package/dist/models/update-lead-request-dto.d.ts +1 -1
- package/models/booking-funnel-class.ts +6 -0
- package/models/complete-stripe-payment-setup-request-dto.ts +19 -0
- package/models/link-lead-partner-request-dto.ts +14 -2
- package/models/partner-role-class.ts +6 -0
- package/models/payment-method-class.ts +6 -0
- package/models/update-lead-request-dto.ts +1 -1
- package/package.json +1 -1
|
@@ -13,6 +13,7 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
|
|
16
|
+
import { SepaDirectDto } from './sepa-direct-dto';
|
|
16
17
|
|
|
17
18
|
/**
|
|
18
19
|
*
|
|
@@ -62,5 +63,23 @@ export interface CompleteStripePaymentSetupRequestDto {
|
|
|
62
63
|
* @memberof CompleteStripePaymentSetupRequestDto
|
|
63
64
|
*/
|
|
64
65
|
'leadCode'?: string;
|
|
66
|
+
/**
|
|
67
|
+
* The account\'s type.
|
|
68
|
+
* @type {string}
|
|
69
|
+
* @memberof CompleteStripePaymentSetupRequestDto
|
|
70
|
+
*/
|
|
71
|
+
'accountType'?: string;
|
|
72
|
+
/**
|
|
73
|
+
* The account\'s company name.
|
|
74
|
+
* @type {string}
|
|
75
|
+
* @memberof CompleteStripePaymentSetupRequestDto
|
|
76
|
+
*/
|
|
77
|
+
'companyName'?: string;
|
|
78
|
+
/**
|
|
79
|
+
* SEPA direct details
|
|
80
|
+
* @type {SepaDirectDto}
|
|
81
|
+
* @memberof CompleteStripePaymentSetupRequestDto
|
|
82
|
+
*/
|
|
83
|
+
'sepaDetails'?: SepaDirectDto;
|
|
65
84
|
}
|
|
66
85
|
|
|
@@ -25,13 +25,25 @@ export interface LinkLeadPartnerRequestDto {
|
|
|
25
25
|
* @type {string}
|
|
26
26
|
* @memberof LinkLeadPartnerRequestDto
|
|
27
27
|
*/
|
|
28
|
-
'partnerCode'
|
|
28
|
+
'partnerCode'?: string;
|
|
29
|
+
/**
|
|
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
|
+
* @type {string}
|
|
32
|
+
* @memberof LinkLeadPartnerRequestDto
|
|
33
|
+
*/
|
|
34
|
+
'partnerNumber'?: string;
|
|
29
35
|
/**
|
|
30
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).
|
|
31
37
|
* @type {string}
|
|
32
38
|
* @memberof LinkLeadPartnerRequestDto
|
|
33
39
|
*/
|
|
34
|
-
'partnerRoleCode'
|
|
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}
|
|
@@ -86,5 +86,11 @@ export interface PaymentMethodClass {
|
|
|
86
86
|
* @memberof PaymentMethodClass
|
|
87
87
|
*/
|
|
88
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;
|
|
89
95
|
}
|
|
90
96
|
|
|
@@ -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
|
*/
|