codevdesign 0.0.79 → 0.0.80

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 (71) hide show
  1. package/composants/csqcChaise/chaiseConteneur.vue +362 -362
  2. package/composants/csqcChaise/chaiseItem.vue +54 -54
  3. package/composants/csqcDialogue.vue +112 -112
  4. package/composants/csqcEditeurTexteRiche.vue +318 -318
  5. package/composants/csqcEntete.vue +158 -158
  6. package/composants/csqcImportCSV.vue +125 -0
  7. package/composants/csqcRecherche.vue +212 -212
  8. package/composants/csqcRechercheUtilisateur.vue +125 -0
  9. package/composants/csqcTable/csqcTable.vue +386 -386
  10. package/composants/csqcTiroir.vue +155 -155
  11. package/index.ts +63 -61
  12. package/locales/en.json +21 -0
  13. package/locales/fr.json +34 -13
  14. package/modeles/assurancesAssuranceGeneraleGrics.ts +10 -0
  15. package/modeles/assurancesAssurancePersonnelleGrics.ts +13 -0
  16. package/modeles/assurancesContratGrics.ts +14 -0
  17. package/modeles/assurancesDetailsPrimeReguliereGrics.ts +12 -0
  18. package/modeles/assurancesDonneesAssureurGrics.ts +13 -0
  19. package/modeles/assurancesEmployeGrics.ts +11 -0
  20. package/modeles/assurancesGrics.ts +14 -0
  21. package/modeles/assurancesRegimeAssuranceGrics.ts +9 -0
  22. package/modeles/assurancesRegimeBaseEmployeurGrics.ts +9 -0
  23. package/modeles/assurancesRegimeBaseGrics.ts +9 -0
  24. package/modeles/employeAdresseGrics.ts +13 -0
  25. package/modeles/employeAdressesPersonnellesGrics.ts +12 -0
  26. package/modeles/employeAffectationCorpsEmploiGrics.ts +9 -0
  27. package/modeles/employeBanquesCongeBanqueGrics.ts +9 -0
  28. package/modeles/employeBanquesCongeGrics.ts +14 -0
  29. package/modeles/employeBanquesCongeRegimeAbsenceGrics.ts +9 -0
  30. package/modeles/employeCourrielsPersonnels.ts +9 -0
  31. package/modeles/employeCourrielsProfessionnels.ts +9 -0
  32. package/modeles/employeEmploisCategorieGrics.ts +2 -2
  33. package/modeles/employeEmploisClasseGrics.ts +2 -2
  34. package/modeles/employeEmploisCorpsEmploiGrics.ts +2 -2
  35. package/modeles/employeEmploisEtatEmploiGrics.ts +2 -2
  36. package/modeles/employeEmploisGrics.ts +29 -29
  37. package/modeles/employeEmploisGroupePaieGrics.ts +2 -2
  38. package/modeles/employeEmploisLieuTravailPrincipalGrics.ts +3 -3
  39. package/modeles/employeEmploisLieuxTravailSecondairesGrics.ts +3 -3
  40. package/modeles/employeEmploisRegimeAbsenceGrics.ts +2 -2
  41. package/modeles/employeEmploisSecteurGrics.ts +2 -2
  42. package/modeles/employeEmploisStatutEngagementGrics.ts +2 -2
  43. package/modeles/employeExperienceEmploiGrics.ts +9 -0
  44. package/modeles/employeExperienceEmployeGrics.ts +12 -0
  45. package/modeles/employeExperienceExperiencesGrics.ts +11 -0
  46. package/modeles/employeExperienceExperiencesTotalesGrics.ts +15 -0
  47. package/modeles/employeExperienceGrics.ts +17 -0
  48. package/modeles/employeGrics.ts +31 -0
  49. package/modeles/employeMinsLsCodev.ts +10 -0
  50. package/modeles/employeTelephoneGrics.ts +12 -0
  51. package/modeles/employeTelephonesPersonnelsGrics.ts +11 -0
  52. package/modeles/employeTelephonesProfessionnelsGrics.ts +11 -0
  53. package/modeles/groupeCE.ts +6 -6
  54. package/modeles/groupeCEIntervalle.ts +6 -6
  55. package/modeles/historiquesAbsenceBanqueGrics.ts +9 -0
  56. package/modeles/historiquesAbsenceGrics.ts +21 -0
  57. package/modeles/historiquesAbsenceLieuTravailGrics.ts +9 -0
  58. package/modeles/historiquesAbsenceSousBanqueGrics.ts +9 -0
  59. package/modeles/motifsAbsenceBanque.ts +9 -0
  60. package/modeles/motifsAbsenceGrics.ts +17 -0
  61. package/modeles/motifsAbsenceRegimeAbsence.ts +9 -0
  62. package/modeles/motifsAbsenceSousMotifs.ts +9 -0
  63. package/modeles/motifsAbsenceTraitementBanques.ts +11 -0
  64. package/modeles/syndicat.ts +26 -0
  65. package/modeles/syndicatGroupeCe.ts +10 -0
  66. package/modeles/syndicatResponsable.ts +15 -0
  67. package/modeles/syndicatUnite.ts +10 -0
  68. package/modeles/typeTelephone.ts +12 -0
  69. package/modeles/unite.ts +1 -2
  70. package/modeles/utilisateur.ts +8 -8
  71. package/package.json +1 -1
@@ -0,0 +1,13 @@
1
+ /**
2
+ * This is a TypeGen auto-generated file.
3
+ * Any changes made to this file can be lost when this file is regenerated.
4
+ */
5
+
6
+ export interface EmployeAdresseGrics {
7
+ adresse1: string;
8
+ adresse2: string;
9
+ ville: string;
10
+ provinceEtat: string;
11
+ codePostal: string;
12
+ pays: string;
13
+ }
@@ -0,0 +1,12 @@
1
+ /**
2
+ * This is a TypeGen auto-generated file.
3
+ * Any changes made to this file can be lost when this file is regenerated.
4
+ */
5
+
6
+ import type { EmployeAdresseGrics } from "./employeAdresseGrics";
7
+
8
+ export interface EmployeAdressesPersonnellesGrics {
9
+ description: string;
10
+ adresse: EmployeAdresseGrics;
11
+ typeAdresse: string;
12
+ }
@@ -0,0 +1,9 @@
1
+ /**
2
+ * This is a TypeGen auto-generated file.
3
+ * Any changes made to this file can be lost when this file is regenerated.
4
+ */
5
+
6
+ export interface EmployeAffectationCorpsEmploiGrics {
7
+ id: string;
8
+ description: string;
9
+ }
@@ -0,0 +1,9 @@
1
+ /**
2
+ * This is a TypeGen auto-generated file.
3
+ * Any changes made to this file can be lost when this file is regenerated.
4
+ */
5
+
6
+ export interface EmployeBanquesCongeBanqueGrics {
7
+ id: string;
8
+ description: string;
9
+ }
@@ -0,0 +1,14 @@
1
+ /**
2
+ * This is a TypeGen auto-generated file.
3
+ * Any changes made to this file can be lost when this file is regenerated.
4
+ */
5
+
6
+ import type { EmployeBanquesCongeRegimeAbsenceGrics } from "./employeBanquesCongeRegimeAbsenceGrics";
7
+ import type { EmployeBanquesCongeBanqueGrics } from "./employeBanquesCongeBanqueGrics";
8
+
9
+ export interface EmployeBanquesCongeGrics {
10
+ regimeAbsence: EmployeBanquesCongeRegimeAbsenceGrics;
11
+ banque: EmployeBanquesCongeBanqueGrics;
12
+ solde: number;
13
+ joursAlloues: number;
14
+ }
@@ -0,0 +1,9 @@
1
+ /**
2
+ * This is a TypeGen auto-generated file.
3
+ * Any changes made to this file can be lost when this file is regenerated.
4
+ */
5
+
6
+ export interface EmployeBanquesCongeRegimeAbsenceGrics {
7
+ id: string;
8
+ description: string;
9
+ }
@@ -0,0 +1,9 @@
1
+ /**
2
+ * This is a TypeGen auto-generated file.
3
+ * Any changes made to this file can be lost when this file is regenerated.
4
+ */
5
+
6
+ export interface EmployeCourrielsPersonnels {
7
+ description: string;
8
+ courriel: string;
9
+ }
@@ -0,0 +1,9 @@
1
+ /**
2
+ * This is a TypeGen auto-generated file.
3
+ * Any changes made to this file can be lost when this file is regenerated.
4
+ */
5
+
6
+ export interface EmployeCourrielsProfessionnels {
7
+ description: string;
8
+ courriel: string;
9
+ }
@@ -4,6 +4,6 @@
4
4
  */
5
5
 
6
6
  export interface EmployeEmploisCategorieGrics {
7
- id: string
8
- description: string
7
+ id: string;
8
+ description: string;
9
9
  }
@@ -4,6 +4,6 @@
4
4
  */
5
5
 
6
6
  export interface EmployeEmploisClasseGrics {
7
- id: string
8
- description: string
7
+ id: string;
8
+ description: string;
9
9
  }
@@ -4,6 +4,6 @@
4
4
  */
5
5
 
6
6
  export interface EmployeEmploisCorpsEmploiGrics {
7
- id: string
8
- description: string
7
+ id: string;
8
+ description: string;
9
9
  }
@@ -4,6 +4,6 @@
4
4
  */
5
5
 
6
6
  export interface EmployeEmploisEtatEmploiGrics {
7
- id: string
8
- description: string
7
+ id: string;
8
+ description: string;
9
9
  }
@@ -3,35 +3,35 @@
3
3
  * Any changes made to this file can be lost when this file is regenerated.
4
4
  */
5
5
 
6
- import type { EmployeEmploisCorpsEmploiGrics } from './employeEmploisCorpsEmploiGrics'
7
- import type { EmployeEmploisEtatEmploiGrics } from './employeEmploisEtatEmploiGrics'
8
- import type { EmployeEmploisGroupePaieGrics } from './employeEmploisGroupePaieGrics'
9
- import type { EmployeEmploisRegimeAbsenceGrics } from './employeEmploisRegimeAbsenceGrics'
10
- import type { EmployeEmploisStatutEngagementGrics } from './employeEmploisStatutEngagementGrics'
11
- import type { EmployeEmploisLieuTravailPrincipalGrics } from './employeEmploisLieuTravailPrincipalGrics'
12
- import type { EmployeEmploisLieuxTravailSecondairesGrics } from './employeEmploisLieuxTravailSecondairesGrics'
13
- import type { EmployeEmploisCategorieGrics } from './employeEmploisCategorieGrics'
14
- import type { EmployeEmploisSecteurGrics } from './employeEmploisSecteurGrics'
15
- import type { EmployeEmploisClasseGrics } from './employeEmploisClasseGrics'
6
+ import type { EmployeEmploisCorpsEmploiGrics } from "./employeEmploisCorpsEmploiGrics";
7
+ import type { EmployeEmploisEtatEmploiGrics } from "./employeEmploisEtatEmploiGrics";
8
+ import type { EmployeEmploisGroupePaieGrics } from "./employeEmploisGroupePaieGrics";
9
+ import type { EmployeEmploisRegimeAbsenceGrics } from "./employeEmploisRegimeAbsenceGrics";
10
+ import type { EmployeEmploisStatutEngagementGrics } from "./employeEmploisStatutEngagementGrics";
11
+ import type { EmployeEmploisLieuTravailPrincipalGrics } from "./employeEmploisLieuTravailPrincipalGrics";
12
+ import type { EmployeEmploisLieuxTravailSecondairesGrics } from "./employeEmploisLieuxTravailSecondairesGrics";
13
+ import type { EmployeEmploisCategorieGrics } from "./employeEmploisCategorieGrics";
14
+ import type { EmployeEmploisSecteurGrics } from "./employeEmploisSecteurGrics";
15
+ import type { EmployeEmploisClasseGrics } from "./employeEmploisClasseGrics";
16
16
 
17
17
  export interface EmployeEmploisGrics {
18
- referenceEmploi: string
19
- idEmploye: string
20
- dateDebut: string
21
- dateFin: string
22
- corpsEmploi: EmployeEmploisCorpsEmploiGrics
23
- etatEmploi: EmployeEmploisEtatEmploiGrics
24
- groupePaie: EmployeEmploisGroupePaieGrics
25
- regimeAbsence: EmployeEmploisRegimeAbsenceGrics
26
- statutEngagement: EmployeEmploisStatutEngagementGrics
27
- lieuTravailPrincipal: EmployeEmploisLieuTravailPrincipalGrics
28
- lieuxTravailSecondaires: EmployeEmploisLieuxTravailSecondairesGrics[]
29
- categorieEmploi: EmployeEmploisCategorieGrics
30
- secteur: EmployeEmploisSecteurGrics
31
- classe: EmployeEmploisClasseGrics
32
- ordreEnseignement: string
33
- principal: boolean
34
- pourcentageSalaire: number
35
- pourcentagePoste: number
36
- cycliqueSaisonnier: boolean
18
+ referenceEmploi: string;
19
+ idEmploye: string;
20
+ dateDebut: string;
21
+ dateFin: string;
22
+ corpsEmploi: EmployeEmploisCorpsEmploiGrics;
23
+ etatEmploi: EmployeEmploisEtatEmploiGrics;
24
+ groupePaie: EmployeEmploisGroupePaieGrics;
25
+ regimeAbsence: EmployeEmploisRegimeAbsenceGrics;
26
+ statutEngagement: EmployeEmploisStatutEngagementGrics;
27
+ lieuTravailPrincipal: EmployeEmploisLieuTravailPrincipalGrics;
28
+ lieuxTravailSecondaires: EmployeEmploisLieuxTravailSecondairesGrics[];
29
+ categorieEmploi: EmployeEmploisCategorieGrics;
30
+ secteur: EmployeEmploisSecteurGrics;
31
+ classe: EmployeEmploisClasseGrics;
32
+ ordreEnseignement: string;
33
+ principal: boolean;
34
+ pourcentageSalaire: number;
35
+ pourcentagePoste: number;
36
+ cycliqueSaisonnier: boolean;
37
37
  }
@@ -4,6 +4,6 @@
4
4
  */
5
5
 
6
6
  export interface EmployeEmploisGroupePaieGrics {
7
- id: string
8
- description: string
7
+ id: string;
8
+ description: string;
9
9
  }
@@ -4,7 +4,7 @@
4
4
  */
5
5
 
6
6
  export interface EmployeEmploisLieuTravailPrincipalGrics {
7
- id: string
8
- description: string
9
- pourcentageEtp: number
7
+ id: string;
8
+ description: string;
9
+ pourcentageEtp: number;
10
10
  }
@@ -4,7 +4,7 @@
4
4
  */
5
5
 
6
6
  export interface EmployeEmploisLieuxTravailSecondairesGrics {
7
- id: string
8
- description: string
9
- pourcentageEtp: number
7
+ id: string;
8
+ description: string;
9
+ pourcentageEtp: number;
10
10
  }
@@ -4,6 +4,6 @@
4
4
  */
5
5
 
6
6
  export interface EmployeEmploisRegimeAbsenceGrics {
7
- id: string
8
- description: string
7
+ id: string;
8
+ description: string;
9
9
  }
@@ -4,6 +4,6 @@
4
4
  */
5
5
 
6
6
  export interface EmployeEmploisSecteurGrics {
7
- id: string
8
- description: string
7
+ id: string;
8
+ description: string;
9
9
  }
@@ -4,6 +4,6 @@
4
4
  */
5
5
 
6
6
  export interface EmployeEmploisStatutEngagementGrics {
7
- id: string
8
- description: string
7
+ id: string;
8
+ description: string;
9
9
  }
@@ -0,0 +1,9 @@
1
+ /**
2
+ * This is a TypeGen auto-generated file.
3
+ * Any changes made to this file can be lost when this file is regenerated.
4
+ */
5
+
6
+ export class EmployeExperienceEmploiGrics {
7
+ id: string;
8
+ description: string;
9
+ }
@@ -0,0 +1,12 @@
1
+ /**
2
+ * This is a TypeGen auto-generated file.
3
+ * Any changes made to this file can be lost when this file is regenerated.
4
+ */
5
+
6
+ export class EmployeExperienceEmployeGrics {
7
+ id: string;
8
+ nom: string;
9
+ prenom: string;
10
+ nomLegal: string;
11
+ prenomChoisi: string;
12
+ }
@@ -0,0 +1,11 @@
1
+ /**
2
+ * This is a TypeGen auto-generated file.
3
+ * Any changes made to this file can be lost when this file is regenerated.
4
+ */
5
+
6
+ export class EmployeExperienceExperiencesGrics {
7
+ anneeBudgetaire: string;
8
+ nombreAnnees: number;
9
+ nombreJours: number;
10
+ commentaire: string;
11
+ }
@@ -0,0 +1,15 @@
1
+ /**
2
+ * This is a TypeGen auto-generated file.
3
+ * Any changes made to this file can be lost when this file is regenerated.
4
+ */
5
+
6
+ import type { EmployeExperienceEmploiGrics } from "./employeExperienceEmploiGrics";
7
+ import type { EmployeExperienceExperiencesGrics } from "./employeExperienceExperiencesGrics";
8
+
9
+ export class EmployeExperienceExperiencesTotalesGrics {
10
+ emploi: EmployeExperienceEmploiGrics;
11
+ employeurActuel: boolean;
12
+ nombreAnnees: number;
13
+ nombreJours: number;
14
+ experiences: EmployeExperienceExperiencesGrics[];
15
+ }
@@ -0,0 +1,17 @@
1
+ /**
2
+ * This is a TypeGen auto-generated file.
3
+ * Any changes made to this file can be lost when this file is regenerated.
4
+ */
5
+
6
+ import type { EmployeExperienceEmployeGrics } from "./employeExperienceEmployeGrics";
7
+ import type { EmployeExperienceExperiencesTotalesGrics } from "./employeExperienceExperiencesTotalesGrics";
8
+
9
+ export interface EmployeExperienceGrics {
10
+ employe: EmployeExperienceEmployeGrics;
11
+ experiencesTotales: EmployeExperienceExperiencesTotalesGrics[];
12
+ dateConsignee: string;
13
+ dateCalculPonctuel: string;
14
+ dateCalculAnnuel: string;
15
+ dateDebutCongeMaternite: string;
16
+ nombreSemainesAccordées: number;
17
+ }
@@ -0,0 +1,31 @@
1
+ /**
2
+ * This is a TypeGen auto-generated file.
3
+ * Any changes made to this file can be lost when this file is regenerated.
4
+ */
5
+
6
+ import type { EmployeAdressesPersonnellesGrics } from "./employeAdressesPersonnellesGrics";
7
+ import type { EmployeTelephonesPersonnelsGrics } from "./employeTelephonesPersonnelsGrics";
8
+ import type { EmployeTelephonesProfessionnelsGrics } from "./employeTelephonesProfessionnelsGrics";
9
+ import type { EmployeCourrielsPersonnels } from "./employeCourrielsPersonnels";
10
+ import type { EmployeCourrielsProfessionnels } from "./employeCourrielsProfessionnels";
11
+ import type { EmployeEmploisGrics } from "./employeEmploisGrics";
12
+
13
+ export interface EmployeGrics {
14
+ id: string;
15
+ nom: string;
16
+ prenom: string;
17
+ adressesPersonnelles: EmployeAdressesPersonnellesGrics[];
18
+ telephonesPersonnels: EmployeTelephonesPersonnelsGrics[];
19
+ telephonesProfessionnels: EmployeTelephonesProfessionnelsGrics[];
20
+ courrielsPersonnels: EmployeCourrielsPersonnels[];
21
+ courrielsProfessionnels: EmployeCourrielsProfessionnels[];
22
+ sexe: string;
23
+ dateNaissance: string;
24
+ dateEntree: string;
25
+ dateEngagement: string;
26
+ dateFinPeriodeEssai: string;
27
+ dateCessationDefinitive: string;
28
+ dateDebutServiceContinu: string;
29
+ dateFinServiceContinu: string;
30
+ emploiPrincipal: EmployeEmploisGrics;
31
+ }
@@ -0,0 +1,10 @@
1
+ export interface EmployeMinsLsCodev {
2
+ nom: string
3
+ prenom: string
4
+ courrielProfessionnel: string
5
+ matricule: string
6
+ numeroLieuPrincipal: string
7
+ nomLieuPrincipal: string
8
+ corpsEmploiPrincipalDescription: string
9
+ corpsEmploiPrincipal: string
10
+ }
@@ -0,0 +1,12 @@
1
+ /**
2
+ * This is a TypeGen auto-generated file.
3
+ * Any changes made to this file can be lost when this file is regenerated.
4
+ */
5
+
6
+ import type { TypeTelephone } from "./typeTelephone";
7
+
8
+ export interface EmployeTelephoneGrics {
9
+ numero: string;
10
+ poste: string;
11
+ typeTelephone: TypeTelephone;
12
+ }
@@ -0,0 +1,11 @@
1
+ /**
2
+ * This is a TypeGen auto-generated file.
3
+ * Any changes made to this file can be lost when this file is regenerated.
4
+ */
5
+
6
+ import type { EmployeTelephoneGrics } from "./employeTelephoneGrics";
7
+
8
+ export interface EmployeTelephonesPersonnelsGrics {
9
+ description: string;
10
+ telephone: EmployeTelephoneGrics;
11
+ }
@@ -0,0 +1,11 @@
1
+ /**
2
+ * This is a TypeGen auto-generated file.
3
+ * Any changes made to this file can be lost when this file is regenerated.
4
+ */
5
+
6
+ import type { EmployeTelephoneGrics } from "./employeTelephoneGrics";
7
+
8
+ export interface EmployeTelephonesProfessionnelsGrics {
9
+ description: string;
10
+ telephone: EmployeTelephoneGrics;
11
+ }
@@ -3,12 +3,12 @@
3
3
  * Any changes made to this file can be lost when this file is regenerated.
4
4
  */
5
5
 
6
- import type { GroupeCEIntervalle } from './groupeCEIntervalle'
6
+ import type { GroupeCEIntervalle } from "./groupeCEIntervalle";
7
7
 
8
8
  export interface GroupeCE {
9
- id: number
10
- commissionScolaireId: number
11
- nom: string
12
- groupeCEIntervalles: GroupeCEIntervalle[]
13
- parentId: number
9
+ id: number;
10
+ commissionScolaireId: number;
11
+ nom: string;
12
+ groupeCEIntervalles: GroupeCEIntervalle[];
13
+ parentId: number;
14
14
  }
@@ -4,10 +4,10 @@
4
4
  */
5
5
 
6
6
  export interface GroupeCEIntervalle {
7
- id: number
8
- corpsEmploiMin: string
9
- corpsEmploiMax: string
10
- groupeCEId: number
11
- min: number
12
- max: number
7
+ id: number;
8
+ corpsEmploiMin: string;
9
+ corpsEmploiMax: string;
10
+ groupeCEId: number;
11
+ min: number;
12
+ max: number;
13
13
  }
@@ -0,0 +1,9 @@
1
+ /**
2
+ * This is a TypeGen auto-generated file.
3
+ * Any changes made to this file can be lost when this file is regenerated.
4
+ */
5
+
6
+ export class HistoriquesAbsenceBanqueGrics {
7
+ id: string;
8
+ description: string;
9
+ }
@@ -0,0 +1,21 @@
1
+ /**
2
+ * This is a TypeGen auto-generated file.
3
+ * Any changes made to this file can be lost when this file is regenerated.
4
+ */
5
+
6
+ import type { HistoriquesAbsenceLieuTravailGrics } from "./historiquesAbsenceLieuTravailGrics";
7
+ import type { HistoriquesAbsenceBanqueGrics } from "./historiquesAbsenceBanqueGrics";
8
+ import type { HistoriquesAbsenceSousBanqueGrics } from "./historiquesAbsenceSousBanqueGrics";
9
+
10
+ export interface HistoriquesAbsenceGrics {
11
+ id: number;
12
+ idMotifAbsence: string;
13
+ date: string;
14
+ heureFin: string;
15
+ heureDebut: string;
16
+ duree: number;
17
+ idEmploi: string;
18
+ lieuTravail: HistoriquesAbsenceLieuTravailGrics;
19
+ banque: HistoriquesAbsenceBanqueGrics;
20
+ sousBanque: HistoriquesAbsenceSousBanqueGrics;
21
+ }
@@ -0,0 +1,9 @@
1
+ /**
2
+ * This is a TypeGen auto-generated file.
3
+ * Any changes made to this file can be lost when this file is regenerated.
4
+ */
5
+
6
+ export class HistoriquesAbsenceLieuTravailGrics {
7
+ id: string;
8
+ description: string;
9
+ }
@@ -0,0 +1,9 @@
1
+ /**
2
+ * This is a TypeGen auto-generated file.
3
+ * Any changes made to this file can be lost when this file is regenerated.
4
+ */
5
+
6
+ export class HistoriquesAbsenceSousBanqueGrics {
7
+ id: string;
8
+ description: string;
9
+ }
@@ -0,0 +1,9 @@
1
+ /**
2
+ * This is a TypeGen auto-generated file.
3
+ * Any changes made to this file can be lost when this file is regenerated.
4
+ */
5
+
6
+ export interface MotifsAbsenceBanque {
7
+ id: string;
8
+ description: string;
9
+ }
@@ -0,0 +1,17 @@
1
+ /**
2
+ * This is a TypeGen auto-generated file.
3
+ * Any changes made to this file can be lost when this file is regenerated.
4
+ */
5
+
6
+ import type { MotifsAbsenceRegimeAbsence } from "./motifsAbsenceRegimeAbsence";
7
+ import type { MotifsAbsenceSousMotifs } from "./motifsAbsenceSousMotifs";
8
+ import type { MotifsAbsenceTraitementBanques } from "./motifsAbsenceTraitementBanques";
9
+
10
+ export interface MotifsAbsenceGrics {
11
+ id: string;
12
+ description: string;
13
+ actif: boolean;
14
+ regimeAbsence: MotifsAbsenceRegimeAbsence;
15
+ sousMotifs: MotifsAbsenceSousMotifs[];
16
+ traitementBanques: MotifsAbsenceTraitementBanques[];
17
+ }
@@ -0,0 +1,9 @@
1
+ /**
2
+ * This is a TypeGen auto-generated file.
3
+ * Any changes made to this file can be lost when this file is regenerated.
4
+ */
5
+
6
+ export interface MotifsAbsenceRegimeAbsence {
7
+ id: string;
8
+ description: string;
9
+ }
@@ -0,0 +1,9 @@
1
+ /**
2
+ * This is a TypeGen auto-generated file.
3
+ * Any changes made to this file can be lost when this file is regenerated.
4
+ */
5
+
6
+ export interface MotifsAbsenceSousMotifs {
7
+ id: string;
8
+ description: string;
9
+ }
@@ -0,0 +1,11 @@
1
+ /**
2
+ * This is a TypeGen auto-generated file.
3
+ * Any changes made to this file can be lost when this file is regenerated.
4
+ */
5
+
6
+ import type { MotifsAbsenceBanque } from "./motifsAbsenceBanque";
7
+
8
+ export interface MotifsAbsenceTraitementBanques {
9
+ ordreTraitement: string;
10
+ banque: MotifsAbsenceBanque;
11
+ }
@@ -0,0 +1,26 @@
1
+ /**
2
+ * This is a TypeGen auto-generated file.
3
+ * Any changes made to this file can be lost when this file is regenerated.
4
+ */
5
+
6
+ import type { SyndicatGroupeCe } from "./syndicatGroupeCe";
7
+ import type { SyndicatResponsable } from "./syndicatResponsable";
8
+ import type { SyndicatUnite } from "./syndicatUnite";
9
+
10
+ export interface Syndicat {
11
+ id: number;
12
+ cSSId: number;
13
+ nom: string;
14
+ description: string;
15
+ estActif: boolean;
16
+ courriel: string;
17
+ adresse: string;
18
+ local: string;
19
+ telephone: string;
20
+ lienSiteWeb: string;
21
+ lienConventionCollective: string;
22
+ lienPlanClassification: string;
23
+ syndicatGroupeCEs: SyndicatGroupeCe[];
24
+ responsables: SyndicatResponsable[];
25
+ unites: SyndicatUnite[];
26
+ }
@@ -0,0 +1,10 @@
1
+ /**
2
+ * This is a TypeGen auto-generated file.
3
+ * Any changes made to this file can be lost when this file is regenerated.
4
+ */
5
+
6
+ export interface SyndicatGroupeCe {
7
+ id: number;
8
+ syndicatId: number;
9
+ groupeCEId: number;
10
+ }
@@ -0,0 +1,15 @@
1
+ /**
2
+ * This is a TypeGen auto-generated file.
3
+ * Any changes made to this file can be lost when this file is regenerated.
4
+ */
5
+
6
+ export interface SyndicatResponsable {
7
+ id: number;
8
+ nom: string;
9
+ prenom: string;
10
+ courriel: string;
11
+ responsablePrincipal: boolean;
12
+ syndicatId: number;
13
+ utilisateurId: number;
14
+ poste: string;
15
+ }
@@ -0,0 +1,10 @@
1
+ /**
2
+ * This is a TypeGen auto-generated file.
3
+ * Any changes made to this file can be lost when this file is regenerated.
4
+ */
5
+
6
+ export class SyndicatUnite {
7
+ id: number;
8
+ syndicatId: number;
9
+ uniteId: number;
10
+ }