@tscircuit/props 0.0.572 → 0.0.573

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