@silexpert/core 1.0.75 → 1.0.76

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 (43) hide show
  1. package/es/types/Enum/BrandClementine.js +1 -1
  2. package/es/types/Enum/BrandClementine.js.map +1 -1
  3. package/es/types/Enum/BrandPourcentage.js +1 -1
  4. package/es/types/Enum/BrandPourcentage.js.map +1 -1
  5. package/es/types/Enum/PrestationOption.d.ts +41 -0
  6. package/es/types/Enum/PrestationOption.d.ts.map +1 -1
  7. package/es/types/Enum/PrestationOption.js +41 -0
  8. package/es/types/Enum/PrestationOption.js.map +1 -1
  9. package/es/types/Enum/PrestationType.d.ts +1 -1
  10. package/es/types/Enum/PrestationType.js +1 -1
  11. package/es/types/Enum/PrestationType.js.map +1 -1
  12. package/es/types/Enum/TimeCounterType.js +2 -2
  13. package/es/types/Enum/TimeCounterType.js.map +1 -1
  14. package/es/types/Interface/api/statistic/QueryInternal.d.ts +5 -0
  15. package/es/types/Interface/api/statistic/QueryInternal.d.ts.map +1 -0
  16. package/es/types/Interface/api/statistic/QueryInternal.js +26 -0
  17. package/es/types/Interface/api/statistic/QueryInternal.js.map +1 -0
  18. package/es/types/index.d.ts +1 -0
  19. package/es/types/index.d.ts.map +1 -1
  20. package/es/types/index.js +1 -0
  21. package/es/types/index.js.map +1 -1
  22. package/js/types/Enum/BrandClementine.js +1 -1
  23. package/js/types/Enum/BrandClementine.js.map +1 -1
  24. package/js/types/Enum/BrandPourcentage.js +1 -1
  25. package/js/types/Enum/BrandPourcentage.js.map +1 -1
  26. package/js/types/Enum/PrestationOption.js +48 -4
  27. package/js/types/Enum/PrestationOption.js.map +1 -1
  28. package/js/types/Enum/PrestationType.js +1 -1
  29. package/js/types/Enum/PrestationType.js.map +1 -1
  30. package/js/types/Enum/TimeCounterType.js +2 -2
  31. package/js/types/Enum/TimeCounterType.js.map +1 -1
  32. package/js/types/Interface/api/statistic/QueryInternal.js +31 -0
  33. package/js/types/Interface/api/statistic/QueryInternal.js.map +1 -0
  34. package/js/types/index.js +12 -0
  35. package/js/types/index.js.map +1 -1
  36. package/package.json +1 -1
  37. package/ts/types/Enum/BrandClementine.ts +1 -1
  38. package/ts/types/Enum/BrandPourcentage.ts +1 -1
  39. package/ts/types/Enum/PrestationOption.ts +42 -0
  40. package/ts/types/Enum/PrestationType.ts +1 -1
  41. package/ts/types/Enum/TimeCounterType.ts +2 -2
  42. package/ts/types/Interface/api/statistic/QueryInternal.ts +16 -0
  43. package/ts/types/index.ts +1 -0
@@ -83,7 +83,7 @@ export const TimeCounterType = {
83
83
  label: 'Attestation',
84
84
  aberrantTime: 20,
85
85
  limitedRoles: [Role.CUSTOMER_SUCCESS],
86
- color: 'lipstick-light',
86
+ color: 'pink-salmon',
87
87
  },
88
88
  COMPLEMENTARY_MISSION: {
89
89
  id: 13,
@@ -125,7 +125,7 @@ export const TimeCounterType = {
125
125
  label: 'Traitement des courriers',
126
126
  aberrantTime: 20,
127
127
  limitedRoles: [Role.CUSTOMER_SUCCESS],
128
- color: 'lipstick-light',
128
+ color: 'pink-salmon',
129
129
  },
130
130
  SUPPORT_PROCESSING: {
131
131
  id: 19,
@@ -0,0 +1,16 @@
1
+ import {
2
+ IsNumber, IsOptional, IsBoolean,
3
+ } from 'class-validator';
4
+ import { ApiPropertyOptional } from '../../../../utils';
5
+
6
+ export class QueryInternal {
7
+ @ApiPropertyOptional()
8
+ @IsOptional()
9
+ @IsBoolean()
10
+ expertProduction?: boolean;
11
+
12
+ @ApiPropertyOptional()
13
+ @IsOptional()
14
+ @IsNumber()
15
+ idUser?: number;
16
+ }
package/ts/types/index.ts CHANGED
@@ -649,6 +649,7 @@ export * from './Interface/api/statistic/QueryGetExpertAccountant';
649
649
  export * from './Interface/api/statistic/QueryAccountant';
650
650
  export * from './Interface/api/statistic/QueryGetAccountant';
651
651
  export * from './Interface/api/statistic/QueryDirection';
652
+ export * from './Interface/api/statistic/QueryInternal';
652
653
  export * from './Interface/api/statistic/QueryGetDirection';
653
654
  export * from './Interface/api/pappers/CreatePappers';
654
655
  export * from './Interface/api/bankAccount/DeleteTransaction';