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