@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.
- package/es/types/Enum/BrandClementine.js +1 -1
- package/es/types/Enum/BrandClementine.js.map +1 -1
- package/es/types/Enum/BrandPourcentage.js +1 -1
- package/es/types/Enum/BrandPourcentage.js.map +1 -1
- package/es/types/Enum/PrestationOption.d.ts +41 -0
- package/es/types/Enum/PrestationOption.d.ts.map +1 -1
- package/es/types/Enum/PrestationOption.js +41 -0
- package/es/types/Enum/PrestationOption.js.map +1 -1
- package/es/types/Enum/PrestationType.d.ts +1 -1
- package/es/types/Enum/PrestationType.js +1 -1
- package/es/types/Enum/PrestationType.js.map +1 -1
- package/es/types/Enum/TimeCounterType.js +2 -2
- package/es/types/Enum/TimeCounterType.js.map +1 -1
- package/es/types/Interface/api/statistic/QueryInternal.d.ts +5 -0
- package/es/types/Interface/api/statistic/QueryInternal.d.ts.map +1 -0
- package/es/types/Interface/api/statistic/QueryInternal.js +26 -0
- package/es/types/Interface/api/statistic/QueryInternal.js.map +1 -0
- package/es/types/index.d.ts +1 -0
- package/es/types/index.d.ts.map +1 -1
- package/es/types/index.js +1 -0
- package/es/types/index.js.map +1 -1
- package/js/types/Enum/BrandClementine.js +1 -1
- package/js/types/Enum/BrandClementine.js.map +1 -1
- package/js/types/Enum/BrandPourcentage.js +1 -1
- package/js/types/Enum/BrandPourcentage.js.map +1 -1
- package/js/types/Enum/PrestationOption.js +48 -4
- package/js/types/Enum/PrestationOption.js.map +1 -1
- package/js/types/Enum/PrestationType.js +1 -1
- package/js/types/Enum/PrestationType.js.map +1 -1
- package/js/types/Enum/TimeCounterType.js +2 -2
- package/js/types/Enum/TimeCounterType.js.map +1 -1
- package/js/types/Interface/api/statistic/QueryInternal.js +31 -0
- package/js/types/Interface/api/statistic/QueryInternal.js.map +1 -0
- package/js/types/index.js +12 -0
- package/js/types/index.js.map +1 -1
- package/package.json +1 -1
- package/ts/types/Enum/BrandClementine.ts +1 -1
- package/ts/types/Enum/BrandPourcentage.ts +1 -1
- package/ts/types/Enum/PrestationOption.ts +42 -0
- package/ts/types/Enum/PrestationType.ts +1 -1
- package/ts/types/Enum/TimeCounterType.ts +2 -2
- package/ts/types/Interface/api/statistic/QueryInternal.ts +16 -0
- 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: '
|
|
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: '
|
|
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';
|