@silexpert/core 1.2.64 → 1.2.65
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/Commercial.d.ts +2 -1
- package/dist/cjs/api/resources/Commercial.d.ts.map +1 -1
- package/dist/cjs/api/resources/Commercial.js +3 -0
- package/dist/cjs/api/resources/Commercial.js.map +1 -1
- package/dist/cjs/types/Interface/api/commercial/Query.d.ts +5 -0
- package/dist/cjs/types/Interface/api/commercial/Query.d.ts.map +1 -0
- package/dist/cjs/types/Interface/api/commercial/Query.js +30 -0
- package/dist/cjs/types/Interface/api/commercial/Query.js.map +1 -0
- package/dist/cjs/types/Interface/api/jeDeclare/Util.d.ts +2 -0
- package/dist/cjs/types/Interface/api/jeDeclare/Util.d.ts.map +1 -1
- package/dist/cjs/types/Interface/api/jeDeclare/Util.js.map +1 -1
- package/dist/cjs/types/Interface/api/user/ParamsGetAllCollaborators.d.ts +1 -0
- package/dist/cjs/types/Interface/api/user/ParamsGetAllCollaborators.d.ts.map +1 -1
- package/dist/cjs/types/Interface/api/user/ParamsGetAllCollaborators.js +6 -0
- package/dist/cjs/types/Interface/api/user/ParamsGetAllCollaborators.js.map +1 -1
- package/dist/cjs/types/index.d.ts +1 -0
- package/dist/cjs/types/index.d.ts.map +1 -1
- package/dist/cjs/types/index.js +1 -0
- package/dist/cjs/types/index.js.map +1 -1
- package/dist/mjs/api/resources/Commercial.d.ts +2 -1
- package/dist/mjs/api/resources/Commercial.d.ts.map +1 -1
- package/dist/mjs/api/resources/Commercial.js +6 -0
- package/dist/mjs/api/resources/Commercial.js.map +1 -1
- package/dist/mjs/types/Interface/api/commercial/Query.d.ts +5 -0
- package/dist/mjs/types/Interface/api/commercial/Query.d.ts.map +1 -0
- package/dist/mjs/types/Interface/api/commercial/Query.js +28 -0
- package/dist/mjs/types/Interface/api/commercial/Query.js.map +1 -0
- package/dist/mjs/types/Interface/api/jeDeclare/Util.d.ts +2 -0
- package/dist/mjs/types/Interface/api/jeDeclare/Util.d.ts.map +1 -1
- package/dist/mjs/types/Interface/api/jeDeclare/Util.js.map +1 -1
- package/dist/mjs/types/Interface/api/user/ParamsGetAllCollaborators.d.ts +1 -0
- package/dist/mjs/types/Interface/api/user/ParamsGetAllCollaborators.d.ts.map +1 -1
- package/dist/mjs/types/Interface/api/user/ParamsGetAllCollaborators.js +7 -0
- package/dist/mjs/types/Interface/api/user/ParamsGetAllCollaborators.js.map +1 -1
- package/dist/mjs/types/index.d.ts +1 -0
- package/dist/mjs/types/index.d.ts.map +1 -1
- package/dist/mjs/types/index.js +1 -0
- package/dist/mjs/types/index.js.map +1 -1
- package/package.json +1 -1
- package/ts/api/resources/Commercial.ts +7 -0
- package/ts/types/Interface/api/commercial/Query.ts +14 -0
- package/ts/types/Interface/api/jeDeclare/Util.ts +2 -0
- package/ts/types/Interface/api/user/ParamsGetAllCollaborators.ts +5 -0
- package/ts/types/index.ts +1 -0
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { IsDate, IsOptional } from 'class-validator';
|
|
2
|
+
import { ApiPropertyOptional } from '../../../../utils';
|
|
3
|
+
|
|
4
|
+
export class QueryGetLeadByUser {
|
|
5
|
+
@ApiPropertyOptional()
|
|
6
|
+
@IsOptional()
|
|
7
|
+
@IsDate()
|
|
8
|
+
startDate?: Date;
|
|
9
|
+
|
|
10
|
+
@ApiPropertyOptional()
|
|
11
|
+
@IsOptional()
|
|
12
|
+
@IsDate()
|
|
13
|
+
endDate?: Date;
|
|
14
|
+
}
|
package/ts/types/index.ts
CHANGED
|
@@ -663,6 +663,7 @@ export * from './Interface/api/facturation/CreateRebilling';
|
|
|
663
663
|
export * from './Interface/api/facturation/GoToFacturation';
|
|
664
664
|
export * from './Interface/api/facturation/ReadRecommanded';
|
|
665
665
|
export * from './Interface/api/OnBoarding';
|
|
666
|
+
export * from './Interface/api/commercial/Query';
|
|
666
667
|
export * from './Interface/api/commercial/QueryGetStats';
|
|
667
668
|
export * from './Interface/api/commercial/QueryGetStatsHistory';
|
|
668
669
|
export * from './Interface/api/commercial/RequiredDocsTypeParams';
|