@tscircuit/props 0.0.571 → 0.0.572

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/index.d.ts CHANGED
@@ -17859,6 +17859,8 @@ interface RoutingTolerances {
17859
17859
  }
17860
17860
  interface AutorouterConfig {
17861
17861
  serverUrl?: string;
17862
+ cacheServerUrl?: string;
17863
+ shouldUploadToCache?: boolean;
17862
17864
  inputFormat?: "simplified" | "circuit-json";
17863
17865
  serverMode?: "job" | "solve-endpoint";
17864
17866
  serverCacheEnabled?: boolean;
@@ -17905,6 +17907,8 @@ declare const routingTolerances: z.ZodObject<{
17905
17907
  }>;
17906
17908
  declare const autorouterConfig: z.ZodObject<{
17907
17909
  serverUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
17910
+ cacheServerUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
17911
+ shouldUploadToCache: z.ZodOptional<z.ZodBoolean>;
17908
17912
  inputFormat: z.ZodOptional<z.ZodEnum<["simplified", "circuit-json"]>>;
17909
17913
  serverMode: z.ZodOptional<z.ZodEnum<["job", "solve-endpoint"]>>;
17910
17914
  serverCacheEnabled: z.ZodOptional<z.ZodBoolean>;
@@ -17917,6 +17921,8 @@ declare const autorouterConfig: z.ZodObject<{
17917
17921
  local: z.ZodOptional<z.ZodBoolean>;
17918
17922
  }, "strip", z.ZodTypeAny, {
17919
17923
  serverUrl?: string | undefined;
17924
+ cacheServerUrl?: string | undefined;
17925
+ shouldUploadToCache?: boolean | undefined;
17920
17926
  inputFormat?: "simplified" | "circuit-json" | undefined;
17921
17927
  serverMode?: "job" | "solve-endpoint" | undefined;
17922
17928
  serverCacheEnabled?: boolean | undefined;
@@ -17929,6 +17935,8 @@ declare const autorouterConfig: z.ZodObject<{
17929
17935
  local?: boolean | undefined;
17930
17936
  }, {
17931
17937
  serverUrl?: string | undefined;
17938
+ cacheServerUrl?: string | undefined;
17939
+ shouldUploadToCache?: boolean | undefined;
17932
17940
  inputFormat?: "simplified" | "circuit-json" | undefined;
17933
17941
  serverMode?: "job" | "solve-endpoint" | undefined;
17934
17942
  serverCacheEnabled?: boolean | undefined;
package/dist/index.js CHANGED
@@ -16280,6 +16280,8 @@ var routingTolerances = z37.object({
16280
16280
  });
16281
16281
  var autorouterConfig = z37.object({
16282
16282
  serverUrl: url.optional(),
16283
+ cacheServerUrl: url.optional(),
16284
+ shouldUploadToCache: z37.boolean().optional(),
16283
16285
  inputFormat: z37.enum(["simplified", "circuit-json"]).optional(),
16284
16286
  serverMode: z37.enum(["job", "solve-endpoint"]).optional(),
16285
16287
  serverCacheEnabled: z37.boolean().optional(),