@emilgroup/claim-sdk 1.41.1-beta.43 → 1.41.1-beta.44
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/dist/models/create-regulation-item-request-dto.d.ts +3 -3
- package/dist/models/update-regulation-item-request-dto.d.ts +3 -3
- package/models/create-regulation-item-request-dto.ts +3 -3
- package/models/update-regulation-item-request-dto.ts +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -17,11 +17,11 @@ Although this package can be used in both TypeScript and JavaScript, it is inten
|
|
|
17
17
|
Navigate to the folder of your consuming project and run one of the following commands:
|
|
18
18
|
|
|
19
19
|
```
|
|
20
|
-
npm install @emilgroup/claim-sdk@1.41.1-beta.
|
|
20
|
+
npm install @emilgroup/claim-sdk@1.41.1-beta.44 --save
|
|
21
21
|
```
|
|
22
22
|
or
|
|
23
23
|
```
|
|
24
|
-
yarn add @emilgroup/claim-sdk@1.41.1-beta.
|
|
24
|
+
yarn add @emilgroup/claim-sdk@1.41.1-beta.44
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `ClaimsApi`.
|
|
@@ -62,7 +62,7 @@ export interface CreateRegulationItemRequestDto {
|
|
|
62
62
|
*/
|
|
63
63
|
'payoutProvider'?: CreateRegulationItemRequestDtoPayoutProviderEnum;
|
|
64
64
|
/**
|
|
65
|
-
* List of claim position categories
|
|
65
|
+
* List of claim position categories covered by this regulation. For payout, this is only supported when payoutProvider is PAYMENT_SERVICE.
|
|
66
66
|
* @type {Array<string>}
|
|
67
67
|
* @memberof CreateRegulationItemRequestDto
|
|
68
68
|
*/
|
|
@@ -86,11 +86,11 @@ export interface CreateRegulationItemRequestDto {
|
|
|
86
86
|
*/
|
|
87
87
|
'regressDetails'?: RegressDetailsDto;
|
|
88
88
|
/**
|
|
89
|
-
* The partner code to use for the regulation item
|
|
89
|
+
* The partner code to use for the regulation item. Required only when regulationItemType is PAYOUT and payoutProvider is PAYMENT_SERVICE.
|
|
90
90
|
* @type {string}
|
|
91
91
|
* @memberof CreateRegulationItemRequestDto
|
|
92
92
|
*/
|
|
93
|
-
'partnerCode'
|
|
93
|
+
'partnerCode'?: string;
|
|
94
94
|
}
|
|
95
95
|
export declare const CreateRegulationItemRequestDtoRegulationItemTypeEnum: {
|
|
96
96
|
readonly Payout: "PAYOUT";
|
|
@@ -56,7 +56,7 @@ export interface UpdateRegulationItemRequestDto {
|
|
|
56
56
|
*/
|
|
57
57
|
'payoutProvider'?: UpdateRegulationItemRequestDtoPayoutProviderEnum;
|
|
58
58
|
/**
|
|
59
|
-
* List of claim position categories
|
|
59
|
+
* List of claim position categories covered by this regulation. For payout updates, only allowed when payoutProvider is PAYMENT_SERVICE.
|
|
60
60
|
* @type {Array<string>}
|
|
61
61
|
* @memberof UpdateRegulationItemRequestDto
|
|
62
62
|
*/
|
|
@@ -86,11 +86,11 @@ export interface UpdateRegulationItemRequestDto {
|
|
|
86
86
|
*/
|
|
87
87
|
'status'?: UpdateRegulationItemRequestDtoStatusEnum;
|
|
88
88
|
/**
|
|
89
|
-
* The partner code to use for the regulation item
|
|
89
|
+
* The partner code to use for the regulation item. Required only when regulationItemType is PAYOUT and payoutProvider is PAYMENT_SERVICE.
|
|
90
90
|
* @type {string}
|
|
91
91
|
* @memberof UpdateRegulationItemRequestDto
|
|
92
92
|
*/
|
|
93
|
-
'partnerCode'
|
|
93
|
+
'partnerCode'?: string;
|
|
94
94
|
}
|
|
95
95
|
export declare const UpdateRegulationItemRequestDtoRegulationItemTypeEnum: {
|
|
96
96
|
readonly Payout: "PAYOUT";
|
|
@@ -67,7 +67,7 @@ export interface CreateRegulationItemRequestDto {
|
|
|
67
67
|
*/
|
|
68
68
|
'payoutProvider'?: CreateRegulationItemRequestDtoPayoutProviderEnum;
|
|
69
69
|
/**
|
|
70
|
-
* List of claim position categories
|
|
70
|
+
* List of claim position categories covered by this regulation. For payout, this is only supported when payoutProvider is PAYMENT_SERVICE.
|
|
71
71
|
* @type {Array<string>}
|
|
72
72
|
* @memberof CreateRegulationItemRequestDto
|
|
73
73
|
*/
|
|
@@ -91,11 +91,11 @@ export interface CreateRegulationItemRequestDto {
|
|
|
91
91
|
*/
|
|
92
92
|
'regressDetails'?: RegressDetailsDto;
|
|
93
93
|
/**
|
|
94
|
-
* The partner code to use for the regulation item
|
|
94
|
+
* The partner code to use for the regulation item. Required only when regulationItemType is PAYOUT and payoutProvider is PAYMENT_SERVICE.
|
|
95
95
|
* @type {string}
|
|
96
96
|
* @memberof CreateRegulationItemRequestDto
|
|
97
97
|
*/
|
|
98
|
-
'partnerCode'
|
|
98
|
+
'partnerCode'?: string;
|
|
99
99
|
}
|
|
100
100
|
|
|
101
101
|
export const CreateRegulationItemRequestDtoRegulationItemTypeEnum = {
|
|
@@ -61,7 +61,7 @@ export interface UpdateRegulationItemRequestDto {
|
|
|
61
61
|
*/
|
|
62
62
|
'payoutProvider'?: UpdateRegulationItemRequestDtoPayoutProviderEnum;
|
|
63
63
|
/**
|
|
64
|
-
* List of claim position categories
|
|
64
|
+
* List of claim position categories covered by this regulation. For payout updates, only allowed when payoutProvider is PAYMENT_SERVICE.
|
|
65
65
|
* @type {Array<string>}
|
|
66
66
|
* @memberof UpdateRegulationItemRequestDto
|
|
67
67
|
*/
|
|
@@ -91,11 +91,11 @@ export interface UpdateRegulationItemRequestDto {
|
|
|
91
91
|
*/
|
|
92
92
|
'status'?: UpdateRegulationItemRequestDtoStatusEnum;
|
|
93
93
|
/**
|
|
94
|
-
* The partner code to use for the regulation item
|
|
94
|
+
* The partner code to use for the regulation item. Required only when regulationItemType is PAYOUT and payoutProvider is PAYMENT_SERVICE.
|
|
95
95
|
* @type {string}
|
|
96
96
|
* @memberof UpdateRegulationItemRequestDto
|
|
97
97
|
*/
|
|
98
|
-
'partnerCode'
|
|
98
|
+
'partnerCode'?: string;
|
|
99
99
|
}
|
|
100
100
|
|
|
101
101
|
export const UpdateRegulationItemRequestDtoRegulationItemTypeEnum = {
|