colibris-types 1.0.40 → 1.0.41
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/computers.d.ts +6 -6
- package/lib/computers.js +1 -1
- package/lib/index.d.ts +3 -3
- package/package.json +1 -1
package/lib/computers.d.ts
CHANGED
|
@@ -450,7 +450,7 @@ declare const ComputerUpload: z.ZodArray<z.ZodObject<{
|
|
|
450
450
|
Type: z.ZodOptional<z.ZodString>;
|
|
451
451
|
Constructeur: z.ZodOptional<z.ZodString>;
|
|
452
452
|
"Code produit": z.ZodOptional<z.ZodString>;
|
|
453
|
-
Label: z.
|
|
453
|
+
Label: z.ZodString;
|
|
454
454
|
CPU: z.ZodOptional<z.ZodString>;
|
|
455
455
|
OS: z.ZodOptional<z.ZodString>;
|
|
456
456
|
RAM: z.ZodOptional<z.ZodString>;
|
|
@@ -485,13 +485,13 @@ declare const ComputerUpload: z.ZodArray<z.ZodObject<{
|
|
|
485
485
|
"Date du Don": z.ZodOptional<z.ZodString>;
|
|
486
486
|
}, "strip", z.ZodTypeAny, {
|
|
487
487
|
ID: string;
|
|
488
|
+
Label: string;
|
|
488
489
|
Type?: string | undefined;
|
|
489
490
|
"N\u00B0 de s\u00E9rie"?: string | undefined;
|
|
490
491
|
"N\u00B0 Interne"?: string | undefined;
|
|
491
492
|
Propriétaire?: string | undefined;
|
|
492
493
|
Constructeur?: string | undefined;
|
|
493
494
|
"Code produit"?: string | undefined;
|
|
494
|
-
Label?: string | undefined;
|
|
495
495
|
CPU?: string | undefined;
|
|
496
496
|
OS?: string | undefined;
|
|
497
497
|
RAM?: string | undefined;
|
|
@@ -526,13 +526,13 @@ declare const ComputerUpload: z.ZodArray<z.ZodObject<{
|
|
|
526
526
|
"Date du Don"?: string | undefined;
|
|
527
527
|
}, {
|
|
528
528
|
ID: string;
|
|
529
|
+
Label: string;
|
|
529
530
|
Type?: string | undefined;
|
|
530
531
|
"N\u00B0 de s\u00E9rie"?: string | undefined;
|
|
531
532
|
"N\u00B0 Interne"?: string | undefined;
|
|
532
533
|
Propriétaire?: string | undefined;
|
|
533
534
|
Constructeur?: string | undefined;
|
|
534
535
|
"Code produit"?: string | undefined;
|
|
535
|
-
Label?: string | undefined;
|
|
536
536
|
CPU?: string | undefined;
|
|
537
537
|
OS?: string | undefined;
|
|
538
538
|
RAM?: string | undefined;
|
|
@@ -829,7 +829,7 @@ export declare const assetDefinitions: {
|
|
|
829
829
|
Type: z.ZodOptional<z.ZodString>;
|
|
830
830
|
Constructeur: z.ZodOptional<z.ZodString>;
|
|
831
831
|
"Code produit": z.ZodOptional<z.ZodString>;
|
|
832
|
-
Label: z.
|
|
832
|
+
Label: z.ZodString;
|
|
833
833
|
CPU: z.ZodOptional<z.ZodString>;
|
|
834
834
|
OS: z.ZodOptional<z.ZodString>;
|
|
835
835
|
RAM: z.ZodOptional<z.ZodString>;
|
|
@@ -864,13 +864,13 @@ export declare const assetDefinitions: {
|
|
|
864
864
|
"Date du Don": z.ZodOptional<z.ZodString>;
|
|
865
865
|
}, "strip", z.ZodTypeAny, {
|
|
866
866
|
ID: string;
|
|
867
|
+
Label: string;
|
|
867
868
|
Type?: string | undefined;
|
|
868
869
|
"N\u00B0 de s\u00E9rie"?: string | undefined;
|
|
869
870
|
"N\u00B0 Interne"?: string | undefined;
|
|
870
871
|
Propriétaire?: string | undefined;
|
|
871
872
|
Constructeur?: string | undefined;
|
|
872
873
|
"Code produit"?: string | undefined;
|
|
873
|
-
Label?: string | undefined;
|
|
874
874
|
CPU?: string | undefined;
|
|
875
875
|
OS?: string | undefined;
|
|
876
876
|
RAM?: string | undefined;
|
|
@@ -905,13 +905,13 @@ export declare const assetDefinitions: {
|
|
|
905
905
|
"Date du Don"?: string | undefined;
|
|
906
906
|
}, {
|
|
907
907
|
ID: string;
|
|
908
|
+
Label: string;
|
|
908
909
|
Type?: string | undefined;
|
|
909
910
|
"N\u00B0 de s\u00E9rie"?: string | undefined;
|
|
910
911
|
"N\u00B0 Interne"?: string | undefined;
|
|
911
912
|
Propriétaire?: string | undefined;
|
|
912
913
|
Constructeur?: string | undefined;
|
|
913
914
|
"Code produit"?: string | undefined;
|
|
914
|
-
Label?: string | undefined;
|
|
915
915
|
CPU?: string | undefined;
|
|
916
916
|
OS?: string | undefined;
|
|
917
917
|
RAM?: string | undefined;
|
package/lib/computers.js
CHANGED
|
@@ -133,7 +133,7 @@ const ComputerUpload = z.array(z.object({
|
|
|
133
133
|
Type: z.string().optional(),
|
|
134
134
|
Constructeur: z.string().optional(),
|
|
135
135
|
"Code produit": z.string().optional(),
|
|
136
|
-
Label: z.string()
|
|
136
|
+
Label: z.string(),
|
|
137
137
|
CPU: z.string().optional(),
|
|
138
138
|
OS: z.string().optional(),
|
|
139
139
|
RAM: z.string().optional(),
|
package/lib/index.d.ts
CHANGED
|
@@ -710,7 +710,7 @@ export declare const schemasDefinitions: {
|
|
|
710
710
|
Type: z.ZodOptional<z.ZodString>;
|
|
711
711
|
Constructeur: z.ZodOptional<z.ZodString>;
|
|
712
712
|
"Code produit": z.ZodOptional<z.ZodString>;
|
|
713
|
-
Label: z.
|
|
713
|
+
Label: z.ZodString;
|
|
714
714
|
CPU: z.ZodOptional<z.ZodString>;
|
|
715
715
|
OS: z.ZodOptional<z.ZodString>;
|
|
716
716
|
RAM: z.ZodOptional<z.ZodString>;
|
|
@@ -745,13 +745,13 @@ export declare const schemasDefinitions: {
|
|
|
745
745
|
"Date du Don": z.ZodOptional<z.ZodString>;
|
|
746
746
|
}, "strip", z.ZodTypeAny, {
|
|
747
747
|
ID: string;
|
|
748
|
+
Label: string;
|
|
748
749
|
Type?: string | undefined;
|
|
749
750
|
"N\u00B0 de s\u00E9rie"?: string | undefined;
|
|
750
751
|
"N\u00B0 Interne"?: string | undefined;
|
|
751
752
|
Propriétaire?: string | undefined;
|
|
752
753
|
Constructeur?: string | undefined;
|
|
753
754
|
"Code produit"?: string | undefined;
|
|
754
|
-
Label?: string | undefined;
|
|
755
755
|
CPU?: string | undefined;
|
|
756
756
|
OS?: string | undefined;
|
|
757
757
|
RAM?: string | undefined;
|
|
@@ -786,13 +786,13 @@ export declare const schemasDefinitions: {
|
|
|
786
786
|
"Date du Don"?: string | undefined;
|
|
787
787
|
}, {
|
|
788
788
|
ID: string;
|
|
789
|
+
Label: string;
|
|
789
790
|
Type?: string | undefined;
|
|
790
791
|
"N\u00B0 de s\u00E9rie"?: string | undefined;
|
|
791
792
|
"N\u00B0 Interne"?: string | undefined;
|
|
792
793
|
Propriétaire?: string | undefined;
|
|
793
794
|
Constructeur?: string | undefined;
|
|
794
795
|
"Code produit"?: string | undefined;
|
|
795
|
-
Label?: string | undefined;
|
|
796
796
|
CPU?: string | undefined;
|
|
797
797
|
OS?: string | undefined;
|
|
798
798
|
RAM?: string | undefined;
|