@tscircuit/props 0.0.607 → 0.0.608
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 +7 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/lib/platformConfig.ts +8 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2230,6 +2230,13 @@ export interface PlatformConfig {
|
|
|
2230
2230
|
|
|
2231
2231
|
autorouterMap?: Record<string, AutorouterDefinition>;
|
|
2232
2232
|
|
|
2233
|
+
/**
|
|
2234
|
+
* Allows the deprecated sequential_trace and auto_cloud autorouter presets.
|
|
2235
|
+
* Defaults to false because these presets are otherwise disabled.
|
|
2236
|
+
* Platforms should only enable this temporarily while migrating projects.
|
|
2237
|
+
*/
|
|
2238
|
+
allowLegacyAutorouters?: boolean;
|
|
2239
|
+
|
|
2233
2240
|
// TODO this follows a subset of the localStorage interface
|
|
2234
2241
|
localCacheEngine?: any;
|
|
2235
2242
|
|
package/dist/index.d.ts
CHANGED
|
@@ -192727,6 +192727,12 @@ interface PlatformConfig {
|
|
|
192727
192727
|
partsEngine?: PartsEngine;
|
|
192728
192728
|
autorouter?: AutorouterProp;
|
|
192729
192729
|
autorouterMap?: Record<string, AutorouterDefinition>;
|
|
192730
|
+
/**
|
|
192731
|
+
* Allows the deprecated sequential_trace and auto_cloud autorouter presets.
|
|
192732
|
+
* Defaults to false because these presets are otherwise disabled.
|
|
192733
|
+
* Platforms should only enable this temporarily while migrating projects.
|
|
192734
|
+
*/
|
|
192735
|
+
allowLegacyAutorouters?: boolean;
|
|
192730
192736
|
localCacheEngine?: any;
|
|
192731
192737
|
registryApiUrl?: string;
|
|
192732
192738
|
cloudAutorouterUrl?: string;
|
package/dist/index.js
CHANGED
|
@@ -18947,6 +18947,7 @@ var platformConfig = z146.object({
|
|
|
18947
18947
|
partsEngine: partsEngine.optional(),
|
|
18948
18948
|
autorouter: autorouterProp.optional(),
|
|
18949
18949
|
autorouterMap: z146.record(z146.string(), autorouterDefinition).optional(),
|
|
18950
|
+
allowLegacyAutorouters: z146.boolean().optional(),
|
|
18950
18951
|
registryApiUrl: url.optional(),
|
|
18951
18952
|
cloudAutorouterUrl: url.optional(),
|
|
18952
18953
|
projectName: z146.string().optional(),
|