@silexpert/core 1.1.319 → 1.1.320
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/types/Enum/CommercialOfferType.js +7 -7
- package/dist/cjs/types/Enum/CommercialOfferType.js.map +1 -1
- package/dist/cjs/types/Enum/GeneralThirdParty.d.ts.map +1 -1
- package/dist/cjs/types/Enum/GeneralThirdParty.js +2 -0
- package/dist/cjs/types/Enum/GeneralThirdParty.js.map +1 -1
- package/dist/cjs/types/Enum/TimeCounterType.d.ts +44 -0
- package/dist/cjs/types/Enum/TimeCounterType.d.ts.map +1 -1
- package/dist/cjs/types/Enum/TimeCounterType.js +44 -0
- package/dist/cjs/types/Enum/TimeCounterType.js.map +1 -1
- package/dist/cjs/types/Interface/api/accountingEntry/Create.d.ts +2 -1
- package/dist/cjs/types/Interface/api/accountingEntry/Create.d.ts.map +1 -1
- package/dist/cjs/types/Interface/api/accountingEntry/Create.js +8 -1
- package/dist/cjs/types/Interface/api/accountingEntry/Create.js.map +1 -1
- package/dist/cjs/types/Interface/api/payment/CreateNotifyCustomerInvoice.d.ts +0 -4
- package/dist/cjs/types/Interface/api/payment/CreateNotifyCustomerInvoice.d.ts.map +1 -1
- package/dist/cjs/types/Interface/api/payment/CreateNotifyCustomerInvoice.js +1 -18
- package/dist/cjs/types/Interface/api/payment/CreateNotifyCustomerInvoice.js.map +1 -1
- package/dist/cjs/types/Interface/api/registration/CreateRegistration.d.ts +12 -11
- package/dist/cjs/types/Interface/api/registration/CreateRegistration.d.ts.map +1 -1
- package/dist/cjs/types/Interface/api/registration/CreateRegistration.js +4 -0
- package/dist/cjs/types/Interface/api/registration/CreateRegistration.js.map +1 -1
- package/dist/cjs/types/Interface/api/revision/Read.d.ts +2 -1
- package/dist/cjs/types/Interface/api/revision/Read.d.ts.map +1 -1
- package/dist/cjs/types/Interface/api/revision/Read.js.map +1 -1
- package/dist/mjs/types/Enum/CommercialOfferType.js +7 -7
- package/dist/mjs/types/Enum/CommercialOfferType.js.map +1 -1
- package/dist/mjs/types/Enum/GeneralThirdParty.d.ts.map +1 -1
- package/dist/mjs/types/Enum/GeneralThirdParty.js +2 -0
- package/dist/mjs/types/Enum/GeneralThirdParty.js.map +1 -1
- package/dist/mjs/types/Enum/TimeCounterType.d.ts +44 -0
- package/dist/mjs/types/Enum/TimeCounterType.d.ts.map +1 -1
- package/dist/mjs/types/Enum/TimeCounterType.js +44 -0
- package/dist/mjs/types/Enum/TimeCounterType.js.map +1 -1
- package/dist/mjs/types/Interface/api/accountingEntry/Create.d.ts +2 -1
- package/dist/mjs/types/Interface/api/accountingEntry/Create.d.ts.map +1 -1
- package/dist/mjs/types/Interface/api/accountingEntry/Create.js +9 -1
- package/dist/mjs/types/Interface/api/accountingEntry/Create.js.map +1 -1
- package/dist/mjs/types/Interface/api/payment/CreateNotifyCustomerInvoice.d.ts +0 -4
- package/dist/mjs/types/Interface/api/payment/CreateNotifyCustomerInvoice.d.ts.map +1 -1
- package/dist/mjs/types/Interface/api/payment/CreateNotifyCustomerInvoice.js +1 -19
- package/dist/mjs/types/Interface/api/payment/CreateNotifyCustomerInvoice.js.map +1 -1
- package/dist/mjs/types/Interface/api/registration/CreateRegistration.d.ts +12 -11
- package/dist/mjs/types/Interface/api/registration/CreateRegistration.d.ts.map +1 -1
- package/dist/mjs/types/Interface/api/registration/CreateRegistration.js +5 -0
- package/dist/mjs/types/Interface/api/registration/CreateRegistration.js.map +1 -1
- package/dist/mjs/types/Interface/api/revision/Read.d.ts +2 -1
- package/dist/mjs/types/Interface/api/revision/Read.d.ts.map +1 -1
- package/dist/mjs/types/Interface/api/revision/Read.js.map +1 -1
- package/package.json +1 -1
- package/ts/types/Enum/CommercialOfferType.ts +7 -7
- package/ts/types/Enum/GeneralThirdParty.ts +2 -0
- package/ts/types/Enum/TimeCounterType.ts +44 -0
- package/ts/types/Interface/api/accountingEntry/Create.ts +8 -2
- package/ts/types/Interface/api/payment/CreateNotifyCustomerInvoice.ts +1 -15
- package/ts/types/Interface/api/registration/CreateRegistration.ts +14 -11
- package/ts/types/Interface/api/revision/Read.ts +2 -0
|
@@ -6,6 +6,7 @@ export declare const TimeCounterType: {
|
|
|
6
6
|
aberrantTime: number;
|
|
7
7
|
limitedRoles: Role[];
|
|
8
8
|
color: string;
|
|
9
|
+
isOverlappable: boolean;
|
|
9
10
|
};
|
|
10
11
|
VAT: {
|
|
11
12
|
id: number;
|
|
@@ -13,6 +14,7 @@ export declare const TimeCounterType: {
|
|
|
13
14
|
aberrantTime: number;
|
|
14
15
|
limitedRoles: Role[];
|
|
15
16
|
color: string;
|
|
17
|
+
isOverlappable: boolean;
|
|
16
18
|
};
|
|
17
19
|
REVISION: {
|
|
18
20
|
id: number;
|
|
@@ -20,6 +22,7 @@ export declare const TimeCounterType: {
|
|
|
20
22
|
aberrantTime: number;
|
|
21
23
|
limitedRoles: Role[];
|
|
22
24
|
color: string;
|
|
25
|
+
isOverlappable: boolean;
|
|
23
26
|
};
|
|
24
27
|
FOLDER_REVIEW: {
|
|
25
28
|
id: number;
|
|
@@ -27,6 +30,7 @@ export declare const TimeCounterType: {
|
|
|
27
30
|
aberrantTime: number;
|
|
28
31
|
limitedRoles: Role[];
|
|
29
32
|
color: string;
|
|
33
|
+
isOverlappable: boolean;
|
|
30
34
|
};
|
|
31
35
|
REPORTING: {
|
|
32
36
|
id: number;
|
|
@@ -34,6 +38,7 @@ export declare const TimeCounterType: {
|
|
|
34
38
|
aberrantTime: number;
|
|
35
39
|
limitedRoles: Role[];
|
|
36
40
|
color: string;
|
|
41
|
+
isOverlappable: boolean;
|
|
37
42
|
};
|
|
38
43
|
SYNCHRONISATION: {
|
|
39
44
|
id: number;
|
|
@@ -41,6 +46,7 @@ export declare const TimeCounterType: {
|
|
|
41
46
|
aberrantTime: number;
|
|
42
47
|
limitedRoles: Role[];
|
|
43
48
|
color: string;
|
|
49
|
+
isOverlappable: boolean;
|
|
44
50
|
};
|
|
45
51
|
UNDER_SUPERVISION: {
|
|
46
52
|
id: number;
|
|
@@ -48,6 +54,7 @@ export declare const TimeCounterType: {
|
|
|
48
54
|
aberrantTime: number;
|
|
49
55
|
limitedRoles: null;
|
|
50
56
|
color: string;
|
|
57
|
+
isOverlappable: boolean;
|
|
51
58
|
};
|
|
52
59
|
CLIENT_CONTACT: {
|
|
53
60
|
id: number;
|
|
@@ -55,6 +62,7 @@ export declare const TimeCounterType: {
|
|
|
55
62
|
aberrantTime: number;
|
|
56
63
|
limitedRoles: null;
|
|
57
64
|
color: string;
|
|
65
|
+
isOverlappable: boolean;
|
|
58
66
|
};
|
|
59
67
|
MEETING: {
|
|
60
68
|
id: number;
|
|
@@ -62,6 +70,7 @@ export declare const TimeCounterType: {
|
|
|
62
70
|
aberrantTime: number;
|
|
63
71
|
limitedRoles: null;
|
|
64
72
|
color: string;
|
|
73
|
+
isOverlappable: boolean;
|
|
65
74
|
};
|
|
66
75
|
FORMATION: {
|
|
67
76
|
id: number;
|
|
@@ -69,6 +78,7 @@ export declare const TimeCounterType: {
|
|
|
69
78
|
aberrantTime: number;
|
|
70
79
|
limitedRoles: null;
|
|
71
80
|
color: string;
|
|
81
|
+
isOverlappable: boolean;
|
|
72
82
|
};
|
|
73
83
|
FORECAST: {
|
|
74
84
|
id: number;
|
|
@@ -76,6 +86,7 @@ export declare const TimeCounterType: {
|
|
|
76
86
|
aberrantTime: number;
|
|
77
87
|
limitedRoles: Role[];
|
|
78
88
|
color: string;
|
|
89
|
+
isOverlappable: boolean;
|
|
79
90
|
};
|
|
80
91
|
CERTIFICATE: {
|
|
81
92
|
id: number;
|
|
@@ -83,6 +94,7 @@ export declare const TimeCounterType: {
|
|
|
83
94
|
aberrantTime: number;
|
|
84
95
|
limitedRoles: Role[];
|
|
85
96
|
color: string;
|
|
97
|
+
isOverlappable: boolean;
|
|
86
98
|
};
|
|
87
99
|
COMPLEMENTARY_MISSION: {
|
|
88
100
|
id: number;
|
|
@@ -90,6 +102,7 @@ export declare const TimeCounterType: {
|
|
|
90
102
|
aberrantTime: number;
|
|
91
103
|
limitedRoles: Role[];
|
|
92
104
|
color: string;
|
|
105
|
+
isOverlappable: boolean;
|
|
93
106
|
};
|
|
94
107
|
ORGANISATION: {
|
|
95
108
|
id: number;
|
|
@@ -97,6 +110,7 @@ export declare const TimeCounterType: {
|
|
|
97
110
|
aberrantTime: number;
|
|
98
111
|
limitedRoles: null;
|
|
99
112
|
color: string;
|
|
113
|
+
isOverlappable: boolean;
|
|
100
114
|
};
|
|
101
115
|
INTERNAL_ADVICE: {
|
|
102
116
|
id: number;
|
|
@@ -104,6 +118,7 @@ export declare const TimeCounterType: {
|
|
|
104
118
|
aberrantTime: number;
|
|
105
119
|
limitedRoles: null;
|
|
106
120
|
color: string;
|
|
121
|
+
isOverlappable: boolean;
|
|
107
122
|
};
|
|
108
123
|
LAB: {
|
|
109
124
|
id: number;
|
|
@@ -111,6 +126,7 @@ export declare const TimeCounterType: {
|
|
|
111
126
|
aberrantTime: number;
|
|
112
127
|
limitedRoles: Role[];
|
|
113
128
|
color: string;
|
|
129
|
+
isOverlappable: boolean;
|
|
114
130
|
};
|
|
115
131
|
SUPERVISION: {
|
|
116
132
|
id: number;
|
|
@@ -118,6 +134,7 @@ export declare const TimeCounterType: {
|
|
|
118
134
|
aberrantTime: number;
|
|
119
135
|
limitedRoles: Role[];
|
|
120
136
|
color: string;
|
|
137
|
+
isOverlappable: boolean;
|
|
121
138
|
};
|
|
122
139
|
MAIL_PROCESSING: {
|
|
123
140
|
id: number;
|
|
@@ -125,6 +142,7 @@ export declare const TimeCounterType: {
|
|
|
125
142
|
aberrantTime: number;
|
|
126
143
|
limitedRoles: Role[];
|
|
127
144
|
color: string;
|
|
145
|
+
isOverlappable: boolean;
|
|
128
146
|
};
|
|
129
147
|
SUPPORT_PROCESSING: {
|
|
130
148
|
id: number;
|
|
@@ -132,6 +150,7 @@ export declare const TimeCounterType: {
|
|
|
132
150
|
aberrantTime: number;
|
|
133
151
|
limitedRoles: Role[];
|
|
134
152
|
color: string;
|
|
153
|
+
isOverlappable: boolean;
|
|
135
154
|
};
|
|
136
155
|
BILAN: {
|
|
137
156
|
id: number;
|
|
@@ -139,6 +158,7 @@ export declare const TimeCounterType: {
|
|
|
139
158
|
aberrantTime: number;
|
|
140
159
|
limitedRoles: Role[];
|
|
141
160
|
color: string;
|
|
161
|
+
isOverlappable: boolean;
|
|
142
162
|
};
|
|
143
163
|
PAYSLIP: {
|
|
144
164
|
id: number;
|
|
@@ -146,6 +166,7 @@ export declare const TimeCounterType: {
|
|
|
146
166
|
aberrantTime: number;
|
|
147
167
|
limitedRoles: Role[];
|
|
148
168
|
color: string;
|
|
169
|
+
isOverlappable: boolean;
|
|
149
170
|
};
|
|
150
171
|
SOCIAL_PARAMETER: {
|
|
151
172
|
id: number;
|
|
@@ -153,6 +174,7 @@ export declare const TimeCounterType: {
|
|
|
153
174
|
aberrantTime: number;
|
|
154
175
|
limitedRoles: Role[];
|
|
155
176
|
color: string;
|
|
177
|
+
isOverlappable: boolean;
|
|
156
178
|
};
|
|
157
179
|
WORK_CONTRACT: {
|
|
158
180
|
id: number;
|
|
@@ -160,6 +182,7 @@ export declare const TimeCounterType: {
|
|
|
160
182
|
aberrantTime: number;
|
|
161
183
|
limitedRoles: Role[];
|
|
162
184
|
color: string;
|
|
185
|
+
isOverlappable: boolean;
|
|
163
186
|
};
|
|
164
187
|
DPAE: {
|
|
165
188
|
id: number;
|
|
@@ -167,6 +190,7 @@ export declare const TimeCounterType: {
|
|
|
167
190
|
aberrantTime: number;
|
|
168
191
|
limitedRoles: Role[];
|
|
169
192
|
color: string;
|
|
193
|
+
isOverlappable: boolean;
|
|
170
194
|
};
|
|
171
195
|
FACTURATION: {
|
|
172
196
|
id: number;
|
|
@@ -174,6 +198,7 @@ export declare const TimeCounterType: {
|
|
|
174
198
|
aberrantTime: number;
|
|
175
199
|
limitedRoles: null;
|
|
176
200
|
color: string;
|
|
201
|
+
isOverlappable: boolean;
|
|
177
202
|
};
|
|
178
203
|
LEGAL_DOCUMENT: {
|
|
179
204
|
id: number;
|
|
@@ -181,6 +206,7 @@ export declare const TimeCounterType: {
|
|
|
181
206
|
aberrantTime: number;
|
|
182
207
|
limitedRoles: Role[];
|
|
183
208
|
color: string;
|
|
209
|
+
isOverlappable: boolean;
|
|
184
210
|
};
|
|
185
211
|
INFOGREFFE: {
|
|
186
212
|
id: number;
|
|
@@ -188,6 +214,7 @@ export declare const TimeCounterType: {
|
|
|
188
214
|
aberrantTime: number;
|
|
189
215
|
limitedRoles: Role[];
|
|
190
216
|
color: string;
|
|
217
|
+
isOverlappable: boolean;
|
|
191
218
|
};
|
|
192
219
|
APPOINTMENT: {
|
|
193
220
|
id: number;
|
|
@@ -195,6 +222,7 @@ export declare const TimeCounterType: {
|
|
|
195
222
|
aberrantTime: number;
|
|
196
223
|
limitedRoles: null;
|
|
197
224
|
color: string;
|
|
225
|
+
isOverlappable: boolean;
|
|
198
226
|
};
|
|
199
227
|
PHYSIC_UPKEEP: {
|
|
200
228
|
id: number;
|
|
@@ -202,6 +230,7 @@ export declare const TimeCounterType: {
|
|
|
202
230
|
aberrantTime: number;
|
|
203
231
|
limitedRoles: null;
|
|
204
232
|
color: string;
|
|
233
|
+
isOverlappable: boolean;
|
|
205
234
|
};
|
|
206
235
|
VISIO_UPKEEP: {
|
|
207
236
|
id: number;
|
|
@@ -209,6 +238,7 @@ export declare const TimeCounterType: {
|
|
|
209
238
|
aberrantTime: number;
|
|
210
239
|
limitedRoles: null;
|
|
211
240
|
color: string;
|
|
241
|
+
isOverlappable: boolean;
|
|
212
242
|
};
|
|
213
243
|
PREQUALIF_TEL: {
|
|
214
244
|
id: number;
|
|
@@ -216,6 +246,7 @@ export declare const TimeCounterType: {
|
|
|
216
246
|
aberrantTime: number;
|
|
217
247
|
limitedRoles: null;
|
|
218
248
|
color: string;
|
|
249
|
+
isOverlappable: boolean;
|
|
219
250
|
};
|
|
220
251
|
HUMAN_RESSOURCES_POINT: {
|
|
221
252
|
id: number;
|
|
@@ -223,6 +254,7 @@ export declare const TimeCounterType: {
|
|
|
223
254
|
aberrantTime: number;
|
|
224
255
|
limitedRoles: null;
|
|
225
256
|
color: string;
|
|
257
|
+
isOverlappable: boolean;
|
|
226
258
|
};
|
|
227
259
|
ADMINISTRATIV: {
|
|
228
260
|
id: number;
|
|
@@ -230,6 +262,7 @@ export declare const TimeCounterType: {
|
|
|
230
262
|
aberrantTime: number;
|
|
231
263
|
limitedRoles: null;
|
|
232
264
|
color: string;
|
|
265
|
+
isOverlappable: boolean;
|
|
233
266
|
};
|
|
234
267
|
INTEGRATION_DAY: {
|
|
235
268
|
id: number;
|
|
@@ -237,6 +270,7 @@ export declare const TimeCounterType: {
|
|
|
237
270
|
aberrantTime: number;
|
|
238
271
|
limitedRoles: null;
|
|
239
272
|
color: string;
|
|
273
|
+
isOverlappable: boolean;
|
|
240
274
|
};
|
|
241
275
|
COMMERCIAL_MISSION: {
|
|
242
276
|
id: number;
|
|
@@ -244,6 +278,7 @@ export declare const TimeCounterType: {
|
|
|
244
278
|
aberrantTime: number;
|
|
245
279
|
limitedRoles: null;
|
|
246
280
|
color: string;
|
|
281
|
+
isOverlappable: boolean;
|
|
247
282
|
};
|
|
248
283
|
INTERNAL_CONTROL: {
|
|
249
284
|
id: number;
|
|
@@ -251,6 +286,7 @@ export declare const TimeCounterType: {
|
|
|
251
286
|
aberrantTime: number;
|
|
252
287
|
limitedRoles: Role[];
|
|
253
288
|
color: string;
|
|
289
|
+
isOverlappable: boolean;
|
|
254
290
|
};
|
|
255
291
|
CALENDLY: {
|
|
256
292
|
id: number;
|
|
@@ -258,6 +294,7 @@ export declare const TimeCounterType: {
|
|
|
258
294
|
aberrantTime: number;
|
|
259
295
|
limitedRoles: null;
|
|
260
296
|
color: string;
|
|
297
|
+
isOverlappable: boolean;
|
|
261
298
|
};
|
|
262
299
|
CONNECTION: {
|
|
263
300
|
id: number;
|
|
@@ -265,6 +302,7 @@ export declare const TimeCounterType: {
|
|
|
265
302
|
aberrantTime: number;
|
|
266
303
|
limitedRoles: null;
|
|
267
304
|
color: string;
|
|
305
|
+
isOverlappable: boolean;
|
|
268
306
|
};
|
|
269
307
|
RECRUITMENT_MISSIONS: {
|
|
270
308
|
id: number;
|
|
@@ -272,6 +310,7 @@ export declare const TimeCounterType: {
|
|
|
272
310
|
aberrantTime: number;
|
|
273
311
|
limitedRoles: Role[];
|
|
274
312
|
color: string;
|
|
313
|
+
isOverlappable: boolean;
|
|
275
314
|
};
|
|
276
315
|
UNPAID_TERMINATIONS: {
|
|
277
316
|
id: number;
|
|
@@ -279,6 +318,7 @@ export declare const TimeCounterType: {
|
|
|
279
318
|
aberrantTime: number;
|
|
280
319
|
limitedRoles: Role[];
|
|
281
320
|
color: string;
|
|
321
|
+
isOverlappable: boolean;
|
|
282
322
|
};
|
|
283
323
|
RELAUCH: {
|
|
284
324
|
id: number;
|
|
@@ -286,6 +326,7 @@ export declare const TimeCounterType: {
|
|
|
286
326
|
aberrantTime: number;
|
|
287
327
|
limitedRoles: Role[];
|
|
288
328
|
color: string;
|
|
329
|
+
isOverlappable: boolean;
|
|
289
330
|
};
|
|
290
331
|
UNPAID_RELAUCH: {
|
|
291
332
|
id: number;
|
|
@@ -293,6 +334,7 @@ export declare const TimeCounterType: {
|
|
|
293
334
|
aberrantTime: number;
|
|
294
335
|
limitedRoles: Role[];
|
|
295
336
|
color: string;
|
|
337
|
+
isOverlappable: boolean;
|
|
296
338
|
};
|
|
297
339
|
SUPERVISION_VERIFICATION: {
|
|
298
340
|
id: number;
|
|
@@ -300,6 +342,7 @@ export declare const TimeCounterType: {
|
|
|
300
342
|
aberrantTime: number;
|
|
301
343
|
limitedRoles: Role[];
|
|
302
344
|
color: string;
|
|
345
|
+
isOverlappable: boolean;
|
|
303
346
|
};
|
|
304
347
|
MAILS: {
|
|
305
348
|
id: number;
|
|
@@ -307,6 +350,7 @@ export declare const TimeCounterType: {
|
|
|
307
350
|
aberrantTime: number;
|
|
308
351
|
limitedRoles: Role[];
|
|
309
352
|
color: string;
|
|
353
|
+
isOverlappable: boolean;
|
|
310
354
|
};
|
|
311
355
|
};
|
|
312
356
|
//# sourceMappingURL=TimeCounterType.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TimeCounterType.d.ts","sourceRoot":"","sources":["../../../../ts/types/Enum/TimeCounterType.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,QAAQ,CAAC;AAE9B,eAAO,MAAM,eAAe
|
|
1
|
+
{"version":3,"file":"TimeCounterType.d.ts","sourceRoot":"","sources":["../../../../ts/types/Enum/TimeCounterType.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,QAAQ,CAAC;AAE9B,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAiW3B,CAAC"}
|
|
@@ -6,6 +6,7 @@ export const TimeCounterType = {
|
|
|
6
6
|
aberrantTime: 60,
|
|
7
7
|
limitedRoles: [Role.FRONT_OFFICE, Role.FRONT_OFFICE_EXPRESS, Role.DATA_OFFICER],
|
|
8
8
|
color: 'fire',
|
|
9
|
+
isOverlappable: false,
|
|
9
10
|
},
|
|
10
11
|
VAT: {
|
|
11
12
|
id: 2,
|
|
@@ -13,6 +14,7 @@ export const TimeCounterType = {
|
|
|
13
14
|
aberrantTime: 60,
|
|
14
15
|
limitedRoles: [Role.MANAGER, Role.EXPERT_ACCOUNTANT, Role.FRONT_OFFICE, Role.FRONT_OFFICE_EXPRESS, Role.DATA_OFFICER],
|
|
15
16
|
color: 'iris',
|
|
17
|
+
isOverlappable: true,
|
|
16
18
|
},
|
|
17
19
|
REVISION: {
|
|
18
20
|
id: 3,
|
|
@@ -20,6 +22,7 @@ export const TimeCounterType = {
|
|
|
20
22
|
aberrantTime: 120,
|
|
21
23
|
limitedRoles: [Role.MANAGER, Role.EXPERT_ACCOUNTANT, Role.FRONT_OFFICE, Role.FRONT_OFFICE_EXPRESS, Role.DATA_OFFICER],
|
|
22
24
|
color: 'bubblegum-light',
|
|
25
|
+
isOverlappable: true,
|
|
23
26
|
},
|
|
24
27
|
FOLDER_REVIEW: {
|
|
25
28
|
id: 4,
|
|
@@ -27,6 +30,7 @@ export const TimeCounterType = {
|
|
|
27
30
|
aberrantTime: 60,
|
|
28
31
|
limitedRoles: [Role.MANAGER, Role.EXPERT_ACCOUNTANT, Role.FRONT_OFFICE, Role.FRONT_OFFICE_EXPRESS, Role.DATA_OFFICER],
|
|
29
32
|
color: 'cerulean',
|
|
33
|
+
isOverlappable: true,
|
|
30
34
|
},
|
|
31
35
|
REPORTING: {
|
|
32
36
|
id: 5,
|
|
@@ -34,6 +38,7 @@ export const TimeCounterType = {
|
|
|
34
38
|
aberrantTime: 60,
|
|
35
39
|
limitedRoles: [Role.CUSTOMER_SUCCESS, Role.ON_BOARDER, Role.TERMINATION, Role.LITIGE],
|
|
36
40
|
color: 'lipstick-dark',
|
|
41
|
+
isOverlappable: true,
|
|
37
42
|
},
|
|
38
43
|
SYNCHRONISATION: {
|
|
39
44
|
id: 6,
|
|
@@ -41,6 +46,7 @@ export const TimeCounterType = {
|
|
|
41
46
|
aberrantTime: 30,
|
|
42
47
|
limitedRoles: [Role.CUSTOMER_SUCCESS, Role.ON_BOARDER, Role.TERMINATION, Role.LITIGE],
|
|
43
48
|
color: 'orange-dark',
|
|
49
|
+
isOverlappable: true,
|
|
44
50
|
},
|
|
45
51
|
UNDER_SUPERVISION: {
|
|
46
52
|
id: 7,
|
|
@@ -48,6 +54,7 @@ export const TimeCounterType = {
|
|
|
48
54
|
aberrantTime: 45,
|
|
49
55
|
limitedRoles: null,
|
|
50
56
|
color: 'orange-dark',
|
|
57
|
+
isOverlappable: true,
|
|
51
58
|
},
|
|
52
59
|
CLIENT_CONTACT: {
|
|
53
60
|
id: 8,
|
|
@@ -55,6 +62,7 @@ export const TimeCounterType = {
|
|
|
55
62
|
aberrantTime: 20,
|
|
56
63
|
limitedRoles: null,
|
|
57
64
|
color: 'orange-light',
|
|
65
|
+
isOverlappable: false,
|
|
58
66
|
},
|
|
59
67
|
MEETING: {
|
|
60
68
|
id: 9,
|
|
@@ -62,6 +70,7 @@ export const TimeCounterType = {
|
|
|
62
70
|
aberrantTime: 20,
|
|
63
71
|
limitedRoles: null,
|
|
64
72
|
color: 'fern-dark',
|
|
73
|
+
isOverlappable: false,
|
|
65
74
|
},
|
|
66
75
|
FORMATION: {
|
|
67
76
|
id: 10,
|
|
@@ -69,6 +78,7 @@ export const TimeCounterType = {
|
|
|
69
78
|
aberrantTime: 20,
|
|
70
79
|
limitedRoles: null,
|
|
71
80
|
color: 'fern',
|
|
81
|
+
isOverlappable: false,
|
|
72
82
|
},
|
|
73
83
|
FORECAST: {
|
|
74
84
|
id: 11,
|
|
@@ -76,6 +86,7 @@ export const TimeCounterType = {
|
|
|
76
86
|
aberrantTime: 20,
|
|
77
87
|
limitedRoles: [Role.FRONT_OFFICE, Role.FRONT_OFFICE_EXPRESS, Role.DATA_OFFICER],
|
|
78
88
|
color: 'cerulean-light',
|
|
89
|
+
isOverlappable: true,
|
|
79
90
|
},
|
|
80
91
|
CERTIFICATE: {
|
|
81
92
|
id: 12,
|
|
@@ -83,6 +94,7 @@ export const TimeCounterType = {
|
|
|
83
94
|
aberrantTime: 20,
|
|
84
95
|
limitedRoles: [Role.CUSTOMER_SUCCESS, Role.ON_BOARDER, Role.TERMINATION, Role.LITIGE],
|
|
85
96
|
color: 'pink-salmon',
|
|
97
|
+
isOverlappable: true,
|
|
86
98
|
},
|
|
87
99
|
COMPLEMENTARY_MISSION: {
|
|
88
100
|
id: 13,
|
|
@@ -90,6 +102,7 @@ export const TimeCounterType = {
|
|
|
90
102
|
aberrantTime: 20,
|
|
91
103
|
limitedRoles: [Role.FRONT_OFFICE, Role.FRONT_OFFICE_EXPRESS, Role.DATA_OFFICER],
|
|
92
104
|
color: 'cerulean-light',
|
|
105
|
+
isOverlappable: true,
|
|
93
106
|
},
|
|
94
107
|
ORGANISATION: {
|
|
95
108
|
id: 14,
|
|
@@ -97,6 +110,7 @@ export const TimeCounterType = {
|
|
|
97
110
|
aberrantTime: 20,
|
|
98
111
|
limitedRoles: null,
|
|
99
112
|
color: 'fern-light',
|
|
113
|
+
isOverlappable: false,
|
|
100
114
|
},
|
|
101
115
|
INTERNAL_ADVICE: {
|
|
102
116
|
id: 15,
|
|
@@ -104,6 +118,7 @@ export const TimeCounterType = {
|
|
|
104
118
|
aberrantTime: 20,
|
|
105
119
|
limitedRoles: null,
|
|
106
120
|
color: 'fern-light',
|
|
121
|
+
isOverlappable: true,
|
|
107
122
|
},
|
|
108
123
|
LAB: {
|
|
109
124
|
id: 16,
|
|
@@ -111,6 +126,7 @@ export const TimeCounterType = {
|
|
|
111
126
|
aberrantTime: 20,
|
|
112
127
|
limitedRoles: [Role.EXPERT_ACCOUNTANT],
|
|
113
128
|
color: 'fire',
|
|
129
|
+
isOverlappable: true,
|
|
114
130
|
},
|
|
115
131
|
SUPERVISION: {
|
|
116
132
|
id: 17,
|
|
@@ -118,6 +134,7 @@ export const TimeCounterType = {
|
|
|
118
134
|
aberrantTime: 20,
|
|
119
135
|
limitedRoles: [Role.EXPERT_ACCOUNTANT, Role.MANAGER],
|
|
120
136
|
color: 'bubblegum-dark',
|
|
137
|
+
isOverlappable: true,
|
|
121
138
|
},
|
|
122
139
|
MAIL_PROCESSING: {
|
|
123
140
|
id: 18,
|
|
@@ -125,6 +142,7 @@ export const TimeCounterType = {
|
|
|
125
142
|
aberrantTime: 20,
|
|
126
143
|
limitedRoles: [Role.CUSTOMER_SUCCESS, Role.ON_BOARDER, Role.TERMINATION, Role.LITIGE],
|
|
127
144
|
color: 'pink-salmon',
|
|
145
|
+
isOverlappable: true,
|
|
128
146
|
},
|
|
129
147
|
SUPPORT_PROCESSING: {
|
|
130
148
|
id: 19,
|
|
@@ -132,6 +150,7 @@ export const TimeCounterType = {
|
|
|
132
150
|
aberrantTime: 20,
|
|
133
151
|
limitedRoles: [Role.CUSTOMER_SUCCESS, Role.ON_BOARDER, Role.TERMINATION, Role.LITIGE],
|
|
134
152
|
color: 'error',
|
|
153
|
+
isOverlappable: true,
|
|
135
154
|
},
|
|
136
155
|
BILAN: {
|
|
137
156
|
id: 20,
|
|
@@ -139,6 +158,7 @@ export const TimeCounterType = {
|
|
|
139
158
|
aberrantTime: 120,
|
|
140
159
|
limitedRoles: [Role.FRONT_OFFICE, Role.FRONT_OFFICE_EXPRESS, Role.DATA_OFFICER, Role.EXPERT_ACCOUNTANT],
|
|
141
160
|
color: 'cerulean-dark',
|
|
161
|
+
isOverlappable: true,
|
|
142
162
|
},
|
|
143
163
|
PAYSLIP: {
|
|
144
164
|
id: 21,
|
|
@@ -146,6 +166,7 @@ export const TimeCounterType = {
|
|
|
146
166
|
aberrantTime: 30,
|
|
147
167
|
limitedRoles: [Role.SOCIAL],
|
|
148
168
|
color: 'guacamole',
|
|
169
|
+
isOverlappable: true,
|
|
149
170
|
},
|
|
150
171
|
SOCIAL_PARAMETER: {
|
|
151
172
|
id: 22,
|
|
@@ -153,6 +174,7 @@ export const TimeCounterType = {
|
|
|
153
174
|
aberrantTime: 40,
|
|
154
175
|
limitedRoles: [Role.SOCIAL],
|
|
155
176
|
color: 'guacamole',
|
|
177
|
+
isOverlappable: true,
|
|
156
178
|
},
|
|
157
179
|
WORK_CONTRACT: {
|
|
158
180
|
id: 23,
|
|
@@ -160,6 +182,7 @@ export const TimeCounterType = {
|
|
|
160
182
|
aberrantTime: 60,
|
|
161
183
|
limitedRoles: [Role.SOCIAL],
|
|
162
184
|
color: 'guacamole',
|
|
185
|
+
isOverlappable: true,
|
|
163
186
|
},
|
|
164
187
|
DPAE: {
|
|
165
188
|
id: 24,
|
|
@@ -167,6 +190,7 @@ export const TimeCounterType = {
|
|
|
167
190
|
aberrantTime: 25,
|
|
168
191
|
limitedRoles: [Role.SOCIAL],
|
|
169
192
|
color: 'guacamole',
|
|
193
|
+
isOverlappable: true,
|
|
170
194
|
},
|
|
171
195
|
FACTURATION: {
|
|
172
196
|
id: 25,
|
|
@@ -174,6 +198,7 @@ export const TimeCounterType = {
|
|
|
174
198
|
aberrantTime: 180,
|
|
175
199
|
limitedRoles: null,
|
|
176
200
|
color: 'success',
|
|
201
|
+
isOverlappable: true,
|
|
177
202
|
},
|
|
178
203
|
LEGAL_DOCUMENT: {
|
|
179
204
|
id: 26,
|
|
@@ -181,6 +206,7 @@ export const TimeCounterType = {
|
|
|
181
206
|
aberrantTime: 30,
|
|
182
207
|
limitedRoles: [Role.JURIDIC],
|
|
183
208
|
color: 'caramel',
|
|
209
|
+
isOverlappable: true,
|
|
184
210
|
},
|
|
185
211
|
INFOGREFFE: {
|
|
186
212
|
id: 27,
|
|
@@ -188,6 +214,7 @@ export const TimeCounterType = {
|
|
|
188
214
|
aberrantTime: 15,
|
|
189
215
|
limitedRoles: [Role.JURIDIC],
|
|
190
216
|
color: 'caramel',
|
|
217
|
+
isOverlappable: true,
|
|
191
218
|
},
|
|
192
219
|
APPOINTMENT: {
|
|
193
220
|
id: 28,
|
|
@@ -195,6 +222,7 @@ export const TimeCounterType = {
|
|
|
195
222
|
aberrantTime: 15,
|
|
196
223
|
limitedRoles: null,
|
|
197
224
|
color: 'orange-light',
|
|
225
|
+
isOverlappable: false,
|
|
198
226
|
},
|
|
199
227
|
PHYSIC_UPKEEP: {
|
|
200
228
|
id: 29,
|
|
@@ -202,6 +230,7 @@ export const TimeCounterType = {
|
|
|
202
230
|
aberrantTime: 30,
|
|
203
231
|
limitedRoles: null,
|
|
204
232
|
color: 'success',
|
|
233
|
+
isOverlappable: false,
|
|
205
234
|
},
|
|
206
235
|
VISIO_UPKEEP: {
|
|
207
236
|
id: 30,
|
|
@@ -209,6 +238,7 @@ export const TimeCounterType = {
|
|
|
209
238
|
aberrantTime: 30,
|
|
210
239
|
limitedRoles: null,
|
|
211
240
|
color: 'success',
|
|
241
|
+
isOverlappable: false,
|
|
212
242
|
},
|
|
213
243
|
PREQUALIF_TEL: {
|
|
214
244
|
id: 31,
|
|
@@ -216,6 +246,7 @@ export const TimeCounterType = {
|
|
|
216
246
|
aberrantTime: 30,
|
|
217
247
|
limitedRoles: null,
|
|
218
248
|
color: 'success',
|
|
249
|
+
isOverlappable: false,
|
|
219
250
|
},
|
|
220
251
|
HUMAN_RESSOURCES_POINT: {
|
|
221
252
|
id: 32,
|
|
@@ -223,6 +254,7 @@ export const TimeCounterType = {
|
|
|
223
254
|
aberrantTime: 30,
|
|
224
255
|
limitedRoles: null,
|
|
225
256
|
color: 'cerulean',
|
|
257
|
+
isOverlappable: false,
|
|
226
258
|
},
|
|
227
259
|
ADMINISTRATIV: {
|
|
228
260
|
id: 33,
|
|
@@ -230,6 +262,7 @@ export const TimeCounterType = {
|
|
|
230
262
|
aberrantTime: 30,
|
|
231
263
|
limitedRoles: null,
|
|
232
264
|
color: 'iris',
|
|
265
|
+
isOverlappable: true,
|
|
233
266
|
},
|
|
234
267
|
INTEGRATION_DAY: {
|
|
235
268
|
id: 34,
|
|
@@ -237,6 +270,7 @@ export const TimeCounterType = {
|
|
|
237
270
|
aberrantTime: 30,
|
|
238
271
|
limitedRoles: null,
|
|
239
272
|
color: 'orange',
|
|
273
|
+
isOverlappable: false,
|
|
240
274
|
},
|
|
241
275
|
COMMERCIAL_MISSION: {
|
|
242
276
|
id: 35,
|
|
@@ -244,6 +278,7 @@ export const TimeCounterType = {
|
|
|
244
278
|
aberrantTime: 60,
|
|
245
279
|
limitedRoles: null,
|
|
246
280
|
color: 'error',
|
|
281
|
+
isOverlappable: true,
|
|
247
282
|
},
|
|
248
283
|
INTERNAL_CONTROL: {
|
|
249
284
|
id: 36,
|
|
@@ -251,6 +286,7 @@ export const TimeCounterType = {
|
|
|
251
286
|
aberrantTime: 480,
|
|
252
287
|
limitedRoles: [Role.CUSTOMER_SUCCESS, Role.ON_BOARDER, Role.TERMINATION, Role.LITIGE],
|
|
253
288
|
color: 'grey-dark',
|
|
289
|
+
isOverlappable: true,
|
|
254
290
|
},
|
|
255
291
|
CALENDLY: {
|
|
256
292
|
id: 37,
|
|
@@ -258,6 +294,7 @@ export const TimeCounterType = {
|
|
|
258
294
|
aberrantTime: 480,
|
|
259
295
|
limitedRoles: null,
|
|
260
296
|
color: 'fern-dark',
|
|
297
|
+
isOverlappable: false,
|
|
261
298
|
},
|
|
262
299
|
CONNECTION: {
|
|
263
300
|
id: 38,
|
|
@@ -265,6 +302,7 @@ export const TimeCounterType = {
|
|
|
265
302
|
aberrantTime: 15,
|
|
266
303
|
limitedRoles: null,
|
|
267
304
|
color: 'success',
|
|
305
|
+
isOverlappable: true,
|
|
268
306
|
},
|
|
269
307
|
RECRUITMENT_MISSIONS: {
|
|
270
308
|
id: 39,
|
|
@@ -272,6 +310,7 @@ export const TimeCounterType = {
|
|
|
272
310
|
aberrantTime: 15,
|
|
273
311
|
limitedRoles: [Role.HUMAN_RESSOURCES],
|
|
274
312
|
color: 'orange',
|
|
313
|
+
isOverlappable: false,
|
|
275
314
|
},
|
|
276
315
|
UNPAID_TERMINATIONS: {
|
|
277
316
|
id: 40,
|
|
@@ -279,6 +318,7 @@ export const TimeCounterType = {
|
|
|
279
318
|
aberrantTime: 15,
|
|
280
319
|
limitedRoles: [Role.CUSTOMER_SUCCESS],
|
|
281
320
|
color: 'error',
|
|
321
|
+
isOverlappable: true,
|
|
282
322
|
},
|
|
283
323
|
RELAUCH: {
|
|
284
324
|
id: 41,
|
|
@@ -286,6 +326,7 @@ export const TimeCounterType = {
|
|
|
286
326
|
aberrantTime: 15,
|
|
287
327
|
limitedRoles: [Role.COMMERCIAL, Role.FACTURATION],
|
|
288
328
|
color: 'success',
|
|
329
|
+
isOverlappable: true,
|
|
289
330
|
},
|
|
290
331
|
UNPAID_RELAUCH: {
|
|
291
332
|
id: 42,
|
|
@@ -293,6 +334,7 @@ export const TimeCounterType = {
|
|
|
293
334
|
aberrantTime: 15,
|
|
294
335
|
limitedRoles: [Role.FACTURATION],
|
|
295
336
|
color: 'orange',
|
|
337
|
+
isOverlappable: true,
|
|
296
338
|
},
|
|
297
339
|
SUPERVISION_VERIFICATION: {
|
|
298
340
|
id: 43,
|
|
@@ -300,6 +342,7 @@ export const TimeCounterType = {
|
|
|
300
342
|
aberrantTime: 15,
|
|
301
343
|
limitedRoles: [Role.FACTURATION],
|
|
302
344
|
color: 'guacamole',
|
|
345
|
+
isOverlappable: true,
|
|
303
346
|
},
|
|
304
347
|
MAILS: {
|
|
305
348
|
id: 44,
|
|
@@ -307,6 +350,7 @@ export const TimeCounterType = {
|
|
|
307
350
|
aberrantTime: 15,
|
|
308
351
|
limitedRoles: [Role.FACTURATION],
|
|
309
352
|
color: 'guacamole',
|
|
353
|
+
isOverlappable: true,
|
|
310
354
|
},
|
|
311
355
|
};
|
|
312
356
|
//# sourceMappingURL=TimeCounterType.js.map
|