@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.
Files changed (57) hide show
  1. package/.openapi-generator/FILES +16 -0
  2. package/README.md +2 -2
  3. package/api/commission-agreement-products-api.ts +665 -0
  4. package/api/commission-recipients-api.ts +638 -0
  5. package/api.ts +4 -0
  6. package/dist/api/commission-agreement-products-api.d.ts +375 -0
  7. package/dist/api/commission-agreement-products-api.js +632 -0
  8. package/dist/api/commission-recipients-api.d.ts +357 -0
  9. package/dist/api/commission-recipients-api.js +620 -0
  10. package/dist/api.d.ts +2 -0
  11. package/dist/api.js +2 -0
  12. package/dist/models/commission-agreement-product-class.d.ts +78 -0
  13. package/dist/models/commission-agreement-product-class.js +20 -0
  14. package/dist/models/commission-recipient-class.d.ts +90 -0
  15. package/dist/models/commission-recipient-class.js +20 -0
  16. package/dist/models/create-commission-agreement-product-request-dto.d.ts +30 -0
  17. package/dist/models/create-commission-agreement-product-request-dto.js +15 -0
  18. package/dist/models/create-commission-agreement-product-response-class.d.ts +25 -0
  19. package/dist/models/create-commission-agreement-product-response-class.js +15 -0
  20. package/dist/models/create-commission-recipient-request-dto.d.ts +36 -0
  21. package/dist/models/create-commission-recipient-request-dto.js +15 -0
  22. package/dist/models/create-commission-recipient-response-class.d.ts +25 -0
  23. package/dist/models/create-commission-recipient-response-class.js +15 -0
  24. package/dist/models/get-commission-agreement-product-response-class.d.ts +25 -0
  25. package/dist/models/get-commission-agreement-product-response-class.js +15 -0
  26. package/dist/models/get-commission-recipient-response-class.d.ts +25 -0
  27. package/dist/models/get-commission-recipient-response-class.js +15 -0
  28. package/dist/models/index.d.ts +14 -0
  29. package/dist/models/index.js +14 -0
  30. package/dist/models/list-commission-agreement-products-response-class.d.ts +43 -0
  31. package/dist/models/list-commission-agreement-products-response-class.js +15 -0
  32. package/dist/models/list-commission-recipients-response-class.d.ts +43 -0
  33. package/dist/models/list-commission-recipients-response-class.js +15 -0
  34. package/dist/models/update-commission-agreement-product-request-dto.d.ts +41 -0
  35. package/dist/models/update-commission-agreement-product-request-dto.js +20 -0
  36. package/dist/models/update-commission-agreement-product-response-class.d.ts +25 -0
  37. package/dist/models/update-commission-agreement-product-response-class.js +15 -0
  38. package/dist/models/update-commission-recipient-request-dto.d.ts +42 -0
  39. package/dist/models/update-commission-recipient-request-dto.js +15 -0
  40. package/dist/models/update-commission-recipient-response-class.d.ts +25 -0
  41. package/dist/models/update-commission-recipient-response-class.js +15 -0
  42. package/models/commission-agreement-product-class.ts +87 -0
  43. package/models/commission-recipient-class.ts +99 -0
  44. package/models/create-commission-agreement-product-request-dto.ts +36 -0
  45. package/models/create-commission-agreement-product-response-class.ts +31 -0
  46. package/models/create-commission-recipient-request-dto.ts +42 -0
  47. package/models/create-commission-recipient-response-class.ts +31 -0
  48. package/models/get-commission-agreement-product-response-class.ts +31 -0
  49. package/models/get-commission-recipient-response-class.ts +31 -0
  50. package/models/index.ts +14 -0
  51. package/models/list-commission-agreement-products-response-class.ts +49 -0
  52. package/models/list-commission-recipients-response-class.ts +49 -0
  53. package/models/update-commission-agreement-product-request-dto.ts +50 -0
  54. package/models/update-commission-agreement-product-response-class.ts +31 -0
  55. package/models/update-commission-recipient-request-dto.ts +48 -0
  56. package/models/update-commission-recipient-response-class.ts +31 -0
  57. 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,90 @@
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 CommissionRecipientClass
17
+ */
18
+ export interface CommissionRecipientClass {
19
+ /**
20
+ * Unique identifier for the commission recipient
21
+ * @type {number}
22
+ * @memberof CommissionRecipientClass
23
+ */
24
+ 'id': number;
25
+ /**
26
+ * The commission agreement version associated with this commission recipient
27
+ * @type {CommissionAgreementVersionClass}
28
+ * @memberof CommissionRecipientClass
29
+ */
30
+ 'version'?: CommissionAgreementVersionClass;
31
+ /**
32
+ * The commission agreement version code associated with this commission recipient
33
+ * @type {string}
34
+ * @memberof CommissionRecipientClass
35
+ */
36
+ 'commissionAgreementVersionCode'?: string;
37
+ /**
38
+ * Unique code identifier for the commission recipient, auto-generated on creation
39
+ * @type {string}
40
+ * @memberof CommissionRecipientClass
41
+ */
42
+ 'code': string;
43
+ /**
44
+ * Human-readable display name for the commission recipient
45
+ * @type {string}
46
+ * @memberof CommissionRecipientClass
47
+ */
48
+ 'displayName': string;
49
+ /**
50
+ * The unique code or identifier of the partner associated with this commission recipient
51
+ * @type {string}
52
+ * @memberof CommissionRecipientClass
53
+ */
54
+ 'partnerCode': string;
55
+ /**
56
+ * Status of the commission recipient
57
+ * @type {string}
58
+ * @memberof CommissionRecipientClass
59
+ */
60
+ 'status': CommissionRecipientClassStatusEnum;
61
+ /**
62
+ * Timestamp when the commission recipient was created
63
+ * @type {string}
64
+ * @memberof CommissionRecipientClass
65
+ */
66
+ 'createdAt'?: string;
67
+ /**
68
+ * Timestamp when the commission recipient was last updated
69
+ * @type {string}
70
+ * @memberof CommissionRecipientClass
71
+ */
72
+ 'updatedAt'?: string;
73
+ /**
74
+ * User identifier who created the commission recipient
75
+ * @type {string}
76
+ * @memberof CommissionRecipientClass
77
+ */
78
+ 'createdBy'?: string;
79
+ /**
80
+ * User identifier who last updated the commission recipient
81
+ * @type {string}
82
+ * @memberof CommissionRecipientClass
83
+ */
84
+ 'updatedBy'?: string;
85
+ }
86
+ export declare const CommissionRecipientClassStatusEnum: {
87
+ readonly Active: "active";
88
+ readonly Inactive: "inactive";
89
+ };
90
+ export type CommissionRecipientClassStatusEnum = typeof CommissionRecipientClassStatusEnum[keyof typeof CommissionRecipientClassStatusEnum];
@@ -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.CommissionRecipientClassStatusEnum = void 0;
17
+ exports.CommissionRecipientClassStatusEnum = {
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,36 @@
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 CreateCommissionRecipientRequestDto
16
+ */
17
+ export interface CreateCommissionRecipientRequestDto {
18
+ /**
19
+ * The unique code or identifier of the commission agreement version this recipient is associated with
20
+ * @type {string}
21
+ * @memberof CreateCommissionRecipientRequestDto
22
+ */
23
+ 'commissionAgreementVersionCode': string;
24
+ /**
25
+ * Human-readable display name for the commission recipient
26
+ * @type {string}
27
+ * @memberof CreateCommissionRecipientRequestDto
28
+ */
29
+ 'displayName': string;
30
+ /**
31
+ * The unique code or identifier of the partner associated with this commission recipient
32
+ * @type {string}
33
+ * @memberof CreateCommissionRecipientRequestDto
34
+ */
35
+ 'partnerCode': string;
36
+ }
@@ -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 CreateCommissionRecipientResponseClass
17
+ */
18
+ export interface CreateCommissionRecipientResponseClass {
19
+ /**
20
+ * The commission recipient that was created
21
+ * @type {CommissionRecipientClass}
22
+ * @memberof CreateCommissionRecipientResponseClass
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,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 });
@@ -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 GetCommissionRecipientResponseClass
17
+ */
18
+ export interface GetCommissionRecipientResponseClass {
19
+ /**
20
+ * The commission recipient that was created
21
+ * @type {CommissionRecipientClass}
22
+ * @memberof GetCommissionRecipientResponseClass
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 });
@@ -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';
@@ -15,25 +15,39 @@ 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);
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);
21
25
  __exportStar(require("./create-commission-agreement-request-dto"), exports);
22
26
  __exportStar(require("./create-commission-agreement-response-class"), exports);
23
27
  __exportStar(require("./create-commission-agreement-version-request-dto"), exports);
24
28
  __exportStar(require("./create-commission-agreement-version-response-class"), exports);
25
29
  __exportStar(require("./create-commission-item-request-dto"), exports);
30
+ __exportStar(require("./create-commission-recipient-request-dto"), exports);
31
+ __exportStar(require("./create-commission-recipient-response-class"), exports);
26
32
  __exportStar(require("./create-commission-request-dto"), exports);
27
33
  __exportStar(require("./create-commission-response-class"), exports);
34
+ __exportStar(require("./get-commission-agreement-product-response-class"), exports);
28
35
  __exportStar(require("./get-commission-agreement-response-class"), exports);
29
36
  __exportStar(require("./get-commission-agreement-version-response-class"), exports);
37
+ __exportStar(require("./get-commission-recipient-response-class"), exports);
30
38
  __exportStar(require("./get-commission-response-class"), exports);
31
39
  __exportStar(require("./inline-response200"), exports);
32
40
  __exportStar(require("./inline-response503"), exports);
41
+ __exportStar(require("./list-commission-agreement-products-response-class"), exports);
33
42
  __exportStar(require("./list-commission-agreement-versions-response-class"), exports);
34
43
  __exportStar(require("./list-commission-agreements-response-class"), exports);
44
+ __exportStar(require("./list-commission-recipients-response-class"), exports);
35
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);
36
48
  __exportStar(require("./update-commission-agreement-request-dto"), exports);
37
49
  __exportStar(require("./update-commission-agreement-response-class"), exports);
50
+ __exportStar(require("./update-commission-recipient-request-dto"), exports);
51
+ __exportStar(require("./update-commission-recipient-response-class"), exports);
38
52
  __exportStar(require("./update-commission-request-dto"), exports);
39
53
  __exportStar(require("./update-commission-response-class"), 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,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 { CommissionRecipientClass } from './commission-recipient-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface ListCommissionRecipientsResponseClass
17
+ */
18
+ export interface ListCommissionRecipientsResponseClass {
19
+ /**
20
+ * An array of commission recipients that were retrieved
21
+ * @type {Array<CommissionRecipientClass>}
22
+ * @memberof ListCommissionRecipientsResponseClass
23
+ */
24
+ 'items': Array<CommissionRecipientClass>;
25
+ /**
26
+ * nextPageToken
27
+ * @type {string}
28
+ * @memberof ListCommissionRecipientsResponseClass
29
+ */
30
+ 'nextPageToken': string;
31
+ /**
32
+ * itemsPerPage
33
+ * @type {number}
34
+ * @memberof ListCommissionRecipientsResponseClass
35
+ */
36
+ 'itemsPerPage': number;
37
+ /**
38
+ * totalItems
39
+ * @type {number}
40
+ * @memberof ListCommissionRecipientsResponseClass
41
+ */
42
+ 'totalItems': number;
43
+ }