easyeda 0.0.179 → 0.0.180
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/browser/index.d.ts +2 -2
- package/dist/browser/index.js +1 -1
- package/dist/browser/index.js.map +1 -1
- package/dist/{chunk-SQYZHX3A.js → chunk-RWIQCWYB.js} +2 -2
- package/dist/{chunk-SQYZHX3A.js.map → chunk-RWIQCWYB.js.map} +1 -1
- package/dist/cli/main.js +2 -2
- package/dist/cli/main.js.map +1 -1
- package/dist/lib/index.d.ts +6 -6
- package/dist/lib/index.js +1 -1
- package/package.json +1 -1
package/dist/browser/index.d.ts
CHANGED
|
@@ -83,7 +83,7 @@ declare const EasyEdaJsonSchema: z.ZodObject<{
|
|
|
83
83
|
head: z.ZodObject<{
|
|
84
84
|
docType: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, string, string | number>;
|
|
85
85
|
editorVersion: z.ZodString;
|
|
86
|
-
c_para: z.ZodRecord<z.ZodString, z.
|
|
86
|
+
c_para: z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodString>>;
|
|
87
87
|
x: z.ZodNumber;
|
|
88
88
|
y: z.ZodNumber;
|
|
89
89
|
puuid: z.ZodOptional<z.ZodString>;
|
|
@@ -712,7 +712,7 @@ declare const EasyEdaJsonSchema: z.ZodObject<{
|
|
|
712
712
|
head: z.ZodObject<{
|
|
713
713
|
docType: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, string, string | number>;
|
|
714
714
|
editorVersion: z.ZodString;
|
|
715
|
-
c_para: z.ZodRecord<z.ZodString, z.
|
|
715
|
+
c_para: z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodString>>;
|
|
716
716
|
x: z.ZodNumber;
|
|
717
717
|
y: z.ZodNumber;
|
|
718
718
|
puuid: z.ZodOptional<z.ZodString>;
|
package/dist/browser/index.js
CHANGED
|
@@ -607,7 +607,7 @@ var OwnerSchema = z3.object({
|
|
|
607
607
|
var HeadSchema = z3.object({
|
|
608
608
|
docType: z3.union([z3.string(), z3.number()]).transform((val) => val.toString()),
|
|
609
609
|
editorVersion: z3.string(),
|
|
610
|
-
c_para: z3.record(z3.string(), z3.
|
|
610
|
+
c_para: z3.record(z3.string(), z3.string().nullable()),
|
|
611
611
|
x: z3.number(),
|
|
612
612
|
y: z3.number(),
|
|
613
613
|
puuid: z3.string().optional(),
|