@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.
Files changed (44) hide show
  1. package/dist/cjs/api/resources/Commercial.d.ts +2 -1
  2. package/dist/cjs/api/resources/Commercial.d.ts.map +1 -1
  3. package/dist/cjs/api/resources/Commercial.js +3 -0
  4. package/dist/cjs/api/resources/Commercial.js.map +1 -1
  5. package/dist/cjs/types/Interface/api/commercial/Query.d.ts +5 -0
  6. package/dist/cjs/types/Interface/api/commercial/Query.d.ts.map +1 -0
  7. package/dist/cjs/types/Interface/api/commercial/Query.js +30 -0
  8. package/dist/cjs/types/Interface/api/commercial/Query.js.map +1 -0
  9. package/dist/cjs/types/Interface/api/jeDeclare/Util.d.ts +2 -0
  10. package/dist/cjs/types/Interface/api/jeDeclare/Util.d.ts.map +1 -1
  11. package/dist/cjs/types/Interface/api/jeDeclare/Util.js.map +1 -1
  12. package/dist/cjs/types/Interface/api/user/ParamsGetAllCollaborators.d.ts +1 -0
  13. package/dist/cjs/types/Interface/api/user/ParamsGetAllCollaborators.d.ts.map +1 -1
  14. package/dist/cjs/types/Interface/api/user/ParamsGetAllCollaborators.js +6 -0
  15. package/dist/cjs/types/Interface/api/user/ParamsGetAllCollaborators.js.map +1 -1
  16. package/dist/cjs/types/index.d.ts +1 -0
  17. package/dist/cjs/types/index.d.ts.map +1 -1
  18. package/dist/cjs/types/index.js +1 -0
  19. package/dist/cjs/types/index.js.map +1 -1
  20. package/dist/mjs/api/resources/Commercial.d.ts +2 -1
  21. package/dist/mjs/api/resources/Commercial.d.ts.map +1 -1
  22. package/dist/mjs/api/resources/Commercial.js +6 -0
  23. package/dist/mjs/api/resources/Commercial.js.map +1 -1
  24. package/dist/mjs/types/Interface/api/commercial/Query.d.ts +5 -0
  25. package/dist/mjs/types/Interface/api/commercial/Query.d.ts.map +1 -0
  26. package/dist/mjs/types/Interface/api/commercial/Query.js +28 -0
  27. package/dist/mjs/types/Interface/api/commercial/Query.js.map +1 -0
  28. package/dist/mjs/types/Interface/api/jeDeclare/Util.d.ts +2 -0
  29. package/dist/mjs/types/Interface/api/jeDeclare/Util.d.ts.map +1 -1
  30. package/dist/mjs/types/Interface/api/jeDeclare/Util.js.map +1 -1
  31. package/dist/mjs/types/Interface/api/user/ParamsGetAllCollaborators.d.ts +1 -0
  32. package/dist/mjs/types/Interface/api/user/ParamsGetAllCollaborators.d.ts.map +1 -1
  33. package/dist/mjs/types/Interface/api/user/ParamsGetAllCollaborators.js +7 -0
  34. package/dist/mjs/types/Interface/api/user/ParamsGetAllCollaborators.js.map +1 -1
  35. package/dist/mjs/types/index.d.ts +1 -0
  36. package/dist/mjs/types/index.d.ts.map +1 -1
  37. package/dist/mjs/types/index.js +1 -0
  38. package/dist/mjs/types/index.js.map +1 -1
  39. package/package.json +1 -1
  40. package/ts/api/resources/Commercial.ts +7 -0
  41. package/ts/types/Interface/api/commercial/Query.ts +14 -0
  42. package/ts/types/Interface/api/jeDeclare/Util.ts +2 -0
  43. package/ts/types/Interface/api/user/ParamsGetAllCollaborators.ts +5 -0
  44. 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
+ }
@@ -67,4 +67,6 @@ export type GetDocumentsParams = {
67
67
  listType: string;
68
68
  forceTestMode?: boolean;
69
69
  accessName: string;
70
+ startDate: string;
71
+ endDate: string;
70
72
  };
@@ -24,6 +24,11 @@ export class ParamsGetAllCollaborators {
24
24
  @IsNumber()
25
25
  idUser?: number[];
26
26
 
27
+ @ApiPropertyOptional()
28
+ @IsOptional()
29
+ @IsNumber()
30
+ idOffice?: number[];
31
+
27
32
  @ApiPropertyOptional()
28
33
  @IsOptional()
29
34
  @IsString({
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';