@emilgroup/claim-sdk 1.18.0 → 1.18.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/payout-details-class.d.ts +6 -0
- package/dist/models/payout-details-dto.d.ts +6 -0
- package/dist/models/update-payout-details-dto.d.ts +6 -0
- package/models/payout-details-class.ts +6 -0
- package/models/payout-details-dto.ts +6 -0
- package/models/update-payout-details-dto.ts +6 -0
- 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.18.
|
|
20
|
+
npm install @emilgroup/claim-sdk@1.18.1-beta.1 --save
|
|
21
21
|
```
|
|
22
22
|
or
|
|
23
23
|
```
|
|
24
|
-
yarn add @emilgroup/claim-sdk@1.18.
|
|
24
|
+
yarn add @emilgroup/claim-sdk@1.18.1-beta.1
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `ClaimsApi`.
|
|
@@ -75,6 +75,12 @@ export interface PayoutDetailsClass {
|
|
|
75
75
|
* @memberof PayoutDetailsClass
|
|
76
76
|
*/
|
|
77
77
|
'updatedAt': string;
|
|
78
|
+
/**
|
|
79
|
+
* Product or tenant specific custom fields for the payout detials. Depends on the schema defined for payout-details entity using tenantservice api.
|
|
80
|
+
* @type {object}
|
|
81
|
+
* @memberof PayoutDetailsClass
|
|
82
|
+
*/
|
|
83
|
+
'customFields'?: object;
|
|
78
84
|
}
|
|
79
85
|
export declare const PayoutDetailsClassPayoutTypeEnum: {
|
|
80
86
|
readonly Real: "REAL";
|
|
@@ -45,6 +45,12 @@ export interface PayoutDetailsDto {
|
|
|
45
45
|
* @memberof PayoutDetailsDto
|
|
46
46
|
*/
|
|
47
47
|
'payoutPurpose'?: string;
|
|
48
|
+
/**
|
|
49
|
+
* Product or tenant specific custom fields for the payout detials. Depends on the schema defined for payout-details entity using tenantservice api.
|
|
50
|
+
* @type {object}
|
|
51
|
+
* @memberof PayoutDetailsDto
|
|
52
|
+
*/
|
|
53
|
+
'customFields'?: object;
|
|
48
54
|
}
|
|
49
55
|
export declare const PayoutDetailsDtoPayoutTypeEnum: {
|
|
50
56
|
readonly Real: "REAL";
|
|
@@ -45,6 +45,12 @@ export interface UpdatePayoutDetailsDto {
|
|
|
45
45
|
* @memberof UpdatePayoutDetailsDto
|
|
46
46
|
*/
|
|
47
47
|
'payoutPurpose'?: string;
|
|
48
|
+
/**
|
|
49
|
+
* Product or tenant specific custom fields for the payout detials. Depends on the schema defined for payout-details entity using tenantservice api.
|
|
50
|
+
* @type {object}
|
|
51
|
+
* @memberof UpdatePayoutDetailsDto
|
|
52
|
+
*/
|
|
53
|
+
'customFields'?: object;
|
|
48
54
|
}
|
|
49
55
|
export declare const UpdatePayoutDetailsDtoPayoutTypeEnum: {
|
|
50
56
|
readonly Real: "REAL";
|
|
@@ -80,6 +80,12 @@ export interface PayoutDetailsClass {
|
|
|
80
80
|
* @memberof PayoutDetailsClass
|
|
81
81
|
*/
|
|
82
82
|
'updatedAt': string;
|
|
83
|
+
/**
|
|
84
|
+
* Product or tenant specific custom fields for the payout detials. Depends on the schema defined for payout-details entity using tenantservice api.
|
|
85
|
+
* @type {object}
|
|
86
|
+
* @memberof PayoutDetailsClass
|
|
87
|
+
*/
|
|
88
|
+
'customFields'?: object;
|
|
83
89
|
}
|
|
84
90
|
|
|
85
91
|
export const PayoutDetailsClassPayoutTypeEnum = {
|
|
@@ -50,6 +50,12 @@ export interface PayoutDetailsDto {
|
|
|
50
50
|
* @memberof PayoutDetailsDto
|
|
51
51
|
*/
|
|
52
52
|
'payoutPurpose'?: string;
|
|
53
|
+
/**
|
|
54
|
+
* Product or tenant specific custom fields for the payout detials. Depends on the schema defined for payout-details entity using tenantservice api.
|
|
55
|
+
* @type {object}
|
|
56
|
+
* @memberof PayoutDetailsDto
|
|
57
|
+
*/
|
|
58
|
+
'customFields'?: object;
|
|
53
59
|
}
|
|
54
60
|
|
|
55
61
|
export const PayoutDetailsDtoPayoutTypeEnum = {
|
|
@@ -50,6 +50,12 @@ export interface UpdatePayoutDetailsDto {
|
|
|
50
50
|
* @memberof UpdatePayoutDetailsDto
|
|
51
51
|
*/
|
|
52
52
|
'payoutPurpose'?: string;
|
|
53
|
+
/**
|
|
54
|
+
* Product or tenant specific custom fields for the payout detials. Depends on the schema defined for payout-details entity using tenantservice api.
|
|
55
|
+
* @type {object}
|
|
56
|
+
* @memberof UpdatePayoutDetailsDto
|
|
57
|
+
*/
|
|
58
|
+
'customFields'?: object;
|
|
53
59
|
}
|
|
54
60
|
|
|
55
61
|
export const UpdatePayoutDetailsDtoPayoutTypeEnum = {
|