@emilgroup/claim-sdk 1.42.0 → 1.42.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/dist/models/create-regulation-item-request-dto.d.ts +1 -1
- package/dist/models/update-regulation-item-request-dto.d.ts +1 -1
- package/models/create-regulation-item-request-dto.ts +1 -1
- package/models/update-regulation-item-request-dto.ts +1 -1
- 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.42.
|
|
20
|
+
npm install @emilgroup/claim-sdk@1.42.1-beta.1 --save
|
|
21
21
|
```
|
|
22
22
|
or
|
|
23
23
|
```
|
|
24
|
-
yarn add @emilgroup/claim-sdk@1.42.
|
|
24
|
+
yarn add @emilgroup/claim-sdk@1.42.1-beta.1
|
|
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
|
|
65
|
+
* List of claim categories covered by this regulation. Required for PAYMENT_SERVICE payouts when settlementType is PARTIAL_CLAIM; not applicable for COMPLETE_CLAIM.
|
|
66
66
|
* @type {Array<string>}
|
|
67
67
|
* @memberof CreateRegulationItemRequestDto
|
|
68
68
|
*/
|
|
@@ -56,7 +56,7 @@ export interface UpdateRegulationItemRequestDto {
|
|
|
56
56
|
*/
|
|
57
57
|
'payoutProvider'?: UpdateRegulationItemRequestDtoPayoutProviderEnum;
|
|
58
58
|
/**
|
|
59
|
-
* List of claim
|
|
59
|
+
* List of claim categories covered by this regulation. Required for PAYMENT_SERVICE payouts when settlementType is PARTIAL_CLAIM; not applicable for COMPLETE_CLAIM.
|
|
60
60
|
* @type {Array<string>}
|
|
61
61
|
* @memberof UpdateRegulationItemRequestDto
|
|
62
62
|
*/
|
|
@@ -67,7 +67,7 @@ export interface CreateRegulationItemRequestDto {
|
|
|
67
67
|
*/
|
|
68
68
|
'payoutProvider'?: CreateRegulationItemRequestDtoPayoutProviderEnum;
|
|
69
69
|
/**
|
|
70
|
-
* List of claim
|
|
70
|
+
* List of claim categories covered by this regulation. Required for PAYMENT_SERVICE payouts when settlementType is PARTIAL_CLAIM; not applicable for COMPLETE_CLAIM.
|
|
71
71
|
* @type {Array<string>}
|
|
72
72
|
* @memberof CreateRegulationItemRequestDto
|
|
73
73
|
*/
|
|
@@ -61,7 +61,7 @@ export interface UpdateRegulationItemRequestDto {
|
|
|
61
61
|
*/
|
|
62
62
|
'payoutProvider'?: UpdateRegulationItemRequestDtoPayoutProviderEnum;
|
|
63
63
|
/**
|
|
64
|
-
* List of claim
|
|
64
|
+
* List of claim categories covered by this regulation. Required for PAYMENT_SERVICE payouts when settlementType is PARTIAL_CLAIM; not applicable for COMPLETE_CLAIM.
|
|
65
65
|
* @type {Array<string>}
|
|
66
66
|
* @memberof UpdateRegulationItemRequestDto
|
|
67
67
|
*/
|