codevdesign 1.0.31 → 1.0.33

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 (105) hide show
  1. package/assets/csqc.css +259 -0
  2. package/composants/csqcAide.vue +55 -0
  3. package/composants/csqcAlerteErreur.vue +87 -0
  4. package/composants/csqcChaise/chaiseConteneur.vue +367 -0
  5. package/composants/csqcChaise/chaiseItem.vue +54 -0
  6. package/composants/csqcCodeBudgetaireGenerique.vue +336 -0
  7. package/composants/csqcConfirmation.vue +75 -0
  8. package/composants/csqcDate.vue +57 -0
  9. package/composants/csqcDialogue.vue +118 -0
  10. package/composants/csqcEditeurTexteRiche.vue +380 -0
  11. package/composants/csqcEntete.vue +163 -0
  12. package/composants/csqcImportCSV.vue +125 -0
  13. package/composants/csqcModaleSaisie.vue +95 -0
  14. package/composants/csqcOptionSwitch.vue +120 -0
  15. package/composants/csqcRecherche.vue +213 -0
  16. package/composants/csqcRechercheUtilisateur.vue +197 -0
  17. package/composants/csqcSnackbar.vue +88 -0
  18. package/composants/csqcTable/csqcTable.vue +383 -0
  19. package/composants/csqcTable/csqcTableExportExcel.vue +58 -0
  20. package/composants/csqcTable/csqcTableModaleChoixColonnes.vue +586 -0
  21. package/composants/csqcTexteBilingue.vue +175 -0
  22. package/composants/csqcTiroir.vue +156 -0
  23. package/composants/gabarit/csqcMenu.vue +281 -0
  24. package/composants/gabarit/pivEntete.vue +205 -0
  25. package/composants/gabarit/pivPiedPage.vue +70 -0
  26. package/composants/gabarit/vueDefault.vue +5 -0
  27. package/composants/validateurs.ts +183 -0
  28. package/enums/choixLangue.ts +10 -0
  29. package/index.ts +74 -0
  30. package/locales/en.json +100 -0
  31. package/locales/fr.json +101 -0
  32. package/modeles/apiReponse.ts +12 -0
  33. package/modeles/assurancesAssuranceGeneraleGrics.ts +10 -0
  34. package/modeles/assurancesAssurancePersonnelleGrics.ts +13 -0
  35. package/modeles/assurancesContratGrics.ts +14 -0
  36. package/modeles/assurancesDetailsPrimeReguliereGrics.ts +12 -0
  37. package/modeles/assurancesDonneesAssureurGrics.ts +13 -0
  38. package/modeles/assurancesEmployeGrics.ts +11 -0
  39. package/modeles/assurancesGrics.ts +14 -0
  40. package/modeles/assurancesRegimeAssuranceGrics.ts +9 -0
  41. package/modeles/assurancesRegimeBaseEmployeurGrics.ts +9 -0
  42. package/modeles/assurancesRegimeBaseGrics.ts +9 -0
  43. package/modeles/composants/csqcMenuModele.ts +18 -0
  44. package/modeles/composants/datatableColonne.ts +31 -0
  45. package/modeles/composants/snackbar.ts +18 -0
  46. package/modeles/data.ts +24 -0
  47. package/modeles/droitIntervention.ts +14 -0
  48. package/modeles/employeAdresseGrics.ts +13 -0
  49. package/modeles/employeAdressesPersonnellesGrics.ts +12 -0
  50. package/modeles/employeAffectationCorpsEmploiGrics.ts +9 -0
  51. package/modeles/employeBanquesCongeBanqueGrics.ts +9 -0
  52. package/modeles/employeBanquesCongeGrics.ts +14 -0
  53. package/modeles/employeBanquesCongeRegimeAbsenceGrics.ts +9 -0
  54. package/modeles/employeCourrielsPersonnels.ts +9 -0
  55. package/modeles/employeCourrielsProfessionnels.ts +9 -0
  56. package/modeles/employeEmploisCategorieGrics.ts +9 -0
  57. package/modeles/employeEmploisClasseGrics.ts +9 -0
  58. package/modeles/employeEmploisCorpsEmploiGrics.ts +9 -0
  59. package/modeles/employeEmploisEtatEmploiGrics.ts +9 -0
  60. package/modeles/employeEmploisGrics.ts +37 -0
  61. package/modeles/employeEmploisGroupePaieGrics.ts +9 -0
  62. package/modeles/employeEmploisLieuTravailPrincipalGrics.ts +10 -0
  63. package/modeles/employeEmploisLieuxTravailSecondairesGrics.ts +10 -0
  64. package/modeles/employeEmploisRegimeAbsenceGrics.ts +9 -0
  65. package/modeles/employeEmploisSecteurGrics.ts +9 -0
  66. package/modeles/employeEmploisStatutEngagementGrics.ts +9 -0
  67. package/modeles/employeExperienceEmploiGrics.ts +9 -0
  68. package/modeles/employeExperienceEmployeGrics.ts +12 -0
  69. package/modeles/employeExperienceExperiencesGrics.ts +11 -0
  70. package/modeles/employeExperienceExperiencesTotalesGrics.ts +15 -0
  71. package/modeles/employeExperienceGrics.ts +17 -0
  72. package/modeles/employeGrics.ts +31 -0
  73. package/modeles/employeMinsLsCodev.ts +10 -0
  74. package/modeles/employeTelephoneGrics.ts +12 -0
  75. package/modeles/employeTelephonesPersonnelsGrics.ts +11 -0
  76. package/modeles/employeTelephonesProfessionnelsGrics.ts +11 -0
  77. package/modeles/groupeCE.ts +14 -0
  78. package/modeles/groupeCEIntervalle.ts +13 -0
  79. package/modeles/historiquesAbsenceBanqueGrics.ts +9 -0
  80. package/modeles/historiquesAbsenceGrics.ts +21 -0
  81. package/modeles/historiquesAbsenceLieuTravailGrics.ts +9 -0
  82. package/modeles/historiquesAbsenceSousBanqueGrics.ts +9 -0
  83. package/modeles/intervention.ts +35 -0
  84. package/modeles/motifsAbsenceBanque.ts +9 -0
  85. package/modeles/motifsAbsenceGrics.ts +17 -0
  86. package/modeles/motifsAbsenceRegimeAbsence.ts +9 -0
  87. package/modeles/motifsAbsenceSousMotifs.ts +9 -0
  88. package/modeles/motifsAbsenceTraitementBanques.ts +11 -0
  89. package/modeles/notificationGabaritDefaut.ts +10 -0
  90. package/modeles/response.ts +12 -0
  91. package/modeles/role.ts +31 -0
  92. package/modeles/roleMin.ts +12 -0
  93. package/modeles/syndicat.ts +26 -0
  94. package/modeles/syndicatGroupeCe.ts +10 -0
  95. package/modeles/syndicatResponsable.ts +15 -0
  96. package/modeles/syndicatUnite.ts +10 -0
  97. package/modeles/typeEnseignement.ts +14 -0
  98. package/modeles/typeTelephone.ts +12 -0
  99. package/modeles/unite.ts +23 -0
  100. package/modeles/uniteTypeEnseignement.ts +12 -0
  101. package/modeles/utilisateur.ts +15 -0
  102. package/outils/appAxios.ts +116 -0
  103. package/outils/csqcOutils.ts +366 -0
  104. package/outils/rafraichisseurToken.ts +187 -0
  105. package/package.json +11 -15
@@ -0,0 +1,101 @@
1
+ {
2
+ "csqc": {
3
+ "bouton": {
4
+ "activer": "Activer",
5
+ "ajouter": "Ajouter",
6
+ "annuler": "Annuler",
7
+ "anonymiser": "Anonymiser",
8
+ "completer": "Compléter",
9
+ "continuer": "Continuer",
10
+ "desactiver": "Désactiver",
11
+ "envoyer": "Envoyer",
12
+ "exporter": "Exporter",
13
+ "fermer": "Fermer",
14
+ "generer": "Générer",
15
+ "importer": "Importer",
16
+ "modifier": "Modifier",
17
+ "non": "Non",
18
+ "ok": "Ok",
19
+ "oui": "Oui",
20
+ "ouvrir": "Ouvrir",
21
+ "recharger": "Recharger",
22
+ "reinitialiser": "Réinitialiser",
23
+ "restaurer": "Restaurer",
24
+ "sauvegarder": "Sauvegarder",
25
+ "supprimer": "Supprimer",
26
+ "televerser": "Téléverser"
27
+ },
28
+ "csqcChaise": {
29
+ "erreur": "Veuillez faire une sélection pour toutes les unités.",
30
+ "info": "Cette réclamation devra être vérifiée par la ou les unités suivantes. Pour celles ayant plus d'une possibilité, veuillez sélectionner le choix qui vous convient.",
31
+ "titre": "Préférence de suivi"
32
+ },
33
+ "csqcEmploisEmploye": {
34
+ "dateDebut": "Date de début",
35
+ "dateFin": "Date de fin",
36
+ "etat": "État",
37
+ "etatActif": "Actif",
38
+ "lieuPrincipal": "Lieu principal",
39
+ "lieuSecondaire": "Lieu secondaire|Lieux secondaires",
40
+ "principal": {
41
+ "libelle": "Principal",
42
+ "non": "Non",
43
+ "oui": "Oui"
44
+ },
45
+ "statut": "Statut",
46
+ "titre": "Emplois de l'employé"
47
+ },
48
+ "csqcImportCSV": {
49
+ "erreur": {
50
+ "erreur": "Erreur d'importation.",
51
+ "lectureFichier": "Erreur lors de la lecture du fichier CSV."
52
+ }
53
+ },
54
+ "csqcMenu": {
55
+ "deconnexion": "Déconnexion"
56
+ },
57
+ "csqcRechercheUtilisateur": {
58
+ "ajouterUtilisateurInfo": "Vous pouvez entrer ici l’ID Office 365 ou le numéro d’employé, puis cliquer sur la loupe. Si cette information existe dans le système de paie, l’utilisateur sera ajouté. Veuillez noter que l’utilisateur doit avoir une adresse courriel valide du portail dans le système de paie.",
59
+ "aucunEmploi": "Aucun emploi",
60
+ "aucunResultat": "Aucun résultat trouvé",
61
+ "corpsEmploi": "Corps d'emploi",
62
+ "erreur": "Une erreur est survenue lors de la recherche de l'utilisateur.",
63
+ "identifiantOuMatricule": "identifiant Office 365 ou le matricule employé",
64
+ "placeholderRechercheUtilisateur": "Rechercher un utilisateur",
65
+ "revenirRecherche": "Retour à la recherche",
66
+ "utilisateurIntrouvable": "Employé introuvable",
67
+ "utilisateurs": "Employé"
68
+ },
69
+ "label": {
70
+ "actif": "Actif",
71
+ "fermer": "Fermer",
72
+ "nom": "Nom",
73
+ "recherche": "Recherche",
74
+ "rechercheAvanceeDefaut": "Recherche avancée",
75
+ "rechercher": "Rechercher"
76
+ },
77
+ "message": {
78
+ "chaiseSelection": "Aucune sélection pour cette unité",
79
+ "chaiseSelectionToutes": "Veuillez faire une sélection pour toutes les unités.",
80
+ "supprimerMessage": "Voulez-vous vraiment supprimer {nom}?",
81
+ "supprimerTitre": "Confirmation de suppression!",
82
+ "token": "Votre jeton de connexion est périmé ou votre connexion est échue"
83
+ },
84
+ "pivEntete": {
85
+ "langue": "English"
86
+ },
87
+ "pivFooter": {
88
+ "logoAlt": ""
89
+ },
90
+ "placeholder": {
91
+ "date": "Choisir une date",
92
+ "selectionner": "Sélectionner"
93
+ },
94
+ "validateurs": {
95
+ "estMaximumLongueur": "Aucun | Ce champ ne doit pas dépasser {nbCaracteres} caractère | Ce champ ne doit pas dépasser {nbCaracteres} caractères.",
96
+ "estMinimumLongueur": "Aucun | Ce champ est trop court, il doit contenir au moins {nbCaracteres} caractère | Ce champ est trop court, il doit contenir au moins {nbCaracteres} caractères",
97
+ "estRequis": "Ce champ est requis",
98
+ "estUnique": "La valeur '{valeurExistante}' existe déjà"
99
+ }
100
+ }
101
+ }
@@ -0,0 +1,12 @@
1
+ import response from './response'
2
+ class APIReponse {
3
+ public statusCode: number
4
+ public location?: string
5
+ public response: response | null
6
+ constructor(statusCode: number = 0, response: response | null = null, location?: string) {
7
+ this.statusCode = statusCode
8
+ this.location = location
9
+ this.response = response
10
+ }
11
+ }
12
+ export default APIReponse
@@ -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 AssurancesAssuranceGeneraleGrics {
7
+ resautAuto: number;
8
+ resautBien: number;
9
+ total: number;
10
+ }
@@ -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 AssurancesAssurancePersonnelleGrics {
7
+ maladieDeBase: number;
8
+ maladieComp: number;
9
+ vieAdh: number;
10
+ salLongueDuree: number;
11
+ taxe: number;
12
+ contributionGouvernementale: number;
13
+ }
@@ -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 { AssurancesRegimeAssuranceGrics } from "./assurancesRegimeAssuranceGrics";
7
+ import type { AssurancesRegimeBaseEmployeurGrics } from "./assurancesRegimeBaseEmployeurGrics";
8
+
9
+ export interface AssurancesContratGrics {
10
+ regimeAssurance: AssurancesRegimeAssuranceGrics;
11
+ regimeBaseEmployeur: AssurancesRegimeBaseEmployeurGrics;
12
+ dateAdmissibilite: string;
13
+ inscription: boolean;
14
+ }
@@ -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 { AssurancesAssurancePersonnelleGrics } from "./assurancesAssurancePersonnelleGrics";
7
+ import type { AssurancesAssuranceGeneraleGrics } from "./assurancesAssuranceGeneraleGrics";
8
+
9
+ export interface AssurancesDetailsPrimeReguliereGrics {
10
+ assurancePersonnelle: AssurancesAssurancePersonnelleGrics;
11
+ assuranceGenerale: AssurancesAssuranceGeneraleGrics;
12
+ }
@@ -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
+ import type { AssurancesDetailsPrimeReguliereGrics } from "./assurancesDetailsPrimeReguliereGrics";
7
+ import type { AssurancesRegimeBaseGrics } from "./assurancesRegimeBaseGrics";
8
+
9
+ export interface AssurancesDonneesAssureurGrics {
10
+ detailsPrimeReguliere: AssurancesDetailsPrimeReguliereGrics;
11
+ regimeBase: AssurancesRegimeBaseGrics;
12
+ exonere: boolean;
13
+ }
@@ -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 interface AssurancesEmployeGrics {
7
+ id: string;
8
+ nom: string;
9
+ prenom: string;
10
+ nomLegal: string;
11
+ }
@@ -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 { AssurancesEmployeGrics } from "./assurancesEmployeGrics";
7
+ import type { AssurancesContratGrics } from "./assurancesContratGrics";
8
+ import type { AssurancesDonneesAssureurGrics } from "./assurancesDonneesAssureurGrics";
9
+
10
+ export interface AssurancesGrics {
11
+ employe: AssurancesEmployeGrics;
12
+ contrat: AssurancesContratGrics;
13
+ donneesAssureur: AssurancesDonneesAssureurGrics;
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 AssurancesRegimeAssuranceGrics {
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 AssurancesRegimeBaseEmployeurGrics {
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 AssurancesRegimeBaseGrics {
7
+ id: string;
8
+ description: string;
9
+ }
@@ -0,0 +1,18 @@
1
+ export interface MenuItem {
2
+ nom: string
3
+ path: string
4
+ droit: string
5
+ }
6
+
7
+ export interface SousListe {
8
+ droit: string
9
+ id: number
10
+ nom: string
11
+ }
12
+
13
+ export interface SousListeItems {
14
+ parentId: number
15
+ nom: string
16
+ path: string
17
+ droit: string
18
+ }
@@ -0,0 +1,31 @@
1
+ import type { DataTableCompareFunction, DataTableHeader, FilterFunction } from 'vuetify'
2
+ import { HeaderCellProps } from 'vuetify/lib/components/VDataTable/types.mjs';
3
+ import { SelectItemKey } from 'vuetify/lib/util/helpers.mjs';
4
+
5
+ class datatableColonne<T = any> implements DataTableHeader<T> {
6
+ key?: 'data-table-group' | 'data-table-select' | 'data-table-expand' | (string & {});
7
+ value?: SelectItemKey<T>;
8
+ title?: string;
9
+ fixed?: boolean | 'start' | 'end';
10
+ align?: 'start' | 'end' | 'center';
11
+ width?: number | string;
12
+ minWidth?: number | string;
13
+ maxWidth?: number | string;
14
+ nowrap?: boolean;
15
+ intent?: number;
16
+ headerProps?: Record<string, any>;
17
+ cellProps?: HeaderCellProps;
18
+ sortable?: boolean;
19
+ sort?: DataTableCompareFunction;
20
+ sortRaw?: DataTableCompareFunction;
21
+ filter?: FilterFunction;
22
+ children?: DataTableHeader<T>[];
23
+
24
+ constructor(title: string, key: string) {
25
+ this.title = title
26
+ this.key = key
27
+ this.align = key === 'action' ? 'end' : key === 'estActif' ? 'center' : 'start'
28
+ this.sortable = key !== 'action'
29
+ }
30
+ }
31
+ export default datatableColonne
@@ -0,0 +1,18 @@
1
+ class CSQCSnackbar {
2
+ temps?: number
3
+ couleur?: string
4
+ message: string
5
+ style?: string
6
+ titre?: string
7
+
8
+ // Constructeur de la classe
9
+ constructor(message: string, temps?: number, couleur?: string, style?: string, titre?: string) {
10
+ this.message = message
11
+ this.temps = temps
12
+ this.couleur = couleur
13
+ this.style = style
14
+ this.titre = titre
15
+ }
16
+ }
17
+
18
+ export default CSQCSnackbar
@@ -0,0 +1,24 @@
1
+ class data {
2
+ version: string
3
+ date: Date
4
+ horodatage: number
5
+ code: number
6
+ message: string
7
+ resultat: object | string | null
8
+
9
+ constructor(
10
+ code: number = 0,
11
+ message: string = '',
12
+ resultat: object | string | null = null,
13
+ version: string = '1.0',
14
+ ) {
15
+ this.version = version
16
+ this.date = new Date()
17
+ this.horodatage = 0
18
+ this.code = code
19
+ this.message = message
20
+ this.resultat = resultat
21
+ }
22
+ }
23
+
24
+ export default data
@@ -0,0 +1,14 @@
1
+ class droitIntervention {
2
+ uniteId: number
3
+ chaiseId: number
4
+ niveauChaise: number
5
+ typeIntervenant: number
6
+ constructor(uniteId: number = 0, chaiseId: number = 0, niveauChaise: number = 0, typeIntervenant: number = 0) {
7
+ this.uniteId = uniteId
8
+ this.chaiseId = chaiseId
9
+ this.niveauChaise = niveauChaise
10
+ this.typeIntervenant = typeIntervenant
11
+ }
12
+ }
13
+
14
+ export default droitIntervention
@@ -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
+ }
@@ -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 EmployeEmploisCategorieGrics {
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 EmployeEmploisClasseGrics {
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 EmployeEmploisCorpsEmploiGrics {
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 EmployeEmploisEtatEmploiGrics {
7
+ id: string;
8
+ description: string;
9
+ }
@@ -0,0 +1,37 @@
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 { 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
+
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;
37
+ }
@@ -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 EmployeEmploisGroupePaieGrics {
7
+ id: string;
8
+ description: string;
9
+ }
@@ -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 EmployeEmploisLieuTravailPrincipalGrics {
7
+ id: string;
8
+ description: string;
9
+ pourcentageEtp: number;
10
+ }
@@ -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 EmployeEmploisLieuxTravailSecondairesGrics {
7
+ id: string;
8
+ description: string;
9
+ pourcentageEtp: number;
10
+ }
@@ -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 EmployeEmploisRegimeAbsenceGrics {
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 EmployeEmploisSecteurGrics {
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 EmployeEmploisStatutEngagementGrics {
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 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
+ }