@emilgroup/commission-sdk 1.0.0-beta.4 → 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 +8 -0
- package/README.md +2 -2
- package/api/commission-agreement-products-api.ts +665 -0
- package/api.ts +2 -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.d.ts +1 -0
- package/dist/api.js +1 -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/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/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/index.d.ts +7 -0
- package/dist/models/index.js +7 -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/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/models/commission-agreement-product-class.ts +87 -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/get-commission-agreement-product-response-class.ts +31 -0
- package/models/index.ts +7 -0
- package/models/list-commission-agreement-products-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/package.json +1 -1
|
@@ -0,0 +1,78 @@
|
|
|
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 { CommissionAgreementVersionClass } from './commission-agreement-version-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface CommissionAgreementProductClass
|
|
17
|
+
*/
|
|
18
|
+
export interface CommissionAgreementProductClass {
|
|
19
|
+
/**
|
|
20
|
+
* Unique identifier for the commission agreement product
|
|
21
|
+
* @type {number}
|
|
22
|
+
* @memberof CommissionAgreementProductClass
|
|
23
|
+
*/
|
|
24
|
+
'id': number;
|
|
25
|
+
/**
|
|
26
|
+
* The parent commission agreement version
|
|
27
|
+
* @type {CommissionAgreementVersionClass}
|
|
28
|
+
* @memberof CommissionAgreementProductClass
|
|
29
|
+
*/
|
|
30
|
+
'version': CommissionAgreementVersionClass;
|
|
31
|
+
/**
|
|
32
|
+
* Product slug identifier
|
|
33
|
+
* @type {string}
|
|
34
|
+
* @memberof CommissionAgreementProductClass
|
|
35
|
+
*/
|
|
36
|
+
'productSlug': string;
|
|
37
|
+
/**
|
|
38
|
+
* Unique code identifier for the commission agreement product, auto-generated on creation
|
|
39
|
+
* @type {string}
|
|
40
|
+
* @memberof CommissionAgreementProductClass
|
|
41
|
+
*/
|
|
42
|
+
'code': string;
|
|
43
|
+
/**
|
|
44
|
+
* Status of the commission agreement product
|
|
45
|
+
* @type {string}
|
|
46
|
+
* @memberof CommissionAgreementProductClass
|
|
47
|
+
*/
|
|
48
|
+
'status': CommissionAgreementProductClassStatusEnum;
|
|
49
|
+
/**
|
|
50
|
+
* Timestamp when the commission agreement product was created
|
|
51
|
+
* @type {string}
|
|
52
|
+
* @memberof CommissionAgreementProductClass
|
|
53
|
+
*/
|
|
54
|
+
'createdAt'?: string;
|
|
55
|
+
/**
|
|
56
|
+
* Timestamp when the commission agreement product was last updated
|
|
57
|
+
* @type {string}
|
|
58
|
+
* @memberof CommissionAgreementProductClass
|
|
59
|
+
*/
|
|
60
|
+
'updatedAt'?: string;
|
|
61
|
+
/**
|
|
62
|
+
* User identifier who created the commission agreement product
|
|
63
|
+
* @type {string}
|
|
64
|
+
* @memberof CommissionAgreementProductClass
|
|
65
|
+
*/
|
|
66
|
+
'createdBy'?: string;
|
|
67
|
+
/**
|
|
68
|
+
* User identifier who last updated the commission agreement product
|
|
69
|
+
* @type {string}
|
|
70
|
+
* @memberof CommissionAgreementProductClass
|
|
71
|
+
*/
|
|
72
|
+
'updatedBy'?: string;
|
|
73
|
+
}
|
|
74
|
+
export declare const CommissionAgreementProductClassStatusEnum: {
|
|
75
|
+
readonly Active: "active";
|
|
76
|
+
readonly Inactive: "inactive";
|
|
77
|
+
};
|
|
78
|
+
export type CommissionAgreementProductClassStatusEnum = typeof CommissionAgreementProductClassStatusEnum[keyof typeof CommissionAgreementProductClassStatusEnum];
|
|
@@ -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.CommissionAgreementProductClassStatusEnum = void 0;
|
|
17
|
+
exports.CommissionAgreementProductClassStatusEnum = {
|
|
18
|
+
Active: 'active',
|
|
19
|
+
Inactive: 'inactive'
|
|
20
|
+
};
|
|
@@ -0,0 +1,30 @@
|
|
|
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 CreateCommissionAgreementProductRequestDto
|
|
16
|
+
*/
|
|
17
|
+
export interface CreateCommissionAgreementProductRequestDto {
|
|
18
|
+
/**
|
|
19
|
+
* Code of the parent commission agreement version to create a product for
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof CreateCommissionAgreementProductRequestDto
|
|
22
|
+
*/
|
|
23
|
+
'commissionAgreementVersionCode': string;
|
|
24
|
+
/**
|
|
25
|
+
* Product slug identifier
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof CreateCommissionAgreementProductRequestDto
|
|
28
|
+
*/
|
|
29
|
+
'productSlug': string;
|
|
30
|
+
}
|
|
@@ -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 { CommissionAgreementProductClass } from './commission-agreement-product-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface CreateCommissionAgreementProductResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface CreateCommissionAgreementProductResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* The created commission agreement product object
|
|
21
|
+
* @type {CommissionAgreementProductClass}
|
|
22
|
+
* @memberof CreateCommissionAgreementProductResponseClass
|
|
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,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 GetCommissionAgreementProductResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface GetCommissionAgreementProductResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* The retrieved commission agreement product object
|
|
21
|
+
* @type {CommissionAgreementProductClass}
|
|
22
|
+
* @memberof GetCommissionAgreementProductResponseClass
|
|
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 });
|
package/dist/models/index.d.ts
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
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';
|
|
5
6
|
export * from './commission-recipient-class';
|
|
7
|
+
export * from './create-commission-agreement-product-request-dto';
|
|
8
|
+
export * from './create-commission-agreement-product-response-class';
|
|
6
9
|
export * from './create-commission-agreement-request-dto';
|
|
7
10
|
export * from './create-commission-agreement-response-class';
|
|
8
11
|
export * from './create-commission-agreement-version-request-dto';
|
|
@@ -12,16 +15,20 @@ export * from './create-commission-recipient-request-dto';
|
|
|
12
15
|
export * from './create-commission-recipient-response-class';
|
|
13
16
|
export * from './create-commission-request-dto';
|
|
14
17
|
export * from './create-commission-response-class';
|
|
18
|
+
export * from './get-commission-agreement-product-response-class';
|
|
15
19
|
export * from './get-commission-agreement-response-class';
|
|
16
20
|
export * from './get-commission-agreement-version-response-class';
|
|
17
21
|
export * from './get-commission-recipient-response-class';
|
|
18
22
|
export * from './get-commission-response-class';
|
|
19
23
|
export * from './inline-response200';
|
|
20
24
|
export * from './inline-response503';
|
|
25
|
+
export * from './list-commission-agreement-products-response-class';
|
|
21
26
|
export * from './list-commission-agreement-versions-response-class';
|
|
22
27
|
export * from './list-commission-agreements-response-class';
|
|
23
28
|
export * from './list-commission-recipients-response-class';
|
|
24
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';
|
|
25
32
|
export * from './update-commission-agreement-request-dto';
|
|
26
33
|
export * from './update-commission-agreement-response-class';
|
|
27
34
|
export * from './update-commission-recipient-request-dto';
|
package/dist/models/index.js
CHANGED
|
@@ -15,10 +15,13 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./commission-agreement-class"), exports);
|
|
18
|
+
__exportStar(require("./commission-agreement-product-class"), exports);
|
|
18
19
|
__exportStar(require("./commission-agreement-version-class"), exports);
|
|
19
20
|
__exportStar(require("./commission-class"), exports);
|
|
20
21
|
__exportStar(require("./commission-item-class"), exports);
|
|
21
22
|
__exportStar(require("./commission-recipient-class"), exports);
|
|
23
|
+
__exportStar(require("./create-commission-agreement-product-request-dto"), exports);
|
|
24
|
+
__exportStar(require("./create-commission-agreement-product-response-class"), exports);
|
|
22
25
|
__exportStar(require("./create-commission-agreement-request-dto"), exports);
|
|
23
26
|
__exportStar(require("./create-commission-agreement-response-class"), exports);
|
|
24
27
|
__exportStar(require("./create-commission-agreement-version-request-dto"), exports);
|
|
@@ -28,16 +31,20 @@ __exportStar(require("./create-commission-recipient-request-dto"), exports);
|
|
|
28
31
|
__exportStar(require("./create-commission-recipient-response-class"), exports);
|
|
29
32
|
__exportStar(require("./create-commission-request-dto"), exports);
|
|
30
33
|
__exportStar(require("./create-commission-response-class"), exports);
|
|
34
|
+
__exportStar(require("./get-commission-agreement-product-response-class"), exports);
|
|
31
35
|
__exportStar(require("./get-commission-agreement-response-class"), exports);
|
|
32
36
|
__exportStar(require("./get-commission-agreement-version-response-class"), exports);
|
|
33
37
|
__exportStar(require("./get-commission-recipient-response-class"), exports);
|
|
34
38
|
__exportStar(require("./get-commission-response-class"), exports);
|
|
35
39
|
__exportStar(require("./inline-response200"), exports);
|
|
36
40
|
__exportStar(require("./inline-response503"), exports);
|
|
41
|
+
__exportStar(require("./list-commission-agreement-products-response-class"), exports);
|
|
37
42
|
__exportStar(require("./list-commission-agreement-versions-response-class"), exports);
|
|
38
43
|
__exportStar(require("./list-commission-agreements-response-class"), exports);
|
|
39
44
|
__exportStar(require("./list-commission-recipients-response-class"), exports);
|
|
40
45
|
__exportStar(require("./list-commissions-response-class"), exports);
|
|
46
|
+
__exportStar(require("./update-commission-agreement-product-request-dto"), exports);
|
|
47
|
+
__exportStar(require("./update-commission-agreement-product-response-class"), exports);
|
|
41
48
|
__exportStar(require("./update-commission-agreement-request-dto"), exports);
|
|
42
49
|
__exportStar(require("./update-commission-agreement-response-class"), exports);
|
|
43
50
|
__exportStar(require("./update-commission-recipient-request-dto"), exports);
|
|
@@ -0,0 +1,43 @@
|
|
|
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 ListCommissionAgreementProductsResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface ListCommissionAgreementProductsResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* Array of commission agreement product objects
|
|
21
|
+
* @type {Array<CommissionAgreementProductClass>}
|
|
22
|
+
* @memberof ListCommissionAgreementProductsResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'items': Array<CommissionAgreementProductClass>;
|
|
25
|
+
/**
|
|
26
|
+
* Token for retrieving the next page of results
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof ListCommissionAgreementProductsResponseClass
|
|
29
|
+
*/
|
|
30
|
+
'nextPageToken': string;
|
|
31
|
+
/**
|
|
32
|
+
* Number of items per page
|
|
33
|
+
* @type {number}
|
|
34
|
+
* @memberof ListCommissionAgreementProductsResponseClass
|
|
35
|
+
*/
|
|
36
|
+
'itemsPerPage': number;
|
|
37
|
+
/**
|
|
38
|
+
* Total number of items
|
|
39
|
+
* @type {number}
|
|
40
|
+
* @memberof ListCommissionAgreementProductsResponseClass
|
|
41
|
+
*/
|
|
42
|
+
'totalItems': number;
|
|
43
|
+
}
|
|
@@ -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,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,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,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
|
+
|