colibris-types 1.0.40 → 1.0.42
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 +6 -6
- package/lib/telecom.d.ts +6 -6
- package/lib/telecom.js +1 -1
- 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
|
@@ -210,7 +210,7 @@ export declare const schemasDefinitions: {
|
|
|
210
210
|
"N\u00B0 Centre de facturation": z.ZodOptional<z.ZodString>;
|
|
211
211
|
"N\u00B0 Ligne": z.ZodOptional<z.ZodString>;
|
|
212
212
|
"N\u00B0 IMEI": z.ZodOptional<z.ZodString>;
|
|
213
|
-
"
|
|
213
|
+
"Mod\u00E8le utilis\u00E9": z.ZodOptional<z.ZodString>;
|
|
214
214
|
"Type de produit": z.ZodString;
|
|
215
215
|
Profil: z.ZodOptional<z.ZodString>;
|
|
216
216
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -218,14 +218,14 @@ export declare const schemasDefinitions: {
|
|
|
218
218
|
"N\u00B0 Centre de facturation"?: string | undefined;
|
|
219
219
|
"N\u00B0 Ligne"?: string | undefined;
|
|
220
220
|
"N\u00B0 IMEI"?: string | undefined;
|
|
221
|
-
"
|
|
221
|
+
"Mod\u00E8le utilis\u00E9"?: string | undefined;
|
|
222
222
|
Profil?: string | undefined;
|
|
223
223
|
}, {
|
|
224
224
|
"Type de produit": string;
|
|
225
225
|
"N\u00B0 Centre de facturation"?: string | undefined;
|
|
226
226
|
"N\u00B0 Ligne"?: string | undefined;
|
|
227
227
|
"N\u00B0 IMEI"?: string | undefined;
|
|
228
|
-
"
|
|
228
|
+
"Mod\u00E8le utilis\u00E9"?: string | undefined;
|
|
229
229
|
Profil?: string | undefined;
|
|
230
230
|
}>, "many">;
|
|
231
231
|
orange_detailed_invoice_upload: z.ZodArray<z.ZodObject<{
|
|
@@ -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;
|
package/lib/telecom.d.ts
CHANGED
|
@@ -101,7 +101,7 @@ declare const BouyguesFleetUpload: z.ZodArray<z.ZodObject<{
|
|
|
101
101
|
"N\u00B0 Centre de facturation": z.ZodOptional<z.ZodString>;
|
|
102
102
|
"N\u00B0 Ligne": z.ZodOptional<z.ZodString>;
|
|
103
103
|
"N\u00B0 IMEI": z.ZodOptional<z.ZodString>;
|
|
104
|
-
"
|
|
104
|
+
"Mod\u00E8le utilis\u00E9": z.ZodOptional<z.ZodString>;
|
|
105
105
|
"Type de produit": z.ZodString;
|
|
106
106
|
Profil: z.ZodOptional<z.ZodString>;
|
|
107
107
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -109,14 +109,14 @@ declare const BouyguesFleetUpload: z.ZodArray<z.ZodObject<{
|
|
|
109
109
|
"N\u00B0 Centre de facturation"?: string | undefined;
|
|
110
110
|
"N\u00B0 Ligne"?: string | undefined;
|
|
111
111
|
"N\u00B0 IMEI"?: string | undefined;
|
|
112
|
-
"
|
|
112
|
+
"Mod\u00E8le utilis\u00E9"?: string | undefined;
|
|
113
113
|
Profil?: string | undefined;
|
|
114
114
|
}, {
|
|
115
115
|
"Type de produit": string;
|
|
116
116
|
"N\u00B0 Centre de facturation"?: string | undefined;
|
|
117
117
|
"N\u00B0 Ligne"?: string | undefined;
|
|
118
118
|
"N\u00B0 IMEI"?: string | undefined;
|
|
119
|
-
"
|
|
119
|
+
"Mod\u00E8le utilis\u00E9"?: string | undefined;
|
|
120
120
|
Profil?: string | undefined;
|
|
121
121
|
}>, "many">;
|
|
122
122
|
declare const OrangeDetailedInvoiceUpload: z.ZodArray<z.ZodObject<{
|
|
@@ -396,7 +396,7 @@ export declare const telecomDefinitions: {
|
|
|
396
396
|
"N\u00B0 Centre de facturation": z.ZodOptional<z.ZodString>;
|
|
397
397
|
"N\u00B0 Ligne": z.ZodOptional<z.ZodString>;
|
|
398
398
|
"N\u00B0 IMEI": z.ZodOptional<z.ZodString>;
|
|
399
|
-
"
|
|
399
|
+
"Mod\u00E8le utilis\u00E9": z.ZodOptional<z.ZodString>;
|
|
400
400
|
"Type de produit": z.ZodString;
|
|
401
401
|
Profil: z.ZodOptional<z.ZodString>;
|
|
402
402
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -404,14 +404,14 @@ export declare const telecomDefinitions: {
|
|
|
404
404
|
"N\u00B0 Centre de facturation"?: string | undefined;
|
|
405
405
|
"N\u00B0 Ligne"?: string | undefined;
|
|
406
406
|
"N\u00B0 IMEI"?: string | undefined;
|
|
407
|
-
"
|
|
407
|
+
"Mod\u00E8le utilis\u00E9"?: string | undefined;
|
|
408
408
|
Profil?: string | undefined;
|
|
409
409
|
}, {
|
|
410
410
|
"Type de produit": string;
|
|
411
411
|
"N\u00B0 Centre de facturation"?: string | undefined;
|
|
412
412
|
"N\u00B0 Ligne"?: string | undefined;
|
|
413
413
|
"N\u00B0 IMEI"?: string | undefined;
|
|
414
|
-
"
|
|
414
|
+
"Mod\u00E8le utilis\u00E9"?: string | undefined;
|
|
415
415
|
Profil?: string | undefined;
|
|
416
416
|
}>, "many">;
|
|
417
417
|
orange_detailed_invoice_upload: z.ZodArray<z.ZodObject<{
|
package/lib/telecom.js
CHANGED
|
@@ -63,7 +63,7 @@ const BouyguesFleetUpload = z.array(z.object({
|
|
|
63
63
|
"N° Centre de facturation": z.string().optional(),
|
|
64
64
|
"N° Ligne": z.string().optional(),
|
|
65
65
|
"N° IMEI": z.string().optional(),
|
|
66
|
-
"
|
|
66
|
+
"Modèle utilisé": z.string().optional(),
|
|
67
67
|
"Type de produit": z.string(),
|
|
68
68
|
Profil: z.string().optional(),
|
|
69
69
|
}));
|