@silexpert/core 0.4.281 → 0.4.283

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 (68) hide show
  1. package/es/api/resources/CalendarEvent.d.ts +2 -1
  2. package/es/api/resources/CalendarEvent.d.ts.map +1 -1
  3. package/es/api/resources/CalendarEvent.js +2 -2
  4. package/es/api/resources/CalendarEvent.js.map +1 -1
  5. package/es/api/resources/TerminationList.d.ts +7 -0
  6. package/es/api/resources/TerminationList.d.ts.map +1 -0
  7. package/es/api/resources/TerminationList.js +10 -0
  8. package/es/api/resources/TerminationList.js.map +1 -0
  9. package/es/api/resources.d.ts +3 -1
  10. package/es/api/resources.d.ts.map +1 -1
  11. package/es/api/resources.js +3 -1
  12. package/es/api/resources.js.map +1 -1
  13. package/es/types/Enum/TimeCounterType.d.ts +40 -12
  14. package/es/types/Enum/TimeCounterType.d.ts.map +1 -1
  15. package/es/types/Enum/TimeCounterType.js +40 -12
  16. package/es/types/Enum/TimeCounterType.js.map +1 -1
  17. package/es/types/Interface/api/calendarEvent/readAllCalendarEvent.d.ts +1 -0
  18. package/es/types/Interface/api/calendarEvent/readAllCalendarEvent.d.ts.map +1 -1
  19. package/es/types/Interface/api/calendarEvent/readAllCalendarEvent.js.map +1 -1
  20. package/es/types/Interface/api/paymentExpectation/QueryPaymentExpectation.d.ts +0 -3
  21. package/es/types/Interface/api/paymentExpectation/QueryPaymentExpectation.d.ts.map +1 -1
  22. package/es/types/Interface/api/paymentExpectation/QueryPaymentExpectation.js +14 -0
  23. package/es/types/Interface/api/paymentExpectation/QueryPaymentExpectation.js.map +1 -1
  24. package/es/types/Interface/api/prestation/CreatePrestation.d.ts +1 -1
  25. package/es/types/Interface/api/prestation/CreatePrestation.d.ts.map +1 -1
  26. package/es/types/Interface/api/prestation/CreatePrestation.js +4 -5
  27. package/es/types/Interface/api/prestation/CreatePrestation.js.map +1 -1
  28. package/es/types/Interface/api/terminationList/DestroyTerminationList.d.ts +17 -0
  29. package/es/types/Interface/api/terminationList/DestroyTerminationList.d.ts.map +1 -0
  30. package/es/types/Interface/api/terminationList/DestroyTerminationList.js +96 -0
  31. package/es/types/Interface/api/terminationList/DestroyTerminationList.js.map +1 -0
  32. package/es/types/Interface/api/terminationList/QueryTerminationList.d.ts +17 -0
  33. package/es/types/Interface/api/terminationList/QueryTerminationList.d.ts.map +1 -0
  34. package/es/types/Interface/api/terminationList/QueryTerminationList.js +98 -0
  35. package/es/types/Interface/api/terminationList/QueryTerminationList.js.map +1 -0
  36. package/es/types/index.d.ts +2 -0
  37. package/es/types/index.d.ts.map +1 -1
  38. package/es/types/index.js +2 -0
  39. package/es/types/index.js.map +1 -1
  40. package/js/api/resources/CalendarEvent.js +5 -3
  41. package/js/api/resources/CalendarEvent.js.map +1 -1
  42. package/js/api/resources/TerminationList.js +26 -0
  43. package/js/api/resources/TerminationList.js.map +1 -0
  44. package/js/api/resources.js +6 -3
  45. package/js/api/resources.js.map +1 -1
  46. package/js/types/Enum/TimeCounterType.js +68 -40
  47. package/js/types/Enum/TimeCounterType.js.map +1 -1
  48. package/js/types/Interface/api/paymentExpectation/QueryPaymentExpectation.js +17 -0
  49. package/js/types/Interface/api/paymentExpectation/QueryPaymentExpectation.js.map +1 -1
  50. package/js/types/Interface/api/prestation/CreatePrestation.js +1 -1
  51. package/js/types/Interface/api/prestation/CreatePrestation.js.map +1 -1
  52. package/js/types/Interface/api/terminationList/DestroyTerminationList.js +55 -0
  53. package/js/types/Interface/api/terminationList/DestroyTerminationList.js.map +1 -0
  54. package/js/types/Interface/api/terminationList/QueryTerminationList.js +55 -0
  55. package/js/types/Interface/api/terminationList/QueryTerminationList.js.map +1 -0
  56. package/js/types/index.js +24 -0
  57. package/js/types/index.js.map +1 -1
  58. package/package.json +1 -1
  59. package/ts/api/resources/CalendarEvent.ts +3 -2
  60. package/ts/api/resources/TerminationList.ts +12 -0
  61. package/ts/api/resources.ts +3 -1
  62. package/ts/types/Enum/TimeCounterType.ts +40 -12
  63. package/ts/types/Interface/api/calendarEvent/readAllCalendarEvent.ts +1 -0
  64. package/ts/types/Interface/api/paymentExpectation/QueryPaymentExpectation.ts +3 -3
  65. package/ts/types/Interface/api/prestation/CreatePrestation.ts +3 -4
  66. package/ts/types/Interface/api/terminationList/DestroyTerminationList.ts +74 -0
  67. package/ts/types/Interface/api/terminationList/QueryTerminationList.ts +76 -0
  68. package/ts/types/index.ts +2 -0
@@ -12,169 +12,197 @@ const TimeCounterType = exports.TimeCounterType = {
12
12
  id: 1,
13
13
  label: 'OnBoarding',
14
14
  aberrantTime: 60,
15
- limitedRoles: [_Role.Role.FRONT_OFFICE]
15
+ limitedRoles: [_Role.Role.FRONT_OFFICE],
16
+ color: 'fire'
16
17
  },
17
18
  VAT: {
18
19
  id: 2,
19
20
  label: 'TVA',
20
21
  aberrantTime: 60,
21
- limitedRoles: [_Role.Role.MANAGER, _Role.Role.EXPERT_ACCOUNTANT, _Role.Role.FRONT_OFFICE]
22
+ limitedRoles: [_Role.Role.MANAGER, _Role.Role.EXPERT_ACCOUNTANT, _Role.Role.FRONT_OFFICE],
23
+ color: 'iris'
22
24
  },
23
25
  REVISION: {
24
26
  id: 3,
25
27
  label: 'Révision',
26
28
  aberrantTime: 120,
27
- limitedRoles: [_Role.Role.MANAGER, _Role.Role.EXPERT_ACCOUNTANT, _Role.Role.FRONT_OFFICE]
29
+ limitedRoles: [_Role.Role.MANAGER, _Role.Role.EXPERT_ACCOUNTANT, _Role.Role.FRONT_OFFICE],
30
+ color: 'bubblegum-light'
28
31
  },
29
32
  FOLDER_REVIEW: {
30
33
  id: 4,
31
34
  label: 'Revue dossier',
32
35
  aberrantTime: 60,
33
- limitedRoles: [_Role.Role.MANAGER, _Role.Role.EXPERT_ACCOUNTANT, _Role.Role.FRONT_OFFICE]
36
+ limitedRoles: [_Role.Role.MANAGER, _Role.Role.EXPERT_ACCOUNTANT, _Role.Role.FRONT_OFFICE],
37
+ color: 'cerulean'
34
38
  },
35
39
  REPORTING: {
36
40
  id: 5,
37
41
  label: 'Signalement',
38
42
  aberrantTime: 60,
39
- limitedRoles: [_Role.Role.CUSTOMER_SUCCESS]
43
+ limitedRoles: [_Role.Role.CUSTOMER_SUCCESS],
44
+ color: 'lipstick-dark'
40
45
  },
41
46
  SYNCHRONISATION: {
42
47
  id: 6,
43
48
  label: 'Synchronisation',
44
49
  aberrantTime: 30,
45
- limitedRoles: [_Role.Role.CUSTOMER_SUCCESS]
50
+ limitedRoles: [_Role.Role.CUSTOMER_SUCCESS],
51
+ color: 'orange-dark'
46
52
  },
47
53
  UNDER_SUPERVISION: {
48
54
  id: 7,
49
55
  label: 'En cours de supervision',
50
56
  aberrantTime: 45,
51
- limitedRoles: null
57
+ limitedRoles: null,
58
+ color: 'orange-dark'
52
59
  },
53
60
  CLIENT_CONTACT: {
54
61
  id: 8,
55
62
  label: 'Contact client (Appel/mail/chat)',
56
- aberrantTime: null,
57
- limitedRoles: null
63
+ aberrantTime: 20,
64
+ limitedRoles: null,
65
+ color: 'orange-light'
58
66
  },
59
67
  MEETING: {
60
68
  id: 9,
61
69
  label: 'Réunion',
62
- aberrantTime: null,
63
- limitedRoles: null
70
+ aberrantTime: 20,
71
+ limitedRoles: null,
72
+ color: 'fern-dark'
64
73
  },
65
74
  FORMATION: {
66
75
  id: 10,
67
76
  label: 'Formation',
68
- aberrantTime: null,
69
- limitedRoles: null
77
+ aberrantTime: 20,
78
+ limitedRoles: null,
79
+ color: 'fern'
70
80
  },
71
81
  FORECAST: {
72
82
  id: 11,
73
83
  label: 'Prévisionnel',
74
- aberrantTime: null,
75
- limitedRoles: [_Role.Role.FRONT_OFFICE]
84
+ aberrantTime: 20,
85
+ limitedRoles: [_Role.Role.FRONT_OFFICE],
86
+ color: 'cerulean-light'
76
87
  },
77
88
  CERTIFICATE: {
78
89
  id: 12,
79
90
  label: 'Attestation',
80
- aberrantTime: null,
81
- limitedRoles: [_Role.Role.CUSTOMER_SUCCESS]
91
+ aberrantTime: 20,
92
+ limitedRoles: [_Role.Role.CUSTOMER_SUCCESS],
93
+ color: 'lipstick-light'
82
94
  },
83
95
  COMPLEMENTARY_MISSION: {
84
96
  id: 13,
85
97
  label: 'Mission complémentaire',
86
- aberrantTime: null,
87
- limitedRoles: [_Role.Role.FRONT_OFFICE]
98
+ aberrantTime: 20,
99
+ limitedRoles: [_Role.Role.FRONT_OFFICE],
100
+ color: 'cerulean-light'
88
101
  },
89
102
  ORGANISATION: {
90
103
  id: 14,
91
104
  label: 'Organisation',
92
- aberrantTime: null,
93
- limitedRoles: null
105
+ aberrantTime: 20,
106
+ limitedRoles: null,
107
+ color: 'fern-light'
94
108
  },
95
109
  INTERNAL_ADVICE: {
96
110
  id: 15,
97
111
  label: 'Conseil interne',
98
- aberrantTime: null,
99
- limitedRoles: null
112
+ aberrantTime: 20,
113
+ limitedRoles: null,
114
+ color: 'fern-light'
100
115
  },
101
116
  LAB: {
102
117
  id: 16,
103
118
  label: 'LAB',
104
- aberrantTime: null,
105
- limitedRoles: [_Role.Role.EXPERT_ACCOUNTANT]
119
+ aberrantTime: 20,
120
+ limitedRoles: [_Role.Role.EXPERT_ACCOUNTANT],
121
+ color: 'fire'
106
122
  },
107
123
  SUPERVISION: {
108
124
  id: 17,
109
125
  label: 'Supervision',
110
- aberrantTime: null,
111
- limitedRoles: [_Role.Role.EXPERT_ACCOUNTANT, _Role.Role.MANAGER]
126
+ aberrantTime: 20,
127
+ limitedRoles: [_Role.Role.EXPERT_ACCOUNTANT, _Role.Role.MANAGER],
128
+ color: 'bubblegum-dark'
112
129
  },
113
130
  MAIL_PROCESSING: {
114
131
  id: 18,
115
132
  label: 'Traitement des courriers',
116
- aberrantTime: null,
117
- limitedRoles: [_Role.Role.CUSTOMER_SUCCESS]
133
+ aberrantTime: 20,
134
+ limitedRoles: [_Role.Role.CUSTOMER_SUCCESS],
135
+ color: 'lipstick-light'
118
136
  },
119
137
  SUPPORT_PROCESSING: {
120
138
  id: 19,
121
139
  label: 'Traitement support',
122
- aberrantTime: null,
123
- limitedRoles: [_Role.Role.CUSTOMER_SUCCESS]
140
+ aberrantTime: 20,
141
+ limitedRoles: [_Role.Role.CUSTOMER_SUCCESS],
142
+ color: 'error'
124
143
  },
125
144
  BILAN: {
126
145
  id: 20,
127
146
  label: 'Bilan',
128
147
  aberrantTime: 120,
129
- limitedRoles: [_Role.Role.FRONT_OFFICE, _Role.Role.EXPERT_ACCOUNTANT]
148
+ limitedRoles: [_Role.Role.FRONT_OFFICE, _Role.Role.EXPERT_ACCOUNTANT],
149
+ color: 'cerulean-dark'
130
150
  },
131
151
  PAYSLIP: {
132
152
  id: 21,
133
153
  label: 'Bulletin de paie/DSN',
134
154
  aberrantTime: 30,
135
- limitedRoles: [_Role.Role.SOCIAL]
155
+ limitedRoles: [_Role.Role.SOCIAL],
156
+ color: 'guacamole'
136
157
  },
137
158
  SOCIAL_PARAMETER: {
138
159
  id: 22,
139
160
  label: 'Paramétrage social',
140
161
  aberrantTime: 40,
141
- limitedRoles: [_Role.Role.SOCIAL]
162
+ limitedRoles: [_Role.Role.SOCIAL],
163
+ color: 'guacamole'
142
164
  },
143
165
  WORK_CONTRACT: {
144
166
  id: 23,
145
167
  label: 'Contrat de travail',
146
168
  aberrantTime: 60,
147
- limitedRoles: [_Role.Role.SOCIAL]
169
+ limitedRoles: [_Role.Role.SOCIAL],
170
+ color: 'guacamole'
148
171
  },
149
172
  DPAE: {
150
173
  id: 24,
151
174
  label: 'DPAE',
152
175
  aberrantTime: 25,
153
- limitedRoles: [_Role.Role.SOCIAL]
176
+ limitedRoles: [_Role.Role.SOCIAL],
177
+ color: 'guacamole'
154
178
  },
155
179
  FACTURATION: {
156
180
  id: 25,
157
181
  label: 'Facturation',
158
182
  aberrantTime: 180,
159
- limitedRoles: null
183
+ limitedRoles: null,
184
+ color: 'success'
160
185
  },
161
186
  LEGAL_DOCUMENT: {
162
187
  id: 26,
163
188
  label: 'Rédaction documents juridiques',
164
189
  aberrantTime: 30,
165
- limitedRoles: [_Role.Role.JURIDIC]
190
+ limitedRoles: [_Role.Role.JURIDIC],
191
+ color: 'caramel'
166
192
  },
167
193
  INFOGREFFE: {
168
194
  id: 27,
169
195
  label: 'Dépôt infogreffe ou autre',
170
196
  aberrantTime: 15,
171
- limitedRoles: [_Role.Role.JURIDIC]
197
+ limitedRoles: [_Role.Role.JURIDIC],
198
+ color: 'caramel'
172
199
  },
173
200
  APPOINTMENT: {
174
201
  id: 28,
175
202
  label: 'Rdv client',
176
203
  aberrantTime: 15,
177
- limitedRoles: null
204
+ limitedRoles: null,
205
+ color: 'orange-light'
178
206
  }
179
207
  };
180
208
  //# sourceMappingURL=TimeCounterType.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"TimeCounterType.js","mappings":"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","names":["TimeCounterType","ONBOARDING","id","label","aberrantTime","limitedRoles","Role","FRONT_OFFICE","VAT","MANAGER","EXPERT_ACCOUNTANT","REVISION","FOLDER_REVIEW","REPORTING","CUSTOMER_SUCCESS","SYNCHRONISATION","UNDER_SUPERVISION","CLIENT_CONTACT","MEETING","FORMATION","FORECAST","CERTIFICATE","COMPLEMENTARY_MISSION","ORGANISATION","INTERNAL_ADVICE","LAB","SUPERVISION","MAIL_PROCESSING","SUPPORT_PROCESSING","BILAN","PAYSLIP","SOCIAL","SOCIAL_PARAMETER","WORK_CONTRACT","DPAE","FACTURATION","LEGAL_DOCUMENT","JURIDIC","INFOGREFFE","APPOINTMENT"],"sourceRoot":"","sources":["../../../ts/types/Enum/TimeCounterType.ts"],"sourcesContent":["import { Role } from './Role';\n\nexport const TimeCounterType = {\n ONBOARDING: {\n id: 1,\n label: 'OnBoarding',\n aberrantTime: 60,\n limitedRoles: [Role.FRONT_OFFICE],\n },\n VAT: {\n id: 2,\n label: 'TVA',\n aberrantTime: 60,\n limitedRoles: [Role.MANAGER, Role.EXPERT_ACCOUNTANT, Role.FRONT_OFFICE],\n },\n REVISION: {\n id: 3,\n label: 'Révision',\n aberrantTime: 120,\n limitedRoles: [Role.MANAGER, Role.EXPERT_ACCOUNTANT, Role.FRONT_OFFICE],\n },\n FOLDER_REVIEW: {\n id: 4,\n label: 'Revue dossier',\n aberrantTime: 60,\n limitedRoles: [Role.MANAGER, Role.EXPERT_ACCOUNTANT, Role.FRONT_OFFICE],\n },\n REPORTING: {\n id: 5,\n label: 'Signalement',\n aberrantTime: 60,\n limitedRoles: [Role.CUSTOMER_SUCCESS],\n },\n SYNCHRONISATION: {\n id: 6,\n label: 'Synchronisation',\n aberrantTime: 30,\n limitedRoles: [Role.CUSTOMER_SUCCESS],\n },\n UNDER_SUPERVISION: {\n id: 7,\n label: 'En cours de supervision',\n aberrantTime: 45,\n limitedRoles: null,\n },\n CLIENT_CONTACT: {\n id: 8,\n label: 'Contact client (Appel/mail/chat)',\n aberrantTime: null,\n limitedRoles: null,\n },\n MEETING: {\n id: 9,\n label: 'Réunion',\n aberrantTime: null,\n limitedRoles: null,\n },\n FORMATION: {\n id: 10,\n label: 'Formation',\n aberrantTime: null,\n limitedRoles: null,\n },\n FORECAST: {\n id: 11,\n label: 'Prévisionnel',\n aberrantTime: null,\n limitedRoles: [Role.FRONT_OFFICE],\n },\n CERTIFICATE: {\n id: 12,\n label: 'Attestation',\n aberrantTime: null,\n limitedRoles: [Role.CUSTOMER_SUCCESS],\n },\n COMPLEMENTARY_MISSION: {\n id: 13,\n label: 'Mission complémentaire',\n aberrantTime: null,\n limitedRoles: [Role.FRONT_OFFICE],\n },\n ORGANISATION: {\n id: 14,\n label: 'Organisation',\n aberrantTime: null,\n limitedRoles: null,\n },\n INTERNAL_ADVICE: {\n id: 15,\n label: 'Conseil interne',\n aberrantTime: null,\n limitedRoles: null,\n },\n LAB: {\n id: 16,\n label: 'LAB',\n aberrantTime: null,\n limitedRoles: [Role.EXPERT_ACCOUNTANT],\n },\n SUPERVISION: {\n id: 17,\n label: 'Supervision',\n aberrantTime: null,\n limitedRoles: [Role.EXPERT_ACCOUNTANT, Role.MANAGER],\n },\n MAIL_PROCESSING: {\n id: 18,\n label: 'Traitement des courriers',\n aberrantTime: null,\n limitedRoles: [Role.CUSTOMER_SUCCESS],\n },\n SUPPORT_PROCESSING: {\n id: 19,\n label: 'Traitement support',\n aberrantTime: null,\n limitedRoles: [Role.CUSTOMER_SUCCESS],\n },\n BILAN: {\n id: 20,\n label: 'Bilan',\n aberrantTime: 120,\n limitedRoles: [Role.FRONT_OFFICE, Role.EXPERT_ACCOUNTANT],\n },\n PAYSLIP: {\n id: 21,\n label: 'Bulletin de paie/DSN',\n aberrantTime: 30,\n limitedRoles: [Role.SOCIAL],\n },\n SOCIAL_PARAMETER: {\n id: 22,\n label: 'Paramétrage social',\n aberrantTime: 40,\n limitedRoles: [Role.SOCIAL],\n },\n WORK_CONTRACT: {\n id: 23,\n label: 'Contrat de travail',\n aberrantTime: 60,\n limitedRoles: [Role.SOCIAL],\n },\n DPAE: {\n id: 24,\n label: 'DPAE',\n aberrantTime: 25,\n limitedRoles: [Role.SOCIAL],\n },\n FACTURATION: {\n id: 25,\n label: 'Facturation',\n aberrantTime: 180,\n limitedRoles: null,\n },\n LEGAL_DOCUMENT: {\n id: 26,\n label: 'Rédaction documents juridiques',\n aberrantTime: 30,\n limitedRoles: [Role.JURIDIC],\n },\n INFOGREFFE: {\n id: 27,\n label: 'Dépôt infogreffe ou autre',\n aberrantTime: 15,\n limitedRoles: [Role.JURIDIC],\n },\n APPOINTMENT: {\n id: 28,\n label: 'Rdv client',\n aberrantTime: 15,\n limitedRoles: null,\n },\n};"]}
1
+ {"version":3,"file":"TimeCounterType.js","mappings":"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","names":["TimeCounterType","ONBOARDING","id","label","aberrantTime","limitedRoles","Role","FRONT_OFFICE","color","VAT","MANAGER","EXPERT_ACCOUNTANT","REVISION","FOLDER_REVIEW","REPORTING","CUSTOMER_SUCCESS","SYNCHRONISATION","UNDER_SUPERVISION","CLIENT_CONTACT","MEETING","FORMATION","FORECAST","CERTIFICATE","COMPLEMENTARY_MISSION","ORGANISATION","INTERNAL_ADVICE","LAB","SUPERVISION","MAIL_PROCESSING","SUPPORT_PROCESSING","BILAN","PAYSLIP","SOCIAL","SOCIAL_PARAMETER","WORK_CONTRACT","DPAE","FACTURATION","LEGAL_DOCUMENT","JURIDIC","INFOGREFFE","APPOINTMENT"],"sourceRoot":"","sources":["../../../ts/types/Enum/TimeCounterType.ts"],"sourcesContent":["import { Role } from './Role';\n\nexport const TimeCounterType = {\n ONBOARDING: {\n id: 1,\n label: 'OnBoarding',\n aberrantTime: 60,\n limitedRoles: [Role.FRONT_OFFICE],\n color: 'fire',\n },\n VAT: {\n id: 2,\n label: 'TVA',\n aberrantTime: 60,\n limitedRoles: [Role.MANAGER, Role.EXPERT_ACCOUNTANT, Role.FRONT_OFFICE],\n color: 'iris',\n },\n REVISION: {\n id: 3,\n label: 'Révision',\n aberrantTime: 120,\n limitedRoles: [Role.MANAGER, Role.EXPERT_ACCOUNTANT, Role.FRONT_OFFICE],\n color: 'bubblegum-light',\n },\n FOLDER_REVIEW: {\n id: 4,\n label: 'Revue dossier',\n aberrantTime: 60,\n limitedRoles: [Role.MANAGER, Role.EXPERT_ACCOUNTANT, Role.FRONT_OFFICE],\n color: 'cerulean',\n },\n REPORTING: {\n id: 5,\n label: 'Signalement',\n aberrantTime: 60,\n limitedRoles: [Role.CUSTOMER_SUCCESS],\n color: 'lipstick-dark',\n },\n SYNCHRONISATION: {\n id: 6,\n label: 'Synchronisation',\n aberrantTime: 30,\n limitedRoles: [Role.CUSTOMER_SUCCESS],\n color: 'orange-dark',\n },\n UNDER_SUPERVISION: {\n id: 7,\n label: 'En cours de supervision',\n aberrantTime: 45,\n limitedRoles: null,\n color: 'orange-dark',\n },\n CLIENT_CONTACT: {\n id: 8,\n label: 'Contact client (Appel/mail/chat)',\n aberrantTime: 20,\n limitedRoles: null,\n color: 'orange-light',\n },\n MEETING: {\n id: 9,\n label: 'Réunion',\n aberrantTime: 20,\n limitedRoles: null,\n color: 'fern-dark',\n },\n FORMATION: {\n id: 10,\n label: 'Formation',\n aberrantTime: 20,\n limitedRoles: null,\n color: 'fern',\n },\n FORECAST: {\n id: 11,\n label: 'Prévisionnel',\n aberrantTime: 20,\n limitedRoles: [Role.FRONT_OFFICE],\n color: 'cerulean-light',\n },\n CERTIFICATE: {\n id: 12,\n label: 'Attestation',\n aberrantTime: 20,\n limitedRoles: [Role.CUSTOMER_SUCCESS],\n color: 'lipstick-light',\n },\n COMPLEMENTARY_MISSION: {\n id: 13,\n label: 'Mission complémentaire',\n aberrantTime: 20,\n limitedRoles: [Role.FRONT_OFFICE],\n color: 'cerulean-light',\n },\n ORGANISATION: {\n id: 14,\n label: 'Organisation',\n aberrantTime: 20,\n limitedRoles: null,\n color: 'fern-light',\n },\n INTERNAL_ADVICE: {\n id: 15,\n label: 'Conseil interne',\n aberrantTime: 20,\n limitedRoles: null,\n color: 'fern-light',\n },\n LAB: {\n id: 16,\n label: 'LAB',\n aberrantTime: 20,\n limitedRoles: [Role.EXPERT_ACCOUNTANT],\n color: 'fire',\n },\n SUPERVISION: {\n id: 17,\n label: 'Supervision',\n aberrantTime: 20,\n limitedRoles: [Role.EXPERT_ACCOUNTANT, Role.MANAGER],\n color: 'bubblegum-dark',\n },\n MAIL_PROCESSING: {\n id: 18,\n label: 'Traitement des courriers',\n aberrantTime: 20,\n limitedRoles: [Role.CUSTOMER_SUCCESS],\n color: 'lipstick-light',\n },\n SUPPORT_PROCESSING: {\n id: 19,\n label: 'Traitement support',\n aberrantTime: 20,\n limitedRoles: [Role.CUSTOMER_SUCCESS],\n color: 'error',\n },\n BILAN: {\n id: 20,\n label: 'Bilan',\n aberrantTime: 120,\n limitedRoles: [Role.FRONT_OFFICE, Role.EXPERT_ACCOUNTANT],\n color: 'cerulean-dark',\n },\n PAYSLIP: {\n id: 21,\n label: 'Bulletin de paie/DSN',\n aberrantTime: 30,\n limitedRoles: [Role.SOCIAL],\n color: 'guacamole',\n },\n SOCIAL_PARAMETER: {\n id: 22,\n label: 'Paramétrage social',\n aberrantTime: 40,\n limitedRoles: [Role.SOCIAL],\n color: 'guacamole',\n },\n WORK_CONTRACT: {\n id: 23,\n label: 'Contrat de travail',\n aberrantTime: 60,\n limitedRoles: [Role.SOCIAL],\n color: 'guacamole',\n },\n DPAE: {\n id: 24,\n label: 'DPAE',\n aberrantTime: 25,\n limitedRoles: [Role.SOCIAL],\n color: 'guacamole',\n },\n FACTURATION: {\n id: 25,\n label: 'Facturation',\n aberrantTime: 180,\n limitedRoles: null,\n color: 'success',\n },\n LEGAL_DOCUMENT: {\n id: 26,\n label: 'Rédaction documents juridiques',\n aberrantTime: 30,\n limitedRoles: [Role.JURIDIC],\n color: 'caramel',\n },\n INFOGREFFE: {\n id: 27,\n label: 'Dépôt infogreffe ou autre',\n aberrantTime: 15,\n limitedRoles: [Role.JURIDIC],\n color: 'caramel',\n },\n APPOINTMENT: {\n id: 28,\n label: 'Rdv client',\n aberrantTime: 15,\n limitedRoles: null,\n color: 'orange-light',\n },\n};"]}
@@ -3,8 +3,25 @@
3
3
  Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
+ exports.QueryGetPaymentExpectation = undefined;
7
+
8
+ var _utils = require("../../../../utils");
9
+
10
+ var __decorate = undefined && undefined.__decorate || function (decorators, target, key, desc) {
11
+ var c = arguments.length,
12
+ r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc,
13
+ d;
14
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
15
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
16
+ };
17
+
18
+ var __metadata = undefined && undefined.__metadata || function (k, v) {
19
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
20
+ };
6
21
 
7
22
  class QueryGetPaymentExpectation {}
8
23
 
9
24
  exports.QueryGetPaymentExpectation = QueryGetPaymentExpectation;
25
+
26
+ __decorate([(0, _utils.ApiProperty)(), __metadata("design:type", Number)], QueryGetPaymentExpectation.prototype, "idPrestation", void 0);
10
27
  //# sourceMappingURL=QueryPaymentExpectation.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"QueryPaymentExpectation.js","mappings":";;;;;;AAAM,MAAOA,0BAAP,CAAiC;;QAA1BA,0B,GAAAA,0B","names":["QueryGetPaymentExpectation"],"sourceRoot":"","sources":["../../../../../ts/types/Interface/api/paymentExpectation/QueryPaymentExpectation.ts"],"sourcesContent":["export class QueryGetPaymentExpectation {\n idPrestation: number;\n label: string;\n amount: number;\n idReason: number;\n}"]}
1
+ {"version":3,"file":"QueryPaymentExpectation.js","mappings":";;;;;;;AAAA;;;;;;;;;;;;;;AAEM,MAAOA,0BAAP,CAAiC;;QAA1BA,0B,GAAAA,0B;;AAEXC,YADC,yBACD","names":["QueryGetPaymentExpectation","__decorate"],"sourceRoot":"","sources":["../../../../../ts/types/Interface/api/paymentExpectation/QueryPaymentExpectation.ts"],"sourcesContent":["import { ApiProperty } from '../../../../utils';\n\nexport class QueryGetPaymentExpectation {\n @ApiProperty()\n idPrestation: number;\n}"]}
@@ -29,5 +29,5 @@ __decorate([(0, _.ApiProperty)(), (0, _classValidator.IsNumber)(), __metadata("d
29
29
 
30
30
  __decorate([(0, _.ApiProperty)(), (0, _classValidator.IsNumber)(), __metadata("design:type", Number)], CreatePrestation.prototype, "amountTtc", void 0);
31
31
 
32
- __decorate([(0, _.ApiProperty)(), (0, _classValidator.IsNumber)(), __metadata("design:type", Number)], CreatePrestation.prototype, "idOperationLegalNotice", void 0);
32
+ __decorate([(0, _.ApiPropertyOptional)(), __metadata("design:type", String)], CreatePrestation.prototype, "label", void 0);
33
33
  //# sourceMappingURL=CreatePrestation.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"CreatePrestation.js","mappings":";;;;;;;AAAA;;AACA;;;;;;;;;;;;;;AAEM,MAAOA,gBAAP,CAAuB;;QAAhBA,gB,GAAAA,gB;;AAGXC,YAFC,oBAED,EADC,+BACD;;AAIAA,YAFC,oBAED,EADC,+BACD;;AAIAA,YAFC,oBAED,EADC,+BACD","names":["CreatePrestation","__decorate"],"sourceRoot":"","sources":["../../../../../ts/types/Interface/api/prestation/CreatePrestation.ts"],"sourcesContent":["import { IsNumber } from 'class-validator';\nimport { ApiProperty } from '../../../..';\n\nexport class CreatePrestation {\n @ApiProperty()\n @IsNumber()\n orderStatus: number;\n\n @ApiProperty()\n @IsNumber()\n amountTtc: number;\n\n @ApiProperty()\n @IsNumber()\n idOperationLegalNotice: number;\n}\n"]}
1
+ {"version":3,"file":"CreatePrestation.js","mappings":";;;;;;;AAAA;;AACA;;;;;;;;;;;;;;AAEM,MAAOA,gBAAP,CAAuB;;QAAhBA,gB,GAAAA,gB;;AAGXC,YAFC,oBAED,EADC,+BACD;;AAIAA,YAFC,oBAED,EADC,+BACD;;AAGAA,YADC,4BACD","names":["CreatePrestation","__decorate"],"sourceRoot":"","sources":["../../../../../ts/types/Interface/api/prestation/CreatePrestation.ts"],"sourcesContent":["import { IsNumber } from 'class-validator';\nimport { ApiProperty, ApiPropertyOptional } from '../../../..';\n\nexport class CreatePrestation {\n @ApiProperty()\n @IsNumber()\n orderStatus: number;\n\n @ApiProperty()\n @IsNumber()\n amountTtc: number;\n\n @ApiPropertyOptional()\n label?: string;\n}\n"]}
@@ -0,0 +1,55 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.DestroyTerminationList = undefined;
7
+
8
+ var _classValidator = require("class-validator");
9
+
10
+ var _utils = require("../../../../utils");
11
+
12
+ var __decorate = undefined && undefined.__decorate || function (decorators, target, key, desc) {
13
+ var c = arguments.length,
14
+ r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc,
15
+ d;
16
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
17
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
18
+ };
19
+
20
+ var __metadata = undefined && undefined.__metadata || function (k, v) {
21
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
22
+ };
23
+
24
+ class DestroyTerminationList {}
25
+
26
+ exports.DestroyTerminationList = DestroyTerminationList;
27
+
28
+ __decorate([(0, _utils.ApiProperty)(), (0, _classValidator.IsInt)(), __metadata("design:type", Number)], DestroyTerminationList.prototype, "id", void 0);
29
+
30
+ __decorate([(0, _utils.ApiPropertyOptional)(), (0, _classValidator.IsOptional)(), (0, _classValidator.IsString)(), __metadata("design:type", String)], DestroyTerminationList.prototype, "comment", void 0);
31
+
32
+ __decorate([(0, _utils.ApiPropertyOptional)(), (0, _classValidator.IsOptional)(), (0, _classValidator.IsDateString)(), __metadata("design:type", String)], DestroyTerminationList.prototype, "effectiveDate", void 0);
33
+
34
+ __decorate([(0, _utils.ApiPropertyOptional)(), (0, _classValidator.IsOptional)(), (0, _classValidator.IsDateString)(), __metadata("design:type", String)], DestroyTerminationList.prototype, "endContractDate", void 0);
35
+
36
+ __decorate([(0, _utils.ApiPropertyOptional)(), (0, _classValidator.IsOptional)(), (0, _classValidator.IsDateString)(), __metadata("design:type", String)], DestroyTerminationList.prototype, "recalledCustomer", void 0);
37
+
38
+ __decorate([(0, _utils.ApiPropertyOptional)(), (0, _classValidator.IsOptional)(), (0, _classValidator.IsDateString)(), __metadata("design:type", String)], DestroyTerminationList.prototype, "recalledCustomerBySupervisor", void 0);
39
+
40
+ __decorate([(0, _utils.ApiPropertyOptional)(), (0, _classValidator.IsOptional)(), (0, _classValidator.IsInt)(), __metadata("design:type", Number)], DestroyTerminationList.prototype, "idExercice", void 0);
41
+
42
+ __decorate([(0, _utils.ApiPropertyOptional)(), (0, _classValidator.IsOptional)(), (0, _classValidator.IsInt)(), __metadata("design:type", Number)], DestroyTerminationList.prototype, "refund", void 0);
43
+
44
+ __decorate([(0, _utils.ApiPropertyOptional)(), (0, _classValidator.IsOptional)(), (0, _classValidator.IsInt)(), __metadata("design:type", Number)], DestroyTerminationList.prototype, "idReasonTermination", void 0);
45
+
46
+ __decorate([(0, _utils.ApiProperty)(), (0, _classValidator.IsInt)(), __metadata("design:type", Number)], DestroyTerminationList.prototype, "idSociety", void 0);
47
+
48
+ __decorate([(0, _utils.ApiPropertyOptional)(), (0, _classValidator.IsOptional)(), (0, _classValidator.IsInt)(), __metadata("design:type", Number)], DestroyTerminationList.prototype, "idPrestation", void 0);
49
+
50
+ __decorate([(0, _utils.ApiPropertyOptional)(), (0, _classValidator.IsOptional)(), (0, _classValidator.IsInt)(), __metadata("design:type", Number)], DestroyTerminationList.prototype, "idCollaborateur", void 0);
51
+
52
+ __decorate([(0, _utils.ApiPropertyOptional)(), (0, _classValidator.IsOptional)(), (0, _classValidator.IsDateString)(), __metadata("design:type", String)], DestroyTerminationList.prototype, "createdAt", void 0);
53
+
54
+ __decorate([(0, _utils.ApiPropertyOptional)(), (0, _classValidator.IsOptional)(), (0, _classValidator.IsDateString)(), __metadata("design:type", String)], DestroyTerminationList.prototype, "updatedAt", void 0);
55
+ //# sourceMappingURL=DestroyTerminationList.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DestroyTerminationList.js","mappings":";;;;;;;AAAA;;AAGA;;;;;;;;;;;;;;AAEM,MAAOA,sBAAP,CAA6B;;QAAtBA,sB,GAAAA,sB;;AAGXC,YAFC,yBAED,EADC,4BACD;;AAKAA,YAHC,iCAGD,EAFC,iCAED,EADC,+BACD;;AAKAA,YAHC,iCAGD,EAFC,iCAED,EADC,mCACD;;AAKAA,YAHC,iCAGD,EAFC,iCAED,EADC,mCACD;;AAKAA,YAHC,iCAGD,EAFC,iCAED,EADC,mCACD;;AAKAA,YAHC,iCAGD,EAFC,iCAED,EADC,mCACD;;AAKAA,YAHC,iCAGD,EAFC,iCAED,EADC,4BACD;;AAKAA,YAHC,iCAGD,EAFC,iCAED,EADC,4BACD;;AAKAA,YAHC,iCAGD,EAFC,iCAED,EADC,4BACD;;AAIAA,YAFC,yBAED,EADC,4BACD;;AAKAA,YAHC,iCAGD,EAFC,iCAED,EADC,4BACD;;AAKAA,YAHC,iCAGD,EAFC,iCAED,EADC,4BACD;;AAKAA,YAHC,iCAGD,EAFC,iCAED,EADC,mCACD;;AAKAA,YAHC,iCAGD,EAFC,iCAED,EADC,mCACD","names":["DestroyTerminationList","__decorate"],"sourceRoot":"","sources":["../../../../../ts/types/Interface/api/terminationList/DestroyTerminationList.ts"],"sourcesContent":["import {\n IsDateString, IsInt, IsOptional, IsString,\n} from 'class-validator';\nimport { ApiProperty, ApiPropertyOptional } from '../../../../utils';\n\nexport class DestroyTerminationList {\n @ApiProperty()\n @IsInt()\n id: number;\n\n @ApiPropertyOptional()\n @IsOptional()\n @IsString()\n comment?: string;\n\n @ApiPropertyOptional()\n @IsOptional()\n @IsDateString()\n effectiveDate?: string;\n\n @ApiPropertyOptional()\n @IsOptional()\n @IsDateString()\n endContractDate?: string;\n\n @ApiPropertyOptional()\n @IsOptional()\n @IsDateString()\n recalledCustomer?: string;\n\n @ApiPropertyOptional()\n @IsOptional()\n @IsDateString()\n recalledCustomerBySupervisor?: string;\n\n @ApiPropertyOptional()\n @IsOptional()\n @IsInt()\n idExercice?: number;\n\n @ApiPropertyOptional()\n @IsOptional()\n @IsInt()\n refund?: number;\n\n @ApiPropertyOptional()\n @IsOptional()\n @IsInt()\n idReasonTermination?: number;\n\n @ApiProperty()\n @IsInt()\n idSociety: number;\n\n @ApiPropertyOptional()\n @IsOptional()\n @IsInt()\n idPrestation?: number;\n\n @ApiPropertyOptional()\n @IsOptional()\n @IsInt()\n idCollaborateur?: number;\n\n @ApiPropertyOptional()\n @IsOptional()\n @IsDateString()\n createdAt?: string;\n\n @ApiPropertyOptional()\n @IsOptional()\n @IsDateString()\n updatedAt?: string;\n}"]}
@@ -0,0 +1,55 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.QueryTerminationList = undefined;
7
+
8
+ var _classValidator = require("class-validator");
9
+
10
+ var _utils = require("../../../../utils");
11
+
12
+ var __decorate = undefined && undefined.__decorate || function (decorators, target, key, desc) {
13
+ var c = arguments.length,
14
+ r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc,
15
+ d;
16
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
17
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
18
+ };
19
+
20
+ var __metadata = undefined && undefined.__metadata || function (k, v) {
21
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
22
+ };
23
+
24
+ class QueryTerminationList {}
25
+
26
+ exports.QueryTerminationList = QueryTerminationList;
27
+
28
+ __decorate([(0, _utils.ApiPropertyOptional)(), (0, _classValidator.IsOptional)(), (0, _classValidator.IsInt)(), __metadata("design:type", Number)], QueryTerminationList.prototype, "id", void 0);
29
+
30
+ __decorate([(0, _utils.ApiPropertyOptional)(), (0, _classValidator.IsOptional)(), (0, _classValidator.IsString)(), __metadata("design:type", String)], QueryTerminationList.prototype, "comment", void 0);
31
+
32
+ __decorate([(0, _utils.ApiPropertyOptional)(), (0, _classValidator.IsOptional)(), (0, _classValidator.IsDateString)(), __metadata("design:type", String)], QueryTerminationList.prototype, "effectiveDate", void 0);
33
+
34
+ __decorate([(0, _utils.ApiPropertyOptional)(), (0, _classValidator.IsOptional)(), (0, _classValidator.IsDateString)(), __metadata("design:type", String)], QueryTerminationList.prototype, "endContractDate", void 0);
35
+
36
+ __decorate([(0, _utils.ApiPropertyOptional)(), (0, _classValidator.IsOptional)(), (0, _classValidator.IsDateString)(), __metadata("design:type", String)], QueryTerminationList.prototype, "recalledCustomer", void 0);
37
+
38
+ __decorate([(0, _utils.ApiPropertyOptional)(), (0, _classValidator.IsOptional)(), (0, _classValidator.IsDateString)(), __metadata("design:type", String)], QueryTerminationList.prototype, "recalledCustomerBySupervisor", void 0);
39
+
40
+ __decorate([(0, _utils.ApiPropertyOptional)(), (0, _classValidator.IsOptional)(), (0, _classValidator.IsInt)(), __metadata("design:type", Number)], QueryTerminationList.prototype, "idExercice", void 0);
41
+
42
+ __decorate([(0, _utils.ApiPropertyOptional)(), (0, _classValidator.IsOptional)(), (0, _classValidator.IsInt)(), __metadata("design:type", Number)], QueryTerminationList.prototype, "refund", void 0);
43
+
44
+ __decorate([(0, _utils.ApiPropertyOptional)(), (0, _classValidator.IsOptional)(), (0, _classValidator.IsInt)(), __metadata("design:type", Number)], QueryTerminationList.prototype, "idReasonTermination", void 0);
45
+
46
+ __decorate([(0, _utils.ApiPropertyOptional)(), (0, _classValidator.IsOptional)(), (0, _classValidator.IsInt)(), __metadata("design:type", Number)], QueryTerminationList.prototype, "idSociety", void 0);
47
+
48
+ __decorate([(0, _utils.ApiPropertyOptional)(), (0, _classValidator.IsOptional)(), (0, _classValidator.IsInt)(), __metadata("design:type", Number)], QueryTerminationList.prototype, "idPrestation", void 0);
49
+
50
+ __decorate([(0, _utils.ApiPropertyOptional)(), (0, _classValidator.IsOptional)(), (0, _classValidator.IsInt)(), __metadata("design:type", Number)], QueryTerminationList.prototype, "idCollaborateur", void 0);
51
+
52
+ __decorate([(0, _utils.ApiPropertyOptional)(), (0, _classValidator.IsOptional)(), (0, _classValidator.IsDateString)(), __metadata("design:type", String)], QueryTerminationList.prototype, "createdAt", void 0);
53
+
54
+ __decorate([(0, _utils.ApiPropertyOptional)(), (0, _classValidator.IsOptional)(), (0, _classValidator.IsDateString)(), __metadata("design:type", String)], QueryTerminationList.prototype, "updatedAt", void 0);
55
+ //# sourceMappingURL=QueryTerminationList.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"QueryTerminationList.js","mappings":";;;;;;;AAAA;;AAGA;;;;;;;;;;;;;;AAEM,MAAOA,oBAAP,CAA2B;;QAApBA,oB,GAAAA,oB;;AAIXC,YAHC,iCAGD,EAFC,iCAED,EADC,4BACD;;AAKAA,YAHC,iCAGD,EAFC,iCAED,EADC,+BACD;;AAKAA,YAHC,iCAGD,EAFC,iCAED,EADC,mCACD;;AAKAA,YAHC,iCAGD,EAFC,iCAED,EADC,mCACD;;AAKAA,YAHC,iCAGD,EAFC,iCAED,EADC,mCACD;;AAKAA,YAHC,iCAGD,EAFC,iCAED,EADC,mCACD;;AAKAA,YAHC,iCAGD,EAFC,iCAED,EADC,4BACD;;AAKAA,YAHC,iCAGD,EAFC,iCAED,EADC,4BACD;;AAKAA,YAHC,iCAGD,EAFC,iCAED,EADC,4BACD;;AAKAA,YAHC,iCAGD,EAFC,iCAED,EADC,4BACD;;AAKAA,YAHC,iCAGD,EAFC,iCAED,EADC,4BACD;;AAKAA,YAHC,iCAGD,EAFC,iCAED,EADC,4BACD;;AAKAA,YAHC,iCAGD,EAFC,iCAED,EADC,mCACD;;AAKAA,YAHC,iCAGD,EAFC,iCAED,EADC,mCACD","names":["QueryTerminationList","__decorate"],"sourceRoot":"","sources":["../../../../../ts/types/Interface/api/terminationList/QueryTerminationList.ts"],"sourcesContent":["import {\n IsDateString, IsInt, IsOptional, IsString,\n} from 'class-validator';\nimport { ApiPropertyOptional } from '../../../../utils';\n\nexport class QueryTerminationList {\n @ApiPropertyOptional()\n @IsOptional()\n @IsInt()\n id?: number;\n\n @ApiPropertyOptional()\n @IsOptional()\n @IsString()\n comment?: string;\n\n @ApiPropertyOptional()\n @IsOptional()\n @IsDateString()\n effectiveDate?: string;\n\n @ApiPropertyOptional()\n @IsOptional()\n @IsDateString()\n endContractDate?: string;\n\n @ApiPropertyOptional()\n @IsOptional()\n @IsDateString()\n recalledCustomer?: string;\n\n @ApiPropertyOptional()\n @IsOptional()\n @IsDateString()\n recalledCustomerBySupervisor?: string;\n\n @ApiPropertyOptional()\n @IsOptional()\n @IsInt()\n idExercice?: number;\n\n @ApiPropertyOptional()\n @IsOptional()\n @IsInt()\n refund?: number;\n\n @ApiPropertyOptional()\n @IsOptional()\n @IsInt()\n idReasonTermination?: number;\n\n @ApiPropertyOptional()\n @IsOptional()\n @IsInt()\n idSociety?: number;\n\n @ApiPropertyOptional()\n @IsOptional()\n @IsInt()\n idPrestation?: number;\n\n @ApiPropertyOptional()\n @IsOptional()\n @IsInt()\n idCollaborateur?: number;\n\n @ApiPropertyOptional()\n @IsOptional()\n @IsDateString()\n createdAt?: string;\n\n @ApiPropertyOptional()\n @IsOptional()\n @IsDateString()\n updatedAt?: string;\n}"]}
package/js/types/index.js CHANGED
@@ -9424,6 +9424,30 @@ Object.keys(_UpdateLegalNotice).forEach(function (key) {
9424
9424
  });
9425
9425
  });
9426
9426
 
9427
+ var _QueryTerminationList = require("./Interface/api/terminationList/QueryTerminationList");
9428
+
9429
+ Object.keys(_QueryTerminationList).forEach(function (key) {
9430
+ if (key === "default" || key === "__esModule") return;
9431
+ Object.defineProperty(exports, key, {
9432
+ enumerable: true,
9433
+ get: function () {
9434
+ return _QueryTerminationList[key];
9435
+ }
9436
+ });
9437
+ });
9438
+
9439
+ var _DestroyTerminationList = require("./Interface/api/terminationList/DestroyTerminationList");
9440
+
9441
+ Object.keys(_DestroyTerminationList).forEach(function (key) {
9442
+ if (key === "default" || key === "__esModule") return;
9443
+ Object.defineProperty(exports, key, {
9444
+ enumerable: true,
9445
+ get: function () {
9446
+ return _DestroyTerminationList[key];
9447
+ }
9448
+ });
9449
+ });
9450
+
9427
9451
  var _Util4 = require("./Interface/enum/Util");
9428
9452
 
9429
9453
  Object.keys(_Util4).forEach(function (key) {