@metarisc/metarisc-js 0.0.1-alpha.116 → 0.0.1-alpha.117
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/api/DatesPassageCommissionAPI.js +5 -2
- package/lib/api/DossiersAPI.js +20 -8
- package/lib/api/ERPAPI.js +25 -10
- package/lib/api/NotificationsAPI.js +15 -6
- package/lib/api/OrdresDuJourAPI.js +5 -2
- package/lib/api/PEIAPI.js +5 -2
- package/lib/model/Clicdvcrem.d.ts +22 -20
- package/lib/model/Clicdvcrem.js +139 -135
- package/package.json +1 -1
- package/src/api/DatesPassageCommissionAPI.ts +5 -2
- package/src/api/DossiersAPI.ts +20 -8
- package/src/api/ERPAPI.ts +25 -10
- package/src/api/NotificationsAPI.ts +15 -6
- package/src/api/OrdresDuJourAPI.ts +5 -2
- package/src/api/PEIAPI.ts +5 -2
- package/src/model/Clicdvcrem.ts +23 -20
- package/lib/model/Cloisonnement.d.ts +0 -10
- package/lib/model/Cloisonnement.js +0 -10
- package/src/model/Cloisonnement.ts +0 -13
|
@@ -94,8 +94,11 @@ class DatesPassageCommissionAPI extends core_1.Core {
|
|
|
94
94
|
if (parsedData && parsedData.dossier.workflows_actifs) {
|
|
95
95
|
parsedData.dossier.workflows_actifs = new Set(parsedData.dossier.workflows_actifs);
|
|
96
96
|
}
|
|
97
|
-
if (parsedData && parsedData.dossier.erp.descriptif_technique.analyse_risque?.
|
|
98
|
-
parsedData.dossier.erp.descriptif_technique.analyse_risque.
|
|
97
|
+
if (parsedData && parsedData.dossier.erp.descriptif_technique.analyse_risque?.activites_secondaire) {
|
|
98
|
+
parsedData.dossier.erp.descriptif_technique.analyse_risque.activites_secondaire = new Set(parsedData.dossier.erp.descriptif_technique.analyse_risque.activites_secondaire);
|
|
99
|
+
}
|
|
100
|
+
if (parsedData && parsedData.dossier.erp.descriptif_technique.analyse_risque?.type_cloisonnement) {
|
|
101
|
+
parsedData.dossier.erp.descriptif_technique.analyse_risque.type_cloisonnement = new Set(parsedData.dossier.erp.descriptif_technique.analyse_risque.type_cloisonnement);
|
|
99
102
|
}
|
|
100
103
|
if (parsedData && parsedData.dossier.erp.descriptif_technique.analyse_risque?.type_de_chauffage) {
|
|
101
104
|
parsedData.dossier.erp.descriptif_technique.analyse_risque.type_de_chauffage = new Set(parsedData.dossier.erp.descriptif_technique.analyse_risque.type_de_chauffage);
|
package/lib/api/DossiersAPI.js
CHANGED
|
@@ -77,8 +77,11 @@ class DossiersAPI extends core_1.Core {
|
|
|
77
77
|
if (parsedData && parsedData.workflows_actifs) {
|
|
78
78
|
parsedData.workflows_actifs = new Set(parsedData.workflows_actifs);
|
|
79
79
|
}
|
|
80
|
-
if (parsedData && parsedData.erp.descriptif_technique.analyse_risque?.
|
|
81
|
-
parsedData.erp.descriptif_technique.analyse_risque.
|
|
80
|
+
if (parsedData && parsedData.erp.descriptif_technique.analyse_risque?.activites_secondaire) {
|
|
81
|
+
parsedData.erp.descriptif_technique.analyse_risque.activites_secondaire = new Set(parsedData.erp.descriptif_technique.analyse_risque.activites_secondaire);
|
|
82
|
+
}
|
|
83
|
+
if (parsedData && parsedData.erp.descriptif_technique.analyse_risque?.type_cloisonnement) {
|
|
84
|
+
parsedData.erp.descriptif_technique.analyse_risque.type_cloisonnement = new Set(parsedData.erp.descriptif_technique.analyse_risque.type_cloisonnement);
|
|
82
85
|
}
|
|
83
86
|
if (parsedData && parsedData.erp.descriptif_technique.analyse_risque?.type_de_chauffage) {
|
|
84
87
|
parsedData.erp.descriptif_technique.analyse_risque.type_de_chauffage = new Set(parsedData.erp.descriptif_technique.analyse_risque.type_de_chauffage);
|
|
@@ -191,8 +194,11 @@ class DossiersAPI extends core_1.Core {
|
|
|
191
194
|
if (!data)
|
|
192
195
|
return data;
|
|
193
196
|
const parsedData = JSON.parse(data);
|
|
194
|
-
if (parsedData && parsedData.analyse_risque?.
|
|
195
|
-
parsedData.analyse_risque.
|
|
197
|
+
if (parsedData && parsedData.analyse_risque?.activites_secondaire) {
|
|
198
|
+
parsedData.analyse_risque.activites_secondaire = new Set(parsedData.analyse_risque.activites_secondaire);
|
|
199
|
+
}
|
|
200
|
+
if (parsedData && parsedData.analyse_risque?.type_cloisonnement) {
|
|
201
|
+
parsedData.analyse_risque.type_cloisonnement = new Set(parsedData.analyse_risque.type_cloisonnement);
|
|
196
202
|
}
|
|
197
203
|
if (parsedData && parsedData.analyse_risque?.type_de_chauffage) {
|
|
198
204
|
parsedData.analyse_risque.type_de_chauffage = new Set(parsedData.analyse_risque.type_de_chauffage);
|
|
@@ -433,8 +439,11 @@ class DossiersAPI extends core_1.Core {
|
|
|
433
439
|
if (parsedData && parsedData.workflows_actifs) {
|
|
434
440
|
parsedData.workflows_actifs = new Set(parsedData.workflows_actifs);
|
|
435
441
|
}
|
|
436
|
-
if (parsedData && parsedData.erp.descriptif_technique.analyse_risque?.
|
|
437
|
-
parsedData.erp.descriptif_technique.analyse_risque.
|
|
442
|
+
if (parsedData && parsedData.erp.descriptif_technique.analyse_risque?.activites_secondaire) {
|
|
443
|
+
parsedData.erp.descriptif_technique.analyse_risque.activites_secondaire = new Set(parsedData.erp.descriptif_technique.analyse_risque.activites_secondaire);
|
|
444
|
+
}
|
|
445
|
+
if (parsedData && parsedData.erp.descriptif_technique.analyse_risque?.type_cloisonnement) {
|
|
446
|
+
parsedData.erp.descriptif_technique.analyse_risque.type_cloisonnement = new Set(parsedData.erp.descriptif_technique.analyse_risque.type_cloisonnement);
|
|
438
447
|
}
|
|
439
448
|
if (parsedData && parsedData.erp.descriptif_technique.analyse_risque?.type_de_chauffage) {
|
|
440
449
|
parsedData.erp.descriptif_technique.analyse_risque.type_de_chauffage = new Set(parsedData.erp.descriptif_technique.analyse_risque.type_de_chauffage);
|
|
@@ -493,8 +502,11 @@ class DossiersAPI extends core_1.Core {
|
|
|
493
502
|
if (!data)
|
|
494
503
|
return data;
|
|
495
504
|
const parsedData = JSON.parse(data);
|
|
496
|
-
if (parsedData && parsedData.analyse_risque?.
|
|
497
|
-
parsedData.analyse_risque.
|
|
505
|
+
if (parsedData && parsedData.analyse_risque?.activites_secondaire) {
|
|
506
|
+
parsedData.analyse_risque.activites_secondaire = new Set(parsedData.analyse_risque.activites_secondaire);
|
|
507
|
+
}
|
|
508
|
+
if (parsedData && parsedData.analyse_risque?.type_cloisonnement) {
|
|
509
|
+
parsedData.analyse_risque.type_cloisonnement = new Set(parsedData.analyse_risque.type_cloisonnement);
|
|
498
510
|
}
|
|
499
511
|
if (parsedData && parsedData.analyse_risque?.type_de_chauffage) {
|
|
500
512
|
parsedData.analyse_risque.type_de_chauffage = new Set(parsedData.analyse_risque.type_de_chauffage);
|
package/lib/api/ERPAPI.js
CHANGED
|
@@ -20,8 +20,11 @@ class ERPAPI extends core_1.Core {
|
|
|
20
20
|
if (!data)
|
|
21
21
|
return data;
|
|
22
22
|
const parsedData = JSON.parse(data);
|
|
23
|
-
if (parsedData && parsedData.descriptif_technique.analyse_risque?.
|
|
24
|
-
parsedData.descriptif_technique.analyse_risque.
|
|
23
|
+
if (parsedData && parsedData.descriptif_technique.analyse_risque?.activites_secondaire) {
|
|
24
|
+
parsedData.descriptif_technique.analyse_risque.activites_secondaire = new Set(parsedData.descriptif_technique.analyse_risque.activites_secondaire);
|
|
25
|
+
}
|
|
26
|
+
if (parsedData && parsedData.descriptif_technique.analyse_risque?.type_cloisonnement) {
|
|
27
|
+
parsedData.descriptif_technique.analyse_risque.type_cloisonnement = new Set(parsedData.descriptif_technique.analyse_risque.type_cloisonnement);
|
|
25
28
|
}
|
|
26
29
|
if (parsedData && parsedData.descriptif_technique.analyse_risque?.type_de_chauffage) {
|
|
27
30
|
parsedData.descriptif_technique.analyse_risque.type_de_chauffage = new Set(parsedData.descriptif_technique.analyse_risque.type_de_chauffage);
|
|
@@ -291,8 +294,11 @@ class ERPAPI extends core_1.Core {
|
|
|
291
294
|
if (parsedData && parsedData.workflows_actifs) {
|
|
292
295
|
parsedData.workflows_actifs = new Set(parsedData.workflows_actifs);
|
|
293
296
|
}
|
|
294
|
-
if (parsedData && parsedData.erp.descriptif_technique.analyse_risque?.
|
|
295
|
-
parsedData.erp.descriptif_technique.analyse_risque.
|
|
297
|
+
if (parsedData && parsedData.erp.descriptif_technique.analyse_risque?.activites_secondaire) {
|
|
298
|
+
parsedData.erp.descriptif_technique.analyse_risque.activites_secondaire = new Set(parsedData.erp.descriptif_technique.analyse_risque.activites_secondaire);
|
|
299
|
+
}
|
|
300
|
+
if (parsedData && parsedData.erp.descriptif_technique.analyse_risque?.type_cloisonnement) {
|
|
301
|
+
parsedData.erp.descriptif_technique.analyse_risque.type_cloisonnement = new Set(parsedData.erp.descriptif_technique.analyse_risque.type_cloisonnement);
|
|
296
302
|
}
|
|
297
303
|
if (parsedData && parsedData.erp.descriptif_technique.analyse_risque?.type_de_chauffage) {
|
|
298
304
|
parsedData.erp.descriptif_technique.analyse_risque.type_de_chauffage = new Set(parsedData.erp.descriptif_technique.analyse_risque.type_de_chauffage);
|
|
@@ -323,8 +329,11 @@ class ERPAPI extends core_1.Core {
|
|
|
323
329
|
if (parsedData && parsedData.workflows_actifs) {
|
|
324
330
|
parsedData.workflows_actifs = new Set(parsedData.workflows_actifs);
|
|
325
331
|
}
|
|
326
|
-
if (parsedData && parsedData.erp.descriptif_technique.analyse_risque?.
|
|
327
|
-
parsedData.erp.descriptif_technique.analyse_risque.
|
|
332
|
+
if (parsedData && parsedData.erp.descriptif_technique.analyse_risque?.activites_secondaire) {
|
|
333
|
+
parsedData.erp.descriptif_technique.analyse_risque.activites_secondaire = new Set(parsedData.erp.descriptif_technique.analyse_risque.activites_secondaire);
|
|
334
|
+
}
|
|
335
|
+
if (parsedData && parsedData.erp.descriptif_technique.analyse_risque?.type_cloisonnement) {
|
|
336
|
+
parsedData.erp.descriptif_technique.analyse_risque.type_cloisonnement = new Set(parsedData.erp.descriptif_technique.analyse_risque.type_cloisonnement);
|
|
328
337
|
}
|
|
329
338
|
if (parsedData && parsedData.erp.descriptif_technique.analyse_risque?.type_de_chauffage) {
|
|
330
339
|
parsedData.erp.descriptif_technique.analyse_risque.type_de_chauffage = new Set(parsedData.erp.descriptif_technique.analyse_risque.type_de_chauffage);
|
|
@@ -346,8 +355,11 @@ class ERPAPI extends core_1.Core {
|
|
|
346
355
|
if (!data)
|
|
347
356
|
return data;
|
|
348
357
|
const parsedData = JSON.parse(data);
|
|
349
|
-
if (parsedData && parsedData.descriptif_technique.analyse_risque?.
|
|
350
|
-
parsedData.descriptif_technique.analyse_risque.
|
|
358
|
+
if (parsedData && parsedData.descriptif_technique.analyse_risque?.activites_secondaire) {
|
|
359
|
+
parsedData.descriptif_technique.analyse_risque.activites_secondaire = new Set(parsedData.descriptif_technique.analyse_risque.activites_secondaire);
|
|
360
|
+
}
|
|
361
|
+
if (parsedData && parsedData.descriptif_technique.analyse_risque?.type_cloisonnement) {
|
|
362
|
+
parsedData.descriptif_technique.analyse_risque.type_cloisonnement = new Set(parsedData.descriptif_technique.analyse_risque.type_cloisonnement);
|
|
351
363
|
}
|
|
352
364
|
if (parsedData && parsedData.descriptif_technique.analyse_risque?.type_de_chauffage) {
|
|
353
365
|
parsedData.descriptif_technique.analyse_risque.type_de_chauffage = new Set(parsedData.descriptif_technique.analyse_risque.type_de_chauffage);
|
|
@@ -369,8 +381,11 @@ class ERPAPI extends core_1.Core {
|
|
|
369
381
|
if (!data)
|
|
370
382
|
return data;
|
|
371
383
|
const parsedData = JSON.parse(data);
|
|
372
|
-
if (parsedData && parsedData.descriptif_technique.analyse_risque?.
|
|
373
|
-
parsedData.descriptif_technique.analyse_risque.
|
|
384
|
+
if (parsedData && parsedData.descriptif_technique.analyse_risque?.activites_secondaire) {
|
|
385
|
+
parsedData.descriptif_technique.analyse_risque.activites_secondaire = new Set(parsedData.descriptif_technique.analyse_risque.activites_secondaire);
|
|
386
|
+
}
|
|
387
|
+
if (parsedData && parsedData.descriptif_technique.analyse_risque?.type_cloisonnement) {
|
|
388
|
+
parsedData.descriptif_technique.analyse_risque.type_cloisonnement = new Set(parsedData.descriptif_technique.analyse_risque.type_cloisonnement);
|
|
374
389
|
}
|
|
375
390
|
if (parsedData && parsedData.descriptif_technique.analyse_risque?.type_de_chauffage) {
|
|
376
391
|
parsedData.descriptif_technique.analyse_risque.type_de_chauffage = new Set(parsedData.descriptif_technique.analyse_risque.type_de_chauffage);
|
|
@@ -48,8 +48,11 @@ class NotificationsAPI extends core_1.Core {
|
|
|
48
48
|
if (parsedData && parsedData.subject.workflows_actifs) {
|
|
49
49
|
parsedData.subject.workflows_actifs = new Set(parsedData.subject.workflows_actifs);
|
|
50
50
|
}
|
|
51
|
-
if (parsedData && parsedData.subject.erp.descriptif_technique.analyse_risque?.
|
|
52
|
-
parsedData.subject.erp.descriptif_technique.analyse_risque.
|
|
51
|
+
if (parsedData && parsedData.subject.erp.descriptif_technique.analyse_risque?.activites_secondaire) {
|
|
52
|
+
parsedData.subject.erp.descriptif_technique.analyse_risque.activites_secondaire = new Set(parsedData.subject.erp.descriptif_technique.analyse_risque.activites_secondaire);
|
|
53
|
+
}
|
|
54
|
+
if (parsedData && parsedData.subject.erp.descriptif_technique.analyse_risque?.type_cloisonnement) {
|
|
55
|
+
parsedData.subject.erp.descriptif_technique.analyse_risque.type_cloisonnement = new Set(parsedData.subject.erp.descriptif_technique.analyse_risque.type_cloisonnement);
|
|
53
56
|
}
|
|
54
57
|
if (parsedData && parsedData.subject.erp.descriptif_technique.analyse_risque?.type_de_chauffage) {
|
|
55
58
|
parsedData.subject.erp.descriptif_technique.analyse_risque.type_de_chauffage = new Set(parsedData.subject.erp.descriptif_technique.analyse_risque.type_de_chauffage);
|
|
@@ -98,8 +101,11 @@ class NotificationsAPI extends core_1.Core {
|
|
|
98
101
|
if (parsedData && parsedData.subject.workflows_actifs) {
|
|
99
102
|
parsedData.subject.workflows_actifs = new Set(parsedData.subject.workflows_actifs);
|
|
100
103
|
}
|
|
101
|
-
if (parsedData && parsedData.subject.erp.descriptif_technique.analyse_risque?.
|
|
102
|
-
parsedData.subject.erp.descriptif_technique.analyse_risque.
|
|
104
|
+
if (parsedData && parsedData.subject.erp.descriptif_technique.analyse_risque?.activites_secondaire) {
|
|
105
|
+
parsedData.subject.erp.descriptif_technique.analyse_risque.activites_secondaire = new Set(parsedData.subject.erp.descriptif_technique.analyse_risque.activites_secondaire);
|
|
106
|
+
}
|
|
107
|
+
if (parsedData && parsedData.subject.erp.descriptif_technique.analyse_risque?.type_cloisonnement) {
|
|
108
|
+
parsedData.subject.erp.descriptif_technique.analyse_risque.type_cloisonnement = new Set(parsedData.subject.erp.descriptif_technique.analyse_risque.type_cloisonnement);
|
|
103
109
|
}
|
|
104
110
|
if (parsedData && parsedData.subject.erp.descriptif_technique.analyse_risque?.type_de_chauffage) {
|
|
105
111
|
parsedData.subject.erp.descriptif_technique.analyse_risque.type_de_chauffage = new Set(parsedData.subject.erp.descriptif_technique.analyse_risque.type_de_chauffage);
|
|
@@ -132,8 +138,11 @@ class NotificationsAPI extends core_1.Core {
|
|
|
132
138
|
if (parsedData && parsedData.subject.workflows_actifs) {
|
|
133
139
|
parsedData.subject.workflows_actifs = new Set(parsedData.subject.workflows_actifs);
|
|
134
140
|
}
|
|
135
|
-
if (parsedData && parsedData.subject.erp.descriptif_technique.analyse_risque?.
|
|
136
|
-
parsedData.subject.erp.descriptif_technique.analyse_risque.
|
|
141
|
+
if (parsedData && parsedData.subject.erp.descriptif_technique.analyse_risque?.activites_secondaire) {
|
|
142
|
+
parsedData.subject.erp.descriptif_technique.analyse_risque.activites_secondaire = new Set(parsedData.subject.erp.descriptif_technique.analyse_risque.activites_secondaire);
|
|
143
|
+
}
|
|
144
|
+
if (parsedData && parsedData.subject.erp.descriptif_technique.analyse_risque?.type_cloisonnement) {
|
|
145
|
+
parsedData.subject.erp.descriptif_technique.analyse_risque.type_cloisonnement = new Set(parsedData.subject.erp.descriptif_technique.analyse_risque.type_cloisonnement);
|
|
137
146
|
}
|
|
138
147
|
if (parsedData && parsedData.subject.erp.descriptif_technique.analyse_risque?.type_de_chauffage) {
|
|
139
148
|
parsedData.subject.erp.descriptif_technique.analyse_risque.type_de_chauffage = new Set(parsedData.subject.erp.descriptif_technique.analyse_risque.type_de_chauffage);
|
|
@@ -94,8 +94,11 @@ class OrdresDuJourAPI extends core_1.Core {
|
|
|
94
94
|
if (parsedData && parsedData.dossier.workflows_actifs) {
|
|
95
95
|
parsedData.dossier.workflows_actifs = new Set(parsedData.dossier.workflows_actifs);
|
|
96
96
|
}
|
|
97
|
-
if (parsedData && parsedData.dossier.erp.descriptif_technique.analyse_risque?.
|
|
98
|
-
parsedData.dossier.erp.descriptif_technique.analyse_risque.
|
|
97
|
+
if (parsedData && parsedData.dossier.erp.descriptif_technique.analyse_risque?.activites_secondaire) {
|
|
98
|
+
parsedData.dossier.erp.descriptif_technique.analyse_risque.activites_secondaire = new Set(parsedData.dossier.erp.descriptif_technique.analyse_risque.activites_secondaire);
|
|
99
|
+
}
|
|
100
|
+
if (parsedData && parsedData.dossier.erp.descriptif_technique.analyse_risque?.type_cloisonnement) {
|
|
101
|
+
parsedData.dossier.erp.descriptif_technique.analyse_risque.type_cloisonnement = new Set(parsedData.dossier.erp.descriptif_technique.analyse_risque.type_cloisonnement);
|
|
99
102
|
}
|
|
100
103
|
if (parsedData && parsedData.dossier.erp.descriptif_technique.analyse_risque?.type_de_chauffage) {
|
|
101
104
|
parsedData.dossier.erp.descriptif_technique.analyse_risque.type_de_chauffage = new Set(parsedData.dossier.erp.descriptif_technique.analyse_risque.type_de_chauffage);
|
package/lib/api/PEIAPI.js
CHANGED
|
@@ -235,8 +235,11 @@ class PEIAPI extends core_1.Core {
|
|
|
235
235
|
if (parsedData && parsedData.workflows_actifs) {
|
|
236
236
|
parsedData.workflows_actifs = new Set(parsedData.workflows_actifs);
|
|
237
237
|
}
|
|
238
|
-
if (parsedData && parsedData.erp.descriptif_technique.analyse_risque?.
|
|
239
|
-
parsedData.erp.descriptif_technique.analyse_risque.
|
|
238
|
+
if (parsedData && parsedData.erp.descriptif_technique.analyse_risque?.activites_secondaire) {
|
|
239
|
+
parsedData.erp.descriptif_technique.analyse_risque.activites_secondaire = new Set(parsedData.erp.descriptif_technique.analyse_risque.activites_secondaire);
|
|
240
|
+
}
|
|
241
|
+
if (parsedData && parsedData.erp.descriptif_technique.analyse_risque?.type_cloisonnement) {
|
|
242
|
+
parsedData.erp.descriptif_technique.analyse_risque.type_cloisonnement = new Set(parsedData.erp.descriptif_technique.analyse_risque.type_cloisonnement);
|
|
240
243
|
}
|
|
241
244
|
if (parsedData && parsedData.erp.descriptif_technique.analyse_risque?.type_de_chauffage) {
|
|
242
245
|
parsedData.erp.descriptif_technique.analyse_risque.type_de_chauffage = new Set(parsedData.erp.descriptif_technique.analyse_risque.type_de_chauffage);
|
|
@@ -1,10 +1,9 @@
|
|
|
1
|
-
import { Cloisonnement } from './Cloisonnement';
|
|
2
1
|
import { Degagement } from './Degagement';
|
|
3
2
|
import { EffectifsNiveau } from './EffectifsNiveau';
|
|
4
3
|
import { Local } from './Local';
|
|
5
4
|
export type Clicdvcrem = {
|
|
6
5
|
'activite_principale': ActivitePrincipaleEnum | null;
|
|
7
|
-
'
|
|
6
|
+
'activites_secondaire': Set<ActivitesSecondaireEnum> | null;
|
|
8
7
|
'categorie': CategorieEnum | null;
|
|
9
8
|
'groupement_etablissement': GroupementEtablissementEnum | null;
|
|
10
9
|
'tableau_des_effectifs': Array<EffectifsNiveau> | null;
|
|
@@ -32,14 +31,14 @@ export type Clicdvcrem = {
|
|
|
32
31
|
'desserte_informations_complementaires': string | null;
|
|
33
32
|
'presence_erp_ou_tiers_contigus': boolean | null;
|
|
34
33
|
'isolement_contigus_realise_degre_cf': IsolementContigusRealiseDegreCfEnum | null;
|
|
35
|
-
'
|
|
34
|
+
'isolement_contigus_realise_degre_cf_autre_precision': string | null;
|
|
36
35
|
'isolement_contigus_informations_complementaires': string | null;
|
|
37
36
|
'air_libre': AirLibreEnum | null;
|
|
38
37
|
'vis_a_vis': VisAVisEnum | null;
|
|
39
38
|
'isolement_vis_a_vis_informations_complementaires': string | null;
|
|
40
39
|
'presence_erp_ou_tiers_superpose': boolean | null;
|
|
41
40
|
'isolement_superpose_realise_degre_cf': IsolementSuperposeRealiseDegreCfEnum | null;
|
|
42
|
-
'
|
|
41
|
+
'isolement_superpose_realise_degre_cf_autre_precision': string | null;
|
|
43
42
|
'isolement_superpose_informations_complementaires': string | null;
|
|
44
43
|
'structure_sf': StructureSfEnum | null;
|
|
45
44
|
'plancher_sf': PlancherSfEnum | null;
|
|
@@ -48,15 +47,15 @@ export type Clicdvcrem = {
|
|
|
48
47
|
'construction_structures_description': string | null;
|
|
49
48
|
'construction_couverture_description': string | null;
|
|
50
49
|
'construction_facades_description': string | null;
|
|
51
|
-
'
|
|
50
|
+
'type_cloisonnement': Set<TypeCloisonnementEnum> | null;
|
|
52
51
|
'construction_distribution_interieure_informations_complementaires': string | null;
|
|
53
52
|
'locaux': Array<Local> | null;
|
|
54
53
|
'construction_conduits_et_gaines_description': string | null;
|
|
55
54
|
'construction_amenagements_interieurs_description': string | null;
|
|
56
|
-
'
|
|
55
|
+
'degagement_normaux': Array<Degagement> | null;
|
|
57
56
|
'degagements_accessoires': Array<Degagement> | null;
|
|
58
|
-
'
|
|
59
|
-
'
|
|
57
|
+
'degagement_exigibles_informations_complementaires': string | null;
|
|
58
|
+
'degagement_supplementaires': Array<Degagement> | null;
|
|
60
59
|
'degagement_escaliers_description': string | null;
|
|
61
60
|
'degagement_ascenseurs_escaliers_mecaniques_trottoirs_roulants_description': string | null;
|
|
62
61
|
'presence_eas_ou_equivalents': boolean | null;
|
|
@@ -233,7 +232,7 @@ export declare enum ActivitePrincipaleEnum {
|
|
|
233
232
|
Y___MUSEES = "Y - Mus\u00E9es",
|
|
234
233
|
Y___SALLES_DESTINEES_A_RECEVOIR_DES_EXPOSITIONS_A_VOCATION_CULTURELLE_SCIENTIFIQUE_TECHNIQUE_ARTISTIQUE_ETC__AYANT_UN_CARACTERE_TEMPORAIRE = "Y - Salles destin\u00E9es \u00E0 recevoir des expositions \u00E0 vocation culturelle, scientifique, technique, artistique, etc. ayant un caract\u00E8re temporaire"
|
|
235
234
|
}
|
|
236
|
-
export declare enum
|
|
235
|
+
export declare enum ActivitesSecondaireEnum {
|
|
237
236
|
CTS___CHAPITEAUX = "CTS - Ch\u00E2piteaux",
|
|
238
237
|
CTS___STRUCTURES = "CTS - Structures",
|
|
239
238
|
CTS___TENTES = "CTS - Tentes",
|
|
@@ -420,6 +419,11 @@ export declare enum PlancherSfEnum {
|
|
|
420
419
|
_3H = "3h",
|
|
421
420
|
AUTRE = "Autre"
|
|
422
421
|
}
|
|
422
|
+
export declare enum TypeCloisonnementEnum {
|
|
423
|
+
TRADITIONNELS = "Traditionnels",
|
|
424
|
+
SECTEURS = "Secteurs",
|
|
425
|
+
COMPARTIMENTS = "Compartiments"
|
|
426
|
+
}
|
|
423
427
|
export declare enum PuissanceChaufferieEnum {
|
|
424
428
|
_70K_W = "<=70kW",
|
|
425
429
|
_70K_W2 = ">70kW",
|
|
@@ -461,22 +465,20 @@ export declare enum ServiceDeSecuriteIncendieEnum {
|
|
|
461
465
|
COMBINAISON_DES_DIFFERENTES_POSSIBILITES = "Combinaison des diff\u00E9rentes possibilit\u00E9s"
|
|
462
466
|
}
|
|
463
467
|
export declare enum TypeSsiEnum {
|
|
464
|
-
|
|
465
|
-
A_OPTION_IGH = "A option IGH",
|
|
466
|
-
B = "B",
|
|
467
|
-
C = "C",
|
|
468
|
+
E = "E",
|
|
468
469
|
D = "D",
|
|
469
|
-
|
|
470
|
+
C = "C",
|
|
471
|
+
B = "B",
|
|
472
|
+
A = "A"
|
|
470
473
|
}
|
|
471
474
|
export declare enum TypeAlarmeEnum {
|
|
472
|
-
|
|
473
|
-
_2_A = "2A",
|
|
474
|
-
_2_B = "2B",
|
|
475
|
+
_4 = "4",
|
|
475
476
|
_3 = "3",
|
|
476
|
-
|
|
477
|
+
_2_B = "2B",
|
|
478
|
+
_2_A = "2A",
|
|
479
|
+
_1 = "1"
|
|
477
480
|
}
|
|
478
481
|
export declare enum AutreSystemeAlerteEnum {
|
|
479
482
|
TELEPHONE_URBAIN_FIXE_OU_BOX_SECOURUE = "Telephone urbain fixe ou box secourue",
|
|
480
|
-
GSM = "GSM"
|
|
481
|
-
TELEPHONE_DIRECT_RELIE_AU_PCS = "T\u00E9l\u00E9phone direct reli\u00E9 au PCS"
|
|
483
|
+
GSM = "GSM"
|
|
482
484
|
}
|
package/lib/model/Clicdvcrem.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.AutreSystemeAlerteEnum = exports.TypeAlarmeEnum = exports.TypeSsiEnum = exports.ServiceDeSecuriteIncendieEnum = exports.InstallationExtinctionEnum = exports.SystemeVentilationEnum = exports.TypeDeCuisineEnum = exports.PuissanceCuisineEnum = exports.TypeDeChauffageEnum = exports.PuissanceChaufferieEnum = exports.PlancherSfEnum = exports.StructureSfEnum = exports.IsolementSuperposeRealiseDegreCfEnum = exports.VisAVisEnum = exports.AirLibreEnum = exports.IsolementContigusRealiseDegreCfEnum = exports.PlancherBasDuDernierNiveauAccessibleAuPublicEnum = exports.PlancherBasDuDernierNiveauEnum = exports.GroupementEtablissementEnum = exports.CategorieEnum = exports.
|
|
3
|
+
exports.AutreSystemeAlerteEnum = exports.TypeAlarmeEnum = exports.TypeSsiEnum = exports.ServiceDeSecuriteIncendieEnum = exports.InstallationExtinctionEnum = exports.SystemeVentilationEnum = exports.TypeDeCuisineEnum = exports.PuissanceCuisineEnum = exports.TypeDeChauffageEnum = exports.PuissanceChaufferieEnum = exports.TypeCloisonnementEnum = exports.PlancherSfEnum = exports.StructureSfEnum = exports.IsolementSuperposeRealiseDegreCfEnum = exports.VisAVisEnum = exports.AirLibreEnum = exports.IsolementContigusRealiseDegreCfEnum = exports.PlancherBasDuDernierNiveauAccessibleAuPublicEnum = exports.PlancherBasDuDernierNiveauEnum = exports.GroupementEtablissementEnum = exports.CategorieEnum = exports.ActivitesSecondaireEnum = exports.ActivitePrincipaleEnum = void 0;
|
|
4
4
|
var ActivitePrincipaleEnum;
|
|
5
5
|
(function (ActivitePrincipaleEnum) {
|
|
6
6
|
ActivitePrincipaleEnum["CTS___CHAPITEAUX"] = "CTS - Ch\u00E2piteaux";
|
|
@@ -125,130 +125,130 @@ var ActivitePrincipaleEnum;
|
|
|
125
125
|
ActivitePrincipaleEnum["Y___MUSEES"] = "Y - Mus\u00E9es";
|
|
126
126
|
ActivitePrincipaleEnum["Y___SALLES_DESTINEES_A_RECEVOIR_DES_EXPOSITIONS_A_VOCATION_CULTURELLE_SCIENTIFIQUE_TECHNIQUE_ARTISTIQUE_ETC__AYANT_UN_CARACTERE_TEMPORAIRE"] = "Y - Salles destin\u00E9es \u00E0 recevoir des expositions \u00E0 vocation culturelle, scientifique, technique, artistique, etc. ayant un caract\u00E8re temporaire";
|
|
127
127
|
})(ActivitePrincipaleEnum = exports.ActivitePrincipaleEnum || (exports.ActivitePrincipaleEnum = {}));
|
|
128
|
-
var
|
|
129
|
-
(function (
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
})(
|
|
128
|
+
var ActivitesSecondaireEnum;
|
|
129
|
+
(function (ActivitesSecondaireEnum) {
|
|
130
|
+
ActivitesSecondaireEnum["CTS___CHAPITEAUX"] = "CTS - Ch\u00E2piteaux";
|
|
131
|
+
ActivitesSecondaireEnum["CTS___STRUCTURES"] = "CTS - Structures";
|
|
132
|
+
ActivitesSecondaireEnum["CTS___TENTES"] = "CTS - Tentes";
|
|
133
|
+
ActivitesSecondaireEnum["EF___BATEAUX_EN_STATIONNEMENT_SUR_LES_EAUX_INTERIEURES"] = "EF - Bateaux en stationnement sur les eaux int\u00E9rieures";
|
|
134
|
+
ActivitesSecondaireEnum["EF___BATEAUX_STATIONNAIRES"] = "EF - Bateaux stationnaires";
|
|
135
|
+
ActivitesSecondaireEnum["EF___ETABLISSEMENTS_FLOTTANTS"] = "EF - Etablissements flottants";
|
|
136
|
+
ActivitesSecondaireEnum["EP___MAISON_DARRET"] = "EP - Maison d'arr\u00EAt";
|
|
137
|
+
ActivitesSecondaireEnum["EP___MAISON_CENTRALE_ET_CENTRE_DE_DETENTION"] = "EP - Maison centrale et centre de d\u00E9tention";
|
|
138
|
+
ActivitesSecondaireEnum["EP___CENTRE_PENITENTIAIRE"] = "EP - Centre p\u00E9nitentiaire";
|
|
139
|
+
ActivitesSecondaireEnum["EP___CENTRE_DE_SEMI_LIBERTE_ET_CENTRES_POUR_PEINES_AMENAGEES"] = "EP - Centre de semi-libert\u00E9 et centres pour peines am\u00E9nag\u00E9es";
|
|
140
|
+
ActivitesSecondaireEnum["EP___TABLISSEMENT_PENITENTIAIRE_POUR_MINEURS"] = "EP - \u00C9tablissement p\u00E9nitentiaire pour mineurs";
|
|
141
|
+
ActivitesSecondaireEnum["EP___CENTRE_DE_RETENTION_ADMINISTRATIVE"] = "EP - Centre de r\u00E9tention administrative";
|
|
142
|
+
ActivitesSecondaireEnum["GA___GARES"] = "GA - Gares";
|
|
143
|
+
ActivitesSecondaireEnum["GEEM___GRANDS_ETABLISSEMENTS_A_EXPLOITATION_MULTIPLE"] = "GEEM - Grands \u00E9tablissements \u00E0 exploitation multiple";
|
|
144
|
+
ActivitesSecondaireEnum["IGH___GHA__HABITATION"] = "IGH - GHA (Habitation)";
|
|
145
|
+
ActivitesSecondaireEnum["IGH___GHO__HOTEL"] = "IGH - GHO (H\u00F4tel)";
|
|
146
|
+
ActivitesSecondaireEnum["IGH___GHR__ENSEIGNEMENT"] = "IGH - GHR (Enseignement)";
|
|
147
|
+
ActivitesSecondaireEnum["IGH___GHS__DEPOT_DARCHIVES"] = "IGH - GHS (D\u00E9p\u00F4t d'archives)";
|
|
148
|
+
ActivitesSecondaireEnum["IGH___GHU__SANITAIRE"] = "IGH - GHU (Sanitaire)";
|
|
149
|
+
ActivitesSecondaireEnum["IGH___GHW1__BUREAU"] = "IGH - GHW1 (Bureau)";
|
|
150
|
+
ActivitesSecondaireEnum["IGH___GHW2__BUREAU"] = "IGH - GHW2 (Bureau)";
|
|
151
|
+
ActivitesSecondaireEnum["IGH___GHZ__MIXTE"] = "IGH - GHZ (Mixte)";
|
|
152
|
+
ActivitesSecondaireEnum["IGH___GHTC__TOUR_DE_CONTROLE"] = "IGH - GHTC (Tour de contr\u00F4le)";
|
|
153
|
+
ActivitesSecondaireEnum["IGH___ITGH"] = "IGH - ITGH";
|
|
154
|
+
ActivitesSecondaireEnum["IGH___IMH"] = "IGH - IMH";
|
|
155
|
+
ActivitesSecondaireEnum["J___ETABLISSEMENTS_DENSEIGNEMENT_AVEC_INTERNAT_POUR_JEUNES_HANDICAPES_OU_INADAPTES"] = "J - Etablissements d'enseignement avec internat pour jeunes handicap\u00E9s ou inadapt\u00E9s";
|
|
156
|
+
ActivitesSecondaireEnum["J___ETABLISSEMENTS_DHEBERGEMENT_POUR_ADULTES_HANDICAPES"] = "J - Etablissements d'h\u00E9bergement pour adultes handicap\u00E9s";
|
|
157
|
+
ActivitesSecondaireEnum["J___ETABLISSEMENTS_MEDICO_EDUCATIFS_AVEC_INTERNAT_POUR_JEUNES_HANDICAPES_OU_INADAPTES"] = "J - Etablissements m\u00E9dico-\u00E9ducatifs avec internat pour jeunes handicap\u00E9s ou inadapt\u00E9s";
|
|
158
|
+
ActivitesSecondaireEnum["J___STRUCTURES_DACCUEIL_POUR_PERSONNES_AGEES"] = "J - Structures d'accueil pour personnes \u00E2g\u00E9es";
|
|
159
|
+
ActivitesSecondaireEnum["J___STRUCTURES_DACCUEIL_POUR_PERSONNES_HANDICAPEES"] = "J - Structures d'accueil pour personnes handicap\u00E9es";
|
|
160
|
+
ActivitesSecondaireEnum["L___CABARETS"] = "L - Cabarets";
|
|
161
|
+
ActivitesSecondaireEnum["L___SALLES_DAUDITION"] = "L - Salles d'audition";
|
|
162
|
+
ActivitesSecondaireEnum["L___SALLE_DE_CONFERENCES"] = "L - Salle de conf\u00E9rences";
|
|
163
|
+
ActivitesSecondaireEnum["L___SALLES_DE_PARI"] = "L - Salles de pari";
|
|
164
|
+
ActivitesSecondaireEnum["L___SALLES_DE_PROJECTION"] = "L - Salles de projection";
|
|
165
|
+
ActivitesSecondaireEnum["L___SALLES_DE_QUARTIER__OU_ASSIMILEE"] = "L - Salles de quartier (ou assimil\u00E9e)";
|
|
166
|
+
ActivitesSecondaireEnum["L___SALLES_DE_REUNIONS"] = "L - Salles de r\u00E9unions";
|
|
167
|
+
ActivitesSecondaireEnum["L___SALLES_DE_SPECTACLES"] = "L - Salles de spectacles";
|
|
168
|
+
ActivitesSecondaireEnum["L___SALLES_MULTIMEDIA"] = "L - Salles multim\u00E9dia";
|
|
169
|
+
ActivitesSecondaireEnum["L___SALLES_POLYVALENTES_A_DOMINANTE_SPORTIVE_DONT_LA_SUPERFICIE_UNITAIRE_EST_SUPERIEURE_OU_EGALE_A_1_200_M2"] = "L - Salles polyvalentes \u00E0 dominante sportive, dont la superficie unitaire est sup\u00E9rieure ou \u00E9gale \u00E0 1 200 m2";
|
|
170
|
+
ActivitesSecondaireEnum["L___SALLES_POLYVALENTES_NON_VISEE_PAR_LE_TYPE_X__SALLE_POLYVALENTE_QUI_NA_PAS_UNE_DESTINATION_UNIQUE"] = "L - Salles polyvalentes non vis\u00E9e par le Type X (salle polyvalente qui n'a pas une destination unique)";
|
|
171
|
+
ActivitesSecondaireEnum["L___SALLES_RESERVEES_AUX_ASSOCIATIONS"] = "L - Salles r\u00E9serv\u00E9es aux associations";
|
|
172
|
+
ActivitesSecondaireEnum["M___AIRES_DE_VENTE"] = "M - Aires de vente";
|
|
173
|
+
ActivitesSecondaireEnum["M___CENTRES_COMMERCIAUX"] = "M - Centres commerciaux";
|
|
174
|
+
ActivitesSecondaireEnum["M___LOCAUX_DE_VENTE"] = "M - Locaux de vente";
|
|
175
|
+
ActivitesSecondaireEnum["M___MAGASIN_DE_VENTE"] = "M - Magasin de vente";
|
|
176
|
+
ActivitesSecondaireEnum["N___BARS"] = "N - Bars";
|
|
177
|
+
ActivitesSecondaireEnum["N___BRASSERIES"] = "N - Brasseries";
|
|
178
|
+
ActivitesSecondaireEnum["N___CAFETARIA"] = "N - Caf\u00E9taria";
|
|
179
|
+
ActivitesSecondaireEnum["N___CAFES"] = "N - Caf\u00E9s";
|
|
180
|
+
ActivitesSecondaireEnum["N___CANTINES"] = "N - Cantines";
|
|
181
|
+
ActivitesSecondaireEnum["N___DEBITS_DE_BOISSONS"] = "N - D\u00E9bits de boissons";
|
|
182
|
+
ActivitesSecondaireEnum["N___RESTAURANTS"] = "N - Restaurants";
|
|
183
|
+
ActivitesSecondaireEnum["O___HOTELS"] = "O - H\u00F4tels";
|
|
184
|
+
ActivitesSecondaireEnum["O___PENSIONS_DE_FAMILLE"] = "O - Pensions de famille";
|
|
185
|
+
ActivitesSecondaireEnum["OA___HOTELS_RESTAURANTS_DALTITUDE"] = "OA - H\u00F4tels-restaurants d'altitude";
|
|
186
|
+
ActivitesSecondaireEnum["P___SALLE_DE_BALS"] = "P - Salle de bals";
|
|
187
|
+
ActivitesSecondaireEnum["P___DANCING___DISCOTHEQUE"] = "P - Dancing / discoth\u00E8que";
|
|
188
|
+
ActivitesSecondaireEnum["P___SALLES_DE_JEUX"] = "P - Salles de jeux";
|
|
189
|
+
ActivitesSecondaireEnum["PA___ARENES"] = "PA - Ar\u00E8nes";
|
|
190
|
+
ActivitesSecondaireEnum["PA___HIPPODROMES"] = "PA - Hippodromes";
|
|
191
|
+
ActivitesSecondaireEnum["PA___PISCINES"] = "PA - Piscines";
|
|
192
|
+
ActivitesSecondaireEnum["PA___PISTES_DE_PATINAGE"] = "PA - Pistes de patinage";
|
|
193
|
+
ActivitesSecondaireEnum["PA___STADES"] = "PA - Stades";
|
|
194
|
+
ActivitesSecondaireEnum["PA___TERRAINS_DE_SPORT"] = "PA - Terrains de sport";
|
|
195
|
+
ActivitesSecondaireEnum["PA___PARC_DATTRACTION"] = "PA - Parc d'attraction";
|
|
196
|
+
ActivitesSecondaireEnum["PE_2_2___LOCAUX_A_USAGE_COLLECTIF_DUNE_SURFACE_UNITAIRE_SUPERIEURE_A_50_METRES_CARRES_DES_LOGEMENTS_FOYERS_ET_DE_LHABITAT_DE_LOISIRS_A_GESTION_COLLECTIVE"] = "PE 2_2 - Locaux \u00E0 usage collectif d'une surface unitaire sup\u00E9rieure \u00E0 50 m\u00E8tres carr\u00E9s des logements-foyers et de l'habitat de loisirs \u00E0 gestion collective";
|
|
197
|
+
ActivitesSecondaireEnum["PE_2_2___BATIMENTS_OU_LOCAUX_A_USAGE_DHEBERGEMENT_QUI_NE_RELEVENT_DAUCUN_TYPE_DEFINI_A_LARTICLE_GN_1_ET_QUI_PERMETTENT_DACCUEILLIR_PLUS_DE_15_ET_MOINS_DE_100_PERSONNES_NY_ELISANT_PAS_DOMICILE"] = "PE 2_2 - B\u00E2timents ou locaux \u00E0 usage d'h\u00E9bergement qui ne rel\u00E8vent d'aucun type d\u00E9fini \u00E0 l'article GN 1 et qui permettent d'accueillir plus de 15 et moins de 100 personnes n'y \u00E9lisant pas domicile";
|
|
198
|
+
ActivitesSecondaireEnum["PE_2_2___HEBERGEMENT_DE_MINEURS_EN_DEHORS_DE_LEURS_FAMILLES_LE_SEUIL_DE_LEFFECTIF_EST_FIXE_A_7_MINEURS"] = "PE 2_2 - H\u00E9bergement de mineurs en dehors de leurs familles, le seuil de l'effectif est fix\u00E9 \u00E0 7 mineurs";
|
|
199
|
+
ActivitesSecondaireEnum["PE_2_2___MAISONS_DASSISTANTS_MATERNELS__MAM_DONT_LES_LOCAUX_ACCESSIBLES_AU_PUBLIC_SONT_STRICTEMENT_LIMITES_A_UN_SEUL_ETAGE_SUR_REZ_DE_CHAUSSEE_ET_DONT_LEFFECTIF_NE_DEPASSE_PAS_16_ENFANTS"] = "PE 2_2 - Maisons d'assistants maternels (MAM) dont les locaux accessibles au public sont strictement limit\u00E9s \u00E0 un seul \u00E9tage sur rez-de-chauss\u00E9e et dont l'effectif ne d\u00E9passe pas 16 enfants";
|
|
200
|
+
ActivitesSecondaireEnum["PS___PARCS_DE_STATIONNEMENT_COUVERTS"] = "PS - Parcs de stationnement couverts";
|
|
201
|
+
ActivitesSecondaireEnum["PS___PARC_DE_STATIONNEMENT_MIXTE"] = "PS - Parc de stationnement mixte";
|
|
202
|
+
ActivitesSecondaireEnum["PS___PARC_DE_STATIONNEMENT_LARGEMENT_VENTILE"] = "PS - Parc de stationnement largement ventil\u00E9";
|
|
203
|
+
ActivitesSecondaireEnum["PS___PARC_DE_STATIONNEMENT_A_RANGEMENT_AUTOMATISE"] = "PS - Parc de stationnement \u00E0 rangement automatis\u00E9";
|
|
204
|
+
ActivitesSecondaireEnum["R___AUBERGES_DE_JEUNESSE__COMPRENANT_AU_MOINS_UN_LOCAL_COLLECTIF_A_SOMMEIL"] = "R - Auberges de jeunesse (comprenant au moins un local collectif \u00E0 sommeil)";
|
|
205
|
+
ActivitesSecondaireEnum["R___AUTO_ECOLES"] = "R - Auto-\u00E9coles";
|
|
206
|
+
ActivitesSecondaireEnum["R___CENTRES_AERES"] = "R - Centres a\u00E9r\u00E9s";
|
|
207
|
+
ActivitesSecondaireEnum["R___CENTRES_DE_LOISIRS__SANS_HEBERGEMENT"] = "R - Centres de loisirs (sans h\u00E9bergement)";
|
|
208
|
+
ActivitesSecondaireEnum["R___CENTRES_DE_VACANCES"] = "R - Centres de vacances";
|
|
209
|
+
ActivitesSecondaireEnum["R___COLONIES_DE_VACANCES"] = "R - Colonies de vacances";
|
|
210
|
+
ActivitesSecondaireEnum["R___CRECHES"] = "R - Cr\u00E8ches";
|
|
211
|
+
ActivitesSecondaireEnum["R___ECOLES_MATERNELLES"] = "R - Ecoles maternelles";
|
|
212
|
+
ActivitesSecondaireEnum["R___ETABLISSEMENTS_DENSEIGNEMENT"] = "R - Etablissements d'enseignement";
|
|
213
|
+
ActivitesSecondaireEnum["R___ETABLISSEMENTS_DE_FORMATION"] = "R - Etablissements de formation";
|
|
214
|
+
ActivitesSecondaireEnum["R___HALTES_GARDERIES"] = "R - Haltes-garderies";
|
|
215
|
+
ActivitesSecondaireEnum["R___INTERNATS_DES_ETABLISSEMENTS_DE_LENSEIGNEMENT_PRIMAIRE_ET_SECONDAIRE"] = "R - Internats des \u00E9tablissements de l'enseignement primaire et secondaire";
|
|
216
|
+
ActivitesSecondaireEnum["R___JARDINS_DENFANT"] = "R - Jardins d'enfant";
|
|
217
|
+
ActivitesSecondaireEnum["R___LYCEE_PUBLIC"] = "R - Lycee public";
|
|
218
|
+
ActivitesSecondaireEnum["R___COLLEGE_PUBLIC"] = "R - Coll\u00E8ge public";
|
|
219
|
+
ActivitesSecondaireEnum["R___LYCEE_PRIVE"] = "R - Lycee priv\u00E9";
|
|
220
|
+
ActivitesSecondaireEnum["R___COLLEGE_PRIVE"] = "R - Coll\u00E8ge priv\u00E9";
|
|
221
|
+
ActivitesSecondaireEnum["R___COLE_ELEMENTAIRE"] = "R - \u00C9cole \u00E9l\u00E9mentaire";
|
|
222
|
+
ActivitesSecondaireEnum["REF___REFUGES_DE_MONTAGNE"] = "REF - Refuges de montagne";
|
|
223
|
+
ActivitesSecondaireEnum["S___BIBLIOTHEQUES"] = "S - Biblioth\u00E8ques";
|
|
224
|
+
ActivitesSecondaireEnum["S___CENTRES_DE_DOCUMENTATION_ET_DE_CONSULTATION_DARCHIVES"] = "S - Centres de documentation et de consultation d'archives";
|
|
225
|
+
ActivitesSecondaireEnum["SG___STRUCTURES_GONFLABLES"] = "SG - Structures gonflables";
|
|
226
|
+
ActivitesSecondaireEnum["T___ETABLISSEMENTS_A_VOCATION_COMMERCIALE_DESTINES_A_DES_EXPOSITIONS"] = "T - Etablissements \u00E0 vocation commerciale destin\u00E9s \u00E0 des expositions";
|
|
227
|
+
ActivitesSecondaireEnum["T___FOIRES_EXPOSITIONS"] = "T - Foires-expositions";
|
|
228
|
+
ActivitesSecondaireEnum["T___SALLES_DEXPOSITIONS_A_CARACTERE_PERMANENT_NAYANT_PAS_UNE_VOCATION_DE_FOIRE_OU_DE_SALON"] = "T - Salles d'expositions \u00E0 caract\u00E8re permanent n'ayant pas une vocation de foire ou de salon";
|
|
229
|
+
ActivitesSecondaireEnum["T___SALLES_DEXPOSITIONS_A_CARACTERE_PERMANENT_DE_VEHICULES_AUTOMOBILES_BATEAUX_MACHINES_ET_AUTRES_VOLUMINEUX_BIENS_DEQUIPEMENTS_ASSIMILABLES"] = "T - Salles d'expositions \u00E0 caract\u00E8re permanent de v\u00E9hicules automobiles, bateaux, machines et autres volumineux biens d'\u00E9quipements assimilables";
|
|
230
|
+
ActivitesSecondaireEnum["T___SALONS_A_CARACTERE_TEMPORAIRE"] = "T - Salons \u00E0 caract\u00E8re temporaire";
|
|
231
|
+
ActivitesSecondaireEnum["U___ETABLISSEMENTS_DE_CURE_THERMALE_OU_DE_THALASSOTHERAPIE"] = "U - Etablissements de cure thermale ou de thalassoth\u00E9rapie";
|
|
232
|
+
ActivitesSecondaireEnum["U___ETABLISSEMENTS_DE_SANTE_PUBLICS_OU_PRIVES_DISPENSANT_DES_SOINS_DE_COURTE_DUREE_EN_MEDECINE_CHIRURGIE_OBSTETRIQUE"] = "U - Etablissements de sant\u00E9 publics ou priv\u00E9s dispensant des soins de courte dur\u00E9e en m\u00E9decine, chirurgie, obst\u00E9trique";
|
|
233
|
+
ActivitesSecondaireEnum["U___ETABLISSEMENTS_DE_SANTE_PUBLICS_OU_PRIVES_DISPENSANT_DES_SOINS_DE_PSYCHIATRIE_DE_SUITE_OU_DE_READAPTATION_DES_SOINS_DE_LONGUE_DUREE_A_DES_PERSONNES_NAYANT_PAS_LEUR_AUTONOMIE_DE_VIE_DONT_LETAT_NECESSITE_UNE_SURVEILLANCE_MEDICALE_CONSTANTE"] = "U - Etablissements de sant\u00E9 publics ou priv\u00E9s dispensant des soins de psychiatrie, de suite ou de r\u00E9adaptation, des soins de longue dur\u00E9e, \u00E0 des personnes n'ayant pas leur autonomie de vie dont l'\u00E9tat n\u00E9cessite une surveillance m\u00E9dicale constante";
|
|
234
|
+
ActivitesSecondaireEnum["U___POUPONNIERES__ENFANTS_DE_MOINS_DE_3_ANS"] = "U - Pouponni\u00E8res (enfants de moins de 3 ans)";
|
|
235
|
+
ActivitesSecondaireEnum["V___EGLISES"] = "V - Eglises";
|
|
236
|
+
ActivitesSecondaireEnum["V___MOSQUEES"] = "V - Mosqu\u00E9es";
|
|
237
|
+
ActivitesSecondaireEnum["V___SYNAGOGUES"] = "V - Synagogues";
|
|
238
|
+
ActivitesSecondaireEnum["V___TEMPLES"] = "V - Temples";
|
|
239
|
+
ActivitesSecondaireEnum["W___ADMINISTRATIONS"] = "W - Administrations";
|
|
240
|
+
ActivitesSecondaireEnum["W___BANQUES"] = "W - Banques";
|
|
241
|
+
ActivitesSecondaireEnum["W___BUREAUX"] = "W - Bureaux";
|
|
242
|
+
ActivitesSecondaireEnum["X___MANEGES"] = "X - Man\u00E8ges";
|
|
243
|
+
ActivitesSecondaireEnum["X___PATINOIRES"] = "X - Patinoires";
|
|
244
|
+
ActivitesSecondaireEnum["X___PISCINES_COUVERTES_TRANSFORMABLES_ET_MIXTES"] = "X - Piscines couvertes, transformables et mixtes";
|
|
245
|
+
ActivitesSecondaireEnum["X___SALLES_DEDUCATION_PHYSIQUE_ET_SPORTIVE"] = "X - Salles d'\u00E9ducation physique et sportive";
|
|
246
|
+
ActivitesSecondaireEnum["X___SALLES_OMNISPORTS"] = "X - Salles omnisports";
|
|
247
|
+
ActivitesSecondaireEnum["X___SALLES_POLYVALENTES_A_DOMINANTE_SPORTIVE_DONT_LAIRE_DACTIVITE_EST_INFERIEURE_A_1200_M_ET_LA_HAUTEUR_SOUS_PLAFOND_SUPERIEURE_OU_EGALE_A_650_METRES"] = "X - Salles polyvalentes \u00E0 dominante sportive, dont l'aire d'activit\u00E9 est inf\u00E9rieure \u00E0 1200 m\u00B2 et la hauteur sous plafond sup\u00E9rieure ou \u00E9gale \u00E0 6,50 m\u00E8tres";
|
|
248
|
+
ActivitesSecondaireEnum["X___SALLES_SPORTIVES_SPECIALISEES"] = "X - Salles sportives sp\u00E9cialis\u00E9es";
|
|
249
|
+
ActivitesSecondaireEnum["Y___MUSEES"] = "Y - Mus\u00E9es";
|
|
250
|
+
ActivitesSecondaireEnum["Y___SALLES_DESTINEES_A_RECEVOIR_DES_EXPOSITIONS_A_VOCATION_CULTURELLE_SCIENTIFIQUE_TECHNIQUE_ARTISTIQUE_ETC__AYANT_UN_CARACTERE_TEMPORAIRE"] = "Y - Salles destin\u00E9es \u00E0 recevoir des expositions \u00E0 vocation culturelle, scientifique, technique, artistique, etc. ayant un caract\u00E8re temporaire";
|
|
251
|
+
})(ActivitesSecondaireEnum = exports.ActivitesSecondaireEnum || (exports.ActivitesSecondaireEnum = {}));
|
|
252
252
|
var CategorieEnum;
|
|
253
253
|
(function (CategorieEnum) {
|
|
254
254
|
CategorieEnum[CategorieEnum["NUMBER_1"] = 1] = "NUMBER_1";
|
|
@@ -323,6 +323,12 @@ var PlancherSfEnum;
|
|
|
323
323
|
PlancherSfEnum["_3H"] = "3h";
|
|
324
324
|
PlancherSfEnum["AUTRE"] = "Autre";
|
|
325
325
|
})(PlancherSfEnum = exports.PlancherSfEnum || (exports.PlancherSfEnum = {}));
|
|
326
|
+
var TypeCloisonnementEnum;
|
|
327
|
+
(function (TypeCloisonnementEnum) {
|
|
328
|
+
TypeCloisonnementEnum["TRADITIONNELS"] = "Traditionnels";
|
|
329
|
+
TypeCloisonnementEnum["SECTEURS"] = "Secteurs";
|
|
330
|
+
TypeCloisonnementEnum["COMPARTIMENTS"] = "Compartiments";
|
|
331
|
+
})(TypeCloisonnementEnum = exports.TypeCloisonnementEnum || (exports.TypeCloisonnementEnum = {}));
|
|
326
332
|
var PuissanceChaufferieEnum;
|
|
327
333
|
(function (PuissanceChaufferieEnum) {
|
|
328
334
|
PuissanceChaufferieEnum["_70K_W"] = "<=70kW";
|
|
@@ -372,24 +378,22 @@ var ServiceDeSecuriteIncendieEnum;
|
|
|
372
378
|
})(ServiceDeSecuriteIncendieEnum = exports.ServiceDeSecuriteIncendieEnum || (exports.ServiceDeSecuriteIncendieEnum = {}));
|
|
373
379
|
var TypeSsiEnum;
|
|
374
380
|
(function (TypeSsiEnum) {
|
|
375
|
-
TypeSsiEnum["A"] = "A";
|
|
376
|
-
TypeSsiEnum["A_OPTION_IGH"] = "A option IGH";
|
|
377
|
-
TypeSsiEnum["B"] = "B";
|
|
378
|
-
TypeSsiEnum["C"] = "C";
|
|
379
|
-
TypeSsiEnum["D"] = "D";
|
|
380
381
|
TypeSsiEnum["E"] = "E";
|
|
382
|
+
TypeSsiEnum["D"] = "D";
|
|
383
|
+
TypeSsiEnum["C"] = "C";
|
|
384
|
+
TypeSsiEnum["B"] = "B";
|
|
385
|
+
TypeSsiEnum["A"] = "A";
|
|
381
386
|
})(TypeSsiEnum = exports.TypeSsiEnum || (exports.TypeSsiEnum = {}));
|
|
382
387
|
var TypeAlarmeEnum;
|
|
383
388
|
(function (TypeAlarmeEnum) {
|
|
384
|
-
TypeAlarmeEnum["_1"] = "1";
|
|
385
|
-
TypeAlarmeEnum["_2_A"] = "2A";
|
|
386
|
-
TypeAlarmeEnum["_2_B"] = "2B";
|
|
387
|
-
TypeAlarmeEnum["_3"] = "3";
|
|
388
389
|
TypeAlarmeEnum["_4"] = "4";
|
|
390
|
+
TypeAlarmeEnum["_3"] = "3";
|
|
391
|
+
TypeAlarmeEnum["_2_B"] = "2B";
|
|
392
|
+
TypeAlarmeEnum["_2_A"] = "2A";
|
|
393
|
+
TypeAlarmeEnum["_1"] = "1";
|
|
389
394
|
})(TypeAlarmeEnum = exports.TypeAlarmeEnum || (exports.TypeAlarmeEnum = {}));
|
|
390
395
|
var AutreSystemeAlerteEnum;
|
|
391
396
|
(function (AutreSystemeAlerteEnum) {
|
|
392
397
|
AutreSystemeAlerteEnum["TELEPHONE_URBAIN_FIXE_OU_BOX_SECOURUE"] = "Telephone urbain fixe ou box secourue";
|
|
393
398
|
AutreSystemeAlerteEnum["GSM"] = "GSM";
|
|
394
|
-
AutreSystemeAlerteEnum["TELEPHONE_DIRECT_RELIE_AU_PCS"] = "T\u00E9l\u00E9phone direct reli\u00E9 au PCS";
|
|
395
399
|
})(AutreSystemeAlerteEnum = exports.AutreSystemeAlerteEnum || (exports.AutreSystemeAlerteEnum = {}));
|
package/package.json
CHANGED
|
@@ -119,8 +119,11 @@ export class DatesPassageCommissionAPI extends Core {
|
|
|
119
119
|
if (parsedData && parsedData.dossier.workflows_actifs) {
|
|
120
120
|
parsedData.dossier.workflows_actifs = new Set(parsedData.dossier.workflows_actifs);
|
|
121
121
|
}
|
|
122
|
-
if (parsedData && parsedData.dossier.erp.descriptif_technique.analyse_risque?.
|
|
123
|
-
parsedData.dossier.erp.descriptif_technique.analyse_risque.
|
|
122
|
+
if (parsedData && parsedData.dossier.erp.descriptif_technique.analyse_risque?.activites_secondaire) {
|
|
123
|
+
parsedData.dossier.erp.descriptif_technique.analyse_risque.activites_secondaire = new Set(parsedData.dossier.erp.descriptif_technique.analyse_risque.activites_secondaire);
|
|
124
|
+
}
|
|
125
|
+
if (parsedData && parsedData.dossier.erp.descriptif_technique.analyse_risque?.type_cloisonnement) {
|
|
126
|
+
parsedData.dossier.erp.descriptif_technique.analyse_risque.type_cloisonnement = new Set(parsedData.dossier.erp.descriptif_technique.analyse_risque.type_cloisonnement);
|
|
124
127
|
}
|
|
125
128
|
if (parsedData && parsedData.dossier.erp.descriptif_technique.analyse_risque?.type_de_chauffage) {
|
|
126
129
|
parsedData.dossier.erp.descriptif_technique.analyse_risque.type_de_chauffage = new Set(parsedData.dossier.erp.descriptif_technique.analyse_risque.type_de_chauffage);
|
package/src/api/DossiersAPI.ts
CHANGED
|
@@ -104,8 +104,11 @@ export class DossiersAPI extends Core {
|
|
|
104
104
|
if (parsedData && parsedData.workflows_actifs) {
|
|
105
105
|
parsedData.workflows_actifs = new Set(parsedData.workflows_actifs);
|
|
106
106
|
}
|
|
107
|
-
if (parsedData && parsedData.erp.descriptif_technique.analyse_risque?.
|
|
108
|
-
parsedData.erp.descriptif_technique.analyse_risque.
|
|
107
|
+
if (parsedData && parsedData.erp.descriptif_technique.analyse_risque?.activites_secondaire) {
|
|
108
|
+
parsedData.erp.descriptif_technique.analyse_risque.activites_secondaire = new Set(parsedData.erp.descriptif_technique.analyse_risque.activites_secondaire);
|
|
109
|
+
}
|
|
110
|
+
if (parsedData && parsedData.erp.descriptif_technique.analyse_risque?.type_cloisonnement) {
|
|
111
|
+
parsedData.erp.descriptif_technique.analyse_risque.type_cloisonnement = new Set(parsedData.erp.descriptif_technique.analyse_risque.type_cloisonnement);
|
|
109
112
|
}
|
|
110
113
|
if (parsedData && parsedData.erp.descriptif_technique.analyse_risque?.type_de_chauffage) {
|
|
111
114
|
parsedData.erp.descriptif_technique.analyse_risque.type_de_chauffage = new Set(parsedData.erp.descriptif_technique.analyse_risque.type_de_chauffage);
|
|
@@ -246,8 +249,11 @@ export class DossiersAPI extends Core {
|
|
|
246
249
|
transformResponse: [(data) => {
|
|
247
250
|
if (!data) return data;
|
|
248
251
|
const parsedData = JSON.parse(data);
|
|
249
|
-
if (parsedData && parsedData.analyse_risque?.
|
|
250
|
-
parsedData.analyse_risque.
|
|
252
|
+
if (parsedData && parsedData.analyse_risque?.activites_secondaire) {
|
|
253
|
+
parsedData.analyse_risque.activites_secondaire = new Set(parsedData.analyse_risque.activites_secondaire);
|
|
254
|
+
}
|
|
255
|
+
if (parsedData && parsedData.analyse_risque?.type_cloisonnement) {
|
|
256
|
+
parsedData.analyse_risque.type_cloisonnement = new Set(parsedData.analyse_risque.type_cloisonnement);
|
|
251
257
|
}
|
|
252
258
|
if (parsedData && parsedData.analyse_risque?.type_de_chauffage) {
|
|
253
259
|
parsedData.analyse_risque.type_de_chauffage = new Set(parsedData.analyse_risque.type_de_chauffage);
|
|
@@ -541,8 +547,11 @@ export class DossiersAPI extends Core {
|
|
|
541
547
|
if (parsedData && parsedData.workflows_actifs) {
|
|
542
548
|
parsedData.workflows_actifs = new Set(parsedData.workflows_actifs);
|
|
543
549
|
}
|
|
544
|
-
if (parsedData && parsedData.erp.descriptif_technique.analyse_risque?.
|
|
545
|
-
parsedData.erp.descriptif_technique.analyse_risque.
|
|
550
|
+
if (parsedData && parsedData.erp.descriptif_technique.analyse_risque?.activites_secondaire) {
|
|
551
|
+
parsedData.erp.descriptif_technique.analyse_risque.activites_secondaire = new Set(parsedData.erp.descriptif_technique.analyse_risque.activites_secondaire);
|
|
552
|
+
}
|
|
553
|
+
if (parsedData && parsedData.erp.descriptif_technique.analyse_risque?.type_cloisonnement) {
|
|
554
|
+
parsedData.erp.descriptif_technique.analyse_risque.type_cloisonnement = new Set(parsedData.erp.descriptif_technique.analyse_risque.type_cloisonnement);
|
|
546
555
|
}
|
|
547
556
|
if (parsedData && parsedData.erp.descriptif_technique.analyse_risque?.type_de_chauffage) {
|
|
548
557
|
parsedData.erp.descriptif_technique.analyse_risque.type_de_chauffage = new Set(parsedData.erp.descriptif_technique.analyse_risque.type_de_chauffage);
|
|
@@ -613,8 +622,11 @@ export class DossiersAPI extends Core {
|
|
|
613
622
|
transformResponse: [(data) => {
|
|
614
623
|
if (!data) return data;
|
|
615
624
|
const parsedData = JSON.parse(data);
|
|
616
|
-
if (parsedData && parsedData.analyse_risque?.
|
|
617
|
-
parsedData.analyse_risque.
|
|
625
|
+
if (parsedData && parsedData.analyse_risque?.activites_secondaire) {
|
|
626
|
+
parsedData.analyse_risque.activites_secondaire = new Set(parsedData.analyse_risque.activites_secondaire);
|
|
627
|
+
}
|
|
628
|
+
if (parsedData && parsedData.analyse_risque?.type_cloisonnement) {
|
|
629
|
+
parsedData.analyse_risque.type_cloisonnement = new Set(parsedData.analyse_risque.type_cloisonnement);
|
|
618
630
|
}
|
|
619
631
|
if (parsedData && parsedData.analyse_risque?.type_de_chauffage) {
|
|
620
632
|
parsedData.analyse_risque.type_de_chauffage = new Set(parsedData.analyse_risque.type_de_chauffage);
|
package/src/api/ERPAPI.ts
CHANGED
|
@@ -35,8 +35,11 @@ export class ERPAPI extends Core {
|
|
|
35
35
|
transformResponse: [(data) => {
|
|
36
36
|
if (!data) return data;
|
|
37
37
|
const parsedData = JSON.parse(data);
|
|
38
|
-
if (parsedData && parsedData.descriptif_technique.analyse_risque?.
|
|
39
|
-
parsedData.descriptif_technique.analyse_risque.
|
|
38
|
+
if (parsedData && parsedData.descriptif_technique.analyse_risque?.activites_secondaire) {
|
|
39
|
+
parsedData.descriptif_technique.analyse_risque.activites_secondaire = new Set(parsedData.descriptif_technique.analyse_risque.activites_secondaire);
|
|
40
|
+
}
|
|
41
|
+
if (parsedData && parsedData.descriptif_technique.analyse_risque?.type_cloisonnement) {
|
|
42
|
+
parsedData.descriptif_technique.analyse_risque.type_cloisonnement = new Set(parsedData.descriptif_technique.analyse_risque.type_cloisonnement);
|
|
40
43
|
}
|
|
41
44
|
if (parsedData && parsedData.descriptif_technique.analyse_risque?.type_de_chauffage) {
|
|
42
45
|
parsedData.descriptif_technique.analyse_risque.type_de_chauffage = new Set(parsedData.descriptif_technique.analyse_risque.type_de_chauffage);
|
|
@@ -374,8 +377,11 @@ export class ERPAPI extends Core {
|
|
|
374
377
|
if (parsedData && parsedData.workflows_actifs) {
|
|
375
378
|
parsedData.workflows_actifs = new Set(parsedData.workflows_actifs);
|
|
376
379
|
}
|
|
377
|
-
if (parsedData && parsedData.erp.descriptif_technique.analyse_risque?.
|
|
378
|
-
parsedData.erp.descriptif_technique.analyse_risque.
|
|
380
|
+
if (parsedData && parsedData.erp.descriptif_technique.analyse_risque?.activites_secondaire) {
|
|
381
|
+
parsedData.erp.descriptif_technique.analyse_risque.activites_secondaire = new Set(parsedData.erp.descriptif_technique.analyse_risque.activites_secondaire);
|
|
382
|
+
}
|
|
383
|
+
if (parsedData && parsedData.erp.descriptif_technique.analyse_risque?.type_cloisonnement) {
|
|
384
|
+
parsedData.erp.descriptif_technique.analyse_risque.type_cloisonnement = new Set(parsedData.erp.descriptif_technique.analyse_risque.type_cloisonnement);
|
|
379
385
|
}
|
|
380
386
|
if (parsedData && parsedData.erp.descriptif_technique.analyse_risque?.type_de_chauffage) {
|
|
381
387
|
parsedData.erp.descriptif_technique.analyse_risque.type_de_chauffage = new Set(parsedData.erp.descriptif_technique.analyse_risque.type_de_chauffage);
|
|
@@ -410,8 +416,11 @@ export class ERPAPI extends Core {
|
|
|
410
416
|
if (parsedData && parsedData.workflows_actifs) {
|
|
411
417
|
parsedData.workflows_actifs = new Set(parsedData.workflows_actifs);
|
|
412
418
|
}
|
|
413
|
-
if (parsedData && parsedData.erp.descriptif_technique.analyse_risque?.
|
|
414
|
-
parsedData.erp.descriptif_technique.analyse_risque.
|
|
419
|
+
if (parsedData && parsedData.erp.descriptif_technique.analyse_risque?.activites_secondaire) {
|
|
420
|
+
parsedData.erp.descriptif_technique.analyse_risque.activites_secondaire = new Set(parsedData.erp.descriptif_technique.analyse_risque.activites_secondaire);
|
|
421
|
+
}
|
|
422
|
+
if (parsedData && parsedData.erp.descriptif_technique.analyse_risque?.type_cloisonnement) {
|
|
423
|
+
parsedData.erp.descriptif_technique.analyse_risque.type_cloisonnement = new Set(parsedData.erp.descriptif_technique.analyse_risque.type_cloisonnement);
|
|
415
424
|
}
|
|
416
425
|
if (parsedData && parsedData.erp.descriptif_technique.analyse_risque?.type_de_chauffage) {
|
|
417
426
|
parsedData.erp.descriptif_technique.analyse_risque.type_de_chauffage = new Set(parsedData.erp.descriptif_technique.analyse_risque.type_de_chauffage);
|
|
@@ -436,8 +445,11 @@ export class ERPAPI extends Core {
|
|
|
436
445
|
transformResponse: [(data) => {
|
|
437
446
|
if (!data) return data;
|
|
438
447
|
const parsedData = JSON.parse(data);
|
|
439
|
-
if (parsedData && parsedData.descriptif_technique.analyse_risque?.
|
|
440
|
-
parsedData.descriptif_technique.analyse_risque.
|
|
448
|
+
if (parsedData && parsedData.descriptif_technique.analyse_risque?.activites_secondaire) {
|
|
449
|
+
parsedData.descriptif_technique.analyse_risque.activites_secondaire = new Set(parsedData.descriptif_technique.analyse_risque.activites_secondaire);
|
|
450
|
+
}
|
|
451
|
+
if (parsedData && parsedData.descriptif_technique.analyse_risque?.type_cloisonnement) {
|
|
452
|
+
parsedData.descriptif_technique.analyse_risque.type_cloisonnement = new Set(parsedData.descriptif_technique.analyse_risque.type_cloisonnement);
|
|
441
453
|
}
|
|
442
454
|
if (parsedData && parsedData.descriptif_technique.analyse_risque?.type_de_chauffage) {
|
|
443
455
|
parsedData.descriptif_technique.analyse_risque.type_de_chauffage = new Set(parsedData.descriptif_technique.analyse_risque.type_de_chauffage);
|
|
@@ -463,8 +475,11 @@ export class ERPAPI extends Core {
|
|
|
463
475
|
transformResponse: [(data) => {
|
|
464
476
|
if (!data) return data;
|
|
465
477
|
const parsedData = JSON.parse(data);
|
|
466
|
-
if (parsedData && parsedData.descriptif_technique.analyse_risque?.
|
|
467
|
-
parsedData.descriptif_technique.analyse_risque.
|
|
478
|
+
if (parsedData && parsedData.descriptif_technique.analyse_risque?.activites_secondaire) {
|
|
479
|
+
parsedData.descriptif_technique.analyse_risque.activites_secondaire = new Set(parsedData.descriptif_technique.analyse_risque.activites_secondaire);
|
|
480
|
+
}
|
|
481
|
+
if (parsedData && parsedData.descriptif_technique.analyse_risque?.type_cloisonnement) {
|
|
482
|
+
parsedData.descriptif_technique.analyse_risque.type_cloisonnement = new Set(parsedData.descriptif_technique.analyse_risque.type_cloisonnement);
|
|
468
483
|
}
|
|
469
484
|
if (parsedData && parsedData.descriptif_technique.analyse_risque?.type_de_chauffage) {
|
|
470
485
|
parsedData.descriptif_technique.analyse_risque.type_de_chauffage = new Set(parsedData.descriptif_technique.analyse_risque.type_de_chauffage);
|
|
@@ -56,8 +56,11 @@ export class NotificationsAPI extends Core {
|
|
|
56
56
|
if (parsedData && parsedData.subject.workflows_actifs) {
|
|
57
57
|
parsedData.subject.workflows_actifs = new Set(parsedData.subject.workflows_actifs);
|
|
58
58
|
}
|
|
59
|
-
if (parsedData && parsedData.subject.erp.descriptif_technique.analyse_risque?.
|
|
60
|
-
parsedData.subject.erp.descriptif_technique.analyse_risque.
|
|
59
|
+
if (parsedData && parsedData.subject.erp.descriptif_technique.analyse_risque?.activites_secondaire) {
|
|
60
|
+
parsedData.subject.erp.descriptif_technique.analyse_risque.activites_secondaire = new Set(parsedData.subject.erp.descriptif_technique.analyse_risque.activites_secondaire);
|
|
61
|
+
}
|
|
62
|
+
if (parsedData && parsedData.subject.erp.descriptif_technique.analyse_risque?.type_cloisonnement) {
|
|
63
|
+
parsedData.subject.erp.descriptif_technique.analyse_risque.type_cloisonnement = new Set(parsedData.subject.erp.descriptif_technique.analyse_risque.type_cloisonnement);
|
|
61
64
|
}
|
|
62
65
|
if (parsedData && parsedData.subject.erp.descriptif_technique.analyse_risque?.type_de_chauffage) {
|
|
63
66
|
parsedData.subject.erp.descriptif_technique.analyse_risque.type_de_chauffage = new Set(parsedData.subject.erp.descriptif_technique.analyse_risque.type_de_chauffage);
|
|
@@ -111,8 +114,11 @@ export class NotificationsAPI extends Core {
|
|
|
111
114
|
if (parsedData && parsedData.subject.workflows_actifs) {
|
|
112
115
|
parsedData.subject.workflows_actifs = new Set(parsedData.subject.workflows_actifs);
|
|
113
116
|
}
|
|
114
|
-
if (parsedData && parsedData.subject.erp.descriptif_technique.analyse_risque?.
|
|
115
|
-
parsedData.subject.erp.descriptif_technique.analyse_risque.
|
|
117
|
+
if (parsedData && parsedData.subject.erp.descriptif_technique.analyse_risque?.activites_secondaire) {
|
|
118
|
+
parsedData.subject.erp.descriptif_technique.analyse_risque.activites_secondaire = new Set(parsedData.subject.erp.descriptif_technique.analyse_risque.activites_secondaire);
|
|
119
|
+
}
|
|
120
|
+
if (parsedData && parsedData.subject.erp.descriptif_technique.analyse_risque?.type_cloisonnement) {
|
|
121
|
+
parsedData.subject.erp.descriptif_technique.analyse_risque.type_cloisonnement = new Set(parsedData.subject.erp.descriptif_technique.analyse_risque.type_cloisonnement);
|
|
116
122
|
}
|
|
117
123
|
if (parsedData && parsedData.subject.erp.descriptif_technique.analyse_risque?.type_de_chauffage) {
|
|
118
124
|
parsedData.subject.erp.descriptif_technique.analyse_risque.type_de_chauffage = new Set(parsedData.subject.erp.descriptif_technique.analyse_risque.type_de_chauffage);
|
|
@@ -148,8 +154,11 @@ export class NotificationsAPI extends Core {
|
|
|
148
154
|
if (parsedData && parsedData.subject.workflows_actifs) {
|
|
149
155
|
parsedData.subject.workflows_actifs = new Set(parsedData.subject.workflows_actifs);
|
|
150
156
|
}
|
|
151
|
-
if (parsedData && parsedData.subject.erp.descriptif_technique.analyse_risque?.
|
|
152
|
-
parsedData.subject.erp.descriptif_technique.analyse_risque.
|
|
157
|
+
if (parsedData && parsedData.subject.erp.descriptif_technique.analyse_risque?.activites_secondaire) {
|
|
158
|
+
parsedData.subject.erp.descriptif_technique.analyse_risque.activites_secondaire = new Set(parsedData.subject.erp.descriptif_technique.analyse_risque.activites_secondaire);
|
|
159
|
+
}
|
|
160
|
+
if (parsedData && parsedData.subject.erp.descriptif_technique.analyse_risque?.type_cloisonnement) {
|
|
161
|
+
parsedData.subject.erp.descriptif_technique.analyse_risque.type_cloisonnement = new Set(parsedData.subject.erp.descriptif_technique.analyse_risque.type_cloisonnement);
|
|
153
162
|
}
|
|
154
163
|
if (parsedData && parsedData.subject.erp.descriptif_technique.analyse_risque?.type_de_chauffage) {
|
|
155
164
|
parsedData.subject.erp.descriptif_technique.analyse_risque.type_de_chauffage = new Set(parsedData.subject.erp.descriptif_technique.analyse_risque.type_de_chauffage);
|
|
@@ -118,8 +118,11 @@ export class OrdresDuJourAPI extends Core {
|
|
|
118
118
|
if (parsedData && parsedData.dossier.workflows_actifs) {
|
|
119
119
|
parsedData.dossier.workflows_actifs = new Set(parsedData.dossier.workflows_actifs);
|
|
120
120
|
}
|
|
121
|
-
if (parsedData && parsedData.dossier.erp.descriptif_technique.analyse_risque?.
|
|
122
|
-
parsedData.dossier.erp.descriptif_technique.analyse_risque.
|
|
121
|
+
if (parsedData && parsedData.dossier.erp.descriptif_technique.analyse_risque?.activites_secondaire) {
|
|
122
|
+
parsedData.dossier.erp.descriptif_technique.analyse_risque.activites_secondaire = new Set(parsedData.dossier.erp.descriptif_technique.analyse_risque.activites_secondaire);
|
|
123
|
+
}
|
|
124
|
+
if (parsedData && parsedData.dossier.erp.descriptif_technique.analyse_risque?.type_cloisonnement) {
|
|
125
|
+
parsedData.dossier.erp.descriptif_technique.analyse_risque.type_cloisonnement = new Set(parsedData.dossier.erp.descriptif_technique.analyse_risque.type_cloisonnement);
|
|
123
126
|
}
|
|
124
127
|
if (parsedData && parsedData.dossier.erp.descriptif_technique.analyse_risque?.type_de_chauffage) {
|
|
125
128
|
parsedData.dossier.erp.descriptif_technique.analyse_risque.type_de_chauffage = new Set(parsedData.dossier.erp.descriptif_technique.analyse_risque.type_de_chauffage);
|
package/src/api/PEIAPI.ts
CHANGED
|
@@ -294,8 +294,11 @@ export class PEIAPI extends Core {
|
|
|
294
294
|
if (parsedData && parsedData.workflows_actifs) {
|
|
295
295
|
parsedData.workflows_actifs = new Set(parsedData.workflows_actifs);
|
|
296
296
|
}
|
|
297
|
-
if (parsedData && parsedData.erp.descriptif_technique.analyse_risque?.
|
|
298
|
-
parsedData.erp.descriptif_technique.analyse_risque.
|
|
297
|
+
if (parsedData && parsedData.erp.descriptif_technique.analyse_risque?.activites_secondaire) {
|
|
298
|
+
parsedData.erp.descriptif_technique.analyse_risque.activites_secondaire = new Set(parsedData.erp.descriptif_technique.analyse_risque.activites_secondaire);
|
|
299
|
+
}
|
|
300
|
+
if (parsedData && parsedData.erp.descriptif_technique.analyse_risque?.type_cloisonnement) {
|
|
301
|
+
parsedData.erp.descriptif_technique.analyse_risque.type_cloisonnement = new Set(parsedData.erp.descriptif_technique.analyse_risque.type_cloisonnement);
|
|
299
302
|
}
|
|
300
303
|
if (parsedData && parsedData.erp.descriptif_technique.analyse_risque?.type_de_chauffage) {
|
|
301
304
|
parsedData.erp.descriptif_technique.analyse_risque.type_de_chauffage = new Set(parsedData.erp.descriptif_technique.analyse_risque.type_de_chauffage);
|
package/src/model/Clicdvcrem.ts
CHANGED
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
// File generated from our OpenAPI spec
|
|
2
|
-
import { Cloisonnement } from './Cloisonnement';
|
|
3
2
|
import { Degagement } from './Degagement';
|
|
4
3
|
import { EffectifsNiveau } from './EffectifsNiveau';
|
|
5
4
|
import { Local } from './Local';
|
|
6
5
|
|
|
7
6
|
export type Clicdvcrem = {
|
|
8
7
|
'activite_principale': ActivitePrincipaleEnum | null;
|
|
9
|
-
'
|
|
8
|
+
'activites_secondaire': Set<ActivitesSecondaireEnum> | null;
|
|
10
9
|
'categorie': CategorieEnum | null;
|
|
11
10
|
'groupement_etablissement': GroupementEtablissementEnum | null;
|
|
12
11
|
'tableau_des_effectifs': Array<EffectifsNiveau> | null;
|
|
@@ -34,14 +33,14 @@ export type Clicdvcrem = {
|
|
|
34
33
|
'desserte_informations_complementaires': string | null;
|
|
35
34
|
'presence_erp_ou_tiers_contigus': boolean | null;
|
|
36
35
|
'isolement_contigus_realise_degre_cf': IsolementContigusRealiseDegreCfEnum | null;
|
|
37
|
-
'
|
|
36
|
+
'isolement_contigus_realise_degre_cf_autre_precision': string | null;
|
|
38
37
|
'isolement_contigus_informations_complementaires': string | null;
|
|
39
38
|
'air_libre': AirLibreEnum | null;
|
|
40
39
|
'vis_a_vis': VisAVisEnum | null;
|
|
41
40
|
'isolement_vis_a_vis_informations_complementaires': string | null;
|
|
42
41
|
'presence_erp_ou_tiers_superpose': boolean | null;
|
|
43
42
|
'isolement_superpose_realise_degre_cf': IsolementSuperposeRealiseDegreCfEnum | null;
|
|
44
|
-
'
|
|
43
|
+
'isolement_superpose_realise_degre_cf_autre_precision': string | null;
|
|
45
44
|
'isolement_superpose_informations_complementaires': string | null;
|
|
46
45
|
'structure_sf': StructureSfEnum | null;
|
|
47
46
|
'plancher_sf': PlancherSfEnum | null;
|
|
@@ -50,15 +49,15 @@ export type Clicdvcrem = {
|
|
|
50
49
|
'construction_structures_description': string | null;
|
|
51
50
|
'construction_couverture_description': string | null;
|
|
52
51
|
'construction_facades_description': string | null;
|
|
53
|
-
'
|
|
52
|
+
'type_cloisonnement': Set<TypeCloisonnementEnum> | null;
|
|
54
53
|
'construction_distribution_interieure_informations_complementaires': string | null;
|
|
55
54
|
'locaux': Array<Local> | null;
|
|
56
55
|
'construction_conduits_et_gaines_description': string | null;
|
|
57
56
|
'construction_amenagements_interieurs_description': string | null;
|
|
58
|
-
'
|
|
57
|
+
'degagement_normaux': Array<Degagement> | null;
|
|
59
58
|
'degagements_accessoires': Array<Degagement> | null;
|
|
60
|
-
'
|
|
61
|
-
'
|
|
59
|
+
'degagement_exigibles_informations_complementaires': string | null;
|
|
60
|
+
'degagement_supplementaires': Array<Degagement> | null;
|
|
62
61
|
'degagement_escaliers_description': string | null;
|
|
63
62
|
'degagement_ascenseurs_escaliers_mecaniques_trottoirs_roulants_description': string | null;
|
|
64
63
|
'presence_eas_ou_equivalents': boolean | null;
|
|
@@ -237,7 +236,7 @@ export enum ActivitePrincipaleEnum {
|
|
|
237
236
|
Y___SALLES_DESTINEES_A_RECEVOIR_DES_EXPOSITIONS_A_VOCATION_CULTURELLE_SCIENTIFIQUE_TECHNIQUE_ARTISTIQUE_ETC__AYANT_UN_CARACTERE_TEMPORAIRE = 'Y - Salles destinées à recevoir des expositions à vocation culturelle, scientifique, technique, artistique, etc. ayant un caractère temporaire'
|
|
238
237
|
}
|
|
239
238
|
|
|
240
|
-
export enum
|
|
239
|
+
export enum ActivitesSecondaireEnum {
|
|
241
240
|
CTS___CHAPITEAUX = 'CTS - Châpiteaux',
|
|
242
241
|
CTS___STRUCTURES = 'CTS - Structures',
|
|
243
242
|
CTS___TENTES = 'CTS - Tentes',
|
|
@@ -435,6 +434,12 @@ export enum PlancherSfEnum {
|
|
|
435
434
|
AUTRE = 'Autre'
|
|
436
435
|
}
|
|
437
436
|
|
|
437
|
+
export enum TypeCloisonnementEnum {
|
|
438
|
+
TRADITIONNELS = 'Traditionnels',
|
|
439
|
+
SECTEURS = 'Secteurs',
|
|
440
|
+
COMPARTIMENTS = 'Compartiments'
|
|
441
|
+
}
|
|
442
|
+
|
|
438
443
|
export enum PuissanceChaufferieEnum {
|
|
439
444
|
_70K_W = '<=70kW',
|
|
440
445
|
_70K_W2 = '>70kW',
|
|
@@ -483,24 +488,22 @@ export enum ServiceDeSecuriteIncendieEnum {
|
|
|
483
488
|
}
|
|
484
489
|
|
|
485
490
|
export enum TypeSsiEnum {
|
|
486
|
-
|
|
487
|
-
A_OPTION_IGH = 'A option IGH',
|
|
488
|
-
B = 'B',
|
|
489
|
-
C = 'C',
|
|
491
|
+
E = 'E',
|
|
490
492
|
D = 'D',
|
|
491
|
-
|
|
493
|
+
C = 'C',
|
|
494
|
+
B = 'B',
|
|
495
|
+
A = 'A'
|
|
492
496
|
}
|
|
493
497
|
|
|
494
498
|
export enum TypeAlarmeEnum {
|
|
495
|
-
|
|
496
|
-
_2_A = '2A',
|
|
497
|
-
_2_B = '2B',
|
|
499
|
+
_4 = '4',
|
|
498
500
|
_3 = '3',
|
|
499
|
-
|
|
501
|
+
_2_B = '2B',
|
|
502
|
+
_2_A = '2A',
|
|
503
|
+
_1 = '1'
|
|
500
504
|
}
|
|
501
505
|
|
|
502
506
|
export enum AutreSystemeAlerteEnum {
|
|
503
507
|
TELEPHONE_URBAIN_FIXE_OU_BOX_SECOURUE = 'Telephone urbain fixe ou box secourue',
|
|
504
|
-
GSM = 'GSM'
|
|
505
|
-
TELEPHONE_DIRECT_RELIE_AU_PCS = 'Téléphone direct relié au PCS'
|
|
508
|
+
GSM = 'GSM'
|
|
506
509
|
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
// File generated from our OpenAPI spec
|
|
3
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
-
exports.TypeEnum = void 0;
|
|
5
|
-
var TypeEnum;
|
|
6
|
-
(function (TypeEnum) {
|
|
7
|
-
TypeEnum["TRADITIONNELS"] = "Traditionnels";
|
|
8
|
-
TypeEnum["SECTEURS"] = "Secteurs";
|
|
9
|
-
TypeEnum["COMPARTIMENTS"] = "Compartiments";
|
|
10
|
-
})(TypeEnum = exports.TypeEnum || (exports.TypeEnum = {}));
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
// File generated from our OpenAPI spec
|
|
2
|
-
|
|
3
|
-
export type Cloisonnement = {
|
|
4
|
-
'type': TypeEnum | null;
|
|
5
|
-
'localisation': string | null;
|
|
6
|
-
'observations': string | null;
|
|
7
|
-
};
|
|
8
|
-
|
|
9
|
-
export enum TypeEnum {
|
|
10
|
-
TRADITIONNELS = 'Traditionnels',
|
|
11
|
-
SECTEURS = 'Secteurs',
|
|
12
|
-
COMPARTIMENTS = 'Compartiments'
|
|
13
|
-
}
|