@silexpert/core 2.0.43 → 2.0.44
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.
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ImportInvoice.d.ts","sourceRoot":"","sources":["../../../../../ts/types/Interface/api/society/ImportInvoice.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"ImportInvoice.d.ts","sourceRoot":"","sources":["../../../../../ts/types/Interface/api/society/ImportInvoice.ts"],"names":[],"mappings":"AAIA,qBAAa,aAAa;IAIxB,KAAK,EAAE,OAAO,CAAC;IAIf,oBAAoB,EAAE,MAAM,CAAC;CAC9B"}
|
|
@@ -9,7 +9,6 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
9
9
|
};
|
|
10
10
|
import { ApiProperty } from '@nestjs/swagger';
|
|
11
11
|
import { IsBoolean, IsInt } from 'class-validator';
|
|
12
|
-
import { Type } from 'class-transformer';
|
|
13
12
|
import { ToBoolean } from '../../../../utils/transforms/boolean.transform.js';
|
|
14
13
|
export class ImportInvoice {
|
|
15
14
|
split;
|
|
@@ -24,7 +23,6 @@ __decorate([
|
|
|
24
23
|
__decorate([
|
|
25
24
|
ApiProperty({ description: 'Identifiant du type de fichier comptable' }),
|
|
26
25
|
IsInt(),
|
|
27
|
-
Type(() => Number),
|
|
28
26
|
__metadata("design:type", Number)
|
|
29
27
|
], ImportInvoice.prototype, "idTypeAccountingFile", void 0);
|
|
30
28
|
//# sourceMappingURL=ImportInvoice.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ImportInvoice.js","sourceRoot":"","sources":["../../../../../ts/types/Interface/api/society/ImportInvoice.ts"],"names":[],"mappings":";;;;;;;;;AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC;AAC9C,OAAO,EAAE,SAAS,EAAE,KAAK,EAAE,MAAM,iBAAiB,CAAC;AACnD,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"ImportInvoice.js","sourceRoot":"","sources":["../../../../../ts/types/Interface/api/society/ImportInvoice.ts"],"names":[],"mappings":";;;;;;;;;AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC;AAC9C,OAAO,EAAE,SAAS,EAAE,KAAK,EAAE,MAAM,iBAAiB,CAAC;AACnD,OAAO,EAAE,SAAS,EAAE,MAAM,mDAAmD,CAAC;AAE9E,MAAM,OAAO,aAAa;IAIxB,KAAK,CAAU;IAIf,oBAAoB,CAAS;CAC9B;AALC;IAHC,WAAW,CAAC,EAAE,WAAW,EAAE,yCAAyC,EAAE,CAAC;IACvE,SAAS,EAAE;IACX,SAAS,EAAE;;4CACG;AAIf;IAFC,WAAW,CAAC,EAAE,WAAW,EAAE,0CAA0C,EAAE,CAAC;IACxE,KAAK,EAAE;;2DACqB","sourcesContent":["import { ApiProperty } from '@nestjs/swagger';\nimport { IsBoolean, IsInt } from 'class-validator';\nimport { ToBoolean } from '../../../../utils/transforms/boolean.transform.js';\n\nexport class ImportInvoice {\n @ApiProperty({ description: 'Diviser le fichier en plusieurs parties' })\n @IsBoolean()\n @ToBoolean()\n split: boolean;\n\n @ApiProperty({ description: 'Identifiant du type de fichier comptable' })\n @IsInt()\n idTypeAccountingFile: number;\n}\n"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { ApiProperty } from '@nestjs/swagger';
|
|
2
2
|
import { IsBoolean, IsInt } from 'class-validator';
|
|
3
|
-
import { Type } from 'class-transformer';
|
|
4
3
|
import { ToBoolean } from '../../../../utils/transforms/boolean.transform.js';
|
|
5
4
|
|
|
6
5
|
export class ImportInvoice {
|
|
@@ -11,6 +10,5 @@ export class ImportInvoice {
|
|
|
11
10
|
|
|
12
11
|
@ApiProperty({ description: 'Identifiant du type de fichier comptable' })
|
|
13
12
|
@IsInt()
|
|
14
|
-
@Type(() => Number)
|
|
15
13
|
idTypeAccountingFile: number;
|
|
16
14
|
}
|