@silexpert/core 1.1.341 → 1.1.342

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 (33) hide show
  1. package/dist/cjs/api/resources/Subscription.d.ts +1 -1
  2. package/dist/cjs/api/resources/Subscription.d.ts.map +1 -1
  3. package/dist/cjs/api/resources/Subscription.js +2 -2
  4. package/dist/cjs/api/resources/Subscription.js.map +1 -1
  5. package/dist/cjs/types/Enum/BalanceSheet.js +3 -3
  6. package/dist/cjs/types/Enum/BalanceSheet.js.map +1 -1
  7. package/dist/cjs/types/Enum/TimeSlot.d.ts +9 -2
  8. package/dist/cjs/types/Enum/TimeSlot.d.ts.map +1 -1
  9. package/dist/cjs/types/Enum/TimeSlot.js +65 -1
  10. package/dist/cjs/types/Enum/TimeSlot.js.map +1 -1
  11. package/dist/cjs/types/Interface/api/supervision/Query.d.ts +1 -1
  12. package/dist/cjs/types/Interface/api/supervision/Query.d.ts.map +1 -1
  13. package/dist/cjs/types/Interface/api/supervision/Query.js +1 -2
  14. package/dist/cjs/types/Interface/api/supervision/Query.js.map +1 -1
  15. package/dist/mjs/api/resources/Subscription.d.ts +1 -1
  16. package/dist/mjs/api/resources/Subscription.d.ts.map +1 -1
  17. package/dist/mjs/api/resources/Subscription.js +2 -2
  18. package/dist/mjs/api/resources/Subscription.js.map +1 -1
  19. package/dist/mjs/types/Enum/BalanceSheet.js +3 -3
  20. package/dist/mjs/types/Enum/BalanceSheet.js.map +1 -1
  21. package/dist/mjs/types/Enum/TimeSlot.d.ts +9 -2
  22. package/dist/mjs/types/Enum/TimeSlot.d.ts.map +1 -1
  23. package/dist/mjs/types/Enum/TimeSlot.js +64 -0
  24. package/dist/mjs/types/Enum/TimeSlot.js.map +1 -1
  25. package/dist/mjs/types/Interface/api/supervision/Query.d.ts +1 -1
  26. package/dist/mjs/types/Interface/api/supervision/Query.d.ts.map +1 -1
  27. package/dist/mjs/types/Interface/api/supervision/Query.js +1 -2
  28. package/dist/mjs/types/Interface/api/supervision/Query.js.map +1 -1
  29. package/package.json +1 -1
  30. package/ts/api/resources/Subscription.ts +2 -2
  31. package/ts/types/Enum/BalanceSheet.ts +3 -3
  32. package/ts/types/Enum/TimeSlot.ts +67 -0
  33. package/ts/types/Interface/api/supervision/Query.ts +2 -3
@@ -19,11 +19,18 @@ export enum TimeSlot {
19
19
  TAX_ADVICE_OR_COMPLEX_LEGAL_ARRANGEMENTS = 15,
20
20
  FIX_UNPAID = 16,
21
21
  POST_BILAN = 17,
22
+ ANNUAL_FINANCIAL_STATEMENTS = 18,
23
+ MANAGER_REVENUE = 19,
24
+ SPECIALISED_FISCAL_QUESTIONS = 20,
25
+ VAT_TERRITORIALITY = 21,
26
+ FINANCIAL_SOURCE = 22,
27
+
22
28
  }
23
29
  export enum TimeSlotCategory {
24
30
  ACCOUNTING = 1,
25
31
  JURIDIC = 2,
26
32
  BILLING = 3,
33
+ SPECIALISED = 4,
27
34
  }
28
35
 
29
36
  export type TimeSlotDetailType = {
@@ -40,20 +47,30 @@ export type TimeSlotDetailType = {
40
47
  export type TimeSlotCategoryDetailType = {
41
48
  id: number;
42
49
  name: string;
50
+ description: string;
43
51
  };
44
52
 
45
53
  export const TimeSlotCategoryDetail:TimeSlotCategoryDetailType[] = [
46
54
  {
47
55
  id: TimeSlotCategory.ACCOUNTING,
48
56
  name: 'Comptable',
57
+ description: 'Pour suivre l\'avancement de votre bilan, vos déclarations de TVA ou pour toute question sur la vie de votre dossier, c\'est par ici !',
58
+
49
59
  },
50
60
  {
51
61
  id: TimeSlotCategory.JURIDIC,
52
62
  name: 'Juridique',
63
+ description: 'Si vous souhaitez ouvrir / modifier / fermer une entreprise ou pour tout besoin de montage juridique complexe, notre équipe est à votre disposition',
53
64
  },
54
65
  {
55
66
  id: TimeSlotCategory.BILLING,
56
67
  name: 'Facturation',
68
+ description: 'Besoin d\'échanger sur votre échéancier ou votre facturation (retards de paiement et autres) ? Prenez contact avec nous !',
69
+ },
70
+ {
71
+ id: TimeSlotCategory.SPECIALISED,
72
+ name: 'Conseils spécialisés',
73
+ description: 'Vous souhaitez une explication de vos comptes annuels ? Vous avez des questions très pointues ou un besoin d\'information spécifique ? Nos experts conseil sont là pour vous accompagner !',
57
74
  },
58
75
  ];
59
76
 
@@ -223,4 +240,54 @@ export const TimeSlotDetail:TimeSlotDetailType[] = [
223
240
  forWholeService: false,
224
241
  idTimeCounterType: TimeCounterType.CALENDLY.id,
225
242
  },
243
+ {
244
+ id: TimeSlot.ANNUAL_FINANCIAL_STATEMENTS,
245
+ name: 'Lecture et explication des comptes annuels',
246
+ internalName: 'Conseils spécialisés',
247
+ category: TimeSlotCategoryDetail.find(c => c.id === TimeSlotCategory.SPECIALISED)?.name,
248
+ duration: 30,
249
+ idRole: [Role.TECHNICAL_ADVISOR],
250
+ forWholeService: false,
251
+ idTimeCounterType: TimeCounterType.CALENDLY.id,
252
+ },
253
+ {
254
+ id: TimeSlot.MANAGER_REVENUE,
255
+ name: 'Rémunération du dirigeant & dividendes',
256
+ internalName: 'Conseils spécialisés',
257
+ category: TimeSlotCategoryDetail.find(c => c.id === TimeSlotCategory.SPECIALISED)?.name,
258
+ duration: 30,
259
+ idRole: [Role.TECHNICAL_ADVISOR],
260
+ forWholeService: false,
261
+ idTimeCounterType: TimeCounterType.CALENDLY.id,
262
+ },
263
+ {
264
+ id: TimeSlot.SPECIALISED_FISCAL_QUESTIONS,
265
+ name: 'Questions fiscales spécifiques (crédits d\'impôts, ZFANG, autres statuts, etc.)',
266
+ internalName: 'Conseils spécialisés',
267
+ category: TimeSlotCategoryDetail.find(c => c.id === TimeSlotCategory.SPECIALISED)?.name,
268
+ duration: 30,
269
+ idRole: [Role.TECHNICAL_ADVISOR],
270
+ forWholeService: false,
271
+ idTimeCounterType: TimeCounterType.CALENDLY.id,
272
+ },
273
+ {
274
+ id: TimeSlot.VAT_TERRITORIALITY,
275
+ name: 'Territorialité de TVA',
276
+ internalName: 'Conseils spécialisés',
277
+ category: TimeSlotCategoryDetail.find(c => c.id === TimeSlotCategory.SPECIALISED)?.name,
278
+ duration: 30,
279
+ idRole: [Role.TECHNICAL_ADVISOR],
280
+ forWholeService: false,
281
+ idTimeCounterType: TimeCounterType.CALENDLY.id,
282
+ },
283
+ {
284
+ id: TimeSlot.FINANCIAL_SOURCE,
285
+ name: 'Sources de financement',
286
+ internalName: 'Conseils spécialisés',
287
+ category: TimeSlotCategoryDetail.find(c => c.id === TimeSlotCategory.SPECIALISED)?.name,
288
+ duration: 30,
289
+ idRole: [Role.TECHNICAL_ADVISOR],
290
+ forWholeService: false,
291
+ idTimeCounterType: TimeCounterType.CALENDLY.id,
292
+ },
226
293
  ];
@@ -84,9 +84,8 @@ export class QueryPaginatedBalanceSheetSupervision extends RequiredQueryPaginate
84
84
 
85
85
  @ApiPropertyOptional()
86
86
  @IsOptional()
87
- @IsBoolean()
88
- @ToBoolean()
89
- labKeeping?: boolean | null;
87
+ @IsInt()
88
+ labKeeping?: number | null;
90
89
 
91
90
 
92
91
  }