@silexpert/core 1.3.96-0 → 1.3.96
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/User.js +1 -1
- package/dist/cjs/api/resources/User.js.map +1 -1
- package/dist/cjs/api/resources.d.ts +0 -2
- package/dist/cjs/api/resources.d.ts.map +1 -1
- package/dist/cjs/api/resources.js +0 -2
- package/dist/cjs/api/resources.js.map +1 -1
- package/dist/cjs/types/Enum/PrestationType.d.ts.map +1 -1
- package/dist/cjs/types/Enum/PrestationType.js +22 -29
- package/dist/cjs/types/Enum/PrestationType.js.map +1 -1
- package/dist/cjs/types/Enum/SalesContractBrandClementine.d.ts.map +1 -1
- package/dist/cjs/types/Enum/SalesContractBrandClementine.js +7 -22
- package/dist/cjs/types/Enum/SalesContractBrandClementine.js.map +1 -1
- package/dist/cjs/types/Interface/models/IAttestation.d.ts +18 -20
- package/dist/cjs/types/Interface/models/IAttestation.d.ts.map +1 -1
- package/dist/cjs/types/Interface/models/IAttestation.js.map +1 -1
- package/dist/cjs/types/index.d.ts +0 -1
- package/dist/cjs/types/index.d.ts.map +1 -1
- package/dist/cjs/types/index.js +0 -1
- package/dist/cjs/types/index.js.map +1 -1
- package/dist/mjs/api/resources/User.js +1 -1
- package/dist/mjs/api/resources/User.js.map +1 -1
- package/dist/mjs/api/resources.d.ts +0 -2
- package/dist/mjs/api/resources.d.ts.map +1 -1
- package/dist/mjs/api/resources.js +0 -2
- package/dist/mjs/api/resources.js.map +1 -1
- package/dist/mjs/types/Enum/PrestationType.d.ts.map +1 -1
- package/dist/mjs/types/Enum/PrestationType.js +22 -29
- package/dist/mjs/types/Enum/PrestationType.js.map +1 -1
- package/dist/mjs/types/Enum/SalesContractBrandClementine.d.ts.map +1 -1
- package/dist/mjs/types/Enum/SalesContractBrandClementine.js +7 -22
- package/dist/mjs/types/Enum/SalesContractBrandClementine.js.map +1 -1
- package/dist/mjs/types/Interface/models/IAttestation.d.ts +18 -20
- package/dist/mjs/types/Interface/models/IAttestation.d.ts.map +1 -1
- package/dist/mjs/types/Interface/models/IAttestation.js.map +1 -1
- package/dist/mjs/types/index.d.ts +0 -1
- package/dist/mjs/types/index.d.ts.map +1 -1
- package/dist/mjs/types/index.js +0 -1
- package/dist/mjs/types/index.js.map +1 -1
- package/package.json +14 -14
- package/ts/api/resources/User.ts +1 -1
- package/ts/api/resources.ts +0 -2
- package/ts/types/Enum/PrestationType.ts +22 -29
- package/ts/types/Enum/SalesContractBrandClementine.ts +7 -22
- package/ts/types/Interface/models/IAttestation.ts +18 -20
- package/ts/types/index.ts +0 -1
- package/dist/cjs/api/resources/BalanceSheetReport.d.ts +0 -10
- package/dist/cjs/api/resources/BalanceSheetReport.d.ts.map +0 -1
- package/dist/cjs/api/resources/BalanceSheetReport.js +0 -23
- package/dist/cjs/api/resources/BalanceSheetReport.js.map +0 -1
- package/dist/cjs/types/Interface/api/balanceSheetReport/Query.d.ts +0 -40
- package/dist/cjs/types/Interface/api/balanceSheetReport/Query.d.ts.map +0 -1
- package/dist/cjs/types/Interface/api/balanceSheetReport/Query.js +0 -207
- package/dist/cjs/types/Interface/api/balanceSheetReport/Query.js.map +0 -1
- package/dist/mjs/api/resources/BalanceSheetReport.d.ts +0 -10
- package/dist/mjs/api/resources/BalanceSheetReport.d.ts.map +0 -1
- package/dist/mjs/api/resources/BalanceSheetReport.js +0 -22
- package/dist/mjs/api/resources/BalanceSheetReport.js.map +0 -1
- package/dist/mjs/types/Interface/api/balanceSheetReport/Query.d.ts +0 -40
- package/dist/mjs/types/Interface/api/balanceSheetReport/Query.d.ts.map +0 -1
- package/dist/mjs/types/Interface/api/balanceSheetReport/Query.js +0 -200
- package/dist/mjs/types/Interface/api/balanceSheetReport/Query.js.map +0 -1
- package/ts/api/resources/BalanceSheetReport.ts +0 -36
- package/ts/types/Interface/api/balanceSheetReport/Query.ts +0 -160
|
@@ -1,160 +0,0 @@
|
|
|
1
|
-
import { IsBoolean, IsDate, IsInt, IsOptional, IsString } from 'class-validator';
|
|
2
|
-
import { ApiProperty, ApiPropertyOptional } from '../../../../utils';
|
|
3
|
-
import { ToBoolean } from '../../../../utils/transforms/boolean.transform';
|
|
4
|
-
import { RequiredQueryPaginate } from '../BasePaginate';
|
|
5
|
-
|
|
6
|
-
export class QueryBalanceSheetReportPaginated extends RequiredQueryPaginate {
|
|
7
|
-
@ApiPropertyOptional()
|
|
8
|
-
@IsOptional()
|
|
9
|
-
@IsString()
|
|
10
|
-
declare search?: string;
|
|
11
|
-
|
|
12
|
-
@ApiPropertyOptional()
|
|
13
|
-
@IsOptional()
|
|
14
|
-
@IsBoolean()
|
|
15
|
-
@ToBoolean()
|
|
16
|
-
declare signed?: boolean;
|
|
17
|
-
|
|
18
|
-
@ApiPropertyOptional()
|
|
19
|
-
@IsOptional()
|
|
20
|
-
@IsInt()
|
|
21
|
-
declare factured?: number;
|
|
22
|
-
|
|
23
|
-
@ApiPropertyOptional()
|
|
24
|
-
@IsOptional()
|
|
25
|
-
@IsInt()
|
|
26
|
-
declare idSupervisor?: number;
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
export class ParamsBalanceSheetReportCreate {
|
|
30
|
-
@ApiProperty()
|
|
31
|
-
@IsInt()
|
|
32
|
-
declare idSociety: number;
|
|
33
|
-
|
|
34
|
-
@ApiProperty()
|
|
35
|
-
@IsInt()
|
|
36
|
-
declare idExercice: number;
|
|
37
|
-
|
|
38
|
-
@ApiProperty()
|
|
39
|
-
@IsInt()
|
|
40
|
-
declare idPrestationList: number;
|
|
41
|
-
|
|
42
|
-
@ApiProperty()
|
|
43
|
-
@IsInt()
|
|
44
|
-
declare idSupervisor: number;
|
|
45
|
-
|
|
46
|
-
@ApiProperty()
|
|
47
|
-
@IsInt()
|
|
48
|
-
declare price: number;
|
|
49
|
-
|
|
50
|
-
@ApiProperty()
|
|
51
|
-
@IsBoolean()
|
|
52
|
-
@ToBoolean()
|
|
53
|
-
declare annoted: boolean;
|
|
54
|
-
|
|
55
|
-
@ApiProperty()
|
|
56
|
-
@IsInt()
|
|
57
|
-
declare factured: number;
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
export class ParamsBalanceSheetReportGeneratePdf {
|
|
61
|
-
@ApiProperty()
|
|
62
|
-
@IsBoolean()
|
|
63
|
-
@ToBoolean()
|
|
64
|
-
declare isSigned: boolean;
|
|
65
|
-
|
|
66
|
-
@ApiPropertyOptional()
|
|
67
|
-
@IsOptional()
|
|
68
|
-
@IsString()
|
|
69
|
-
declare comment?: string;
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
export class ParamsBalanceSheetReportUpdate {
|
|
73
|
-
@ApiPropertyOptional()
|
|
74
|
-
@IsOptional()
|
|
75
|
-
@IsInt()
|
|
76
|
-
declare price?: number;
|
|
77
|
-
|
|
78
|
-
@ApiPropertyOptional()
|
|
79
|
-
@IsOptional()
|
|
80
|
-
@IsInt()
|
|
81
|
-
declare idPrestationList?: number;
|
|
82
|
-
|
|
83
|
-
@ApiPropertyOptional()
|
|
84
|
-
@IsOptional()
|
|
85
|
-
@IsInt()
|
|
86
|
-
declare idExercice?: number;
|
|
87
|
-
|
|
88
|
-
@ApiPropertyOptional()
|
|
89
|
-
@IsOptional()
|
|
90
|
-
@IsInt()
|
|
91
|
-
declare idSociety?: number;
|
|
92
|
-
|
|
93
|
-
@ApiPropertyOptional()
|
|
94
|
-
@IsOptional()
|
|
95
|
-
@IsInt()
|
|
96
|
-
declare idSupervisor?: number;
|
|
97
|
-
|
|
98
|
-
@ApiPropertyOptional()
|
|
99
|
-
@IsOptional()
|
|
100
|
-
@IsInt()
|
|
101
|
-
declare idUserDemand?: number;
|
|
102
|
-
|
|
103
|
-
@ApiPropertyOptional()
|
|
104
|
-
@IsOptional()
|
|
105
|
-
@IsInt()
|
|
106
|
-
declare idPaymentExpectation?: number;
|
|
107
|
-
|
|
108
|
-
@ApiPropertyOptional()
|
|
109
|
-
@IsOptional()
|
|
110
|
-
@IsInt()
|
|
111
|
-
declare idFile?: number;
|
|
112
|
-
|
|
113
|
-
@ApiPropertyOptional()
|
|
114
|
-
@IsOptional()
|
|
115
|
-
@IsInt()
|
|
116
|
-
declare idGedFile?: number;
|
|
117
|
-
|
|
118
|
-
@ApiPropertyOptional()
|
|
119
|
-
@IsOptional()
|
|
120
|
-
@IsBoolean()
|
|
121
|
-
@ToBoolean()
|
|
122
|
-
declare annoted?: boolean;
|
|
123
|
-
|
|
124
|
-
@ApiPropertyOptional()
|
|
125
|
-
@IsOptional()
|
|
126
|
-
@IsInt()
|
|
127
|
-
declare factured?: number;
|
|
128
|
-
|
|
129
|
-
@ApiPropertyOptional()
|
|
130
|
-
@IsOptional()
|
|
131
|
-
@IsDate()
|
|
132
|
-
declare sendDate?: Date;
|
|
133
|
-
|
|
134
|
-
@ApiPropertyOptional()
|
|
135
|
-
@IsOptional()
|
|
136
|
-
@IsString()
|
|
137
|
-
declare textPdf?: string;
|
|
138
|
-
|
|
139
|
-
@ApiPropertyOptional()
|
|
140
|
-
@IsOptional()
|
|
141
|
-
@IsBoolean()
|
|
142
|
-
@ToBoolean()
|
|
143
|
-
declare isSign?: boolean;
|
|
144
|
-
|
|
145
|
-
@ApiPropertyOptional()
|
|
146
|
-
@IsOptional()
|
|
147
|
-
@IsBoolean()
|
|
148
|
-
@ToBoolean()
|
|
149
|
-
declare done?: boolean;
|
|
150
|
-
|
|
151
|
-
@ApiPropertyOptional()
|
|
152
|
-
@IsOptional()
|
|
153
|
-
@IsInt()
|
|
154
|
-
declare idMailValidation?: number;
|
|
155
|
-
|
|
156
|
-
@ApiPropertyOptional()
|
|
157
|
-
@IsOptional()
|
|
158
|
-
@IsInt()
|
|
159
|
-
declare idMailPayment?: number;
|
|
160
|
-
}
|