colibris-types 1.0.27 → 1.0.28

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.
@@ -481,6 +481,7 @@ declare const ComputerUpload: z.ZodArray<z.ZodObject<{
481
481
  "N\u00B0 de PV": z.ZodOptional<z.ZodString>;
482
482
  Loyer: z.ZodOptional<z.ZodPipeline<z.ZodEffects<z.ZodString, number, string>, z.ZodNumber>>;
483
483
  "B\u00E9n\u00E9ficiaire du Don": z.ZodOptional<z.ZodString>;
484
+ "Date du Don": z.ZodOptional<z.ZodString>;
484
485
  }, "strip", z.ZodTypeAny, {
485
486
  "N\u00B0 de s\u00E9rie": string;
486
487
  Type?: string | undefined;
@@ -520,6 +521,7 @@ declare const ComputerUpload: z.ZodArray<z.ZodObject<{
520
521
  "N\u00B0 de PV"?: string | undefined;
521
522
  Loyer?: number | undefined;
522
523
  "B\u00E9n\u00E9ficiaire du Don"?: string | undefined;
524
+ "Date du Don"?: string | undefined;
523
525
  }, {
524
526
  "N\u00B0 de s\u00E9rie": string;
525
527
  Type?: string | undefined;
@@ -559,6 +561,7 @@ declare const ComputerUpload: z.ZodArray<z.ZodObject<{
559
561
  "N\u00B0 de PV"?: string | undefined;
560
562
  Loyer?: string | undefined;
561
563
  "B\u00E9n\u00E9ficiaire du Don"?: string | undefined;
564
+ "Date du Don"?: string | undefined;
562
565
  }>, "many">;
563
566
  export declare const assetDefinitions: {
564
567
  asset_genre: z.ZodObject<z.objectUtil.extendShape<{
@@ -854,6 +857,7 @@ export declare const assetDefinitions: {
854
857
  "N\u00B0 de PV": z.ZodOptional<z.ZodString>;
855
858
  Loyer: z.ZodOptional<z.ZodPipeline<z.ZodEffects<z.ZodString, number, string>, z.ZodNumber>>;
856
859
  "B\u00E9n\u00E9ficiaire du Don": z.ZodOptional<z.ZodString>;
860
+ "Date du Don": z.ZodOptional<z.ZodString>;
857
861
  }, "strip", z.ZodTypeAny, {
858
862
  "N\u00B0 de s\u00E9rie": string;
859
863
  Type?: string | undefined;
@@ -893,6 +897,7 @@ export declare const assetDefinitions: {
893
897
  "N\u00B0 de PV"?: string | undefined;
894
898
  Loyer?: number | undefined;
895
899
  "B\u00E9n\u00E9ficiaire du Don"?: string | undefined;
900
+ "Date du Don"?: string | undefined;
896
901
  }, {
897
902
  "N\u00B0 de s\u00E9rie": string;
898
903
  Type?: string | undefined;
@@ -932,6 +937,7 @@ export declare const assetDefinitions: {
932
937
  "N\u00B0 de PV"?: string | undefined;
933
938
  Loyer?: string | undefined;
934
939
  "B\u00E9n\u00E9ficiaire du Don"?: string | undefined;
940
+ "Date du Don"?: string | undefined;
935
941
  }>, "many">;
936
942
  csr_data: z.ZodObject<z.objectUtil.extendShape<{
937
943
  id_company: z.ZodNumber;
package/lib/computers.js CHANGED
@@ -196,6 +196,7 @@ const ComputerUpload = z.array(z.object({
196
196
  .pipe(z.number())
197
197
  .optional(),
198
198
  "Bénéficiaire du Don": z.string().optional(),
199
+ "Date du Don": z.string().regex(DATE_REGEX).optional(),
199
200
  }));
200
201
  export const assetDefinitions = {
201
202
  asset_genre: AssetGenre,
package/lib/index.d.ts CHANGED
@@ -741,6 +741,7 @@ export declare const schemasDefinitions: {
741
741
  "N\u00B0 de PV": z.ZodOptional<z.ZodString>;
742
742
  Loyer: z.ZodOptional<z.ZodPipeline<z.ZodEffects<z.ZodString, number, string>, z.ZodNumber>>;
743
743
  "B\u00E9n\u00E9ficiaire du Don": z.ZodOptional<z.ZodString>;
744
+ "Date du Don": z.ZodOptional<z.ZodString>;
744
745
  }, "strip", z.ZodTypeAny, {
745
746
  "N\u00B0 de s\u00E9rie": string;
746
747
  Type?: string | undefined;
@@ -780,6 +781,7 @@ export declare const schemasDefinitions: {
780
781
  "N\u00B0 de PV"?: string | undefined;
781
782
  Loyer?: number | undefined;
782
783
  "B\u00E9n\u00E9ficiaire du Don"?: string | undefined;
784
+ "Date du Don"?: string | undefined;
783
785
  }, {
784
786
  "N\u00B0 de s\u00E9rie": string;
785
787
  Type?: string | undefined;
@@ -819,6 +821,7 @@ export declare const schemasDefinitions: {
819
821
  "N\u00B0 de PV"?: string | undefined;
820
822
  Loyer?: string | undefined;
821
823
  "B\u00E9n\u00E9ficiaire du Don"?: string | undefined;
824
+ "Date du Don"?: string | undefined;
822
825
  }>, "many">;
823
826
  csr_data: z.ZodObject<z.objectUtil.extendShape<{
824
827
  id_company: z.ZodNumber;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "colibris-types",
3
- "version": "1.0.27",
3
+ "version": "1.0.28",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "type": "module",