@walkeros/explorer 4.0.0-next-1777463920154 → 4.0.0

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.cts CHANGED
@@ -197,6 +197,8 @@ interface IntelliSenseContext {
197
197
  platform?: 'web' | 'server';
198
198
  /** Store IDs from the active flow's `stores` map. Enables `$store.` completion. */
199
199
  stores?: string[];
200
+ /** Sibling flow names from the parsed root document. Enables `$flow.` completion. */
201
+ flows?: string[];
200
202
  /** Known environment variable names. If omitted, `$env.` offers only the prefix. */
201
203
  envNames?: string[];
202
204
  }
@@ -1275,7 +1277,7 @@ declare function getEnrichedContractSchema(): AnySchema$1;
1275
1277
  type AnySchema = Record<string, any>;
1276
1278
  declare function getVariablesSchema(): AnySchema;
1277
1279
 
1278
- type ReferenceType = 'variable' | 'definition' | 'secret' | 'env' | 'store' | 'contract' | 'code';
1280
+ type ReferenceType = 'variable' | 'definition' | 'secret' | 'env' | 'store' | 'flow' | 'contract' | 'code';
1279
1281
  interface WalkerOSReference {
1280
1282
  type: ReferenceType;
1281
1283
  name: string;
package/dist/index.d.ts CHANGED
@@ -197,6 +197,8 @@ interface IntelliSenseContext {
197
197
  platform?: 'web' | 'server';
198
198
  /** Store IDs from the active flow's `stores` map. Enables `$store.` completion. */
199
199
  stores?: string[];
200
+ /** Sibling flow names from the parsed root document. Enables `$flow.` completion. */
201
+ flows?: string[];
200
202
  /** Known environment variable names. If omitted, `$env.` offers only the prefix. */
201
203
  envNames?: string[];
202
204
  }
@@ -1275,7 +1277,7 @@ declare function getEnrichedContractSchema(): AnySchema$1;
1275
1277
  type AnySchema = Record<string, any>;
1276
1278
  declare function getVariablesSchema(): AnySchema;
1277
1279
 
1278
- type ReferenceType = 'variable' | 'definition' | 'secret' | 'env' | 'store' | 'contract' | 'code';
1280
+ type ReferenceType = 'variable' | 'definition' | 'secret' | 'env' | 'store' | 'flow' | 'contract' | 'code';
1279
1281
  interface WalkerOSReference {
1280
1282
  type: ReferenceType;
1281
1283
  name: string;