easyeda 0.0.24 → 0.0.25
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/dist/cli/main.cjs +3 -3
- package/dist/cli/main.cjs.map +1 -1
- package/dist/lib/index.cjs +2 -2
- package/dist/lib/index.cjs.map +1 -1
- package/dist/lib/index.d.cts +6 -6
- package/package.json +1 -1
package/dist/lib/index.d.cts
CHANGED
|
@@ -473,9 +473,9 @@ declare const EasyEdaJsonSchema: z.ZodObject<{
|
|
|
473
473
|
colors: unknown[];
|
|
474
474
|
}>;
|
|
475
475
|
verify: z.ZodBoolean;
|
|
476
|
-
SMT: z.ZodBoolean
|
|
476
|
+
SMT: z.ZodOptional<z.ZodBoolean>;
|
|
477
477
|
datastrid: z.ZodString;
|
|
478
|
-
jlcOnSale: z.ZodNumber
|
|
478
|
+
jlcOnSale: z.ZodOptional<z.ZodNumber>;
|
|
479
479
|
writable: z.ZodBoolean;
|
|
480
480
|
isFavorite: z.ZodBoolean;
|
|
481
481
|
packageDetail: z.ZodObject<{
|
|
@@ -1488,8 +1488,6 @@ declare const EasyEdaJsonSchema: z.ZodObject<{
|
|
|
1488
1488
|
tags: string[];
|
|
1489
1489
|
updated_at: string;
|
|
1490
1490
|
verify: boolean;
|
|
1491
|
-
SMT: boolean;
|
|
1492
|
-
jlcOnSale: number;
|
|
1493
1491
|
isFavorite: boolean;
|
|
1494
1492
|
packageDetail: {
|
|
1495
1493
|
uuid: string;
|
|
@@ -1641,6 +1639,8 @@ declare const EasyEdaJsonSchema: z.ZodObject<{
|
|
|
1641
1639
|
netColors?: unknown[] | undefined;
|
|
1642
1640
|
};
|
|
1643
1641
|
};
|
|
1642
|
+
SMT?: boolean | undefined;
|
|
1643
|
+
jlcOnSale?: number | undefined;
|
|
1644
1644
|
}, {
|
|
1645
1645
|
type: number;
|
|
1646
1646
|
uuid: string;
|
|
@@ -1702,8 +1702,6 @@ declare const EasyEdaJsonSchema: z.ZodObject<{
|
|
|
1702
1702
|
tags: string[];
|
|
1703
1703
|
updated_at: string;
|
|
1704
1704
|
verify: boolean;
|
|
1705
|
-
SMT: boolean;
|
|
1706
|
-
jlcOnSale: number;
|
|
1707
1705
|
isFavorite: boolean;
|
|
1708
1706
|
packageDetail: {
|
|
1709
1707
|
uuid: string;
|
|
@@ -1745,6 +1743,8 @@ declare const EasyEdaJsonSchema: z.ZodObject<{
|
|
|
1745
1743
|
netColors?: unknown[] | undefined;
|
|
1746
1744
|
};
|
|
1747
1745
|
};
|
|
1746
|
+
SMT?: boolean | undefined;
|
|
1747
|
+
jlcOnSale?: number | undefined;
|
|
1748
1748
|
}>;
|
|
1749
1749
|
type EasyEdaJson = z.infer<typeof EasyEdaJsonSchema>;
|
|
1750
1750
|
|