@tricoteuses/assemblee 1.0.0 → 1.0.1

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/README.md CHANGED
@@ -163,6 +163,8 @@ npx quicktype --acronym-style=camel -o src/raw_types/dossiers_legislatifs.ts ../
163
163
 
164
164
  Edit `src/raw_types/dossiers_legislatifs.ts` to:
165
165
 
166
+ - Replace `r("FamCode")` with `""`.
167
+ - Remove 2 definitions of `FamCode` and replace it with `string` elsewhere.
166
168
  - Replace regular expression `r\(".+CodeActe"\)` with `r("CodeActe")`.
167
169
  - Remove definitions of regular expression `[^ ]+CodeActe;` and replace it with `CodeActe;`.
168
170
  - Add `import { CodeActe } from "../shared_types/codes_actes"` on top of file.
@@ -410,51 +410,9 @@ export interface Rapporteurs {
410
410
  rapporteur: Rapporteur[] | Rapporteur;
411
411
  }
412
412
  export interface TypeDeclaration {
413
- fam_code: FamCode;
413
+ fam_code: string;
414
414
  libelle?: string;
415
415
  }
416
- export declare enum FamCode {
417
- Art493 = "Art.49.3",
418
- Ettd01 = "ETTD01",
419
- FamCodeTcd01 = "TCD01,",
420
- FamCodeTcd02 = "TCD02,",
421
- FamCodeTcd04 = "TCD04",
422
- Tccmp01 = "TCCMP01",
423
- Tccmp02 = "TCCMP02",
424
- Tcd01 = "TCD01",
425
- Tcd02 = "TCD02",
426
- Tcd03 = "TCD03",
427
- Tcd04 = "TCD04,",
428
- The02 = "02",
429
- Tmp02 = "TMP02",
430
- Tmp03 = "TMP03",
431
- Tmp05 = "TMP05",
432
- Tmp06 = "TMP06",
433
- Tmrc01 = "TMRC01",
434
- Tsccont01 = "TSCCONT01",
435
- Tsccont02 = "TSCCONT02",
436
- Tsccont03 = "TSCCONT03",
437
- Tsccont04 = "TSCCONT04",
438
- Tsccont05 = "TSCCONT05",
439
- Tsccont06 = "TSCCONT06",
440
- Tsccont07 = "TSCCONT07",
441
- TsortFnull = "TSORTFnull",
442
- Tsortf01 = "TSORTF01",
443
- Tsortf02 = "TSORTF02",
444
- Tsortf03 = "TSORTF03",
445
- Tsortf04 = "TSORTF04",
446
- Tsortf05 = "TSORTF05",
447
- Tsortf06 = "TSORTF06",
448
- Tsortf07 = "TSORTF07",
449
- Tsortf14 = "TSORTF14",
450
- Tsortf18 = "TSORTF18",
451
- Tsortf19 = "TSORTF19",
452
- Tsortf20 = "TSORTF20",
453
- Tsortf21 = "TSORTF21",
454
- Tsortf23 = "TSORTF23",
455
- Tsortmot01 = "TSORTMOT01",
456
- Tsortmot02 = "TSORTMOT02"
457
- }
458
416
  export interface Rapporteurs {
459
417
  rapporteur: Rapporteur[] | Rapporteur;
460
418
  }