@randock/nameshift-api-client 0.0.366 → 0.0.368
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 +29 -1
- package/README.md +3 -3
- package/dist/apis/AdminApi.d.ts +45 -1
- package/dist/apis/AdminApi.js +211 -0
- package/dist/models/AccountNameshiftCommissionBySubtypeDto.d.ts +55 -0
- package/dist/models/AccountNameshiftCommissionBySubtypeDto.js +70 -0
- package/dist/models/AccountNameshiftCommissionByTypeDto.d.ts +33 -0
- package/dist/models/AccountNameshiftCommissionByTypeDto.js +52 -0
- package/dist/models/AdminListAccountDto.d.ts +137 -0
- package/dist/models/{IntersectionListAccountDtoWithAccountCommissionDto.js → AdminListAccountDto.js} +17 -25
- package/dist/models/BulkCommissionActionsInput.d.ts +33 -0
- package/dist/models/BulkCommissionActionsInput.js +52 -0
- package/dist/models/BulkCommissionActionsInputActionsInner.d.ts +29 -0
- package/dist/models/BulkCommissionActionsInputActionsInner.js +58 -0
- package/dist/models/CommissionAccountDto.d.ts +44 -0
- package/dist/models/CommissionAccountDto.js +59 -0
- package/dist/models/CommissionAction.d.ts +26 -0
- package/dist/models/CommissionAction.js +52 -0
- package/dist/models/CommissionAddUpdateActionInput.d.ts +40 -0
- package/dist/models/CommissionAddUpdateActionInput.js +57 -0
- package/dist/models/CommissionConfigurationDto.d.ts +33 -0
- package/dist/models/CommissionConfigurationDto.js +52 -0
- package/dist/models/CommissionConfigurationDtoPayload.d.ts +27 -0
- package/dist/models/CommissionConfigurationDtoPayload.js +54 -0
- package/dist/models/CommissionConfigurationInput.d.ts +39 -0
- package/dist/models/CommissionConfigurationInput.js +56 -0
- package/dist/models/CommissionDeleteActionInput.d.ts +40 -0
- package/dist/models/CommissionDeleteActionInput.js +57 -0
- package/dist/models/CommissionDto.d.ts +112 -0
- package/dist/models/CommissionDto.js +110 -0
- package/dist/models/CommissionFactor.d.ts +25 -0
- package/dist/models/CommissionFactor.js +51 -0
- package/dist/models/CommissionListDto.d.ts +33 -0
- package/dist/models/CommissionListDto.js +52 -0
- package/dist/models/CommissionPayloadIdInput.d.ts +32 -0
- package/dist/models/CommissionPayloadIdInput.js +51 -0
- package/dist/models/CommissionPayloadInput.d.ts +99 -0
- package/dist/models/CommissionPayloadInput.js +101 -0
- package/dist/models/CommissionPercentageRangeDto.d.ts +44 -0
- package/dist/models/CommissionPercentageRangeDto.js +59 -0
- package/dist/models/CommissionPercentageRangeInput.d.ts +44 -0
- package/dist/models/CommissionPercentageRangeInput.js +59 -0
- package/dist/models/CommissionReasonConfigDto.d.ts +47 -0
- package/dist/models/CommissionReasonConfigDto.js +64 -0
- package/dist/models/CommissionReasonConfigDtoPayload.d.ts +27 -0
- package/dist/models/CommissionReasonConfigDtoPayload.js +54 -0
- package/dist/models/CommissionReasonDto.d.ts +112 -0
- package/dist/models/CommissionReasonDto.js +88 -0
- package/dist/models/FixedCommissionPayloadDto.d.ts +39 -0
- package/dist/models/FixedCommissionPayloadDto.js +56 -0
- package/dist/models/FixedCommissionPayloadInput.d.ts +32 -0
- package/dist/models/FixedCommissionPayloadInput.js +51 -0
- package/dist/models/FixedCommissionReasonPayloadDto.d.ts +39 -0
- package/dist/models/FixedCommissionReasonPayloadDto.js +56 -0
- package/dist/models/LedgerMutationAttachmentDto.d.ts +38 -0
- package/dist/models/LedgerMutationAttachmentDto.js +55 -0
- package/dist/models/LedgerMutationDto.d.ts +7 -0
- package/dist/models/LedgerMutationDto.js +5 -0
- package/dist/models/ListAccounts200Response.d.ts +3 -3
- package/dist/models/ListAccounts200Response.js +3 -3
- package/dist/models/SalesCountCommissionPayloadDto.d.ts +40 -0
- package/dist/models/SalesCountCommissionPayloadDto.js +57 -0
- package/dist/models/SalesCountCommissionPayloadInput.d.ts +33 -0
- package/dist/models/SalesCountCommissionPayloadInput.js +52 -0
- package/dist/models/SalesCountCommissionReasonPayloadDto.d.ts +40 -0
- package/dist/models/SalesCountCommissionReasonPayloadDto.js +57 -0
- package/dist/models/index.d.ts +29 -1
- package/dist/models/index.js +29 -1
- package/package.json +1 -1
- package/src/apis/AdminApi.ts +187 -0
- package/src/models/AccountNameshiftCommissionBySubtypeDto.ts +105 -0
- package/src/models/AccountNameshiftCommissionByTypeDto.ts +74 -0
- package/src/models/{IntersectionListAccountDtoWithAccountCommissionDto.ts → AdminListAccountDto.ts} +33 -51
- package/src/models/BulkCommissionActionsInput.ts +74 -0
- package/src/models/BulkCommissionActionsInputActionsInner.ts +77 -0
- package/src/models/CommissionAccountDto.ts +84 -0
- package/src/models/CommissionAction.ts +54 -0
- package/src/models/CommissionAddUpdateActionInput.ts +92 -0
- package/src/models/CommissionConfigurationDto.ts +74 -0
- package/src/models/CommissionConfigurationDtoPayload.ts +73 -0
- package/src/models/CommissionConfigurationInput.ts +85 -0
- package/src/models/CommissionDeleteActionInput.ts +92 -0
- package/src/models/CommissionDto.ts +193 -0
- package/src/models/CommissionFactor.ts +53 -0
- package/src/models/CommissionListDto.ts +74 -0
- package/src/models/CommissionPayloadIdInput.ts +66 -0
- package/src/models/CommissionPayloadInput.ts +168 -0
- package/src/models/CommissionPercentageRangeDto.ts +84 -0
- package/src/models/CommissionPercentageRangeInput.ts +84 -0
- package/src/models/CommissionReasonConfigDto.ts +94 -0
- package/src/models/CommissionReasonConfigDtoPayload.ts +73 -0
- package/src/models/CommissionReasonDto.ts +182 -0
- package/src/models/FixedCommissionPayloadDto.ts +85 -0
- package/src/models/FixedCommissionPayloadInput.ts +66 -0
- package/src/models/FixedCommissionReasonPayloadDto.ts +85 -0
- package/src/models/LedgerMutationAttachmentDto.ts +75 -0
- package/src/models/LedgerMutationDto.ts +17 -0
- package/src/models/ListAccounts200Response.ts +10 -10
- package/src/models/SalesCountCommissionPayloadDto.ts +92 -0
- package/src/models/SalesCountCommissionPayloadInput.ts +74 -0
- package/src/models/SalesCountCommissionReasonPayloadDto.ts +92 -0
- package/src/models/index.ts +29 -1
- package/dist/models/IntersectionListAccountDtoWithAccountCommissionDto.d.ts +0 -149
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Nameshift
|
|
6
|
+
* Nameshift API
|
|
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.instanceOfLedgerMutationAttachmentDto = instanceOfLedgerMutationAttachmentDto;
|
|
17
|
+
exports.LedgerMutationAttachmentDtoFromJSON = LedgerMutationAttachmentDtoFromJSON;
|
|
18
|
+
exports.LedgerMutationAttachmentDtoFromJSONTyped = LedgerMutationAttachmentDtoFromJSONTyped;
|
|
19
|
+
exports.LedgerMutationAttachmentDtoToJSON = LedgerMutationAttachmentDtoToJSON;
|
|
20
|
+
exports.LedgerMutationAttachmentDtoToJSONTyped = LedgerMutationAttachmentDtoToJSONTyped;
|
|
21
|
+
/**
|
|
22
|
+
* Check if a given object implements the LedgerMutationAttachmentDto interface.
|
|
23
|
+
*/
|
|
24
|
+
function instanceOfLedgerMutationAttachmentDto(value) {
|
|
25
|
+
if (!('id' in value) || value['id'] === undefined)
|
|
26
|
+
return false;
|
|
27
|
+
if (!('filename' in value) || value['filename'] === undefined)
|
|
28
|
+
return false;
|
|
29
|
+
return true;
|
|
30
|
+
}
|
|
31
|
+
function LedgerMutationAttachmentDtoFromJSON(json) {
|
|
32
|
+
return LedgerMutationAttachmentDtoFromJSONTyped(json, false);
|
|
33
|
+
}
|
|
34
|
+
function LedgerMutationAttachmentDtoFromJSONTyped(json, ignoreDiscriminator) {
|
|
35
|
+
if (json == null) {
|
|
36
|
+
return json;
|
|
37
|
+
}
|
|
38
|
+
return {
|
|
39
|
+
'id': json['id'],
|
|
40
|
+
'filename': json['filename'],
|
|
41
|
+
};
|
|
42
|
+
}
|
|
43
|
+
function LedgerMutationAttachmentDtoToJSON(json) {
|
|
44
|
+
return LedgerMutationAttachmentDtoToJSONTyped(json, false);
|
|
45
|
+
}
|
|
46
|
+
function LedgerMutationAttachmentDtoToJSONTyped(value, ignoreDiscriminator) {
|
|
47
|
+
if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
|
|
48
|
+
if (value == null) {
|
|
49
|
+
return value;
|
|
50
|
+
}
|
|
51
|
+
return {
|
|
52
|
+
'id': value['id'],
|
|
53
|
+
'filename': value['filename'],
|
|
54
|
+
};
|
|
55
|
+
}
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import type { LedgerMutationAttachmentDto } from './LedgerMutationAttachmentDto';
|
|
12
13
|
/**
|
|
13
14
|
*
|
|
14
15
|
* @export
|
|
@@ -51,6 +52,12 @@ export interface LedgerMutationDto {
|
|
|
51
52
|
* @memberof LedgerMutationDto
|
|
52
53
|
*/
|
|
53
54
|
date: Date;
|
|
55
|
+
/**
|
|
56
|
+
*
|
|
57
|
+
* @type {Array<LedgerMutationAttachmentDto>}
|
|
58
|
+
* @memberof LedgerMutationDto
|
|
59
|
+
*/
|
|
60
|
+
attachments: Array<LedgerMutationAttachmentDto>;
|
|
54
61
|
}
|
|
55
62
|
/**
|
|
56
63
|
* Check if a given object implements the LedgerMutationDto interface.
|
|
@@ -18,6 +18,7 @@ exports.LedgerMutationDtoFromJSON = LedgerMutationDtoFromJSON;
|
|
|
18
18
|
exports.LedgerMutationDtoFromJSONTyped = LedgerMutationDtoFromJSONTyped;
|
|
19
19
|
exports.LedgerMutationDtoToJSON = LedgerMutationDtoToJSON;
|
|
20
20
|
exports.LedgerMutationDtoToJSONTyped = LedgerMutationDtoToJSONTyped;
|
|
21
|
+
var LedgerMutationAttachmentDto_1 = require("./LedgerMutationAttachmentDto");
|
|
21
22
|
/**
|
|
22
23
|
* Check if a given object implements the LedgerMutationDto interface.
|
|
23
24
|
*/
|
|
@@ -34,6 +35,8 @@ function instanceOfLedgerMutationDto(value) {
|
|
|
34
35
|
return false;
|
|
35
36
|
if (!('date' in value) || value['date'] === undefined)
|
|
36
37
|
return false;
|
|
38
|
+
if (!('attachments' in value) || value['attachments'] === undefined)
|
|
39
|
+
return false;
|
|
37
40
|
return true;
|
|
38
41
|
}
|
|
39
42
|
function LedgerMutationDtoFromJSON(json) {
|
|
@@ -50,6 +53,7 @@ function LedgerMutationDtoFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
50
53
|
'credit': json['credit'],
|
|
51
54
|
'description': json['description'],
|
|
52
55
|
'date': (new Date(json['date'])),
|
|
56
|
+
'attachments': (json['attachments'].map(LedgerMutationAttachmentDto_1.LedgerMutationAttachmentDtoFromJSON)),
|
|
53
57
|
};
|
|
54
58
|
}
|
|
55
59
|
function LedgerMutationDtoToJSON(json) {
|
|
@@ -67,5 +71,6 @@ function LedgerMutationDtoToJSONTyped(value, ignoreDiscriminator) {
|
|
|
67
71
|
'credit': value['credit'],
|
|
68
72
|
'description': value['description'],
|
|
69
73
|
'date': ((value['date']).toISOString()),
|
|
74
|
+
'attachments': (value['attachments'].map(LedgerMutationAttachmentDto_1.LedgerMutationAttachmentDtoToJSON)),
|
|
70
75
|
};
|
|
71
76
|
}
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import type { PaginateResponseLinks } from './PaginateResponseLinks';
|
|
13
|
-
import type {
|
|
13
|
+
import type { AdminListAccountDto } from './AdminListAccountDto';
|
|
14
14
|
import type { PaginateResponseMeta } from './PaginateResponseMeta';
|
|
15
15
|
/**
|
|
16
16
|
*
|
|
@@ -20,10 +20,10 @@ import type { PaginateResponseMeta } from './PaginateResponseMeta';
|
|
|
20
20
|
export interface ListAccounts200Response {
|
|
21
21
|
/**
|
|
22
22
|
*
|
|
23
|
-
* @type {Array<
|
|
23
|
+
* @type {Array<AdminListAccountDto>}
|
|
24
24
|
* @memberof ListAccounts200Response
|
|
25
25
|
*/
|
|
26
|
-
data: Array<
|
|
26
|
+
data: Array<AdminListAccountDto>;
|
|
27
27
|
/**
|
|
28
28
|
*
|
|
29
29
|
* @type {PaginateResponseMeta}
|
|
@@ -19,7 +19,7 @@ exports.ListAccounts200ResponseFromJSONTyped = ListAccounts200ResponseFromJSONTy
|
|
|
19
19
|
exports.ListAccounts200ResponseToJSON = ListAccounts200ResponseToJSON;
|
|
20
20
|
exports.ListAccounts200ResponseToJSONTyped = ListAccounts200ResponseToJSONTyped;
|
|
21
21
|
var PaginateResponseLinks_1 = require("./PaginateResponseLinks");
|
|
22
|
-
var
|
|
22
|
+
var AdminListAccountDto_1 = require("./AdminListAccountDto");
|
|
23
23
|
var PaginateResponseMeta_1 = require("./PaginateResponseMeta");
|
|
24
24
|
/**
|
|
25
25
|
* Check if a given object implements the ListAccounts200Response interface.
|
|
@@ -41,7 +41,7 @@ function ListAccounts200ResponseFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
41
41
|
return json;
|
|
42
42
|
}
|
|
43
43
|
return {
|
|
44
|
-
'data': (json['data'].map(
|
|
44
|
+
'data': (json['data'].map(AdminListAccountDto_1.AdminListAccountDtoFromJSON)),
|
|
45
45
|
'meta': (0, PaginateResponseMeta_1.PaginateResponseMetaFromJSON)(json['meta']),
|
|
46
46
|
'links': (0, PaginateResponseLinks_1.PaginateResponseLinksFromJSON)(json['links']),
|
|
47
47
|
};
|
|
@@ -55,7 +55,7 @@ function ListAccounts200ResponseToJSONTyped(value, ignoreDiscriminator) {
|
|
|
55
55
|
return value;
|
|
56
56
|
}
|
|
57
57
|
return {
|
|
58
|
-
'data': (value['data'].map(
|
|
58
|
+
'data': (value['data'].map(AdminListAccountDto_1.AdminListAccountDtoToJSON)),
|
|
59
59
|
'meta': (0, PaginateResponseMeta_1.PaginateResponseMetaToJSON)(value['meta']),
|
|
60
60
|
'links': (0, PaginateResponseLinks_1.PaginateResponseLinksToJSON)(value['links']),
|
|
61
61
|
};
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Nameshift
|
|
3
|
+
* Nameshift API
|
|
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 type { CommissionFactor } from './CommissionFactor';
|
|
13
|
+
import type { CommissionPercentageRangeDto } from './CommissionPercentageRangeDto';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface SalesCountCommissionPayloadDto
|
|
18
|
+
*/
|
|
19
|
+
export interface SalesCountCommissionPayloadDto {
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @type {CommissionFactor}
|
|
23
|
+
* @memberof SalesCountCommissionPayloadDto
|
|
24
|
+
*/
|
|
25
|
+
factor: CommissionFactor;
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {Array<CommissionPercentageRangeDto>}
|
|
29
|
+
* @memberof SalesCountCommissionPayloadDto
|
|
30
|
+
*/
|
|
31
|
+
value: Array<CommissionPercentageRangeDto>;
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* Check if a given object implements the SalesCountCommissionPayloadDto interface.
|
|
35
|
+
*/
|
|
36
|
+
export declare function instanceOfSalesCountCommissionPayloadDto(value: object): value is SalesCountCommissionPayloadDto;
|
|
37
|
+
export declare function SalesCountCommissionPayloadDtoFromJSON(json: any): SalesCountCommissionPayloadDto;
|
|
38
|
+
export declare function SalesCountCommissionPayloadDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): SalesCountCommissionPayloadDto;
|
|
39
|
+
export declare function SalesCountCommissionPayloadDtoToJSON(json: any): SalesCountCommissionPayloadDto;
|
|
40
|
+
export declare function SalesCountCommissionPayloadDtoToJSONTyped(value?: SalesCountCommissionPayloadDto | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Nameshift
|
|
6
|
+
* Nameshift API
|
|
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.instanceOfSalesCountCommissionPayloadDto = instanceOfSalesCountCommissionPayloadDto;
|
|
17
|
+
exports.SalesCountCommissionPayloadDtoFromJSON = SalesCountCommissionPayloadDtoFromJSON;
|
|
18
|
+
exports.SalesCountCommissionPayloadDtoFromJSONTyped = SalesCountCommissionPayloadDtoFromJSONTyped;
|
|
19
|
+
exports.SalesCountCommissionPayloadDtoToJSON = SalesCountCommissionPayloadDtoToJSON;
|
|
20
|
+
exports.SalesCountCommissionPayloadDtoToJSONTyped = SalesCountCommissionPayloadDtoToJSONTyped;
|
|
21
|
+
var CommissionFactor_1 = require("./CommissionFactor");
|
|
22
|
+
var CommissionPercentageRangeDto_1 = require("./CommissionPercentageRangeDto");
|
|
23
|
+
/**
|
|
24
|
+
* Check if a given object implements the SalesCountCommissionPayloadDto interface.
|
|
25
|
+
*/
|
|
26
|
+
function instanceOfSalesCountCommissionPayloadDto(value) {
|
|
27
|
+
if (!('factor' in value) || value['factor'] === undefined)
|
|
28
|
+
return false;
|
|
29
|
+
if (!('value' in value) || value['value'] === undefined)
|
|
30
|
+
return false;
|
|
31
|
+
return true;
|
|
32
|
+
}
|
|
33
|
+
function SalesCountCommissionPayloadDtoFromJSON(json) {
|
|
34
|
+
return SalesCountCommissionPayloadDtoFromJSONTyped(json, false);
|
|
35
|
+
}
|
|
36
|
+
function SalesCountCommissionPayloadDtoFromJSONTyped(json, ignoreDiscriminator) {
|
|
37
|
+
if (json == null) {
|
|
38
|
+
return json;
|
|
39
|
+
}
|
|
40
|
+
return {
|
|
41
|
+
'factor': (0, CommissionFactor_1.CommissionFactorFromJSON)(json['factor']),
|
|
42
|
+
'value': (json['value'].map(CommissionPercentageRangeDto_1.CommissionPercentageRangeDtoFromJSON)),
|
|
43
|
+
};
|
|
44
|
+
}
|
|
45
|
+
function SalesCountCommissionPayloadDtoToJSON(json) {
|
|
46
|
+
return SalesCountCommissionPayloadDtoToJSONTyped(json, false);
|
|
47
|
+
}
|
|
48
|
+
function SalesCountCommissionPayloadDtoToJSONTyped(value, ignoreDiscriminator) {
|
|
49
|
+
if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
|
|
50
|
+
if (value == null) {
|
|
51
|
+
return value;
|
|
52
|
+
}
|
|
53
|
+
return {
|
|
54
|
+
'factor': (0, CommissionFactor_1.CommissionFactorToJSON)(value['factor']),
|
|
55
|
+
'value': (value['value'].map(CommissionPercentageRangeDto_1.CommissionPercentageRangeDtoToJSON)),
|
|
56
|
+
};
|
|
57
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Nameshift
|
|
3
|
+
* Nameshift API
|
|
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 type { CommissionPercentageRangeInput } from './CommissionPercentageRangeInput';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface SalesCountCommissionPayloadInput
|
|
17
|
+
*/
|
|
18
|
+
export interface SalesCountCommissionPayloadInput {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {Array<CommissionPercentageRangeInput>}
|
|
22
|
+
* @memberof SalesCountCommissionPayloadInput
|
|
23
|
+
*/
|
|
24
|
+
value: Array<CommissionPercentageRangeInput>;
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* Check if a given object implements the SalesCountCommissionPayloadInput interface.
|
|
28
|
+
*/
|
|
29
|
+
export declare function instanceOfSalesCountCommissionPayloadInput(value: object): value is SalesCountCommissionPayloadInput;
|
|
30
|
+
export declare function SalesCountCommissionPayloadInputFromJSON(json: any): SalesCountCommissionPayloadInput;
|
|
31
|
+
export declare function SalesCountCommissionPayloadInputFromJSONTyped(json: any, ignoreDiscriminator: boolean): SalesCountCommissionPayloadInput;
|
|
32
|
+
export declare function SalesCountCommissionPayloadInputToJSON(json: any): SalesCountCommissionPayloadInput;
|
|
33
|
+
export declare function SalesCountCommissionPayloadInputToJSONTyped(value?: SalesCountCommissionPayloadInput | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Nameshift
|
|
6
|
+
* Nameshift API
|
|
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.instanceOfSalesCountCommissionPayloadInput = instanceOfSalesCountCommissionPayloadInput;
|
|
17
|
+
exports.SalesCountCommissionPayloadInputFromJSON = SalesCountCommissionPayloadInputFromJSON;
|
|
18
|
+
exports.SalesCountCommissionPayloadInputFromJSONTyped = SalesCountCommissionPayloadInputFromJSONTyped;
|
|
19
|
+
exports.SalesCountCommissionPayloadInputToJSON = SalesCountCommissionPayloadInputToJSON;
|
|
20
|
+
exports.SalesCountCommissionPayloadInputToJSONTyped = SalesCountCommissionPayloadInputToJSONTyped;
|
|
21
|
+
var CommissionPercentageRangeInput_1 = require("./CommissionPercentageRangeInput");
|
|
22
|
+
/**
|
|
23
|
+
* Check if a given object implements the SalesCountCommissionPayloadInput interface.
|
|
24
|
+
*/
|
|
25
|
+
function instanceOfSalesCountCommissionPayloadInput(value) {
|
|
26
|
+
if (!('value' in value) || value['value'] === undefined)
|
|
27
|
+
return false;
|
|
28
|
+
return true;
|
|
29
|
+
}
|
|
30
|
+
function SalesCountCommissionPayloadInputFromJSON(json) {
|
|
31
|
+
return SalesCountCommissionPayloadInputFromJSONTyped(json, false);
|
|
32
|
+
}
|
|
33
|
+
function SalesCountCommissionPayloadInputFromJSONTyped(json, ignoreDiscriminator) {
|
|
34
|
+
if (json == null) {
|
|
35
|
+
return json;
|
|
36
|
+
}
|
|
37
|
+
return {
|
|
38
|
+
'value': (json['value'].map(CommissionPercentageRangeInput_1.CommissionPercentageRangeInputFromJSON)),
|
|
39
|
+
};
|
|
40
|
+
}
|
|
41
|
+
function SalesCountCommissionPayloadInputToJSON(json) {
|
|
42
|
+
return SalesCountCommissionPayloadInputToJSONTyped(json, false);
|
|
43
|
+
}
|
|
44
|
+
function SalesCountCommissionPayloadInputToJSONTyped(value, ignoreDiscriminator) {
|
|
45
|
+
if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
|
|
46
|
+
if (value == null) {
|
|
47
|
+
return value;
|
|
48
|
+
}
|
|
49
|
+
return {
|
|
50
|
+
'value': (value['value'].map(CommissionPercentageRangeInput_1.CommissionPercentageRangeInputToJSON)),
|
|
51
|
+
};
|
|
52
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Nameshift
|
|
3
|
+
* Nameshift API
|
|
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 type { CommissionFactor } from './CommissionFactor';
|
|
13
|
+
import type { CommissionPercentageRangeDto } from './CommissionPercentageRangeDto';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface SalesCountCommissionReasonPayloadDto
|
|
18
|
+
*/
|
|
19
|
+
export interface SalesCountCommissionReasonPayloadDto {
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @type {CommissionFactor}
|
|
23
|
+
* @memberof SalesCountCommissionReasonPayloadDto
|
|
24
|
+
*/
|
|
25
|
+
factor: CommissionFactor;
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {Array<CommissionPercentageRangeDto>}
|
|
29
|
+
* @memberof SalesCountCommissionReasonPayloadDto
|
|
30
|
+
*/
|
|
31
|
+
value: Array<CommissionPercentageRangeDto>;
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* Check if a given object implements the SalesCountCommissionReasonPayloadDto interface.
|
|
35
|
+
*/
|
|
36
|
+
export declare function instanceOfSalesCountCommissionReasonPayloadDto(value: object): value is SalesCountCommissionReasonPayloadDto;
|
|
37
|
+
export declare function SalesCountCommissionReasonPayloadDtoFromJSON(json: any): SalesCountCommissionReasonPayloadDto;
|
|
38
|
+
export declare function SalesCountCommissionReasonPayloadDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): SalesCountCommissionReasonPayloadDto;
|
|
39
|
+
export declare function SalesCountCommissionReasonPayloadDtoToJSON(json: any): SalesCountCommissionReasonPayloadDto;
|
|
40
|
+
export declare function SalesCountCommissionReasonPayloadDtoToJSONTyped(value?: SalesCountCommissionReasonPayloadDto | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Nameshift
|
|
6
|
+
* Nameshift API
|
|
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.instanceOfSalesCountCommissionReasonPayloadDto = instanceOfSalesCountCommissionReasonPayloadDto;
|
|
17
|
+
exports.SalesCountCommissionReasonPayloadDtoFromJSON = SalesCountCommissionReasonPayloadDtoFromJSON;
|
|
18
|
+
exports.SalesCountCommissionReasonPayloadDtoFromJSONTyped = SalesCountCommissionReasonPayloadDtoFromJSONTyped;
|
|
19
|
+
exports.SalesCountCommissionReasonPayloadDtoToJSON = SalesCountCommissionReasonPayloadDtoToJSON;
|
|
20
|
+
exports.SalesCountCommissionReasonPayloadDtoToJSONTyped = SalesCountCommissionReasonPayloadDtoToJSONTyped;
|
|
21
|
+
var CommissionFactor_1 = require("./CommissionFactor");
|
|
22
|
+
var CommissionPercentageRangeDto_1 = require("./CommissionPercentageRangeDto");
|
|
23
|
+
/**
|
|
24
|
+
* Check if a given object implements the SalesCountCommissionReasonPayloadDto interface.
|
|
25
|
+
*/
|
|
26
|
+
function instanceOfSalesCountCommissionReasonPayloadDto(value) {
|
|
27
|
+
if (!('factor' in value) || value['factor'] === undefined)
|
|
28
|
+
return false;
|
|
29
|
+
if (!('value' in value) || value['value'] === undefined)
|
|
30
|
+
return false;
|
|
31
|
+
return true;
|
|
32
|
+
}
|
|
33
|
+
function SalesCountCommissionReasonPayloadDtoFromJSON(json) {
|
|
34
|
+
return SalesCountCommissionReasonPayloadDtoFromJSONTyped(json, false);
|
|
35
|
+
}
|
|
36
|
+
function SalesCountCommissionReasonPayloadDtoFromJSONTyped(json, ignoreDiscriminator) {
|
|
37
|
+
if (json == null) {
|
|
38
|
+
return json;
|
|
39
|
+
}
|
|
40
|
+
return {
|
|
41
|
+
'factor': (0, CommissionFactor_1.CommissionFactorFromJSON)(json['factor']),
|
|
42
|
+
'value': (json['value'].map(CommissionPercentageRangeDto_1.CommissionPercentageRangeDtoFromJSON)),
|
|
43
|
+
};
|
|
44
|
+
}
|
|
45
|
+
function SalesCountCommissionReasonPayloadDtoToJSON(json) {
|
|
46
|
+
return SalesCountCommissionReasonPayloadDtoToJSONTyped(json, false);
|
|
47
|
+
}
|
|
48
|
+
function SalesCountCommissionReasonPayloadDtoToJSONTyped(value, ignoreDiscriminator) {
|
|
49
|
+
if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
|
|
50
|
+
if (value == null) {
|
|
51
|
+
return value;
|
|
52
|
+
}
|
|
53
|
+
return {
|
|
54
|
+
'factor': (0, CommissionFactor_1.CommissionFactorToJSON)(value['factor']),
|
|
55
|
+
'value': (value['value'].map(CommissionPercentageRangeDto_1.CommissionPercentageRangeDtoToJSON)),
|
|
56
|
+
};
|
|
57
|
+
}
|
package/dist/models/index.d.ts
CHANGED
|
@@ -5,6 +5,8 @@ export * from './AccountBankAccountDtoDetails';
|
|
|
5
5
|
export * from './AccountCommissionByDateRangeDto';
|
|
6
6
|
export * from './AccountDto';
|
|
7
7
|
export * from './AccountMetricsDto';
|
|
8
|
+
export * from './AccountNameshiftCommissionBySubtypeDto';
|
|
9
|
+
export * from './AccountNameshiftCommissionByTypeDto';
|
|
8
10
|
export * from './AccountNotificationDto';
|
|
9
11
|
export * from './AccountNotificationReadStatusDto';
|
|
10
12
|
export * from './AccountOnboardingDto';
|
|
@@ -35,6 +37,7 @@ export * from './AdminBankAccountDto';
|
|
|
35
37
|
export * from './AdminCompanyStatsDto';
|
|
36
38
|
export * from './AdminCompanyStatsLedger';
|
|
37
39
|
export * from './AdminGetAllDomainTransfers200Response';
|
|
40
|
+
export * from './AdminListAccountDto';
|
|
38
41
|
export * from './AdminVerificationDepositDto';
|
|
39
42
|
export * from './AggregatedPaginationResponse';
|
|
40
43
|
export * from './AirwallexBankAccountDetailsDto';
|
|
@@ -64,6 +67,8 @@ export * from './BatchReadSellerLeadMessageInput';
|
|
|
64
67
|
export * from './BatchUpdateDomainsInput';
|
|
65
68
|
export * from './BatchVerifyBuyerLeadsInput';
|
|
66
69
|
export * from './BillingInformationDto';
|
|
70
|
+
export * from './BulkCommissionActionsInput';
|
|
71
|
+
export * from './BulkCommissionActionsInputActionsInner';
|
|
67
72
|
export * from './BulkDownloadInvoicesInput';
|
|
68
73
|
export * from './BulkMarkBuyerNotificationsAsReadInputDto';
|
|
69
74
|
export * from './BulkMarkNotificationsAsReadInputDto';
|
|
@@ -96,6 +101,23 @@ export * from './CaBankAccountDetails';
|
|
|
96
101
|
export * from './ChangeOrderStatusInput';
|
|
97
102
|
export * from './ChangeSubscriptionStatusInput';
|
|
98
103
|
export * from './ChartDataPoint';
|
|
104
|
+
export * from './CommissionAccountDto';
|
|
105
|
+
export * from './CommissionAction';
|
|
106
|
+
export * from './CommissionAddUpdateActionInput';
|
|
107
|
+
export * from './CommissionConfigurationDto';
|
|
108
|
+
export * from './CommissionConfigurationDtoPayload';
|
|
109
|
+
export * from './CommissionConfigurationInput';
|
|
110
|
+
export * from './CommissionDeleteActionInput';
|
|
111
|
+
export * from './CommissionDto';
|
|
112
|
+
export * from './CommissionFactor';
|
|
113
|
+
export * from './CommissionListDto';
|
|
114
|
+
export * from './CommissionPayloadIdInput';
|
|
115
|
+
export * from './CommissionPayloadInput';
|
|
116
|
+
export * from './CommissionPercentageRangeDto';
|
|
117
|
+
export * from './CommissionPercentageRangeInput';
|
|
118
|
+
export * from './CommissionReasonConfigDto';
|
|
119
|
+
export * from './CommissionReasonConfigDtoPayload';
|
|
120
|
+
export * from './CommissionReasonDto';
|
|
99
121
|
export * from './CompanyInformationDto';
|
|
100
122
|
export * from './CompanyTaxIdDto';
|
|
101
123
|
export * from './ConcreteDomainTransferTaskData';
|
|
@@ -153,6 +175,9 @@ export * from './DomainTransferTldInformationResultDto';
|
|
|
153
175
|
export * from './DomainTransferWorkflowDto';
|
|
154
176
|
export * from './DomainUrlDto';
|
|
155
177
|
export * from './EppBatchUpdateInput';
|
|
178
|
+
export * from './FixedCommissionPayloadDto';
|
|
179
|
+
export * from './FixedCommissionPayloadInput';
|
|
180
|
+
export * from './FixedCommissionReasonPayloadDto';
|
|
156
181
|
export * from './ForgotPasswordRequestInput';
|
|
157
182
|
export * from './GetAllAffiliateCommissions200Response';
|
|
158
183
|
export * from './GetAllAuctions200Response';
|
|
@@ -178,7 +203,6 @@ export * from './IntersectionDomainDtoWithAccountDtoWithAuctionInfoDto';
|
|
|
178
203
|
export * from './IntersectionDomainDtoWithHijackerDtoWithAccountDto';
|
|
179
204
|
export * from './IntersectionDomainDtoWithSeoMetricsDto';
|
|
180
205
|
export * from './IntersectionLeadDtoWithLeadDetailsDtoWithManualLeadBuyerDetailsDto';
|
|
181
|
-
export * from './IntersectionListAccountDtoWithAccountCommissionDto';
|
|
182
206
|
export * from './IntersectionTaskListTaskDto';
|
|
183
207
|
export * from './InvoiceDomainDto';
|
|
184
208
|
export * from './InvoiceDto';
|
|
@@ -208,6 +232,7 @@ export * from './LeaseToOwnConfigurationDto';
|
|
|
208
232
|
export * from './LeaseToOwnConfigurationInput';
|
|
209
233
|
export * from './LeaseToOwnConfigurationPresetsDto';
|
|
210
234
|
export * from './LeaseToOwnDto';
|
|
235
|
+
export * from './LedgerMutationAttachmentDto';
|
|
211
236
|
export * from './LedgerMutationDto';
|
|
212
237
|
export * from './LedgerMutationsDto';
|
|
213
238
|
export * from './List200Response';
|
|
@@ -285,6 +310,9 @@ export * from './RentConfigurationPresetsDto';
|
|
|
285
310
|
export * from './RentDto';
|
|
286
311
|
export * from './RequestAccessTokenInput';
|
|
287
312
|
export * from './RequestEmailOtpInput';
|
|
313
|
+
export * from './SalesCountCommissionPayloadDto';
|
|
314
|
+
export * from './SalesCountCommissionPayloadInput';
|
|
315
|
+
export * from './SalesCountCommissionReasonPayloadDto';
|
|
288
316
|
export * from './SellerAccountReferralListItemDto';
|
|
289
317
|
export * from './SellerAffiliateCommissionDto';
|
|
290
318
|
export * from './SellerAuctionListItemDto';
|
package/dist/models/index.js
CHANGED
|
@@ -23,6 +23,8 @@ __exportStar(require("./AccountBankAccountDtoDetails"), exports);
|
|
|
23
23
|
__exportStar(require("./AccountCommissionByDateRangeDto"), exports);
|
|
24
24
|
__exportStar(require("./AccountDto"), exports);
|
|
25
25
|
__exportStar(require("./AccountMetricsDto"), exports);
|
|
26
|
+
__exportStar(require("./AccountNameshiftCommissionBySubtypeDto"), exports);
|
|
27
|
+
__exportStar(require("./AccountNameshiftCommissionByTypeDto"), exports);
|
|
26
28
|
__exportStar(require("./AccountNotificationDto"), exports);
|
|
27
29
|
__exportStar(require("./AccountNotificationReadStatusDto"), exports);
|
|
28
30
|
__exportStar(require("./AccountOnboardingDto"), exports);
|
|
@@ -53,6 +55,7 @@ __exportStar(require("./AdminBankAccountDto"), exports);
|
|
|
53
55
|
__exportStar(require("./AdminCompanyStatsDto"), exports);
|
|
54
56
|
__exportStar(require("./AdminCompanyStatsLedger"), exports);
|
|
55
57
|
__exportStar(require("./AdminGetAllDomainTransfers200Response"), exports);
|
|
58
|
+
__exportStar(require("./AdminListAccountDto"), exports);
|
|
56
59
|
__exportStar(require("./AdminVerificationDepositDto"), exports);
|
|
57
60
|
__exportStar(require("./AggregatedPaginationResponse"), exports);
|
|
58
61
|
__exportStar(require("./AirwallexBankAccountDetailsDto"), exports);
|
|
@@ -82,6 +85,8 @@ __exportStar(require("./BatchReadSellerLeadMessageInput"), exports);
|
|
|
82
85
|
__exportStar(require("./BatchUpdateDomainsInput"), exports);
|
|
83
86
|
__exportStar(require("./BatchVerifyBuyerLeadsInput"), exports);
|
|
84
87
|
__exportStar(require("./BillingInformationDto"), exports);
|
|
88
|
+
__exportStar(require("./BulkCommissionActionsInput"), exports);
|
|
89
|
+
__exportStar(require("./BulkCommissionActionsInputActionsInner"), exports);
|
|
85
90
|
__exportStar(require("./BulkDownloadInvoicesInput"), exports);
|
|
86
91
|
__exportStar(require("./BulkMarkBuyerNotificationsAsReadInputDto"), exports);
|
|
87
92
|
__exportStar(require("./BulkMarkNotificationsAsReadInputDto"), exports);
|
|
@@ -114,6 +119,23 @@ __exportStar(require("./CaBankAccountDetails"), exports);
|
|
|
114
119
|
__exportStar(require("./ChangeOrderStatusInput"), exports);
|
|
115
120
|
__exportStar(require("./ChangeSubscriptionStatusInput"), exports);
|
|
116
121
|
__exportStar(require("./ChartDataPoint"), exports);
|
|
122
|
+
__exportStar(require("./CommissionAccountDto"), exports);
|
|
123
|
+
__exportStar(require("./CommissionAction"), exports);
|
|
124
|
+
__exportStar(require("./CommissionAddUpdateActionInput"), exports);
|
|
125
|
+
__exportStar(require("./CommissionConfigurationDto"), exports);
|
|
126
|
+
__exportStar(require("./CommissionConfigurationDtoPayload"), exports);
|
|
127
|
+
__exportStar(require("./CommissionConfigurationInput"), exports);
|
|
128
|
+
__exportStar(require("./CommissionDeleteActionInput"), exports);
|
|
129
|
+
__exportStar(require("./CommissionDto"), exports);
|
|
130
|
+
__exportStar(require("./CommissionFactor"), exports);
|
|
131
|
+
__exportStar(require("./CommissionListDto"), exports);
|
|
132
|
+
__exportStar(require("./CommissionPayloadIdInput"), exports);
|
|
133
|
+
__exportStar(require("./CommissionPayloadInput"), exports);
|
|
134
|
+
__exportStar(require("./CommissionPercentageRangeDto"), exports);
|
|
135
|
+
__exportStar(require("./CommissionPercentageRangeInput"), exports);
|
|
136
|
+
__exportStar(require("./CommissionReasonConfigDto"), exports);
|
|
137
|
+
__exportStar(require("./CommissionReasonConfigDtoPayload"), exports);
|
|
138
|
+
__exportStar(require("./CommissionReasonDto"), exports);
|
|
117
139
|
__exportStar(require("./CompanyInformationDto"), exports);
|
|
118
140
|
__exportStar(require("./CompanyTaxIdDto"), exports);
|
|
119
141
|
__exportStar(require("./ConcreteDomainTransferTaskData"), exports);
|
|
@@ -171,6 +193,9 @@ __exportStar(require("./DomainTransferTldInformationResultDto"), exports);
|
|
|
171
193
|
__exportStar(require("./DomainTransferWorkflowDto"), exports);
|
|
172
194
|
__exportStar(require("./DomainUrlDto"), exports);
|
|
173
195
|
__exportStar(require("./EppBatchUpdateInput"), exports);
|
|
196
|
+
__exportStar(require("./FixedCommissionPayloadDto"), exports);
|
|
197
|
+
__exportStar(require("./FixedCommissionPayloadInput"), exports);
|
|
198
|
+
__exportStar(require("./FixedCommissionReasonPayloadDto"), exports);
|
|
174
199
|
__exportStar(require("./ForgotPasswordRequestInput"), exports);
|
|
175
200
|
__exportStar(require("./GetAllAffiliateCommissions200Response"), exports);
|
|
176
201
|
__exportStar(require("./GetAllAuctions200Response"), exports);
|
|
@@ -196,7 +221,6 @@ __exportStar(require("./IntersectionDomainDtoWithAccountDtoWithAuctionInfoDto"),
|
|
|
196
221
|
__exportStar(require("./IntersectionDomainDtoWithHijackerDtoWithAccountDto"), exports);
|
|
197
222
|
__exportStar(require("./IntersectionDomainDtoWithSeoMetricsDto"), exports);
|
|
198
223
|
__exportStar(require("./IntersectionLeadDtoWithLeadDetailsDtoWithManualLeadBuyerDetailsDto"), exports);
|
|
199
|
-
__exportStar(require("./IntersectionListAccountDtoWithAccountCommissionDto"), exports);
|
|
200
224
|
__exportStar(require("./IntersectionTaskListTaskDto"), exports);
|
|
201
225
|
__exportStar(require("./InvoiceDomainDto"), exports);
|
|
202
226
|
__exportStar(require("./InvoiceDto"), exports);
|
|
@@ -226,6 +250,7 @@ __exportStar(require("./LeaseToOwnConfigurationDto"), exports);
|
|
|
226
250
|
__exportStar(require("./LeaseToOwnConfigurationInput"), exports);
|
|
227
251
|
__exportStar(require("./LeaseToOwnConfigurationPresetsDto"), exports);
|
|
228
252
|
__exportStar(require("./LeaseToOwnDto"), exports);
|
|
253
|
+
__exportStar(require("./LedgerMutationAttachmentDto"), exports);
|
|
229
254
|
__exportStar(require("./LedgerMutationDto"), exports);
|
|
230
255
|
__exportStar(require("./LedgerMutationsDto"), exports);
|
|
231
256
|
__exportStar(require("./List200Response"), exports);
|
|
@@ -303,6 +328,9 @@ __exportStar(require("./RentConfigurationPresetsDto"), exports);
|
|
|
303
328
|
__exportStar(require("./RentDto"), exports);
|
|
304
329
|
__exportStar(require("./RequestAccessTokenInput"), exports);
|
|
305
330
|
__exportStar(require("./RequestEmailOtpInput"), exports);
|
|
331
|
+
__exportStar(require("./SalesCountCommissionPayloadDto"), exports);
|
|
332
|
+
__exportStar(require("./SalesCountCommissionPayloadInput"), exports);
|
|
333
|
+
__exportStar(require("./SalesCountCommissionReasonPayloadDto"), exports);
|
|
306
334
|
__exportStar(require("./SellerAccountReferralListItemDto"), exports);
|
|
307
335
|
__exportStar(require("./SellerAffiliateCommissionDto"), exports);
|
|
308
336
|
__exportStar(require("./SellerAuctionListItemDto"), exports);
|