@emilgroup/claim-sdk-node 1.22.0 → 1.22.1-beta.1
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/README.md +2 -2
- package/api/claim-partner-roles-api.ts +8 -8
- package/api/claim-partners-api.ts +4 -4
- package/api/claim-regulations-api.ts +8 -8
- package/api/claim-statuses-api.ts +4 -4
- package/api/claims-api.ts +4 -4
- package/api/settlements-api.ts +8 -8
- package/dist/api/claim-partner-roles-api.d.ts +8 -8
- package/dist/api/claim-partner-roles-api.js +7 -7
- package/dist/api/claim-partners-api.d.ts +4 -4
- package/dist/api/claim-partners-api.js +3 -3
- package/dist/api/claim-regulations-api.d.ts +8 -8
- package/dist/api/claim-regulations-api.js +7 -7
- package/dist/api/claim-statuses-api.d.ts +4 -4
- package/dist/api/claim-statuses-api.js +3 -3
- package/dist/api/claims-api.d.ts +4 -4
- package/dist/api/claims-api.js +3 -3
- package/dist/api/settlements-api.d.ts +8 -8
- package/dist/api/settlements-api.js +7 -7
- package/dist/models/claim-class.d.ts +12 -0
- package/dist/models/claim-partner-class.d.ts +12 -0
- package/dist/models/claim-partner-role-class.d.ts +12 -0
- package/dist/models/claim-status-class.d.ts +12 -0
- package/dist/models/payout-details-class.d.ts +12 -0
- package/dist/models/regress-details-class.d.ts +12 -0
- package/dist/models/regulation-item-class.d.ts +12 -6
- package/dist/models/reserve-details-class.d.ts +12 -0
- package/dist/models/settlement-class.d.ts +12 -0
- package/models/claim-class.ts +12 -0
- package/models/claim-partner-class.ts +12 -0
- package/models/claim-partner-role-class.ts +12 -0
- package/models/claim-status-class.ts +12 -0
- package/models/payout-details-class.ts +12 -0
- package/models/regress-details-class.ts +12 -0
- package/models/regulation-item-class.ts +12 -6
- package/models/reserve-details-class.ts +12 -0
- package/models/settlement-class.ts +12 -0
- package/package.json +1 -1
|
@@ -52,6 +52,18 @@ export interface ClaimPartnerClass {
|
|
|
52
52
|
* @memberof ClaimPartnerClass
|
|
53
53
|
*/
|
|
54
54
|
'updatedAt': string;
|
|
55
|
+
/**
|
|
56
|
+
* Identifier of the user who created the record.
|
|
57
|
+
* @type {string}
|
|
58
|
+
* @memberof ClaimPartnerClass
|
|
59
|
+
*/
|
|
60
|
+
'createdBy': string;
|
|
61
|
+
/**
|
|
62
|
+
* Identifier of the user who last updated the record.
|
|
63
|
+
* @type {string}
|
|
64
|
+
* @memberof ClaimPartnerClass
|
|
65
|
+
*/
|
|
66
|
+
'updatedBy': string;
|
|
55
67
|
/**
|
|
56
68
|
* Claim partner role in the relationship.
|
|
57
69
|
* @type {ClaimPartnerRoleClass}
|
|
@@ -51,4 +51,16 @@ export interface ClaimPartnerRoleClass {
|
|
|
51
51
|
* @memberof ClaimPartnerRoleClass
|
|
52
52
|
*/
|
|
53
53
|
'updatedAt': string;
|
|
54
|
+
/**
|
|
55
|
+
* Identifier of the user who created the record.
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof ClaimPartnerRoleClass
|
|
58
|
+
*/
|
|
59
|
+
'createdBy': string;
|
|
60
|
+
/**
|
|
61
|
+
* Identifier of the user who last updated the record.
|
|
62
|
+
* @type {string}
|
|
63
|
+
* @memberof ClaimPartnerRoleClass
|
|
64
|
+
*/
|
|
65
|
+
'updatedBy': string;
|
|
54
66
|
}
|
|
@@ -33,4 +33,16 @@ export interface ClaimStatusClass {
|
|
|
33
33
|
* @memberof ClaimStatusClass
|
|
34
34
|
*/
|
|
35
35
|
'productSlug': string;
|
|
36
|
+
/**
|
|
37
|
+
* Identifier of the user who created the record.
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof ClaimStatusClass
|
|
40
|
+
*/
|
|
41
|
+
'createdBy': string;
|
|
42
|
+
/**
|
|
43
|
+
* Identifier of the user who last updated the record.
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof ClaimStatusClass
|
|
46
|
+
*/
|
|
47
|
+
'updatedBy': string;
|
|
36
48
|
}
|
|
@@ -87,6 +87,18 @@ export interface PayoutDetailsClass {
|
|
|
87
87
|
* @memberof PayoutDetailsClass
|
|
88
88
|
*/
|
|
89
89
|
'payoutDate'?: string;
|
|
90
|
+
/**
|
|
91
|
+
* Identifier of the user who created the record.
|
|
92
|
+
* @type {string}
|
|
93
|
+
* @memberof PayoutDetailsClass
|
|
94
|
+
*/
|
|
95
|
+
'createdBy': string;
|
|
96
|
+
/**
|
|
97
|
+
* Identifier of the user who last updated the record.
|
|
98
|
+
* @type {string}
|
|
99
|
+
* @memberof PayoutDetailsClass
|
|
100
|
+
*/
|
|
101
|
+
'updatedBy': string;
|
|
90
102
|
}
|
|
91
103
|
export declare const PayoutDetailsClassPayoutTypeEnum: {
|
|
92
104
|
readonly Real: "REAL";
|
|
@@ -63,6 +63,18 @@ export interface RegressDetailsClass {
|
|
|
63
63
|
* @memberof RegressDetailsClass
|
|
64
64
|
*/
|
|
65
65
|
'updatedAt': string;
|
|
66
|
+
/**
|
|
67
|
+
* Identifier of the user who created the record.
|
|
68
|
+
* @type {string}
|
|
69
|
+
* @memberof RegressDetailsClass
|
|
70
|
+
*/
|
|
71
|
+
'createdBy': string;
|
|
72
|
+
/**
|
|
73
|
+
* Identifier of the user who last updated the record.
|
|
74
|
+
* @type {string}
|
|
75
|
+
* @memberof RegressDetailsClass
|
|
76
|
+
*/
|
|
77
|
+
'updatedBy': string;
|
|
66
78
|
}
|
|
67
79
|
export declare const RegressDetailsClassRecoveryTypeEnum: {
|
|
68
80
|
readonly SubrogationInitiated: "SUBROGATION_INITIATED";
|
|
@@ -85,12 +85,6 @@ export interface RegulationItemClass {
|
|
|
85
85
|
* @memberof RegulationItemClass
|
|
86
86
|
*/
|
|
87
87
|
'regressDetails': RegressDetailsClass;
|
|
88
|
-
/**
|
|
89
|
-
* The system level identifier of the user who made the latest update
|
|
90
|
-
* @type {string}
|
|
91
|
-
* @memberof RegulationItemClass
|
|
92
|
-
*/
|
|
93
|
-
'updatedBy': string;
|
|
94
88
|
/**
|
|
95
89
|
* The version of the regulation item - the version is increased with every update. Initial version is 1
|
|
96
90
|
* @type {number}
|
|
@@ -109,6 +103,18 @@ export interface RegulationItemClass {
|
|
|
109
103
|
* @memberof RegulationItemClass
|
|
110
104
|
*/
|
|
111
105
|
'updatedAt': string;
|
|
106
|
+
/**
|
|
107
|
+
* Identifier of the user who created the record.
|
|
108
|
+
* @type {string}
|
|
109
|
+
* @memberof RegulationItemClass
|
|
110
|
+
*/
|
|
111
|
+
'createdBy': string;
|
|
112
|
+
/**
|
|
113
|
+
* Identifier of the user who last updated the record.
|
|
114
|
+
* @type {string}
|
|
115
|
+
* @memberof RegulationItemClass
|
|
116
|
+
*/
|
|
117
|
+
'updatedBy': string;
|
|
112
118
|
}
|
|
113
119
|
export declare const RegulationItemClassRegulationItemTypeEnum: {
|
|
114
120
|
readonly Payout: "PAYOUT";
|
|
@@ -51,6 +51,18 @@ export interface ReserveDetailsClass {
|
|
|
51
51
|
* @memberof ReserveDetailsClass
|
|
52
52
|
*/
|
|
53
53
|
'updatedAt': string;
|
|
54
|
+
/**
|
|
55
|
+
* Identifier of the user who created the record.
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof ReserveDetailsClass
|
|
58
|
+
*/
|
|
59
|
+
'createdBy': string;
|
|
60
|
+
/**
|
|
61
|
+
* Identifier of the user who last updated the record.
|
|
62
|
+
* @type {string}
|
|
63
|
+
* @memberof ReserveDetailsClass
|
|
64
|
+
*/
|
|
65
|
+
'updatedBy': string;
|
|
54
66
|
}
|
|
55
67
|
export declare const ReserveDetailsClassReserveTypeEnum: {
|
|
56
68
|
readonly Initial: "INITIAL";
|
|
@@ -75,4 +75,16 @@ export interface SettlementClass {
|
|
|
75
75
|
* @memberof SettlementClass
|
|
76
76
|
*/
|
|
77
77
|
'updatedAt': string;
|
|
78
|
+
/**
|
|
79
|
+
* Identifier of the user who created the record.
|
|
80
|
+
* @type {string}
|
|
81
|
+
* @memberof SettlementClass
|
|
82
|
+
*/
|
|
83
|
+
'createdBy': string;
|
|
84
|
+
/**
|
|
85
|
+
* Identifier of the user who last updated the record.
|
|
86
|
+
* @type {string}
|
|
87
|
+
* @memberof SettlementClass
|
|
88
|
+
*/
|
|
89
|
+
'updatedBy': string;
|
|
78
90
|
}
|
package/models/claim-class.ts
CHANGED
|
@@ -158,6 +158,18 @@ export interface ClaimClass {
|
|
|
158
158
|
* @memberof ClaimClass
|
|
159
159
|
*/
|
|
160
160
|
'updatedAt': string;
|
|
161
|
+
/**
|
|
162
|
+
* Identifier of the user who created the record.
|
|
163
|
+
* @type {string}
|
|
164
|
+
* @memberof ClaimClass
|
|
165
|
+
*/
|
|
166
|
+
'createdBy': string;
|
|
167
|
+
/**
|
|
168
|
+
* Identifier of the user who last updated the record.
|
|
169
|
+
* @type {string}
|
|
170
|
+
* @memberof ClaimClass
|
|
171
|
+
*/
|
|
172
|
+
'updatedBy': string;
|
|
161
173
|
/**
|
|
162
174
|
* Emil Resources Names (ERN) identifies the most specific owner of a resource.
|
|
163
175
|
* @type {string}
|
|
@@ -57,6 +57,18 @@ export interface ClaimPartnerClass {
|
|
|
57
57
|
* @memberof ClaimPartnerClass
|
|
58
58
|
*/
|
|
59
59
|
'updatedAt': string;
|
|
60
|
+
/**
|
|
61
|
+
* Identifier of the user who created the record.
|
|
62
|
+
* @type {string}
|
|
63
|
+
* @memberof ClaimPartnerClass
|
|
64
|
+
*/
|
|
65
|
+
'createdBy': string;
|
|
66
|
+
/**
|
|
67
|
+
* Identifier of the user who last updated the record.
|
|
68
|
+
* @type {string}
|
|
69
|
+
* @memberof ClaimPartnerClass
|
|
70
|
+
*/
|
|
71
|
+
'updatedBy': string;
|
|
60
72
|
/**
|
|
61
73
|
* Claim partner role in the relationship.
|
|
62
74
|
* @type {ClaimPartnerRoleClass}
|
|
@@ -56,5 +56,17 @@ export interface ClaimPartnerRoleClass {
|
|
|
56
56
|
* @memberof ClaimPartnerRoleClass
|
|
57
57
|
*/
|
|
58
58
|
'updatedAt': string;
|
|
59
|
+
/**
|
|
60
|
+
* Identifier of the user who created the record.
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof ClaimPartnerRoleClass
|
|
63
|
+
*/
|
|
64
|
+
'createdBy': string;
|
|
65
|
+
/**
|
|
66
|
+
* Identifier of the user who last updated the record.
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof ClaimPartnerRoleClass
|
|
69
|
+
*/
|
|
70
|
+
'updatedBy': string;
|
|
59
71
|
}
|
|
60
72
|
|
|
@@ -38,5 +38,17 @@ export interface ClaimStatusClass {
|
|
|
38
38
|
* @memberof ClaimStatusClass
|
|
39
39
|
*/
|
|
40
40
|
'productSlug': string;
|
|
41
|
+
/**
|
|
42
|
+
* Identifier of the user who created the record.
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof ClaimStatusClass
|
|
45
|
+
*/
|
|
46
|
+
'createdBy': string;
|
|
47
|
+
/**
|
|
48
|
+
* Identifier of the user who last updated the record.
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof ClaimStatusClass
|
|
51
|
+
*/
|
|
52
|
+
'updatedBy': string;
|
|
41
53
|
}
|
|
42
54
|
|
|
@@ -92,6 +92,18 @@ export interface PayoutDetailsClass {
|
|
|
92
92
|
* @memberof PayoutDetailsClass
|
|
93
93
|
*/
|
|
94
94
|
'payoutDate'?: string;
|
|
95
|
+
/**
|
|
96
|
+
* Identifier of the user who created the record.
|
|
97
|
+
* @type {string}
|
|
98
|
+
* @memberof PayoutDetailsClass
|
|
99
|
+
*/
|
|
100
|
+
'createdBy': string;
|
|
101
|
+
/**
|
|
102
|
+
* Identifier of the user who last updated the record.
|
|
103
|
+
* @type {string}
|
|
104
|
+
* @memberof PayoutDetailsClass
|
|
105
|
+
*/
|
|
106
|
+
'updatedBy': string;
|
|
95
107
|
}
|
|
96
108
|
|
|
97
109
|
export const PayoutDetailsClassPayoutTypeEnum = {
|
|
@@ -68,6 +68,18 @@ export interface RegressDetailsClass {
|
|
|
68
68
|
* @memberof RegressDetailsClass
|
|
69
69
|
*/
|
|
70
70
|
'updatedAt': string;
|
|
71
|
+
/**
|
|
72
|
+
* Identifier of the user who created the record.
|
|
73
|
+
* @type {string}
|
|
74
|
+
* @memberof RegressDetailsClass
|
|
75
|
+
*/
|
|
76
|
+
'createdBy': string;
|
|
77
|
+
/**
|
|
78
|
+
* Identifier of the user who last updated the record.
|
|
79
|
+
* @type {string}
|
|
80
|
+
* @memberof RegressDetailsClass
|
|
81
|
+
*/
|
|
82
|
+
'updatedBy': string;
|
|
71
83
|
}
|
|
72
84
|
|
|
73
85
|
export const RegressDetailsClassRecoveryTypeEnum = {
|
|
@@ -90,12 +90,6 @@ export interface RegulationItemClass {
|
|
|
90
90
|
* @memberof RegulationItemClass
|
|
91
91
|
*/
|
|
92
92
|
'regressDetails': RegressDetailsClass;
|
|
93
|
-
/**
|
|
94
|
-
* The system level identifier of the user who made the latest update
|
|
95
|
-
* @type {string}
|
|
96
|
-
* @memberof RegulationItemClass
|
|
97
|
-
*/
|
|
98
|
-
'updatedBy': string;
|
|
99
93
|
/**
|
|
100
94
|
* The version of the regulation item - the version is increased with every update. Initial version is 1
|
|
101
95
|
* @type {number}
|
|
@@ -114,6 +108,18 @@ export interface RegulationItemClass {
|
|
|
114
108
|
* @memberof RegulationItemClass
|
|
115
109
|
*/
|
|
116
110
|
'updatedAt': string;
|
|
111
|
+
/**
|
|
112
|
+
* Identifier of the user who created the record.
|
|
113
|
+
* @type {string}
|
|
114
|
+
* @memberof RegulationItemClass
|
|
115
|
+
*/
|
|
116
|
+
'createdBy': string;
|
|
117
|
+
/**
|
|
118
|
+
* Identifier of the user who last updated the record.
|
|
119
|
+
* @type {string}
|
|
120
|
+
* @memberof RegulationItemClass
|
|
121
|
+
*/
|
|
122
|
+
'updatedBy': string;
|
|
117
123
|
}
|
|
118
124
|
|
|
119
125
|
export const RegulationItemClassRegulationItemTypeEnum = {
|
|
@@ -56,6 +56,18 @@ export interface ReserveDetailsClass {
|
|
|
56
56
|
* @memberof ReserveDetailsClass
|
|
57
57
|
*/
|
|
58
58
|
'updatedAt': string;
|
|
59
|
+
/**
|
|
60
|
+
* Identifier of the user who created the record.
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof ReserveDetailsClass
|
|
63
|
+
*/
|
|
64
|
+
'createdBy': string;
|
|
65
|
+
/**
|
|
66
|
+
* Identifier of the user who last updated the record.
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof ReserveDetailsClass
|
|
69
|
+
*/
|
|
70
|
+
'updatedBy': string;
|
|
59
71
|
}
|
|
60
72
|
|
|
61
73
|
export const ReserveDetailsClassReserveTypeEnum = {
|
|
@@ -80,5 +80,17 @@ export interface SettlementClass {
|
|
|
80
80
|
* @memberof SettlementClass
|
|
81
81
|
*/
|
|
82
82
|
'updatedAt': string;
|
|
83
|
+
/**
|
|
84
|
+
* Identifier of the user who created the record.
|
|
85
|
+
* @type {string}
|
|
86
|
+
* @memberof SettlementClass
|
|
87
|
+
*/
|
|
88
|
+
'createdBy': string;
|
|
89
|
+
/**
|
|
90
|
+
* Identifier of the user who last updated the record.
|
|
91
|
+
* @type {string}
|
|
92
|
+
* @memberof SettlementClass
|
|
93
|
+
*/
|
|
94
|
+
'updatedBy': string;
|
|
83
95
|
}
|
|
84
96
|
|