@emilgroup/public-api-sdk-node 1.0.1 → 1.0.2
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 +5 -1
- package/api/notifications-api.ts +163 -0
- package/api/products-api.ts +135 -20
- package/api.ts +2 -0
- package/dist/api/notifications-api.d.ts +92 -0
- package/dist/api/notifications-api.js +224 -0
- package/dist/api/products-api.d.ts +72 -11
- package/dist/api/products-api.js +114 -18
- package/dist/api.d.ts +1 -0
- package/dist/api.js +1 -0
- package/dist/models/create-account-request-dto.d.ts +12 -0
- package/dist/models/create-custom-application-request-dto.d.ts +1 -0
- package/dist/models/create-custom-application-request-dto.js +2 -1
- package/dist/models/create-estimated-invoice-request-dto.d.ts +14 -6
- package/dist/models/create-estimated-invoice-request-dto.js +2 -1
- package/dist/models/create-lead-request-dto.d.ts +7 -0
- package/dist/models/index.d.ts +4 -0
- package/dist/models/index.js +4 -0
- package/dist/models/premium-override-dto.d.ts +53 -0
- package/dist/models/premium-override-dto.js +25 -0
- package/dist/models/premium-override-request-dto.d.ts +25 -0
- package/dist/models/premium-override-request-dto.js +15 -0
- package/dist/models/send-notification-request-dto.d.ts +36 -0
- package/dist/models/send-notification-request-dto.js +15 -0
- package/dist/models/update-lead-request-dto.d.ts +84 -0
- package/dist/models/update-lead-request-dto.js +22 -0
- package/models/create-account-request-dto.ts +12 -0
- package/models/create-custom-application-request-dto.ts +2 -1
- package/models/create-estimated-invoice-request-dto.ts +15 -7
- package/models/create-lead-request-dto.ts +7 -0
- package/models/index.ts +4 -0
- package/models/premium-override-dto.ts +63 -0
- package/models/premium-override-request-dto.ts +31 -0
- package/models/send-notification-request-dto.ts +42 -0
- package/models/update-lead-request-dto.ts +93 -0
- package/package.json +1 -1
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* EMIL PublicAPI
|
|
3
|
+
* The EMIL Public API description
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import { CreateAccountRequestDto } from './create-account-request-dto';
|
|
13
|
+
import { CreateBankAccountRequestDto } from './create-bank-account-request-dto';
|
|
14
|
+
import { PolicyObjectRequestDto } from './policy-object-request-dto';
|
|
15
|
+
import { PremiumOverrideRequestDto } from './premium-override-request-dto';
|
|
16
|
+
import { UploadedDocumentDto } from './uploaded-document-dto';
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface UpdateLeadRequestDto
|
|
21
|
+
*/
|
|
22
|
+
export interface UpdateLeadRequestDto {
|
|
23
|
+
/**
|
|
24
|
+
* Lead code
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof UpdateLeadRequestDto
|
|
27
|
+
*/
|
|
28
|
+
'code': string;
|
|
29
|
+
/**
|
|
30
|
+
* Product code
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof UpdateLeadRequestDto
|
|
33
|
+
*/
|
|
34
|
+
'productCode': string;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {Array<PolicyObjectRequestDto>}
|
|
38
|
+
* @memberof UpdateLeadRequestDto
|
|
39
|
+
*/
|
|
40
|
+
'policyObjects': Array<PolicyObjectRequestDto>;
|
|
41
|
+
/**
|
|
42
|
+
* Bank account details
|
|
43
|
+
* @type {CreateBankAccountRequestDto}
|
|
44
|
+
* @memberof UpdateLeadRequestDto
|
|
45
|
+
*/
|
|
46
|
+
'bankAccount'?: CreateBankAccountRequestDto;
|
|
47
|
+
/**
|
|
48
|
+
* Premium Override
|
|
49
|
+
* @type {Array<PremiumOverrideRequestDto>}
|
|
50
|
+
* @memberof UpdateLeadRequestDto
|
|
51
|
+
*/
|
|
52
|
+
'premiumOverride'?: Array<PremiumOverrideRequestDto>;
|
|
53
|
+
/**
|
|
54
|
+
*
|
|
55
|
+
* @type {CreateAccountRequestDto}
|
|
56
|
+
* @memberof UpdateLeadRequestDto
|
|
57
|
+
*/
|
|
58
|
+
'account': CreateAccountRequestDto;
|
|
59
|
+
/**
|
|
60
|
+
*
|
|
61
|
+
* @type {object}
|
|
62
|
+
* @memberof UpdateLeadRequestDto
|
|
63
|
+
*/
|
|
64
|
+
'customData'?: object;
|
|
65
|
+
/**
|
|
66
|
+
*
|
|
67
|
+
* @type {UploadedDocumentDto}
|
|
68
|
+
* @memberof UpdateLeadRequestDto
|
|
69
|
+
*/
|
|
70
|
+
'uploadedDocument'?: UploadedDocumentDto;
|
|
71
|
+
/**
|
|
72
|
+
*
|
|
73
|
+
* @type {string}
|
|
74
|
+
* @memberof UpdateLeadRequestDto
|
|
75
|
+
*/
|
|
76
|
+
'status'?: UpdateLeadRequestDtoStatusEnum;
|
|
77
|
+
}
|
|
78
|
+
export declare const UpdateLeadRequestDtoStatusEnum: {
|
|
79
|
+
readonly Created: "created";
|
|
80
|
+
readonly Approved: "approved";
|
|
81
|
+
readonly Activated: "activated";
|
|
82
|
+
readonly Declined: "declined";
|
|
83
|
+
};
|
|
84
|
+
export declare type UpdateLeadRequestDtoStatusEnum = typeof UpdateLeadRequestDtoStatusEnum[keyof typeof UpdateLeadRequestDtoStatusEnum];
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* EMIL PublicAPI
|
|
6
|
+
* The EMIL Public API description
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.UpdateLeadRequestDtoStatusEnum = void 0;
|
|
17
|
+
exports.UpdateLeadRequestDtoStatusEnum = {
|
|
18
|
+
Created: 'created',
|
|
19
|
+
Approved: 'approved',
|
|
20
|
+
Activated: 'activated',
|
|
21
|
+
Declined: 'declined'
|
|
22
|
+
};
|
|
@@ -86,6 +86,18 @@ export interface CreateAccountRequestDto {
|
|
|
86
86
|
* @memberof CreateAccountRequestDto
|
|
87
87
|
*/
|
|
88
88
|
'accountNumber': string;
|
|
89
|
+
/**
|
|
90
|
+
*
|
|
91
|
+
* @type {object}
|
|
92
|
+
* @memberof CreateAccountRequestDto
|
|
93
|
+
*/
|
|
94
|
+
'customFields'?: object;
|
|
95
|
+
/**
|
|
96
|
+
*
|
|
97
|
+
* @type {object}
|
|
98
|
+
* @memberof CreateAccountRequestDto
|
|
99
|
+
*/
|
|
100
|
+
'metadata'?: object;
|
|
89
101
|
}
|
|
90
102
|
|
|
91
103
|
export const CreateAccountRequestDtoGenderEnum = {
|
|
@@ -35,7 +35,8 @@ export interface CreateCustomApplicationRequestDto {
|
|
|
35
35
|
}
|
|
36
36
|
|
|
37
37
|
export const CreateCustomApplicationRequestDtoProviderEnum = {
|
|
38
|
-
Squarelife: 'squarelife'
|
|
38
|
+
Squarelife: 'squarelife',
|
|
39
|
+
Janitos: 'janitos'
|
|
39
40
|
} as const;
|
|
40
41
|
|
|
41
42
|
export type CreateCustomApplicationRequestDtoProviderEnum = typeof CreateCustomApplicationRequestDtoProviderEnum[keyof typeof CreateCustomApplicationRequestDtoProviderEnum];
|
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
import { PolicyObjectRequestDto } from './policy-object-request-dto';
|
|
17
|
+
import { PremiumOverrideRequestDto } from './premium-override-request-dto';
|
|
17
18
|
|
|
18
19
|
/**
|
|
19
20
|
*
|
|
@@ -22,27 +23,34 @@ import { PolicyObjectRequestDto } from './policy-object-request-dto';
|
|
|
22
23
|
*/
|
|
23
24
|
export interface CreateEstimatedInvoiceRequestDto {
|
|
24
25
|
/**
|
|
25
|
-
*
|
|
26
|
+
* Policy objects describe all parts of the policy via insured objects and according data.
|
|
26
27
|
* @type {Array<PolicyObjectRequestDto>}
|
|
27
28
|
* @memberof CreateEstimatedInvoiceRequestDto
|
|
28
29
|
*/
|
|
29
|
-
'policyObjects'
|
|
30
|
+
'policyObjects'?: Array<PolicyObjectRequestDto>;
|
|
30
31
|
/**
|
|
31
|
-
* Customer data
|
|
32
|
+
* Customer data. Has to be present if policyObjects is defined.
|
|
32
33
|
* @type {object}
|
|
33
34
|
* @memberof CreateEstimatedInvoiceRequestDto
|
|
34
35
|
*/
|
|
35
|
-
'data'
|
|
36
|
+
'data'?: object;
|
|
36
37
|
/**
|
|
37
|
-
*
|
|
38
|
+
* Insurance provider name. Has to be set if data is defined.
|
|
38
39
|
* @type {string}
|
|
39
40
|
* @memberof CreateEstimatedInvoiceRequestDto
|
|
40
41
|
*/
|
|
41
|
-
'provider'
|
|
42
|
+
'provider'?: CreateEstimatedInvoiceRequestDtoProviderEnum;
|
|
43
|
+
/**
|
|
44
|
+
* Premium Override
|
|
45
|
+
* @type {Array<PremiumOverrideRequestDto>}
|
|
46
|
+
* @memberof CreateEstimatedInvoiceRequestDto
|
|
47
|
+
*/
|
|
48
|
+
'premiumOverride'?: Array<PremiumOverrideRequestDto>;
|
|
42
49
|
}
|
|
43
50
|
|
|
44
51
|
export const CreateEstimatedInvoiceRequestDtoProviderEnum = {
|
|
45
|
-
Squarelife: 'squarelife'
|
|
52
|
+
Squarelife: 'squarelife',
|
|
53
|
+
Janitos: 'janitos'
|
|
46
54
|
} as const;
|
|
47
55
|
|
|
48
56
|
export type CreateEstimatedInvoiceRequestDtoProviderEnum = typeof CreateEstimatedInvoiceRequestDtoProviderEnum[keyof typeof CreateEstimatedInvoiceRequestDtoProviderEnum];
|
|
@@ -16,6 +16,7 @@
|
|
|
16
16
|
import { CreateAccountRequestDto } from './create-account-request-dto';
|
|
17
17
|
import { CreateBankAccountRequestDto } from './create-bank-account-request-dto';
|
|
18
18
|
import { PolicyObjectRequestDto } from './policy-object-request-dto';
|
|
19
|
+
import { PremiumOverrideRequestDto } from './premium-override-request-dto';
|
|
19
20
|
import { UploadedDocumentDto } from './uploaded-document-dto';
|
|
20
21
|
|
|
21
22
|
/**
|
|
@@ -48,6 +49,12 @@ export interface CreateLeadRequestDto {
|
|
|
48
49
|
* @memberof CreateLeadRequestDto
|
|
49
50
|
*/
|
|
50
51
|
'bankAccount'?: CreateBankAccountRequestDto;
|
|
52
|
+
/**
|
|
53
|
+
* Premium Override
|
|
54
|
+
* @type {Array<PremiumOverrideRequestDto>}
|
|
55
|
+
* @memberof CreateLeadRequestDto
|
|
56
|
+
*/
|
|
57
|
+
'premiumOverride'?: Array<PremiumOverrideRequestDto>;
|
|
51
58
|
/**
|
|
52
59
|
*
|
|
53
60
|
* @type {CreateAccountRequestDto}
|
package/models/index.ts
CHANGED
|
@@ -11,4 +11,8 @@ export * from './initiate-braintree-payment-setup-request-dto';
|
|
|
11
11
|
export * from './initiate-payment-setup-request-dto';
|
|
12
12
|
export * from './initiate-stripe-payment-setup-request-dto';
|
|
13
13
|
export * from './policy-object-request-dto';
|
|
14
|
+
export * from './premium-override-dto';
|
|
15
|
+
export * from './premium-override-request-dto';
|
|
16
|
+
export * from './send-notification-request-dto';
|
|
17
|
+
export * from './update-lead-request-dto';
|
|
14
18
|
export * from './uploaded-document-dto';
|
|
@@ -0,0 +1,63 @@
|
|
|
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
|
+
*
|
|
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 PremiumOverrideDto
|
|
21
|
+
*/
|
|
22
|
+
export interface PremiumOverrideDto {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof PremiumOverrideDto
|
|
27
|
+
*/
|
|
28
|
+
'name': string;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof PremiumOverrideDto
|
|
33
|
+
*/
|
|
34
|
+
'type': PremiumOverrideDtoTypeEnum;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof PremiumOverrideDto
|
|
39
|
+
*/
|
|
40
|
+
'unit': PremiumOverrideDtoUnitEnum;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {number}
|
|
44
|
+
* @memberof PremiumOverrideDto
|
|
45
|
+
*/
|
|
46
|
+
'netPremium': number;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
export const PremiumOverrideDtoTypeEnum = {
|
|
50
|
+
Time: 'time'
|
|
51
|
+
} as const;
|
|
52
|
+
|
|
53
|
+
export type PremiumOverrideDtoTypeEnum = typeof PremiumOverrideDtoTypeEnum[keyof typeof PremiumOverrideDtoTypeEnum];
|
|
54
|
+
export const PremiumOverrideDtoUnitEnum = {
|
|
55
|
+
Day: 'day',
|
|
56
|
+
Week: 'week',
|
|
57
|
+
Month: 'month',
|
|
58
|
+
Year: 'year'
|
|
59
|
+
} as const;
|
|
60
|
+
|
|
61
|
+
export type PremiumOverrideDtoUnitEnum = typeof PremiumOverrideDtoUnitEnum[keyof typeof PremiumOverrideDtoUnitEnum];
|
|
62
|
+
|
|
63
|
+
|
|
@@ -0,0 +1,31 @@
|
|
|
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
|
+
*
|
|
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 { PremiumOverrideDto } from './premium-override-dto';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface PremiumOverrideRequestDto
|
|
22
|
+
*/
|
|
23
|
+
export interface PremiumOverrideRequestDto {
|
|
24
|
+
/**
|
|
25
|
+
* Premium Override
|
|
26
|
+
* @type {Array<PremiumOverrideDto>}
|
|
27
|
+
* @memberof PremiumOverrideRequestDto
|
|
28
|
+
*/
|
|
29
|
+
'premiumOverrides': Array<PremiumOverrideDto>;
|
|
30
|
+
}
|
|
31
|
+
|
|
@@ -0,0 +1,42 @@
|
|
|
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
|
+
*
|
|
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 SendNotificationRequestDto
|
|
21
|
+
*/
|
|
22
|
+
export interface SendNotificationRequestDto {
|
|
23
|
+
/**
|
|
24
|
+
* Unique identifying slug from template to be used for the email
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof SendNotificationRequestDto
|
|
27
|
+
*/
|
|
28
|
+
'templateSlug': string;
|
|
29
|
+
/**
|
|
30
|
+
* Subject of the email
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof SendNotificationRequestDto
|
|
33
|
+
*/
|
|
34
|
+
'emailSubject'?: string;
|
|
35
|
+
/**
|
|
36
|
+
* Payload is used by the template engine to replace all template variables with proper data. For more information, please go to https://github.com/flosch/pongo2.
|
|
37
|
+
* @type {object}
|
|
38
|
+
* @memberof SendNotificationRequestDto
|
|
39
|
+
*/
|
|
40
|
+
'payload'?: object;
|
|
41
|
+
}
|
|
42
|
+
|
|
@@ -0,0 +1,93 @@
|
|
|
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
|
+
*
|
|
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 { CreateAccountRequestDto } from './create-account-request-dto';
|
|
17
|
+
import { CreateBankAccountRequestDto } from './create-bank-account-request-dto';
|
|
18
|
+
import { PolicyObjectRequestDto } from './policy-object-request-dto';
|
|
19
|
+
import { PremiumOverrideRequestDto } from './premium-override-request-dto';
|
|
20
|
+
import { UploadedDocumentDto } from './uploaded-document-dto';
|
|
21
|
+
|
|
22
|
+
/**
|
|
23
|
+
*
|
|
24
|
+
* @export
|
|
25
|
+
* @interface UpdateLeadRequestDto
|
|
26
|
+
*/
|
|
27
|
+
export interface UpdateLeadRequestDto {
|
|
28
|
+
/**
|
|
29
|
+
* Lead code
|
|
30
|
+
* @type {string}
|
|
31
|
+
* @memberof UpdateLeadRequestDto
|
|
32
|
+
*/
|
|
33
|
+
'code': string;
|
|
34
|
+
/**
|
|
35
|
+
* Product code
|
|
36
|
+
* @type {string}
|
|
37
|
+
* @memberof UpdateLeadRequestDto
|
|
38
|
+
*/
|
|
39
|
+
'productCode': string;
|
|
40
|
+
/**
|
|
41
|
+
*
|
|
42
|
+
* @type {Array<PolicyObjectRequestDto>}
|
|
43
|
+
* @memberof UpdateLeadRequestDto
|
|
44
|
+
*/
|
|
45
|
+
'policyObjects': Array<PolicyObjectRequestDto>;
|
|
46
|
+
/**
|
|
47
|
+
* Bank account details
|
|
48
|
+
* @type {CreateBankAccountRequestDto}
|
|
49
|
+
* @memberof UpdateLeadRequestDto
|
|
50
|
+
*/
|
|
51
|
+
'bankAccount'?: CreateBankAccountRequestDto;
|
|
52
|
+
/**
|
|
53
|
+
* Premium Override
|
|
54
|
+
* @type {Array<PremiumOverrideRequestDto>}
|
|
55
|
+
* @memberof UpdateLeadRequestDto
|
|
56
|
+
*/
|
|
57
|
+
'premiumOverride'?: Array<PremiumOverrideRequestDto>;
|
|
58
|
+
/**
|
|
59
|
+
*
|
|
60
|
+
* @type {CreateAccountRequestDto}
|
|
61
|
+
* @memberof UpdateLeadRequestDto
|
|
62
|
+
*/
|
|
63
|
+
'account': CreateAccountRequestDto;
|
|
64
|
+
/**
|
|
65
|
+
*
|
|
66
|
+
* @type {object}
|
|
67
|
+
* @memberof UpdateLeadRequestDto
|
|
68
|
+
*/
|
|
69
|
+
'customData'?: object;
|
|
70
|
+
/**
|
|
71
|
+
*
|
|
72
|
+
* @type {UploadedDocumentDto}
|
|
73
|
+
* @memberof UpdateLeadRequestDto
|
|
74
|
+
*/
|
|
75
|
+
'uploadedDocument'?: UploadedDocumentDto;
|
|
76
|
+
/**
|
|
77
|
+
*
|
|
78
|
+
* @type {string}
|
|
79
|
+
* @memberof UpdateLeadRequestDto
|
|
80
|
+
*/
|
|
81
|
+
'status'?: UpdateLeadRequestDtoStatusEnum;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
export const UpdateLeadRequestDtoStatusEnum = {
|
|
85
|
+
Created: 'created',
|
|
86
|
+
Approved: 'approved',
|
|
87
|
+
Activated: 'activated',
|
|
88
|
+
Declined: 'declined'
|
|
89
|
+
} as const;
|
|
90
|
+
|
|
91
|
+
export type UpdateLeadRequestDtoStatusEnum = typeof UpdateLeadRequestDtoStatusEnum[keyof typeof UpdateLeadRequestDtoStatusEnum];
|
|
92
|
+
|
|
93
|
+
|