@emilgroup/commission-sdk 1.0.0-beta.3 → 1.0.0-beta.5
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 +16 -0
- package/README.md +2 -2
- package/api/commission-agreement-products-api.ts +665 -0
- package/api/commission-recipients-api.ts +638 -0
- package/api.ts +4 -0
- package/dist/api/commission-agreement-products-api.d.ts +375 -0
- package/dist/api/commission-agreement-products-api.js +632 -0
- package/dist/api/commission-recipients-api.d.ts +357 -0
- package/dist/api/commission-recipients-api.js +620 -0
- package/dist/api.d.ts +2 -0
- package/dist/api.js +2 -0
- package/dist/models/commission-agreement-product-class.d.ts +78 -0
- package/dist/models/commission-agreement-product-class.js +20 -0
- package/dist/models/commission-recipient-class.d.ts +90 -0
- package/dist/models/commission-recipient-class.js +20 -0
- package/dist/models/create-commission-agreement-product-request-dto.d.ts +30 -0
- package/dist/models/create-commission-agreement-product-request-dto.js +15 -0
- package/dist/models/create-commission-agreement-product-response-class.d.ts +25 -0
- package/dist/models/create-commission-agreement-product-response-class.js +15 -0
- package/dist/models/create-commission-recipient-request-dto.d.ts +36 -0
- package/dist/models/create-commission-recipient-request-dto.js +15 -0
- package/dist/models/create-commission-recipient-response-class.d.ts +25 -0
- package/dist/models/create-commission-recipient-response-class.js +15 -0
- package/dist/models/get-commission-agreement-product-response-class.d.ts +25 -0
- package/dist/models/get-commission-agreement-product-response-class.js +15 -0
- package/dist/models/get-commission-recipient-response-class.d.ts +25 -0
- package/dist/models/get-commission-recipient-response-class.js +15 -0
- package/dist/models/index.d.ts +14 -0
- package/dist/models/index.js +14 -0
- package/dist/models/list-commission-agreement-products-response-class.d.ts +43 -0
- package/dist/models/list-commission-agreement-products-response-class.js +15 -0
- package/dist/models/list-commission-recipients-response-class.d.ts +43 -0
- package/dist/models/list-commission-recipients-response-class.js +15 -0
- package/dist/models/update-commission-agreement-product-request-dto.d.ts +41 -0
- package/dist/models/update-commission-agreement-product-request-dto.js +20 -0
- package/dist/models/update-commission-agreement-product-response-class.d.ts +25 -0
- package/dist/models/update-commission-agreement-product-response-class.js +15 -0
- package/dist/models/update-commission-recipient-request-dto.d.ts +42 -0
- package/dist/models/update-commission-recipient-request-dto.js +15 -0
- package/dist/models/update-commission-recipient-response-class.d.ts +25 -0
- package/dist/models/update-commission-recipient-response-class.js +15 -0
- package/models/commission-agreement-product-class.ts +87 -0
- package/models/commission-recipient-class.ts +99 -0
- package/models/create-commission-agreement-product-request-dto.ts +36 -0
- package/models/create-commission-agreement-product-response-class.ts +31 -0
- package/models/create-commission-recipient-request-dto.ts +42 -0
- package/models/create-commission-recipient-response-class.ts +31 -0
- package/models/get-commission-agreement-product-response-class.ts +31 -0
- package/models/get-commission-recipient-response-class.ts +31 -0
- package/models/index.ts +14 -0
- package/models/list-commission-agreement-products-response-class.ts +49 -0
- package/models/list-commission-recipients-response-class.ts +49 -0
- package/models/update-commission-agreement-product-request-dto.ts +50 -0
- package/models/update-commission-agreement-product-response-class.ts +31 -0
- package/models/update-commission-recipient-request-dto.ts +48 -0
- package/models/update-commission-recipient-response-class.ts +31 -0
- package/package.json +1 -1
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* EMIL CommissionService
|
|
6
|
+
* The EMIL CommissionService API description
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
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 });
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* EMIL CommissionService
|
|
3
|
+
* The EMIL CommissionService API description
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
* Contact: kontakt@emil.de
|
|
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
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface UpdateCommissionAgreementProductRequestDto
|
|
16
|
+
*/
|
|
17
|
+
export interface UpdateCommissionAgreementProductRequestDto {
|
|
18
|
+
/**
|
|
19
|
+
* Code of the commission agreement product to update
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof UpdateCommissionAgreementProductRequestDto
|
|
22
|
+
*/
|
|
23
|
+
'code': string;
|
|
24
|
+
/**
|
|
25
|
+
* Product slug identifier
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof UpdateCommissionAgreementProductRequestDto
|
|
28
|
+
*/
|
|
29
|
+
'productSlug': string;
|
|
30
|
+
/**
|
|
31
|
+
* Status of the commission agreement product
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof UpdateCommissionAgreementProductRequestDto
|
|
34
|
+
*/
|
|
35
|
+
'status': UpdateCommissionAgreementProductRequestDtoStatusEnum;
|
|
36
|
+
}
|
|
37
|
+
export declare const UpdateCommissionAgreementProductRequestDtoStatusEnum: {
|
|
38
|
+
readonly Active: "active";
|
|
39
|
+
readonly Inactive: "inactive";
|
|
40
|
+
};
|
|
41
|
+
export type UpdateCommissionAgreementProductRequestDtoStatusEnum = typeof UpdateCommissionAgreementProductRequestDtoStatusEnum[keyof typeof UpdateCommissionAgreementProductRequestDtoStatusEnum];
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* EMIL CommissionService
|
|
6
|
+
* The EMIL CommissionService API description
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
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.UpdateCommissionAgreementProductRequestDtoStatusEnum = void 0;
|
|
17
|
+
exports.UpdateCommissionAgreementProductRequestDtoStatusEnum = {
|
|
18
|
+
Active: 'active',
|
|
19
|
+
Inactive: 'inactive'
|
|
20
|
+
};
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* EMIL CommissionService
|
|
3
|
+
* The EMIL CommissionService API description
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
* Contact: kontakt@emil.de
|
|
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 { CommissionAgreementProductClass } from './commission-agreement-product-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface UpdateCommissionAgreementProductResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface UpdateCommissionAgreementProductResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* The updated commission agreement product object
|
|
21
|
+
* @type {CommissionAgreementProductClass}
|
|
22
|
+
* @memberof UpdateCommissionAgreementProductResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'product'?: CommissionAgreementProductClass;
|
|
25
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* EMIL CommissionService
|
|
6
|
+
* The EMIL CommissionService API description
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
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 });
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* EMIL CommissionService
|
|
3
|
+
* The EMIL CommissionService API description
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
* Contact: kontakt@emil.de
|
|
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
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface UpdateCommissionRecipientRequestDto
|
|
16
|
+
*/
|
|
17
|
+
export interface UpdateCommissionRecipientRequestDto {
|
|
18
|
+
/**
|
|
19
|
+
* Unique code identifier for the commission recipient to update
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof UpdateCommissionRecipientRequestDto
|
|
22
|
+
*/
|
|
23
|
+
'code': string;
|
|
24
|
+
/**
|
|
25
|
+
* Updated human-readable display name for the commission recipient
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof UpdateCommissionRecipientRequestDto
|
|
28
|
+
*/
|
|
29
|
+
'displayName': string;
|
|
30
|
+
/**
|
|
31
|
+
* Updated unique code or identifier of the partner associated with this commission recipient
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof UpdateCommissionRecipientRequestDto
|
|
34
|
+
*/
|
|
35
|
+
'partnerCode': string;
|
|
36
|
+
/**
|
|
37
|
+
* Updated status of the commission recipient (e.g., pending, settled, active, inactive)
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof UpdateCommissionRecipientRequestDto
|
|
40
|
+
*/
|
|
41
|
+
'status': string;
|
|
42
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* EMIL CommissionService
|
|
6
|
+
* The EMIL CommissionService API description
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
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 });
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* EMIL CommissionService
|
|
3
|
+
* The EMIL CommissionService API description
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
* Contact: kontakt@emil.de
|
|
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 { CommissionRecipientClass } from './commission-recipient-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface UpdateCommissionRecipientResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface UpdateCommissionRecipientResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* The commission recipient that was updated
|
|
21
|
+
* @type {CommissionRecipientClass}
|
|
22
|
+
* @memberof UpdateCommissionRecipientResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'recipient'?: CommissionRecipientClass;
|
|
25
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* EMIL CommissionService
|
|
6
|
+
* The EMIL CommissionService API description
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
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 });
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* EMIL CommissionService
|
|
5
|
+
* The EMIL CommissionService API description
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
* Contact: kontakt@emil.de
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
import { CommissionAgreementVersionClass } from './commission-agreement-version-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface CommissionAgreementProductClass
|
|
22
|
+
*/
|
|
23
|
+
export interface CommissionAgreementProductClass {
|
|
24
|
+
/**
|
|
25
|
+
* Unique identifier for the commission agreement product
|
|
26
|
+
* @type {number}
|
|
27
|
+
* @memberof CommissionAgreementProductClass
|
|
28
|
+
*/
|
|
29
|
+
'id': number;
|
|
30
|
+
/**
|
|
31
|
+
* The parent commission agreement version
|
|
32
|
+
* @type {CommissionAgreementVersionClass}
|
|
33
|
+
* @memberof CommissionAgreementProductClass
|
|
34
|
+
*/
|
|
35
|
+
'version': CommissionAgreementVersionClass;
|
|
36
|
+
/**
|
|
37
|
+
* Product slug identifier
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof CommissionAgreementProductClass
|
|
40
|
+
*/
|
|
41
|
+
'productSlug': string;
|
|
42
|
+
/**
|
|
43
|
+
* Unique code identifier for the commission agreement product, auto-generated on creation
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof CommissionAgreementProductClass
|
|
46
|
+
*/
|
|
47
|
+
'code': string;
|
|
48
|
+
/**
|
|
49
|
+
* Status of the commission agreement product
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof CommissionAgreementProductClass
|
|
52
|
+
*/
|
|
53
|
+
'status': CommissionAgreementProductClassStatusEnum;
|
|
54
|
+
/**
|
|
55
|
+
* Timestamp when the commission agreement product was created
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof CommissionAgreementProductClass
|
|
58
|
+
*/
|
|
59
|
+
'createdAt'?: string;
|
|
60
|
+
/**
|
|
61
|
+
* Timestamp when the commission agreement product was last updated
|
|
62
|
+
* @type {string}
|
|
63
|
+
* @memberof CommissionAgreementProductClass
|
|
64
|
+
*/
|
|
65
|
+
'updatedAt'?: string;
|
|
66
|
+
/**
|
|
67
|
+
* User identifier who created the commission agreement product
|
|
68
|
+
* @type {string}
|
|
69
|
+
* @memberof CommissionAgreementProductClass
|
|
70
|
+
*/
|
|
71
|
+
'createdBy'?: string;
|
|
72
|
+
/**
|
|
73
|
+
* User identifier who last updated the commission agreement product
|
|
74
|
+
* @type {string}
|
|
75
|
+
* @memberof CommissionAgreementProductClass
|
|
76
|
+
*/
|
|
77
|
+
'updatedBy'?: string;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
export const CommissionAgreementProductClassStatusEnum = {
|
|
81
|
+
Active: 'active',
|
|
82
|
+
Inactive: 'inactive'
|
|
83
|
+
} as const;
|
|
84
|
+
|
|
85
|
+
export type CommissionAgreementProductClassStatusEnum = typeof CommissionAgreementProductClassStatusEnum[keyof typeof CommissionAgreementProductClassStatusEnum];
|
|
86
|
+
|
|
87
|
+
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* EMIL CommissionService
|
|
5
|
+
* The EMIL CommissionService API description
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
* Contact: kontakt@emil.de
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
import { CommissionAgreementVersionClass } from './commission-agreement-version-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface CommissionRecipientClass
|
|
22
|
+
*/
|
|
23
|
+
export interface CommissionRecipientClass {
|
|
24
|
+
/**
|
|
25
|
+
* Unique identifier for the commission recipient
|
|
26
|
+
* @type {number}
|
|
27
|
+
* @memberof CommissionRecipientClass
|
|
28
|
+
*/
|
|
29
|
+
'id': number;
|
|
30
|
+
/**
|
|
31
|
+
* The commission agreement version associated with this commission recipient
|
|
32
|
+
* @type {CommissionAgreementVersionClass}
|
|
33
|
+
* @memberof CommissionRecipientClass
|
|
34
|
+
*/
|
|
35
|
+
'version'?: CommissionAgreementVersionClass;
|
|
36
|
+
/**
|
|
37
|
+
* The commission agreement version code associated with this commission recipient
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof CommissionRecipientClass
|
|
40
|
+
*/
|
|
41
|
+
'commissionAgreementVersionCode'?: string;
|
|
42
|
+
/**
|
|
43
|
+
* Unique code identifier for the commission recipient, auto-generated on creation
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof CommissionRecipientClass
|
|
46
|
+
*/
|
|
47
|
+
'code': string;
|
|
48
|
+
/**
|
|
49
|
+
* Human-readable display name for the commission recipient
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof CommissionRecipientClass
|
|
52
|
+
*/
|
|
53
|
+
'displayName': string;
|
|
54
|
+
/**
|
|
55
|
+
* The unique code or identifier of the partner associated with this commission recipient
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof CommissionRecipientClass
|
|
58
|
+
*/
|
|
59
|
+
'partnerCode': string;
|
|
60
|
+
/**
|
|
61
|
+
* Status of the commission recipient
|
|
62
|
+
* @type {string}
|
|
63
|
+
* @memberof CommissionRecipientClass
|
|
64
|
+
*/
|
|
65
|
+
'status': CommissionRecipientClassStatusEnum;
|
|
66
|
+
/**
|
|
67
|
+
* Timestamp when the commission recipient was created
|
|
68
|
+
* @type {string}
|
|
69
|
+
* @memberof CommissionRecipientClass
|
|
70
|
+
*/
|
|
71
|
+
'createdAt'?: string;
|
|
72
|
+
/**
|
|
73
|
+
* Timestamp when the commission recipient was last updated
|
|
74
|
+
* @type {string}
|
|
75
|
+
* @memberof CommissionRecipientClass
|
|
76
|
+
*/
|
|
77
|
+
'updatedAt'?: string;
|
|
78
|
+
/**
|
|
79
|
+
* User identifier who created the commission recipient
|
|
80
|
+
* @type {string}
|
|
81
|
+
* @memberof CommissionRecipientClass
|
|
82
|
+
*/
|
|
83
|
+
'createdBy'?: string;
|
|
84
|
+
/**
|
|
85
|
+
* User identifier who last updated the commission recipient
|
|
86
|
+
* @type {string}
|
|
87
|
+
* @memberof CommissionRecipientClass
|
|
88
|
+
*/
|
|
89
|
+
'updatedBy'?: string;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
export const CommissionRecipientClassStatusEnum = {
|
|
93
|
+
Active: 'active',
|
|
94
|
+
Inactive: 'inactive'
|
|
95
|
+
} as const;
|
|
96
|
+
|
|
97
|
+
export type CommissionRecipientClassStatusEnum = typeof CommissionRecipientClassStatusEnum[keyof typeof CommissionRecipientClassStatusEnum];
|
|
98
|
+
|
|
99
|
+
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* EMIL CommissionService
|
|
5
|
+
* The EMIL CommissionService API description
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
* Contact: kontakt@emil.de
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface CreateCommissionAgreementProductRequestDto
|
|
21
|
+
*/
|
|
22
|
+
export interface CreateCommissionAgreementProductRequestDto {
|
|
23
|
+
/**
|
|
24
|
+
* Code of the parent commission agreement version to create a product for
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof CreateCommissionAgreementProductRequestDto
|
|
27
|
+
*/
|
|
28
|
+
'commissionAgreementVersionCode': string;
|
|
29
|
+
/**
|
|
30
|
+
* Product slug identifier
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof CreateCommissionAgreementProductRequestDto
|
|
33
|
+
*/
|
|
34
|
+
'productSlug': string;
|
|
35
|
+
}
|
|
36
|
+
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* EMIL CommissionService
|
|
5
|
+
* The EMIL CommissionService API description
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
* Contact: kontakt@emil.de
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
import { CommissionAgreementProductClass } from './commission-agreement-product-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface CreateCommissionAgreementProductResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface CreateCommissionAgreementProductResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* The created commission agreement product object
|
|
26
|
+
* @type {CommissionAgreementProductClass}
|
|
27
|
+
* @memberof CreateCommissionAgreementProductResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'product'?: CommissionAgreementProductClass;
|
|
30
|
+
}
|
|
31
|
+
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* EMIL CommissionService
|
|
5
|
+
* The EMIL CommissionService API description
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
* Contact: kontakt@emil.de
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface CreateCommissionRecipientRequestDto
|
|
21
|
+
*/
|
|
22
|
+
export interface CreateCommissionRecipientRequestDto {
|
|
23
|
+
/**
|
|
24
|
+
* The unique code or identifier of the commission agreement version this recipient is associated with
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof CreateCommissionRecipientRequestDto
|
|
27
|
+
*/
|
|
28
|
+
'commissionAgreementVersionCode': string;
|
|
29
|
+
/**
|
|
30
|
+
* Human-readable display name for the commission recipient
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof CreateCommissionRecipientRequestDto
|
|
33
|
+
*/
|
|
34
|
+
'displayName': string;
|
|
35
|
+
/**
|
|
36
|
+
* The unique code or identifier of the partner associated with this commission recipient
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof CreateCommissionRecipientRequestDto
|
|
39
|
+
*/
|
|
40
|
+
'partnerCode': string;
|
|
41
|
+
}
|
|
42
|
+
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* EMIL CommissionService
|
|
5
|
+
* The EMIL CommissionService API description
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
* Contact: kontakt@emil.de
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
import { CommissionRecipientClass } from './commission-recipient-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface CreateCommissionRecipientResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface CreateCommissionRecipientResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* The commission recipient that was created
|
|
26
|
+
* @type {CommissionRecipientClass}
|
|
27
|
+
* @memberof CreateCommissionRecipientResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'recipient'?: CommissionRecipientClass;
|
|
30
|
+
}
|
|
31
|
+
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* EMIL CommissionService
|
|
5
|
+
* The EMIL CommissionService API description
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
* Contact: kontakt@emil.de
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
import { CommissionAgreementProductClass } from './commission-agreement-product-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface GetCommissionAgreementProductResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface GetCommissionAgreementProductResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* The retrieved commission agreement product object
|
|
26
|
+
* @type {CommissionAgreementProductClass}
|
|
27
|
+
* @memberof GetCommissionAgreementProductResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'product'?: CommissionAgreementProductClass;
|
|
30
|
+
}
|
|
31
|
+
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* EMIL CommissionService
|
|
5
|
+
* The EMIL CommissionService API description
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
* Contact: kontakt@emil.de
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
import { CommissionRecipientClass } from './commission-recipient-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface GetCommissionRecipientResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface GetCommissionRecipientResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* The commission recipient that was created
|
|
26
|
+
* @type {CommissionRecipientClass}
|
|
27
|
+
* @memberof GetCommissionRecipientResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'recipient'?: CommissionRecipientClass;
|
|
30
|
+
}
|
|
31
|
+
|
package/models/index.ts
CHANGED
|
@@ -1,23 +1,37 @@
|
|
|
1
1
|
export * from './commission-agreement-class';
|
|
2
|
+
export * from './commission-agreement-product-class';
|
|
2
3
|
export * from './commission-agreement-version-class';
|
|
3
4
|
export * from './commission-class';
|
|
4
5
|
export * from './commission-item-class';
|
|
6
|
+
export * from './commission-recipient-class';
|
|
7
|
+
export * from './create-commission-agreement-product-request-dto';
|
|
8
|
+
export * from './create-commission-agreement-product-response-class';
|
|
5
9
|
export * from './create-commission-agreement-request-dto';
|
|
6
10
|
export * from './create-commission-agreement-response-class';
|
|
7
11
|
export * from './create-commission-agreement-version-request-dto';
|
|
8
12
|
export * from './create-commission-agreement-version-response-class';
|
|
9
13
|
export * from './create-commission-item-request-dto';
|
|
14
|
+
export * from './create-commission-recipient-request-dto';
|
|
15
|
+
export * from './create-commission-recipient-response-class';
|
|
10
16
|
export * from './create-commission-request-dto';
|
|
11
17
|
export * from './create-commission-response-class';
|
|
18
|
+
export * from './get-commission-agreement-product-response-class';
|
|
12
19
|
export * from './get-commission-agreement-response-class';
|
|
13
20
|
export * from './get-commission-agreement-version-response-class';
|
|
21
|
+
export * from './get-commission-recipient-response-class';
|
|
14
22
|
export * from './get-commission-response-class';
|
|
15
23
|
export * from './inline-response200';
|
|
16
24
|
export * from './inline-response503';
|
|
25
|
+
export * from './list-commission-agreement-products-response-class';
|
|
17
26
|
export * from './list-commission-agreement-versions-response-class';
|
|
18
27
|
export * from './list-commission-agreements-response-class';
|
|
28
|
+
export * from './list-commission-recipients-response-class';
|
|
19
29
|
export * from './list-commissions-response-class';
|
|
30
|
+
export * from './update-commission-agreement-product-request-dto';
|
|
31
|
+
export * from './update-commission-agreement-product-response-class';
|
|
20
32
|
export * from './update-commission-agreement-request-dto';
|
|
21
33
|
export * from './update-commission-agreement-response-class';
|
|
34
|
+
export * from './update-commission-recipient-request-dto';
|
|
35
|
+
export * from './update-commission-recipient-response-class';
|
|
22
36
|
export * from './update-commission-request-dto';
|
|
23
37
|
export * from './update-commission-response-class';
|