@silexpert/core 1.0.151 → 1.0.153
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/es/types/Enum/PrestationType.d.ts +1 -1
- package/es/types/Enum/PrestationType.js +1 -1
- package/es/types/Enum/PrestationType.js.map +1 -1
- package/es/types/Interface/api/generalLedger/IGeneralLedgerAccountingEntry.d.ts +1 -0
- package/es/types/Interface/api/generalLedger/IGeneralLedgerAccountingEntry.d.ts.map +1 -1
- package/es/types/Interface/api/generalLedger/IGeneralLedgerAccountingEntry.js.map +1 -1
- package/es/types/Interface/api/partner/Query.d.ts +3 -3
- package/es/types/Interface/api/partner/Query.d.ts.map +1 -1
- package/es/types/Interface/api/partner/Query.js +3 -3
- package/es/types/Interface/api/partner/Query.js.map +1 -1
- package/js/types/Enum/PrestationType.js +1 -1
- package/js/types/Enum/PrestationType.js.map +1 -1
- package/js/types/Interface/api/generalLedger/IGeneralLedgerAccountingEntry.js.map +1 -1
- package/js/types/Interface/api/partner/Query.js +3 -3
- package/js/types/Interface/api/partner/Query.js.map +1 -1
- package/package.json +1 -1
- package/ts/types/Enum/PrestationType.ts +1 -1
- package/ts/types/Interface/api/generalLedger/IGeneralLedgerAccountingEntry.ts +1 -0
- package/ts/types/Interface/api/partner/Query.ts +3 -3
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IGeneralLedgerAccountingEntry.js","sourceRoot":"","sources":["../../../../../ts/types/Interface/api/generalLedger/IGeneralLedgerAccountingEntry.ts"],"names":[],"mappings":"","sourcesContent":["import { AccountingJournal, ILettering, IThirdParty } from '../../..';\n\nexport interface IGeneralLedgerAccountingEntry {\n id: number;\n designation: string\n invoiceNumber?: string\n journal: AccountingJournal\n dateValue: string\n credit: number\n debit: number\n intermediateSolde: number\n thirdParty?: IThirdParty;\n lettering?: ILettering;\n exported?: Date;\n idAccountingTransaction: number;\n}"]}
|
|
1
|
+
{"version":3,"file":"IGeneralLedgerAccountingEntry.js","sourceRoot":"","sources":["../../../../../ts/types/Interface/api/generalLedger/IGeneralLedgerAccountingEntry.ts"],"names":[],"mappings":"","sourcesContent":["import { AccountingJournal, ILettering, IThirdParty } from '../../..';\n\nexport interface IGeneralLedgerAccountingEntry {\n id: number;\n designation: string\n invoiceNumber?: string\n journal: AccountingJournal\n dateValue: string\n credit: number\n debit: number\n intermediateSolde: number\n thirdParty?: IThirdParty;\n lettering?: ILettering;\n exported?: Date;\n idAccountingTransaction: number;\n idBankAccount?: number;\n}"]}
|
|
@@ -2,13 +2,13 @@ export declare class GetPartners {
|
|
|
2
2
|
includeDeletedPartner?: boolean;
|
|
3
3
|
}
|
|
4
4
|
export declare class GetPartnersCurrentAccounts {
|
|
5
|
-
startDate:
|
|
6
|
-
endDate:
|
|
5
|
+
startDate: string;
|
|
6
|
+
endDate: string;
|
|
7
7
|
descending?: boolean;
|
|
8
8
|
orderBy?: string;
|
|
9
9
|
}
|
|
10
10
|
export declare class GetPartnerSolde {
|
|
11
|
-
endDate:
|
|
11
|
+
endDate: string;
|
|
12
12
|
page: number;
|
|
13
13
|
limit: number;
|
|
14
14
|
search?: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Query.d.ts","sourceRoot":"","sources":["../../../../../ts/types/Interface/api/partner/Query.ts"],"names":[],"mappings":"AAIA,qBAAa,WAAW;IAKtB,qBAAqB,CAAC,EAAE,OAAO,CAAC;CACjC;AAED,qBAAa,0BAA0B;IAErC,SAAS,EAAG,
|
|
1
|
+
{"version":3,"file":"Query.d.ts","sourceRoot":"","sources":["../../../../../ts/types/Interface/api/partner/Query.ts"],"names":[],"mappings":"AAIA,qBAAa,WAAW;IAKtB,qBAAqB,CAAC,EAAE,OAAO,CAAC;CACjC;AAED,qBAAa,0BAA0B;IAErC,SAAS,EAAG,MAAM,CAAC;IAGnB,OAAO,EAAG,MAAM,CAAC;IAGjB,UAAU,CAAC,EAAE,OAAO,CAAC;IAGrB,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB;AAED,qBAAa,eAAe;IAE1B,OAAO,EAAG,MAAM,CAAC;IAGjB,IAAI,EAAE,MAAM,CAAC;IAGb,KAAK,EAAE,MAAM,CAAC;IAGd,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB"}
|
|
@@ -23,11 +23,11 @@ export class GetPartnersCurrentAccounts {
|
|
|
23
23
|
}
|
|
24
24
|
__decorate([
|
|
25
25
|
ApiProperty(),
|
|
26
|
-
__metadata("design:type",
|
|
26
|
+
__metadata("design:type", String)
|
|
27
27
|
], GetPartnersCurrentAccounts.prototype, "startDate", void 0);
|
|
28
28
|
__decorate([
|
|
29
29
|
ApiProperty(),
|
|
30
|
-
__metadata("design:type",
|
|
30
|
+
__metadata("design:type", String)
|
|
31
31
|
], GetPartnersCurrentAccounts.prototype, "endDate", void 0);
|
|
32
32
|
__decorate([
|
|
33
33
|
ApiPropertyOptional(),
|
|
@@ -41,7 +41,7 @@ export class GetPartnerSolde {
|
|
|
41
41
|
}
|
|
42
42
|
__decorate([
|
|
43
43
|
ApiProperty(),
|
|
44
|
-
__metadata("design:type",
|
|
44
|
+
__metadata("design:type", String)
|
|
45
45
|
], GetPartnerSolde.prototype, "endDate", void 0);
|
|
46
46
|
__decorate([
|
|
47
47
|
ApiProperty(),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Query.js","sourceRoot":"","sources":["../../../../../ts/types/Interface/api/partner/Query.ts"],"names":[],"mappings":";;;;;;;;;AAAA,OAAO,EAAE,SAAS,EAAE,UAAU,EAAE,MAAM,iBAAiB,CAAC;AACxD,OAAO,EAAE,WAAW,EAAE,mBAAmB,EAAE,MAAM,mBAAmB,CAAC;AACrE,OAAO,EAAE,SAAS,EAAE,MAAM,gDAAgD,CAAC;AAE3E,MAAM,OAAO,WAAW;CAMvB;AALC;IAAC,mBAAmB,EAAE;IACrB,SAAS,EAAE;IACX,SAAS,EAAE;IACX,UAAU,EAAE;;0DACmB;AAGlC,MAAM,OAAO,0BAA0B;CAYtC;AAXC;IAAC,WAAW,EAAE;
|
|
1
|
+
{"version":3,"file":"Query.js","sourceRoot":"","sources":["../../../../../ts/types/Interface/api/partner/Query.ts"],"names":[],"mappings":";;;;;;;;;AAAA,OAAO,EAAE,SAAS,EAAE,UAAU,EAAE,MAAM,iBAAiB,CAAC;AACxD,OAAO,EAAE,WAAW,EAAE,mBAAmB,EAAE,MAAM,mBAAmB,CAAC;AACrE,OAAO,EAAE,SAAS,EAAE,MAAM,gDAAgD,CAAC;AAE3E,MAAM,OAAO,WAAW;CAMvB;AALC;IAAC,mBAAmB,EAAE;IACrB,SAAS,EAAE;IACX,SAAS,EAAE;IACX,UAAU,EAAE;;0DACmB;AAGlC,MAAM,OAAO,0BAA0B;CAYtC;AAXC;IAAC,WAAW,EAAE;;6DACK;AAEnB;IAAC,WAAW,EAAE;;2DACG;AAEjB;IAAC,mBAAmB,EAAE;;8DACD;AAErB;IAAC,mBAAmB,EAAE;;2DACL;AAGnB,MAAM,OAAO,eAAe;CAY3B;AAXC;IAAC,WAAW,EAAE;;gDACG;AAEjB;IAAC,WAAW,EAAE;;6CACD;AAEb;IAAC,WAAW,EAAE;;8CACA;AAEd;IAAC,mBAAmB,EAAE;;+CACN","sourcesContent":["import { IsBoolean, IsOptional } from 'class-validator';\nimport { ApiProperty, ApiPropertyOptional } from '../../../../utils';\nimport { ToBoolean } from '../../../../utils/transforms/boolean.transform';\n\nexport class GetPartners {\n @ApiPropertyOptional()\n @IsBoolean()\n @ToBoolean()\n @IsOptional()\n includeDeletedPartner?: boolean;\n}\n\nexport class GetPartnersCurrentAccounts {\n @ApiProperty()\n startDate!: string;\n\n @ApiProperty()\n endDate!: string;\n\n @ApiPropertyOptional()\n descending?: boolean;\n\n @ApiPropertyOptional()\n orderBy?: string;\n}\n\nexport class GetPartnerSolde {\n @ApiProperty()\n endDate!: string;\n\n @ApiProperty()\n page: number;\n\n @ApiProperty()\n limit: number;\n\n @ApiPropertyOptional()\n search?: string;\n}"]}
|
|
@@ -2729,7 +2729,7 @@ const PrestationDetail = exports.PrestationDetail = {
|
|
|
2729
2729
|
isCatalog: 1,
|
|
2730
2730
|
hidden: 0,
|
|
2731
2731
|
isComplementary: 0,
|
|
2732
|
-
signaturePosition:
|
|
2732
|
+
signaturePosition: '400,54,569,90',
|
|
2733
2733
|
signaturePage: null
|
|
2734
2734
|
},
|
|
2735
2735
|
COMPTA_POURCENTAGE_EXPRESS: {
|