circuit-json 0.0.441 → 0.0.442

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/README.md CHANGED
@@ -3143,6 +3143,7 @@ interface SchematicSheet {
3143
3143
  type: "schematic_sheet"
3144
3144
  schematic_sheet_id: string
3145
3145
  name?: string
3146
+ sheet_index?: number
3146
3147
  subcircuit_id?: string
3147
3148
  outline_color?: string
3148
3149
  }
package/dist/index.d.mts CHANGED
@@ -25813,6 +25813,7 @@ declare const schematic_sheet: z.ZodObject<{
25813
25813
  type: z.ZodLiteral<"schematic_sheet">;
25814
25814
  schematic_sheet_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
25815
25815
  name: z.ZodOptional<z.ZodString>;
25816
+ sheet_index: z.ZodOptional<z.ZodNumber>;
25816
25817
  subcircuit_id: z.ZodOptional<z.ZodString>;
25817
25818
  outline_color: z.ZodOptional<z.ZodString>;
25818
25819
  }, "strip", z.ZodTypeAny, {
@@ -25820,12 +25821,14 @@ declare const schematic_sheet: z.ZodObject<{
25820
25821
  schematic_sheet_id: string;
25821
25822
  name?: string | undefined;
25822
25823
  subcircuit_id?: string | undefined;
25824
+ sheet_index?: number | undefined;
25823
25825
  outline_color?: string | undefined;
25824
25826
  }, {
25825
25827
  type: "schematic_sheet";
25826
25828
  name?: string | undefined;
25827
25829
  subcircuit_id?: string | undefined;
25828
25830
  schematic_sheet_id?: string | undefined;
25831
+ sheet_index?: number | undefined;
25829
25832
  outline_color?: string | undefined;
25830
25833
  }>;
25831
25834
  type SchematicSheetInput = z.input<typeof schematic_sheet>;
@@ -25836,6 +25839,7 @@ interface SchematicSheet {
25836
25839
  type: "schematic_sheet";
25837
25840
  schematic_sheet_id: string;
25838
25841
  name?: string;
25842
+ sheet_index?: number;
25839
25843
  subcircuit_id?: string;
25840
25844
  outline_color?: string;
25841
25845
  }
@@ -52092,6 +52096,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
52092
52096
  type: z.ZodLiteral<"schematic_sheet">;
52093
52097
  schematic_sheet_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
52094
52098
  name: z.ZodOptional<z.ZodString>;
52099
+ sheet_index: z.ZodOptional<z.ZodNumber>;
52095
52100
  subcircuit_id: z.ZodOptional<z.ZodString>;
52096
52101
  outline_color: z.ZodOptional<z.ZodString>;
52097
52102
  }, "strip", z.ZodTypeAny, {
@@ -52099,12 +52104,14 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
52099
52104
  schematic_sheet_id: string;
52100
52105
  name?: string | undefined;
52101
52106
  subcircuit_id?: string | undefined;
52107
+ sheet_index?: number | undefined;
52102
52108
  outline_color?: string | undefined;
52103
52109
  }, {
52104
52110
  type: "schematic_sheet";
52105
52111
  name?: string | undefined;
52106
52112
  subcircuit_id?: string | undefined;
52107
52113
  schematic_sheet_id?: string | undefined;
52114
+ sheet_index?: number | undefined;
52108
52115
  outline_color?: string | undefined;
52109
52116
  }>, z.ZodObject<{
52110
52117
  type: z.ZodLiteral<"schematic_table">;
@@ -70955,6 +70962,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
70955
70962
  type: z.ZodLiteral<"schematic_sheet">;
70956
70963
  schematic_sheet_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
70957
70964
  name: z.ZodOptional<z.ZodString>;
70965
+ sheet_index: z.ZodOptional<z.ZodNumber>;
70958
70966
  subcircuit_id: z.ZodOptional<z.ZodString>;
70959
70967
  outline_color: z.ZodOptional<z.ZodString>;
70960
70968
  }, "strip", z.ZodTypeAny, {
@@ -70962,12 +70970,14 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
70962
70970
  schematic_sheet_id: string;
70963
70971
  name?: string | undefined;
70964
70972
  subcircuit_id?: string | undefined;
70973
+ sheet_index?: number | undefined;
70965
70974
  outline_color?: string | undefined;
70966
70975
  }, {
70967
70976
  type: "schematic_sheet";
70968
70977
  name?: string | undefined;
70969
70978
  subcircuit_id?: string | undefined;
70970
70979
  schematic_sheet_id?: string | undefined;
70980
+ sheet_index?: number | undefined;
70971
70981
  outline_color?: string | undefined;
70972
70982
  }>, z.ZodObject<{
70973
70983
  type: z.ZodLiteral<"schematic_table">;
package/dist/index.mjs CHANGED
@@ -1515,6 +1515,7 @@ var schematic_sheet = z90.object({
1515
1515
  type: z90.literal("schematic_sheet"),
1516
1516
  schematic_sheet_id: getZodPrefixedIdWithDefault("schematic_sheet"),
1517
1517
  name: z90.string().optional(),
1518
+ sheet_index: z90.number().optional(),
1518
1519
  subcircuit_id: z90.string().optional(),
1519
1520
  outline_color: z90.string().optional()
1520
1521
  }).describe(