@emilgroup/commission-sdk 1.0.0-beta.36 → 1.0.0-beta.37
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/dist/models/commission-agreement-class.d.ts +3 -1
- package/dist/models/commission-agreement-class.js +2 -0
- package/dist/models/create-commission-agreement-request-dto.d.ts +2 -0
- package/dist/models/create-commission-agreement-request-dto.js +2 -0
- package/dist/models/update-commission-agreement-request-dto.d.ts +3 -1
- package/dist/models/update-commission-agreement-request-dto.js +2 -0
- package/models/commission-agreement-class.ts +3 -1
- package/models/create-commission-agreement-request-dto.ts +2 -0
- package/models/update-commission-agreement-request-dto.ts +3 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -17,11 +17,11 @@ Although this package can be used in both TypeScript and JavaScript, it is inten
|
|
|
17
17
|
Navigate to the folder of your consuming project and run one of the following commands:
|
|
18
18
|
|
|
19
19
|
```
|
|
20
|
-
npm install @emilgroup/commission-sdk@1.0.0-beta.
|
|
20
|
+
npm install @emilgroup/commission-sdk@1.0.0-beta.37 --save
|
|
21
21
|
```
|
|
22
22
|
or
|
|
23
23
|
```
|
|
24
|
-
yarn add @emilgroup/commission-sdk@1.0.0-beta.
|
|
24
|
+
yarn add @emilgroup/commission-sdk@1.0.0-beta.37
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `CommissionApi`.
|
|
@@ -60,7 +60,7 @@ export interface CommissionAgreementClass {
|
|
|
60
60
|
*/
|
|
61
61
|
'description'?: string;
|
|
62
62
|
/**
|
|
63
|
-
* Frequency at which commissions are billed (e.g., monthly, quarterly, yearly)
|
|
63
|
+
* Frequency at which commissions are billed (e.g., immediately, monthly, quarterly, halfYearly, yearly)
|
|
64
64
|
* @type {string}
|
|
65
65
|
* @memberof CommissionAgreementClass
|
|
66
66
|
*/
|
|
@@ -104,8 +104,10 @@ export declare const CommissionAgreementClassStatusEnum: {
|
|
|
104
104
|
};
|
|
105
105
|
export type CommissionAgreementClassStatusEnum = typeof CommissionAgreementClassStatusEnum[keyof typeof CommissionAgreementClassStatusEnum];
|
|
106
106
|
export declare const CommissionAgreementClassBillingFrequencyEnum: {
|
|
107
|
+
readonly Immediately: "immediately";
|
|
107
108
|
readonly Monthly: "monthly";
|
|
108
109
|
readonly Quarterly: "quarterly";
|
|
110
|
+
readonly HalfYearly: "halfYearly";
|
|
109
111
|
readonly Yearly: "yearly";
|
|
110
112
|
};
|
|
111
113
|
export type CommissionAgreementClassBillingFrequencyEnum = typeof CommissionAgreementClassBillingFrequencyEnum[keyof typeof CommissionAgreementClassBillingFrequencyEnum];
|
|
@@ -21,7 +21,9 @@ exports.CommissionAgreementClassStatusEnum = {
|
|
|
21
21
|
Archived: 'archived'
|
|
22
22
|
};
|
|
23
23
|
exports.CommissionAgreementClassBillingFrequencyEnum = {
|
|
24
|
+
Immediately: 'immediately',
|
|
24
25
|
Monthly: 'monthly',
|
|
25
26
|
Quarterly: 'quarterly',
|
|
27
|
+
HalfYearly: 'halfYearly',
|
|
26
28
|
Yearly: 'yearly'
|
|
27
29
|
};
|
|
@@ -66,8 +66,10 @@ export interface CreateCommissionAgreementRequestDto {
|
|
|
66
66
|
'endDate'?: string;
|
|
67
67
|
}
|
|
68
68
|
export declare const CreateCommissionAgreementRequestDtoBillingFrequencyEnum: {
|
|
69
|
+
readonly Immediately: "immediately";
|
|
69
70
|
readonly Monthly: "monthly";
|
|
70
71
|
readonly Quarterly: "quarterly";
|
|
72
|
+
readonly HalfYearly: "halfYearly";
|
|
71
73
|
readonly Yearly: "yearly";
|
|
72
74
|
};
|
|
73
75
|
export type CreateCommissionAgreementRequestDtoBillingFrequencyEnum = typeof CreateCommissionAgreementRequestDtoBillingFrequencyEnum[keyof typeof CreateCommissionAgreementRequestDtoBillingFrequencyEnum];
|
|
@@ -15,8 +15,10 @@
|
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
16
|
exports.CreateCommissionAgreementRequestDtoStatusEnum = exports.CreateCommissionAgreementRequestDtoBillingFrequencyEnum = void 0;
|
|
17
17
|
exports.CreateCommissionAgreementRequestDtoBillingFrequencyEnum = {
|
|
18
|
+
Immediately: 'immediately',
|
|
18
19
|
Monthly: 'monthly',
|
|
19
20
|
Quarterly: 'quarterly',
|
|
21
|
+
HalfYearly: 'halfYearly',
|
|
20
22
|
Yearly: 'yearly'
|
|
21
23
|
};
|
|
22
24
|
exports.CreateCommissionAgreementRequestDtoStatusEnum = {
|
|
@@ -34,15 +34,17 @@ export interface UpdateCommissionAgreementRequestDto {
|
|
|
34
34
|
*/
|
|
35
35
|
'description'?: string;
|
|
36
36
|
/**
|
|
37
|
-
* Updated frequency at which commissions are billed (e.g., monthly, quarterly, yearly)
|
|
37
|
+
* Updated frequency at which commissions are billed (e.g., immediately, monthly, quarterly, halfYearly, yearly)
|
|
38
38
|
* @type {string}
|
|
39
39
|
* @memberof UpdateCommissionAgreementRequestDto
|
|
40
40
|
*/
|
|
41
41
|
'billingFrequency'?: UpdateCommissionAgreementRequestDtoBillingFrequencyEnum;
|
|
42
42
|
}
|
|
43
43
|
export declare const UpdateCommissionAgreementRequestDtoBillingFrequencyEnum: {
|
|
44
|
+
readonly Immediately: "immediately";
|
|
44
45
|
readonly Monthly: "monthly";
|
|
45
46
|
readonly Quarterly: "quarterly";
|
|
47
|
+
readonly HalfYearly: "halfYearly";
|
|
46
48
|
readonly Yearly: "yearly";
|
|
47
49
|
};
|
|
48
50
|
export type UpdateCommissionAgreementRequestDtoBillingFrequencyEnum = typeof UpdateCommissionAgreementRequestDtoBillingFrequencyEnum[keyof typeof UpdateCommissionAgreementRequestDtoBillingFrequencyEnum];
|
|
@@ -15,7 +15,9 @@
|
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
16
|
exports.UpdateCommissionAgreementRequestDtoBillingFrequencyEnum = void 0;
|
|
17
17
|
exports.UpdateCommissionAgreementRequestDtoBillingFrequencyEnum = {
|
|
18
|
+
Immediately: 'immediately',
|
|
18
19
|
Monthly: 'monthly',
|
|
19
20
|
Quarterly: 'quarterly',
|
|
21
|
+
HalfYearly: 'halfYearly',
|
|
20
22
|
Yearly: 'yearly'
|
|
21
23
|
};
|
|
@@ -65,7 +65,7 @@ export interface CommissionAgreementClass {
|
|
|
65
65
|
*/
|
|
66
66
|
'description'?: string;
|
|
67
67
|
/**
|
|
68
|
-
* Frequency at which commissions are billed (e.g., monthly, quarterly, yearly)
|
|
68
|
+
* Frequency at which commissions are billed (e.g., immediately, monthly, quarterly, halfYearly, yearly)
|
|
69
69
|
* @type {string}
|
|
70
70
|
* @memberof CommissionAgreementClass
|
|
71
71
|
*/
|
|
@@ -111,8 +111,10 @@ export const CommissionAgreementClassStatusEnum = {
|
|
|
111
111
|
|
|
112
112
|
export type CommissionAgreementClassStatusEnum = typeof CommissionAgreementClassStatusEnum[keyof typeof CommissionAgreementClassStatusEnum];
|
|
113
113
|
export const CommissionAgreementClassBillingFrequencyEnum = {
|
|
114
|
+
Immediately: 'immediately',
|
|
114
115
|
Monthly: 'monthly',
|
|
115
116
|
Quarterly: 'quarterly',
|
|
117
|
+
HalfYearly: 'halfYearly',
|
|
116
118
|
Yearly: 'yearly'
|
|
117
119
|
} as const;
|
|
118
120
|
|
|
@@ -72,8 +72,10 @@ export interface CreateCommissionAgreementRequestDto {
|
|
|
72
72
|
}
|
|
73
73
|
|
|
74
74
|
export const CreateCommissionAgreementRequestDtoBillingFrequencyEnum = {
|
|
75
|
+
Immediately: 'immediately',
|
|
75
76
|
Monthly: 'monthly',
|
|
76
77
|
Quarterly: 'quarterly',
|
|
78
|
+
HalfYearly: 'halfYearly',
|
|
77
79
|
Yearly: 'yearly'
|
|
78
80
|
} as const;
|
|
79
81
|
|
|
@@ -39,7 +39,7 @@ export interface UpdateCommissionAgreementRequestDto {
|
|
|
39
39
|
*/
|
|
40
40
|
'description'?: string;
|
|
41
41
|
/**
|
|
42
|
-
* Updated frequency at which commissions are billed (e.g., monthly, quarterly, yearly)
|
|
42
|
+
* Updated frequency at which commissions are billed (e.g., immediately, monthly, quarterly, halfYearly, yearly)
|
|
43
43
|
* @type {string}
|
|
44
44
|
* @memberof UpdateCommissionAgreementRequestDto
|
|
45
45
|
*/
|
|
@@ -47,8 +47,10 @@ export interface UpdateCommissionAgreementRequestDto {
|
|
|
47
47
|
}
|
|
48
48
|
|
|
49
49
|
export const UpdateCommissionAgreementRequestDtoBillingFrequencyEnum = {
|
|
50
|
+
Immediately: 'immediately',
|
|
50
51
|
Monthly: 'monthly',
|
|
51
52
|
Quarterly: 'quarterly',
|
|
53
|
+
HalfYearly: 'halfYearly',
|
|
52
54
|
Yearly: 'yearly'
|
|
53
55
|
} as const;
|
|
54
56
|
|