@tricoteuses/assemblee 3.0.18 → 3.1.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 +2 -2
- package/lib/{amendements-Bab1iUCY.js → amendements-Blw6Aa6-.js} +3 -3
- package/lib/amendements-DiMsxlUL.js +178 -0
- package/lib/cleaners/actes_legislatifs.d.ts +2 -2
- package/lib/cleaners/acteurs.d.ts +7 -2
- package/lib/cleaners/amendements.d.ts +2 -2
- package/lib/cleaners/documents.d.ts +1 -1
- package/lib/cleaners/dossiers_legislatifs.d.ts +1 -1
- package/lib/cleaners/organes.d.ts +1 -1
- package/lib/cleaners/reunions.d.ts +1 -1
- package/lib/cleaners/scrutins.d.ts +10 -2
- package/lib/cleaners.js +576 -485
- package/lib/datasets.d.ts +2 -6
- package/lib/git.js +54 -51
- package/lib/index.js +263 -257
- package/lib/inserters.d.ts +22 -2
- package/lib/loaders.js +495 -544
- package/lib/logger.d.ts +1 -1
- package/lib/parsers.js +5 -5
- package/lib/{questions-BiakXZ6q.js → questions-XokaUGcy.js} +4 -1
- package/lib/registries.d.ts +4 -4
- package/lib/schemas/clean/acteurs_et_organes.d.ts +37 -37
- package/lib/schemas/clean/amendements.d.ts +38 -25
- package/lib/schemas/clean/dossiers_legislatifs.d.ts +16 -16
- package/lib/schemas/clean/scrutins.d.ts +2 -2
- package/lib/schemas/enriched/acteurs_et_organes.d.ts +2 -2
- package/lib/schemas/enriched/amendements.d.ts +135 -15
- package/lib/schemas/enriched/dossiers_legislatifs.d.ts +12 -12
- package/lib/schemas/enriched/scrutins.d.ts +2 -2
- package/lib/schemas/raw/acteurs_et_organes.d.ts +99 -99
- package/lib/schemas/raw/agendas.d.ts +11 -11
- package/lib/schemas/raw/amendements.d.ts +49 -37
- package/lib/schemas/raw/dossiers_legislatifs.d.ts +146 -63
- package/lib/schemas/raw/questions.d.ts +44 -44
- package/lib/schemas/raw/scrutins.d.ts +4 -4
- package/lib/scripts/retrieve_documents.d.ts +5 -1
- package/lib/scripts/retrieve_open_data.d.ts +4 -0
- package/lib/scripts/shared/cli_helpers.d.ts +8 -0
- package/package.json +26 -26
- package/lib/amendements-BKGwufEi.js +0 -170
|
@@ -663,7 +663,7 @@ export declare const PersonneAuditionneeElementRawSchema: z.ZodObject<{
|
|
|
663
663
|
alpha: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodOptional<z.ZodString>>;
|
|
664
664
|
trigramme: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
665
665
|
}, z.core.$strip>;
|
|
666
|
-
dateNais: z.ZodNullable<z.ZodPipe<z.ZodTransform<
|
|
666
|
+
dateNais: z.ZodNullable<z.ZodPipe<z.ZodTransform<string | Date | undefined, unknown>, z.ZodOptional<z.ZodDate>>>;
|
|
667
667
|
}, z.core.$strip>;
|
|
668
668
|
export type PersonneAuditionneeElementRaw = z.infer<typeof PersonneAuditionneeElementRawSchema>;
|
|
669
669
|
/**
|
|
@@ -688,7 +688,7 @@ export declare const FluffyPersonnesAuditionneeesRawSchema: z.ZodObject<{
|
|
|
688
688
|
alpha: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodOptional<z.ZodString>>;
|
|
689
689
|
trigramme: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
690
690
|
}, z.core.$strip>;
|
|
691
|
-
dateNais: z.ZodNullable<z.ZodPipe<z.ZodTransform<
|
|
691
|
+
dateNais: z.ZodNullable<z.ZodPipe<z.ZodTransform<string | Date | undefined, unknown>, z.ZodOptional<z.ZodDate>>>;
|
|
692
692
|
}, z.core.$strip>>>;
|
|
693
693
|
}, z.core.$strip>;
|
|
694
694
|
export type FluffyPersonnesAuditionneeesRaw = z.infer<typeof FluffyPersonnesAuditionneeesRawSchema>;
|
|
@@ -744,7 +744,7 @@ export declare const FluffyParticipantsRawSchema: z.ZodObject<{
|
|
|
744
744
|
alpha: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodOptional<z.ZodString>>;
|
|
745
745
|
trigramme: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
746
746
|
}, z.core.$strip>;
|
|
747
|
-
dateNais: z.ZodNullable<z.ZodPipe<z.ZodTransform<
|
|
747
|
+
dateNais: z.ZodNullable<z.ZodPipe<z.ZodTransform<string | Date | undefined, unknown>, z.ZodOptional<z.ZodDate>>>;
|
|
748
748
|
}, z.core.$strip>>>;
|
|
749
749
|
}, z.core.$strip>, z.ZodNull]>;
|
|
750
750
|
}, z.core.$strip>;
|
|
@@ -776,7 +776,7 @@ export declare const ReunionReunionRawSchema: z.ZodObject<{
|
|
|
776
776
|
seance_type: "seance_type";
|
|
777
777
|
}>;
|
|
778
778
|
uid: z.ZodString;
|
|
779
|
-
timeStampDebut: z.ZodPipe<z.ZodPipe<z.ZodTransform<
|
|
779
|
+
timeStampDebut: z.ZodPipe<z.ZodPipe<z.ZodTransform<string | Date | undefined, unknown>, z.ZodOptional<z.ZodDate>> & z.ZodType<Date, unknown, z.core.$ZodTypeInternals<Date, unknown>>, z.ZodTransform<Date, Date>>;
|
|
780
780
|
timeStampFin: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodOptional<z.ZodString>>;
|
|
781
781
|
lieu: z.ZodOptional<z.ZodObject<{
|
|
782
782
|
code: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -969,7 +969,7 @@ export declare const ReunionRawSchema: z.ZodObject<{
|
|
|
969
969
|
seance_type: "seance_type";
|
|
970
970
|
}>;
|
|
971
971
|
uid: z.ZodString;
|
|
972
|
-
timeStampDebut: z.ZodPipe<z.ZodPipe<z.ZodTransform<
|
|
972
|
+
timeStampDebut: z.ZodPipe<z.ZodPipe<z.ZodTransform<string | Date | undefined, unknown>, z.ZodOptional<z.ZodDate>> & z.ZodType<Date, unknown, z.core.$ZodTypeInternals<Date, unknown>>, z.ZodTransform<Date, Date>>;
|
|
973
973
|
timeStampFin: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodOptional<z.ZodString>>;
|
|
974
974
|
lieu: z.ZodOptional<z.ZodObject<{
|
|
975
975
|
code: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -1155,7 +1155,7 @@ export type ReunionRaw = z.infer<typeof ReunionRawSchema>;
|
|
|
1155
1155
|
*/
|
|
1156
1156
|
export declare const ReunionElementRawSchema: z.ZodObject<{
|
|
1157
1157
|
uid: z.ZodString;
|
|
1158
|
-
timeStampDebut: z.ZodPipe<z.ZodPipe<z.ZodTransform<
|
|
1158
|
+
timeStampDebut: z.ZodPipe<z.ZodPipe<z.ZodTransform<string | Date | undefined, unknown>, z.ZodOptional<z.ZodDate>> & z.ZodType<Date, unknown, z.core.$ZodTypeInternals<Date, unknown>>, z.ZodTransform<Date, Date>>;
|
|
1159
1159
|
timeStampFin: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodOptional<z.ZodString>>;
|
|
1160
1160
|
lieu: z.ZodObject<{
|
|
1161
1161
|
code: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -1226,7 +1226,7 @@ export declare const ReunionElementRawSchema: z.ZodObject<{
|
|
|
1226
1226
|
alpha: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodOptional<z.ZodString>>;
|
|
1227
1227
|
trigramme: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1228
1228
|
}, z.core.$strip>;
|
|
1229
|
-
dateNais: z.ZodNullable<z.ZodPipe<z.ZodTransform<
|
|
1229
|
+
dateNais: z.ZodNullable<z.ZodPipe<z.ZodTransform<string | Date | undefined, unknown>, z.ZodOptional<z.ZodDate>>>;
|
|
1230
1230
|
}, z.core.$strip>>>;
|
|
1231
1231
|
}, z.core.$strip>, z.ZodNull]>;
|
|
1232
1232
|
}, z.core.$strip>>>;
|
|
@@ -1337,7 +1337,7 @@ export type ReunionElementRaw = z.infer<typeof ReunionElementRawSchema>;
|
|
|
1337
1337
|
export declare const ReunionsRawSchema: z.ZodObject<{
|
|
1338
1338
|
reunion: z.ZodArray<z.ZodObject<{
|
|
1339
1339
|
uid: z.ZodString;
|
|
1340
|
-
timeStampDebut: z.ZodPipe<z.ZodPipe<z.ZodTransform<
|
|
1340
|
+
timeStampDebut: z.ZodPipe<z.ZodPipe<z.ZodTransform<string | Date | undefined, unknown>, z.ZodOptional<z.ZodDate>> & z.ZodType<Date, unknown, z.core.$ZodTypeInternals<Date, unknown>>, z.ZodTransform<Date, Date>>;
|
|
1341
1341
|
timeStampFin: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodOptional<z.ZodString>>;
|
|
1342
1342
|
lieu: z.ZodObject<{
|
|
1343
1343
|
code: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -1408,7 +1408,7 @@ export declare const ReunionsRawSchema: z.ZodObject<{
|
|
|
1408
1408
|
alpha: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodOptional<z.ZodString>>;
|
|
1409
1409
|
trigramme: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1410
1410
|
}, z.core.$strip>;
|
|
1411
|
-
dateNais: z.ZodNullable<z.ZodPipe<z.ZodTransform<
|
|
1411
|
+
dateNais: z.ZodNullable<z.ZodPipe<z.ZodTransform<string | Date | undefined, unknown>, z.ZodOptional<z.ZodDate>>>;
|
|
1412
1412
|
}, z.core.$strip>>>;
|
|
1413
1413
|
}, z.core.$strip>, z.ZodNull]>;
|
|
1414
1414
|
}, z.core.$strip>>>;
|
|
@@ -1521,7 +1521,7 @@ export declare const AgendasRawSchema: z.ZodObject<{
|
|
|
1521
1521
|
reunions: z.ZodObject<{
|
|
1522
1522
|
reunion: z.ZodArray<z.ZodObject<{
|
|
1523
1523
|
uid: z.ZodString;
|
|
1524
|
-
timeStampDebut: z.ZodPipe<z.ZodPipe<z.ZodTransform<
|
|
1524
|
+
timeStampDebut: z.ZodPipe<z.ZodPipe<z.ZodTransform<string | Date | undefined, unknown>, z.ZodOptional<z.ZodDate>> & z.ZodType<Date, unknown, z.core.$ZodTypeInternals<Date, unknown>>, z.ZodTransform<Date, Date>>;
|
|
1525
1525
|
timeStampFin: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodOptional<z.ZodString>>;
|
|
1526
1526
|
lieu: z.ZodObject<{
|
|
1527
1527
|
code: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -1592,7 +1592,7 @@ export declare const AgendasRawSchema: z.ZodObject<{
|
|
|
1592
1592
|
alpha: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodOptional<z.ZodString>>;
|
|
1593
1593
|
trigramme: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1594
1594
|
}, z.core.$strip>;
|
|
1595
|
-
dateNais: z.ZodNullable<z.ZodPipe<z.ZodTransform<
|
|
1595
|
+
dateNais: z.ZodNullable<z.ZodPipe<z.ZodTransform<string | Date | undefined, unknown>, z.ZodOptional<z.ZodDate>>>;
|
|
1596
1596
|
}, z.core.$strip>>>;
|
|
1597
1597
|
}, z.core.$strip>, z.ZodNull]>;
|
|
1598
1598
|
}, z.core.$strip>>>;
|
|
@@ -502,10 +502,21 @@ export declare const DispositifAmdtCreditPLFRawSchema: z.ZodObject<{
|
|
|
502
502
|
cpEgalAe: z.ZodString;
|
|
503
503
|
}, z.core.$strip>;
|
|
504
504
|
export type DispositifAmdtCreditPLFRaw = z.infer<typeof DispositifAmdtCreditPLFRawSchema>;
|
|
505
|
+
type LigneCreditElementRawShape = {
|
|
506
|
+
libelle: string;
|
|
507
|
+
programmeRef?: string;
|
|
508
|
+
autorisationEngagementSupplementaire: string;
|
|
509
|
+
creditPaiementSupplementaire: string;
|
|
510
|
+
autorisationEngagementAnnule: string;
|
|
511
|
+
creditPaiementAnnule: string;
|
|
512
|
+
action: Action;
|
|
513
|
+
lignesCredits?: LigneCreditLignesCreditsRaw;
|
|
514
|
+
id?: string;
|
|
515
|
+
};
|
|
505
516
|
/**
|
|
506
517
|
* Ligne crédit (PLFR - forward declaration)
|
|
507
518
|
*/
|
|
508
|
-
export declare const LigneCreditElementRawSchema: z.ZodType<
|
|
519
|
+
export declare const LigneCreditElementRawSchema: z.ZodType<LigneCreditElementRawShape>;
|
|
509
520
|
export type LigneCreditElementRaw = z.infer<typeof LigneCreditElementRawSchema>;
|
|
510
521
|
/**
|
|
511
522
|
* Lignes crédits (PLFR - recursive)
|
|
@@ -513,7 +524,7 @@ export type LigneCreditElementRaw = z.infer<typeof LigneCreditElementRawSchema>;
|
|
|
513
524
|
export declare const LigneCreditLignesCreditsRawSchema: z.ZodObject<{
|
|
514
525
|
"@xmlns:xsi": z.ZodOptional<z.ZodString>;
|
|
515
526
|
"@xsi:nil": z.ZodOptional<z.ZodString>;
|
|
516
|
-
ligneCredit: z.ZodPipe<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown[], unknown>, z.ZodArray<z.ZodType<
|
|
527
|
+
ligneCredit: z.ZodPipe<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown[], unknown>, z.ZodArray<z.ZodType<LigneCreditElementRawShape, unknown, z.core.$ZodTypeInternals<LigneCreditElementRawShape, unknown>>>>, z.ZodType<LigneCreditElementRawShape, unknown, z.core.$ZodTypeInternals<LigneCreditElementRawShape, unknown>>]>>, z.ZodTransform<LigneCreditElementRawShape[] | undefined, LigneCreditElementRawShape | LigneCreditElementRawShape[] | undefined>>;
|
|
517
528
|
}, z.core.$strip>;
|
|
518
529
|
export type LigneCreditLignesCreditsRaw = z.infer<typeof LigneCreditLignesCreditsRawSchema>;
|
|
519
530
|
/**
|
|
@@ -529,7 +540,7 @@ export type TotalRaw = z.infer<typeof TotalRawSchema>;
|
|
|
529
540
|
* Liste programmes (PLFR)
|
|
530
541
|
*/
|
|
531
542
|
export declare const DispositifAmdtCreditPLFRListeProgrammesRawSchema: z.ZodObject<{
|
|
532
|
-
programme: z.ZodPipe<z.ZodTransform<unknown[], unknown>, z.ZodArray<z.ZodType<
|
|
543
|
+
programme: z.ZodPipe<z.ZodTransform<unknown[], unknown>, z.ZodArray<z.ZodType<LigneCreditElementRawShape, unknown, z.core.$ZodTypeInternals<LigneCreditElementRawShape, unknown>>>>;
|
|
533
544
|
}, z.core.$strip>;
|
|
534
545
|
export type DispositifAmdtCreditPLFRListeProgrammesRaw = z.infer<typeof DispositifAmdtCreditPLFRListeProgrammesRawSchema>;
|
|
535
546
|
/**
|
|
@@ -537,7 +548,7 @@ export type DispositifAmdtCreditPLFRListeProgrammesRaw = z.infer<typeof Disposit
|
|
|
537
548
|
*/
|
|
538
549
|
export declare const DispositifAmdtCreditPLFRRawSchema: z.ZodObject<{
|
|
539
550
|
listeProgrammes: z.ZodOptional<z.ZodObject<{
|
|
540
|
-
programme: z.ZodPipe<z.ZodTransform<unknown[], unknown>, z.ZodArray<z.ZodType<
|
|
551
|
+
programme: z.ZodPipe<z.ZodTransform<unknown[], unknown>, z.ZodArray<z.ZodType<LigneCreditElementRawShape, unknown, z.core.$ZodTypeInternals<LigneCreditElementRawShape, unknown>>>>;
|
|
541
552
|
}, z.core.$strip>>;
|
|
542
553
|
totalAE: z.ZodOptional<z.ZodObject<{
|
|
543
554
|
supplementaire: z.ZodString;
|
|
@@ -622,7 +633,7 @@ export declare const AvantAppelRawSchema: z.ZodObject<{
|
|
|
622
633
|
}, z.core.$strip>>;
|
|
623
634
|
dispositifAmdtCreditPLFR: z.ZodOptional<z.ZodObject<{
|
|
624
635
|
listeProgrammes: z.ZodOptional<z.ZodObject<{
|
|
625
|
-
programme: z.ZodPipe<z.ZodTransform<unknown[], unknown>, z.ZodArray<z.ZodType<
|
|
636
|
+
programme: z.ZodPipe<z.ZodTransform<unknown[], unknown>, z.ZodArray<z.ZodType<LigneCreditElementRawShape, unknown, z.core.$ZodTypeInternals<LigneCreditElementRawShape, unknown>>>>;
|
|
626
637
|
}, z.core.$strip>>;
|
|
627
638
|
totalAE: z.ZodOptional<z.ZodObject<{
|
|
628
639
|
supplementaire: z.ZodString;
|
|
@@ -710,7 +721,7 @@ export declare const ContenuAuteurRawSchema: z.ZodObject<{
|
|
|
710
721
|
}, z.core.$strip>>;
|
|
711
722
|
dispositifAmdtCreditPLFR: z.ZodOptional<z.ZodObject<{
|
|
712
723
|
listeProgrammes: z.ZodOptional<z.ZodObject<{
|
|
713
|
-
programme: z.ZodPipe<z.ZodTransform<unknown[], unknown>, z.ZodArray<z.ZodType<
|
|
724
|
+
programme: z.ZodPipe<z.ZodTransform<unknown[], unknown>, z.ZodArray<z.ZodType<LigneCreditElementRawShape, unknown, z.core.$ZodTypeInternals<LigneCreditElementRawShape, unknown>>>>;
|
|
714
725
|
}, z.core.$strip>>;
|
|
715
726
|
totalAE: z.ZodOptional<z.ZodObject<{
|
|
716
727
|
supplementaire: z.ZodString;
|
|
@@ -795,7 +806,7 @@ export declare const ContenuAuteurRawSchema: z.ZodObject<{
|
|
|
795
806
|
}, z.core.$strip>>;
|
|
796
807
|
dispositifAmdtCreditPLFR: z.ZodOptional<z.ZodObject<{
|
|
797
808
|
listeProgrammes: z.ZodOptional<z.ZodObject<{
|
|
798
|
-
programme: z.ZodPipe<z.ZodTransform<unknown[], unknown>, z.ZodArray<z.ZodType<
|
|
809
|
+
programme: z.ZodPipe<z.ZodTransform<unknown[], unknown>, z.ZodArray<z.ZodType<LigneCreditElementRawShape, unknown, z.core.$ZodTypeInternals<LigneCreditElementRawShape, unknown>>>>;
|
|
799
810
|
}, z.core.$strip>>;
|
|
800
811
|
totalAE: z.ZodOptional<z.ZodObject<{
|
|
801
812
|
supplementaire: z.ZodString;
|
|
@@ -888,7 +899,7 @@ export declare const CorpsRawSchema: z.ZodObject<{
|
|
|
888
899
|
}, z.core.$strip>>;
|
|
889
900
|
dispositifAmdtCreditPLFR: z.ZodOptional<z.ZodObject<{
|
|
890
901
|
listeProgrammes: z.ZodOptional<z.ZodObject<{
|
|
891
|
-
programme: z.ZodPipe<z.ZodTransform<unknown[], unknown>, z.ZodArray<z.ZodType<
|
|
902
|
+
programme: z.ZodPipe<z.ZodTransform<unknown[], unknown>, z.ZodArray<z.ZodType<LigneCreditElementRawShape, unknown, z.core.$ZodTypeInternals<LigneCreditElementRawShape, unknown>>>>;
|
|
892
903
|
}, z.core.$strip>>;
|
|
893
904
|
totalAE: z.ZodOptional<z.ZodObject<{
|
|
894
905
|
supplementaire: z.ZodString;
|
|
@@ -973,7 +984,7 @@ export declare const CorpsRawSchema: z.ZodObject<{
|
|
|
973
984
|
}, z.core.$strip>>;
|
|
974
985
|
dispositifAmdtCreditPLFR: z.ZodOptional<z.ZodObject<{
|
|
975
986
|
listeProgrammes: z.ZodOptional<z.ZodObject<{
|
|
976
|
-
programme: z.ZodPipe<z.ZodTransform<unknown[], unknown>, z.ZodArray<z.ZodType<
|
|
987
|
+
programme: z.ZodPipe<z.ZodTransform<unknown[], unknown>, z.ZodArray<z.ZodType<LigneCreditElementRawShape, unknown, z.core.$ZodTypeInternals<LigneCreditElementRawShape, unknown>>>>;
|
|
977
988
|
}, z.core.$strip>>;
|
|
978
989
|
totalAE: z.ZodOptional<z.ZodObject<{
|
|
979
990
|
supplementaire: z.ZodString;
|
|
@@ -1231,14 +1242,14 @@ export declare const CycleDeVieRawSchema: z.ZodObject<{
|
|
|
1231
1242
|
dateDepot: z.ZodPipe<z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
1232
1243
|
"@xmlns:xsi": z.ZodString;
|
|
1233
1244
|
"@xsi:nil": z.ZodString;
|
|
1234
|
-
}, z.core.$strip>, z.ZodPipe<z.ZodPipe<z.ZodTransform<
|
|
1245
|
+
}, z.core.$strip>, z.ZodPipe<z.ZodPipe<z.ZodTransform<string | Date | undefined, unknown>, z.ZodOptional<z.ZodDate>> & z.ZodType<Date, unknown, z.core.$ZodTypeInternals<Date, unknown>>, z.ZodTransform<Date, Date>>]>>, z.ZodTransform<Date | undefined, Date | {
|
|
1235
1246
|
"@xmlns:xsi": string;
|
|
1236
1247
|
"@xsi:nil": string;
|
|
1237
1248
|
} | undefined>>;
|
|
1238
1249
|
datePublication: z.ZodPipe<z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
1239
1250
|
"@xmlns:xsi": z.ZodString;
|
|
1240
1251
|
"@xsi:nil": z.ZodString;
|
|
1241
|
-
}, z.core.$strip>, z.ZodPipe<z.ZodPipe<z.ZodTransform<
|
|
1252
|
+
}, z.core.$strip>, z.ZodPipe<z.ZodPipe<z.ZodTransform<string | Date | undefined, unknown>, z.ZodOptional<z.ZodDate>> & z.ZodType<Date, unknown, z.core.$ZodTypeInternals<Date, unknown>>, z.ZodTransform<Date, Date>>]>>, z.ZodTransform<Date | undefined, Date | {
|
|
1242
1253
|
"@xmlns:xsi": string;
|
|
1243
1254
|
"@xsi:nil": string;
|
|
1244
1255
|
} | undefined>>;
|
|
@@ -1357,7 +1368,7 @@ export declare const CycleDeVieRawSchema: z.ZodObject<{
|
|
|
1357
1368
|
dateSort: z.ZodPipe<z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
1358
1369
|
"@xmlns:xsi": z.ZodString;
|
|
1359
1370
|
"@xsi:nil": z.ZodString;
|
|
1360
|
-
}, z.core.$strip>, z.ZodPipe<z.ZodPipe<z.ZodTransform<
|
|
1371
|
+
}, z.core.$strip>, z.ZodPipe<z.ZodPipe<z.ZodTransform<string | Date | undefined, unknown>, z.ZodOptional<z.ZodDate>> & z.ZodType<Date, unknown, z.core.$ZodTypeInternals<Date, unknown>>, z.ZodTransform<Date, Date>>]>>, z.ZodTransform<Date | undefined, Date | {
|
|
1361
1372
|
"@xmlns:xsi": string;
|
|
1362
1373
|
"@xsi:nil": string;
|
|
1363
1374
|
} | undefined>>;
|
|
@@ -2018,7 +2029,7 @@ export declare const AmendementRawSchema: z.ZodObject<{
|
|
|
2018
2029
|
}, z.core.$strip>>;
|
|
2019
2030
|
dispositifAmdtCreditPLFR: z.ZodOptional<z.ZodObject<{
|
|
2020
2031
|
listeProgrammes: z.ZodOptional<z.ZodObject<{
|
|
2021
|
-
programme: z.ZodPipe<z.ZodTransform<unknown[], unknown>, z.ZodArray<z.ZodType<
|
|
2032
|
+
programme: z.ZodPipe<z.ZodTransform<unknown[], unknown>, z.ZodArray<z.ZodType<LigneCreditElementRawShape, unknown, z.core.$ZodTypeInternals<LigneCreditElementRawShape, unknown>>>>;
|
|
2022
2033
|
}, z.core.$strip>>;
|
|
2023
2034
|
totalAE: z.ZodOptional<z.ZodObject<{
|
|
2024
2035
|
supplementaire: z.ZodString;
|
|
@@ -2103,7 +2114,7 @@ export declare const AmendementRawSchema: z.ZodObject<{
|
|
|
2103
2114
|
}, z.core.$strip>>;
|
|
2104
2115
|
dispositifAmdtCreditPLFR: z.ZodOptional<z.ZodObject<{
|
|
2105
2116
|
listeProgrammes: z.ZodOptional<z.ZodObject<{
|
|
2106
|
-
programme: z.ZodPipe<z.ZodTransform<unknown[], unknown>, z.ZodArray<z.ZodType<
|
|
2117
|
+
programme: z.ZodPipe<z.ZodTransform<unknown[], unknown>, z.ZodArray<z.ZodType<LigneCreditElementRawShape, unknown, z.core.$ZodTypeInternals<LigneCreditElementRawShape, unknown>>>>;
|
|
2107
2118
|
}, z.core.$strip>>;
|
|
2108
2119
|
totalAE: z.ZodOptional<z.ZodObject<{
|
|
2109
2120
|
supplementaire: z.ZodString;
|
|
@@ -2125,14 +2136,14 @@ export declare const AmendementRawSchema: z.ZodObject<{
|
|
|
2125
2136
|
dateDepot: z.ZodPipe<z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
2126
2137
|
"@xmlns:xsi": z.ZodString;
|
|
2127
2138
|
"@xsi:nil": z.ZodString;
|
|
2128
|
-
}, z.core.$strip>, z.ZodPipe<z.ZodPipe<z.ZodTransform<
|
|
2139
|
+
}, z.core.$strip>, z.ZodPipe<z.ZodPipe<z.ZodTransform<string | Date | undefined, unknown>, z.ZodOptional<z.ZodDate>> & z.ZodType<Date, unknown, z.core.$ZodTypeInternals<Date, unknown>>, z.ZodTransform<Date, Date>>]>>, z.ZodTransform<Date | undefined, Date | {
|
|
2129
2140
|
"@xmlns:xsi": string;
|
|
2130
2141
|
"@xsi:nil": string;
|
|
2131
2142
|
} | undefined>>;
|
|
2132
2143
|
datePublication: z.ZodPipe<z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
2133
2144
|
"@xmlns:xsi": z.ZodString;
|
|
2134
2145
|
"@xsi:nil": z.ZodString;
|
|
2135
|
-
}, z.core.$strip>, z.ZodPipe<z.ZodPipe<z.ZodTransform<
|
|
2146
|
+
}, z.core.$strip>, z.ZodPipe<z.ZodPipe<z.ZodTransform<string | Date | undefined, unknown>, z.ZodOptional<z.ZodDate>> & z.ZodType<Date, unknown, z.core.$ZodTypeInternals<Date, unknown>>, z.ZodTransform<Date, Date>>]>>, z.ZodTransform<Date | undefined, Date | {
|
|
2136
2147
|
"@xmlns:xsi": string;
|
|
2137
2148
|
"@xsi:nil": string;
|
|
2138
2149
|
} | undefined>>;
|
|
@@ -2251,7 +2262,7 @@ export declare const AmendementRawSchema: z.ZodObject<{
|
|
|
2251
2262
|
dateSort: z.ZodPipe<z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
2252
2263
|
"@xmlns:xsi": z.ZodString;
|
|
2253
2264
|
"@xsi:nil": z.ZodString;
|
|
2254
|
-
}, z.core.$strip>, z.ZodPipe<z.ZodPipe<z.ZodTransform<
|
|
2265
|
+
}, z.core.$strip>, z.ZodPipe<z.ZodPipe<z.ZodTransform<string | Date | undefined, unknown>, z.ZodOptional<z.ZodDate>> & z.ZodType<Date, unknown, z.core.$ZodTypeInternals<Date, unknown>>, z.ZodTransform<Date, Date>>]>>, z.ZodTransform<Date | undefined, Date | {
|
|
2255
2266
|
"@xmlns:xsi": string;
|
|
2256
2267
|
"@xsi:nil": string;
|
|
2257
2268
|
} | undefined>>;
|
|
@@ -2602,7 +2613,7 @@ export declare const AmendementWrapperRawSchema: z.ZodObject<{
|
|
|
2602
2613
|
}, z.core.$strip>>;
|
|
2603
2614
|
dispositifAmdtCreditPLFR: z.ZodOptional<z.ZodObject<{
|
|
2604
2615
|
listeProgrammes: z.ZodOptional<z.ZodObject<{
|
|
2605
|
-
programme: z.ZodPipe<z.ZodTransform<unknown[], unknown>, z.ZodArray<z.ZodType<
|
|
2616
|
+
programme: z.ZodPipe<z.ZodTransform<unknown[], unknown>, z.ZodArray<z.ZodType<LigneCreditElementRawShape, unknown, z.core.$ZodTypeInternals<LigneCreditElementRawShape, unknown>>>>;
|
|
2606
2617
|
}, z.core.$strip>>;
|
|
2607
2618
|
totalAE: z.ZodOptional<z.ZodObject<{
|
|
2608
2619
|
supplementaire: z.ZodString;
|
|
@@ -2687,7 +2698,7 @@ export declare const AmendementWrapperRawSchema: z.ZodObject<{
|
|
|
2687
2698
|
}, z.core.$strip>>;
|
|
2688
2699
|
dispositifAmdtCreditPLFR: z.ZodOptional<z.ZodObject<{
|
|
2689
2700
|
listeProgrammes: z.ZodOptional<z.ZodObject<{
|
|
2690
|
-
programme: z.ZodPipe<z.ZodTransform<unknown[], unknown>, z.ZodArray<z.ZodType<
|
|
2701
|
+
programme: z.ZodPipe<z.ZodTransform<unknown[], unknown>, z.ZodArray<z.ZodType<LigneCreditElementRawShape, unknown, z.core.$ZodTypeInternals<LigneCreditElementRawShape, unknown>>>>;
|
|
2691
2702
|
}, z.core.$strip>>;
|
|
2692
2703
|
totalAE: z.ZodOptional<z.ZodObject<{
|
|
2693
2704
|
supplementaire: z.ZodString;
|
|
@@ -2709,14 +2720,14 @@ export declare const AmendementWrapperRawSchema: z.ZodObject<{
|
|
|
2709
2720
|
dateDepot: z.ZodPipe<z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
2710
2721
|
"@xmlns:xsi": z.ZodString;
|
|
2711
2722
|
"@xsi:nil": z.ZodString;
|
|
2712
|
-
}, z.core.$strip>, z.ZodPipe<z.ZodPipe<z.ZodTransform<
|
|
2723
|
+
}, z.core.$strip>, z.ZodPipe<z.ZodPipe<z.ZodTransform<string | Date | undefined, unknown>, z.ZodOptional<z.ZodDate>> & z.ZodType<Date, unknown, z.core.$ZodTypeInternals<Date, unknown>>, z.ZodTransform<Date, Date>>]>>, z.ZodTransform<Date | undefined, Date | {
|
|
2713
2724
|
"@xmlns:xsi": string;
|
|
2714
2725
|
"@xsi:nil": string;
|
|
2715
2726
|
} | undefined>>;
|
|
2716
2727
|
datePublication: z.ZodPipe<z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
2717
2728
|
"@xmlns:xsi": z.ZodString;
|
|
2718
2729
|
"@xsi:nil": z.ZodString;
|
|
2719
|
-
}, z.core.$strip>, z.ZodPipe<z.ZodPipe<z.ZodTransform<
|
|
2730
|
+
}, z.core.$strip>, z.ZodPipe<z.ZodPipe<z.ZodTransform<string | Date | undefined, unknown>, z.ZodOptional<z.ZodDate>> & z.ZodType<Date, unknown, z.core.$ZodTypeInternals<Date, unknown>>, z.ZodTransform<Date, Date>>]>>, z.ZodTransform<Date | undefined, Date | {
|
|
2720
2731
|
"@xmlns:xsi": string;
|
|
2721
2732
|
"@xsi:nil": string;
|
|
2722
2733
|
} | undefined>>;
|
|
@@ -2835,7 +2846,7 @@ export declare const AmendementWrapperRawSchema: z.ZodObject<{
|
|
|
2835
2846
|
dateSort: z.ZodPipe<z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
2836
2847
|
"@xmlns:xsi": z.ZodString;
|
|
2837
2848
|
"@xsi:nil": z.ZodString;
|
|
2838
|
-
}, z.core.$strip>, z.ZodPipe<z.ZodPipe<z.ZodTransform<
|
|
2849
|
+
}, z.core.$strip>, z.ZodPipe<z.ZodPipe<z.ZodTransform<string | Date | undefined, unknown>, z.ZodOptional<z.ZodDate>> & z.ZodType<Date, unknown, z.core.$ZodTypeInternals<Date, unknown>>, z.ZodTransform<Date, Date>>]>>, z.ZodTransform<Date | undefined, Date | {
|
|
2839
2850
|
"@xmlns:xsi": string;
|
|
2840
2851
|
"@xsi:nil": string;
|
|
2841
2852
|
} | undefined>>;
|
|
@@ -3187,7 +3198,7 @@ export declare const AmendementsClassRawSchema: z.ZodObject<{
|
|
|
3187
3198
|
}, z.core.$strip>>;
|
|
3188
3199
|
dispositifAmdtCreditPLFR: z.ZodOptional<z.ZodObject<{
|
|
3189
3200
|
listeProgrammes: z.ZodOptional<z.ZodObject<{
|
|
3190
|
-
programme: z.ZodPipe<z.ZodTransform<unknown[], unknown>, z.ZodArray<z.ZodType<
|
|
3201
|
+
programme: z.ZodPipe<z.ZodTransform<unknown[], unknown>, z.ZodArray<z.ZodType<LigneCreditElementRawShape, unknown, z.core.$ZodTypeInternals<LigneCreditElementRawShape, unknown>>>>;
|
|
3191
3202
|
}, z.core.$strip>>;
|
|
3192
3203
|
totalAE: z.ZodOptional<z.ZodObject<{
|
|
3193
3204
|
supplementaire: z.ZodString;
|
|
@@ -3272,7 +3283,7 @@ export declare const AmendementsClassRawSchema: z.ZodObject<{
|
|
|
3272
3283
|
}, z.core.$strip>>;
|
|
3273
3284
|
dispositifAmdtCreditPLFR: z.ZodOptional<z.ZodObject<{
|
|
3274
3285
|
listeProgrammes: z.ZodOptional<z.ZodObject<{
|
|
3275
|
-
programme: z.ZodPipe<z.ZodTransform<unknown[], unknown>, z.ZodArray<z.ZodType<
|
|
3286
|
+
programme: z.ZodPipe<z.ZodTransform<unknown[], unknown>, z.ZodArray<z.ZodType<LigneCreditElementRawShape, unknown, z.core.$ZodTypeInternals<LigneCreditElementRawShape, unknown>>>>;
|
|
3276
3287
|
}, z.core.$strip>>;
|
|
3277
3288
|
totalAE: z.ZodOptional<z.ZodObject<{
|
|
3278
3289
|
supplementaire: z.ZodString;
|
|
@@ -3294,14 +3305,14 @@ export declare const AmendementsClassRawSchema: z.ZodObject<{
|
|
|
3294
3305
|
dateDepot: z.ZodPipe<z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
3295
3306
|
"@xmlns:xsi": z.ZodString;
|
|
3296
3307
|
"@xsi:nil": z.ZodString;
|
|
3297
|
-
}, z.core.$strip>, z.ZodPipe<z.ZodPipe<z.ZodTransform<
|
|
3308
|
+
}, z.core.$strip>, z.ZodPipe<z.ZodPipe<z.ZodTransform<string | Date | undefined, unknown>, z.ZodOptional<z.ZodDate>> & z.ZodType<Date, unknown, z.core.$ZodTypeInternals<Date, unknown>>, z.ZodTransform<Date, Date>>]>>, z.ZodTransform<Date | undefined, Date | {
|
|
3298
3309
|
"@xmlns:xsi": string;
|
|
3299
3310
|
"@xsi:nil": string;
|
|
3300
3311
|
} | undefined>>;
|
|
3301
3312
|
datePublication: z.ZodPipe<z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
3302
3313
|
"@xmlns:xsi": z.ZodString;
|
|
3303
3314
|
"@xsi:nil": z.ZodString;
|
|
3304
|
-
}, z.core.$strip>, z.ZodPipe<z.ZodPipe<z.ZodTransform<
|
|
3315
|
+
}, z.core.$strip>, z.ZodPipe<z.ZodPipe<z.ZodTransform<string | Date | undefined, unknown>, z.ZodOptional<z.ZodDate>> & z.ZodType<Date, unknown, z.core.$ZodTypeInternals<Date, unknown>>, z.ZodTransform<Date, Date>>]>>, z.ZodTransform<Date | undefined, Date | {
|
|
3305
3316
|
"@xmlns:xsi": string;
|
|
3306
3317
|
"@xsi:nil": string;
|
|
3307
3318
|
} | undefined>>;
|
|
@@ -3420,7 +3431,7 @@ export declare const AmendementsClassRawSchema: z.ZodObject<{
|
|
|
3420
3431
|
dateSort: z.ZodPipe<z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
3421
3432
|
"@xmlns:xsi": z.ZodString;
|
|
3422
3433
|
"@xsi:nil": z.ZodString;
|
|
3423
|
-
}, z.core.$strip>, z.ZodPipe<z.ZodPipe<z.ZodTransform<
|
|
3434
|
+
}, z.core.$strip>, z.ZodPipe<z.ZodPipe<z.ZodTransform<string | Date | undefined, unknown>, z.ZodOptional<z.ZodDate>> & z.ZodType<Date, unknown, z.core.$ZodTypeInternals<Date, unknown>>, z.ZodTransform<Date, Date>>]>>, z.ZodTransform<Date | undefined, Date | {
|
|
3424
3435
|
"@xmlns:xsi": string;
|
|
3425
3436
|
"@xsi:nil": string;
|
|
3426
3437
|
} | undefined>>;
|
|
@@ -3775,7 +3786,7 @@ export declare const TexteLegislatifRawSchema: z.ZodObject<{
|
|
|
3775
3786
|
}, z.core.$strip>>;
|
|
3776
3787
|
dispositifAmdtCreditPLFR: z.ZodOptional<z.ZodObject<{
|
|
3777
3788
|
listeProgrammes: z.ZodOptional<z.ZodObject<{
|
|
3778
|
-
programme: z.ZodPipe<z.ZodTransform<unknown[], unknown>, z.ZodArray<z.ZodType<
|
|
3789
|
+
programme: z.ZodPipe<z.ZodTransform<unknown[], unknown>, z.ZodArray<z.ZodType<LigneCreditElementRawShape, unknown, z.core.$ZodTypeInternals<LigneCreditElementRawShape, unknown>>>>;
|
|
3779
3790
|
}, z.core.$strip>>;
|
|
3780
3791
|
totalAE: z.ZodOptional<z.ZodObject<{
|
|
3781
3792
|
supplementaire: z.ZodString;
|
|
@@ -3860,7 +3871,7 @@ export declare const TexteLegislatifRawSchema: z.ZodObject<{
|
|
|
3860
3871
|
}, z.core.$strip>>;
|
|
3861
3872
|
dispositifAmdtCreditPLFR: z.ZodOptional<z.ZodObject<{
|
|
3862
3873
|
listeProgrammes: z.ZodOptional<z.ZodObject<{
|
|
3863
|
-
programme: z.ZodPipe<z.ZodTransform<unknown[], unknown>, z.ZodArray<z.ZodType<
|
|
3874
|
+
programme: z.ZodPipe<z.ZodTransform<unknown[], unknown>, z.ZodArray<z.ZodType<LigneCreditElementRawShape, unknown, z.core.$ZodTypeInternals<LigneCreditElementRawShape, unknown>>>>;
|
|
3864
3875
|
}, z.core.$strip>>;
|
|
3865
3876
|
totalAE: z.ZodOptional<z.ZodObject<{
|
|
3866
3877
|
supplementaire: z.ZodString;
|
|
@@ -3882,14 +3893,14 @@ export declare const TexteLegislatifRawSchema: z.ZodObject<{
|
|
|
3882
3893
|
dateDepot: z.ZodPipe<z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
3883
3894
|
"@xmlns:xsi": z.ZodString;
|
|
3884
3895
|
"@xsi:nil": z.ZodString;
|
|
3885
|
-
}, z.core.$strip>, z.ZodPipe<z.ZodPipe<z.ZodTransform<
|
|
3896
|
+
}, z.core.$strip>, z.ZodPipe<z.ZodPipe<z.ZodTransform<string | Date | undefined, unknown>, z.ZodOptional<z.ZodDate>> & z.ZodType<Date, unknown, z.core.$ZodTypeInternals<Date, unknown>>, z.ZodTransform<Date, Date>>]>>, z.ZodTransform<Date | undefined, Date | {
|
|
3886
3897
|
"@xmlns:xsi": string;
|
|
3887
3898
|
"@xsi:nil": string;
|
|
3888
3899
|
} | undefined>>;
|
|
3889
3900
|
datePublication: z.ZodPipe<z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
3890
3901
|
"@xmlns:xsi": z.ZodString;
|
|
3891
3902
|
"@xsi:nil": z.ZodString;
|
|
3892
|
-
}, z.core.$strip>, z.ZodPipe<z.ZodPipe<z.ZodTransform<
|
|
3903
|
+
}, z.core.$strip>, z.ZodPipe<z.ZodPipe<z.ZodTransform<string | Date | undefined, unknown>, z.ZodOptional<z.ZodDate>> & z.ZodType<Date, unknown, z.core.$ZodTypeInternals<Date, unknown>>, z.ZodTransform<Date, Date>>]>>, z.ZodTransform<Date | undefined, Date | {
|
|
3893
3904
|
"@xmlns:xsi": string;
|
|
3894
3905
|
"@xsi:nil": string;
|
|
3895
3906
|
} | undefined>>;
|
|
@@ -4008,7 +4019,7 @@ export declare const TexteLegislatifRawSchema: z.ZodObject<{
|
|
|
4008
4019
|
dateSort: z.ZodPipe<z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
4009
4020
|
"@xmlns:xsi": z.ZodString;
|
|
4010
4021
|
"@xsi:nil": z.ZodString;
|
|
4011
|
-
}, z.core.$strip>, z.ZodPipe<z.ZodPipe<z.ZodTransform<
|
|
4022
|
+
}, z.core.$strip>, z.ZodPipe<z.ZodPipe<z.ZodTransform<string | Date | undefined, unknown>, z.ZodOptional<z.ZodDate>> & z.ZodType<Date, unknown, z.core.$ZodTypeInternals<Date, unknown>>, z.ZodTransform<Date, Date>>]>>, z.ZodTransform<Date | undefined, Date | {
|
|
4012
4023
|
"@xmlns:xsi": string;
|
|
4013
4024
|
"@xsi:nil": string;
|
|
4014
4025
|
} | undefined>>;
|
|
@@ -4345,7 +4356,7 @@ export declare const AmendementsRawSchema: z.ZodObject<{
|
|
|
4345
4356
|
}, z.core.$strip>>;
|
|
4346
4357
|
dispositifAmdtCreditPLFR: z.ZodOptional<z.ZodObject<{
|
|
4347
4358
|
listeProgrammes: z.ZodOptional<z.ZodObject<{
|
|
4348
|
-
programme: z.ZodPipe<z.ZodTransform<unknown[], unknown>, z.ZodArray<z.ZodType<
|
|
4359
|
+
programme: z.ZodPipe<z.ZodTransform<unknown[], unknown>, z.ZodArray<z.ZodType<LigneCreditElementRawShape, unknown, z.core.$ZodTypeInternals<LigneCreditElementRawShape, unknown>>>>;
|
|
4349
4360
|
}, z.core.$strip>>;
|
|
4350
4361
|
totalAE: z.ZodOptional<z.ZodObject<{
|
|
4351
4362
|
supplementaire: z.ZodString;
|
|
@@ -4430,7 +4441,7 @@ export declare const AmendementsRawSchema: z.ZodObject<{
|
|
|
4430
4441
|
}, z.core.$strip>>;
|
|
4431
4442
|
dispositifAmdtCreditPLFR: z.ZodOptional<z.ZodObject<{
|
|
4432
4443
|
listeProgrammes: z.ZodOptional<z.ZodObject<{
|
|
4433
|
-
programme: z.ZodPipe<z.ZodTransform<unknown[], unknown>, z.ZodArray<z.ZodType<
|
|
4444
|
+
programme: z.ZodPipe<z.ZodTransform<unknown[], unknown>, z.ZodArray<z.ZodType<LigneCreditElementRawShape, unknown, z.core.$ZodTypeInternals<LigneCreditElementRawShape, unknown>>>>;
|
|
4434
4445
|
}, z.core.$strip>>;
|
|
4435
4446
|
totalAE: z.ZodOptional<z.ZodObject<{
|
|
4436
4447
|
supplementaire: z.ZodString;
|
|
@@ -4452,14 +4463,14 @@ export declare const AmendementsRawSchema: z.ZodObject<{
|
|
|
4452
4463
|
dateDepot: z.ZodPipe<z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
4453
4464
|
"@xmlns:xsi": z.ZodString;
|
|
4454
4465
|
"@xsi:nil": z.ZodString;
|
|
4455
|
-
}, z.core.$strip>, z.ZodPipe<z.ZodPipe<z.ZodTransform<
|
|
4466
|
+
}, z.core.$strip>, z.ZodPipe<z.ZodPipe<z.ZodTransform<string | Date | undefined, unknown>, z.ZodOptional<z.ZodDate>> & z.ZodType<Date, unknown, z.core.$ZodTypeInternals<Date, unknown>>, z.ZodTransform<Date, Date>>]>>, z.ZodTransform<Date | undefined, Date | {
|
|
4456
4467
|
"@xmlns:xsi": string;
|
|
4457
4468
|
"@xsi:nil": string;
|
|
4458
4469
|
} | undefined>>;
|
|
4459
4470
|
datePublication: z.ZodPipe<z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
4460
4471
|
"@xmlns:xsi": z.ZodString;
|
|
4461
4472
|
"@xsi:nil": z.ZodString;
|
|
4462
|
-
}, z.core.$strip>, z.ZodPipe<z.ZodPipe<z.ZodTransform<
|
|
4473
|
+
}, z.core.$strip>, z.ZodPipe<z.ZodPipe<z.ZodTransform<string | Date | undefined, unknown>, z.ZodOptional<z.ZodDate>> & z.ZodType<Date, unknown, z.core.$ZodTypeInternals<Date, unknown>>, z.ZodTransform<Date, Date>>]>>, z.ZodTransform<Date | undefined, Date | {
|
|
4463
4474
|
"@xmlns:xsi": string;
|
|
4464
4475
|
"@xsi:nil": string;
|
|
4465
4476
|
} | undefined>>;
|
|
@@ -4578,7 +4589,7 @@ export declare const AmendementsRawSchema: z.ZodObject<{
|
|
|
4578
4589
|
dateSort: z.ZodPipe<z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
4579
4590
|
"@xmlns:xsi": z.ZodString;
|
|
4580
4591
|
"@xsi:nil": z.ZodString;
|
|
4581
|
-
}, z.core.$strip>, z.ZodPipe<z.ZodPipe<z.ZodTransform<
|
|
4592
|
+
}, z.core.$strip>, z.ZodPipe<z.ZodPipe<z.ZodTransform<string | Date | undefined, unknown>, z.ZodOptional<z.ZodDate>> & z.ZodType<Date, unknown, z.core.$ZodTypeInternals<Date, unknown>>, z.ZodTransform<Date, Date>>]>>, z.ZodTransform<Date | undefined, Date | {
|
|
4582
4593
|
"@xmlns:xsi": string;
|
|
4583
4594
|
"@xsi:nil": string;
|
|
4584
4595
|
} | undefined>>;
|
|
@@ -4756,3 +4767,4 @@ export declare const AmendementsRawConvert: {
|
|
|
4756
4767
|
toTexteLegislatif: typeof parseTexteLegislatifRaw;
|
|
4757
4768
|
texteLegislatifToJson: typeof texteLegislatifRawToJson;
|
|
4758
4769
|
};
|
|
4770
|
+
export {};
|