@silexpert/core 1.3.124 → 1.3.126
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/dist/cjs/api/resources/Brevo.d.ts +2 -2
- package/dist/cjs/api/resources/Brevo.d.ts.map +1 -1
- package/dist/cjs/api/resources/Brevo.js.map +1 -1
- package/dist/cjs/api/resources/Revision.d.ts +4 -1
- package/dist/cjs/api/resources/Revision.d.ts.map +1 -1
- package/dist/cjs/api/resources/Revision.js +9 -0
- package/dist/cjs/api/resources/Revision.js.map +1 -1
- package/dist/cjs/types/Enum/Ged.d.ts +45 -5
- package/dist/cjs/types/Enum/Ged.d.ts.map +1 -1
- package/dist/cjs/types/Enum/Ged.js +44 -4
- package/dist/cjs/types/Enum/Ged.js.map +1 -1
- package/dist/cjs/types/Enum/ReasonNotSubscribed.d.ts.map +1 -1
- package/dist/cjs/types/Enum/ReasonNotSubscribed.js +12 -6
- package/dist/cjs/types/Enum/ReasonNotSubscribed.js.map +1 -1
- package/dist/cjs/types/Interface/api/brevo/BrevoElement.d.ts +3 -1
- package/dist/cjs/types/Interface/api/brevo/BrevoElement.d.ts.map +1 -1
- package/dist/cjs/types/Interface/api/brevo/BrevoElement.js +14 -1
- package/dist/cjs/types/Interface/api/brevo/BrevoElement.js.map +1 -1
- package/dist/cjs/types/Interface/api/prestation/Query.d.ts +2 -2
- package/dist/cjs/types/Interface/api/prestation/Query.d.ts.map +1 -1
- package/dist/cjs/types/Interface/api/prestation/Query.js.map +1 -1
- package/dist/cjs/types/Interface/api/revision/Revision.d.ts +1 -1
- package/dist/cjs/types/Interface/api/revision/Revision.d.ts.map +1 -1
- package/dist/cjs/types/Interface/api/revision/Revision.js.map +1 -1
- package/dist/cjs/types/Interface/models/IPaymentExpectation.d.ts +2 -0
- package/dist/cjs/types/Interface/models/IPaymentExpectation.d.ts.map +1 -1
- package/dist/cjs/types/Interface/models/IPaymentExpectation.js.map +1 -1
- package/dist/mjs/api/resources/Brevo.d.ts +2 -2
- package/dist/mjs/api/resources/Brevo.d.ts.map +1 -1
- package/dist/mjs/api/resources/Brevo.js.map +1 -1
- package/dist/mjs/api/resources/Revision.d.ts +4 -1
- package/dist/mjs/api/resources/Revision.d.ts.map +1 -1
- package/dist/mjs/api/resources/Revision.js +9 -0
- package/dist/mjs/api/resources/Revision.js.map +1 -1
- package/dist/mjs/types/Enum/Ged.d.ts +45 -5
- package/dist/mjs/types/Enum/Ged.d.ts.map +1 -1
- package/dist/mjs/types/Enum/Ged.js +44 -4
- package/dist/mjs/types/Enum/Ged.js.map +1 -1
- package/dist/mjs/types/Enum/ReasonNotSubscribed.d.ts.map +1 -1
- package/dist/mjs/types/Enum/ReasonNotSubscribed.js +12 -6
- package/dist/mjs/types/Enum/ReasonNotSubscribed.js.map +1 -1
- package/dist/mjs/types/Interface/api/brevo/BrevoElement.d.ts +3 -1
- package/dist/mjs/types/Interface/api/brevo/BrevoElement.d.ts.map +1 -1
- package/dist/mjs/types/Interface/api/brevo/BrevoElement.js +16 -1
- package/dist/mjs/types/Interface/api/brevo/BrevoElement.js.map +1 -1
- package/dist/mjs/types/Interface/api/prestation/Query.d.ts +2 -2
- package/dist/mjs/types/Interface/api/prestation/Query.d.ts.map +1 -1
- package/dist/mjs/types/Interface/api/prestation/Query.js.map +1 -1
- package/dist/mjs/types/Interface/api/revision/Revision.d.ts +1 -1
- package/dist/mjs/types/Interface/api/revision/Revision.d.ts.map +1 -1
- package/dist/mjs/types/Interface/api/revision/Revision.js.map +1 -1
- package/dist/mjs/types/Interface/models/IPaymentExpectation.d.ts +2 -0
- package/dist/mjs/types/Interface/models/IPaymentExpectation.d.ts.map +1 -1
- package/dist/mjs/types/Interface/models/IPaymentExpectation.js.map +1 -1
- package/package.json +1 -1
- package/ts/api/resources/Brevo.ts +2 -9
- package/ts/api/resources/Revision.ts +22 -0
- package/ts/types/Enum/Ged.ts +238 -198
- package/ts/types/Enum/ReasonNotSubscribed.ts +12 -6
- package/ts/types/Interface/api/brevo/BrevoElement.ts +13 -2
- package/ts/types/Interface/api/prestation/Query.ts +2 -2
- package/ts/types/Interface/api/revision/Revision.ts +1 -1
- package/ts/types/Interface/models/IPaymentExpectation.ts +2 -0
|
@@ -18,12 +18,12 @@ export class QueryCreatePrestation {
|
|
|
18
18
|
@ApiPropertyOptional()
|
|
19
19
|
@IsOptional()
|
|
20
20
|
@IsArray()
|
|
21
|
-
options
|
|
21
|
+
options?: number[];
|
|
22
22
|
|
|
23
23
|
@ApiPropertyOptional()
|
|
24
24
|
@IsOptional()
|
|
25
25
|
@IsArray()
|
|
26
|
-
commercialOffers
|
|
26
|
+
commercialOffers?: ICommercialOffer[];
|
|
27
27
|
|
|
28
28
|
@ApiPropertyOptional()
|
|
29
29
|
@IsOptional()
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { IAccountingEntry } from '../../models/IAccountingEntry';
|
|
2
2
|
|
|
3
|
-
export interface Revision extends IAccountingEntry {
|
|
3
|
+
export interface Revision extends Partial<IAccountingEntry> {
|
|
4
4
|
balance?: number | null;
|
|
5
5
|
balanceCredit?: number | null;
|
|
6
6
|
balanceDebit?: number | null;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ISociety } from './ISociety';
|
|
2
2
|
import { IRegulation } from './IRegulation';
|
|
3
3
|
import { PaymentReason } from '../../Enum/PaymentReason';
|
|
4
|
+
import { IPrestation } from './IPrestation';
|
|
4
5
|
|
|
5
6
|
// paymentsExpectations
|
|
6
7
|
export interface IPaymentExpectation {
|
|
@@ -24,4 +25,5 @@ export interface IPaymentExpectation {
|
|
|
24
25
|
// Associations
|
|
25
26
|
society?: ISociety;
|
|
26
27
|
regulation?: IRegulation;
|
|
28
|
+
prestation?: IPrestation | null;
|
|
27
29
|
}
|