@walkeros/explorer 4.0.0 → 4.0.1-next-1778068549946
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 +4 -6
- package/dist/index.d.ts +4 -6
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +6 -6
package/dist/index.d.cts
CHANGED
|
@@ -173,9 +173,7 @@ interface PackageInfo {
|
|
|
173
173
|
}
|
|
174
174
|
interface IntelliSenseContext {
|
|
175
175
|
/** Variable names and values from the flow's `variables` section */
|
|
176
|
-
variables?: Record<string,
|
|
177
|
-
/** Definition names from the flow's `definitions` section */
|
|
178
|
-
definitions?: Record<string, unknown>;
|
|
176
|
+
variables?: Record<string, unknown>;
|
|
179
177
|
/** Secret names available in the project (values are NOT included) */
|
|
180
178
|
secrets?: string[];
|
|
181
179
|
/** Step names from the current flow config, by type */
|
|
@@ -1277,7 +1275,7 @@ declare function getEnrichedContractSchema(): AnySchema$1;
|
|
|
1277
1275
|
type AnySchema = Record<string, any>;
|
|
1278
1276
|
declare function getVariablesSchema(): AnySchema;
|
|
1279
1277
|
|
|
1280
|
-
type ReferenceType = 'variable' | '
|
|
1278
|
+
type ReferenceType = 'variable' | 'secret' | 'env' | 'store' | 'flow' | 'contract' | 'code';
|
|
1281
1279
|
interface WalkerOSReference {
|
|
1282
1280
|
type: ReferenceType;
|
|
1283
1281
|
name: string;
|
|
@@ -1339,8 +1337,8 @@ declare function validateWalkerOSReferences(text: string, context: Partial<Intel
|
|
|
1339
1337
|
* Extract IntelliSense context from a Flow.Json JSON string.
|
|
1340
1338
|
*
|
|
1341
1339
|
* Parses the JSON, walks root → flow → steps, and collects
|
|
1342
|
-
* all discoverable variables,
|
|
1343
|
-
*
|
|
1340
|
+
* all discoverable variables, step names, packages, platform, and
|
|
1341
|
+
* contract entities.
|
|
1344
1342
|
*
|
|
1345
1343
|
* Returns `{}` for invalid JSON or non-Flow structures.
|
|
1346
1344
|
* Pure function, no side effects, no state.
|
package/dist/index.d.ts
CHANGED
|
@@ -173,9 +173,7 @@ interface PackageInfo {
|
|
|
173
173
|
}
|
|
174
174
|
interface IntelliSenseContext {
|
|
175
175
|
/** Variable names and values from the flow's `variables` section */
|
|
176
|
-
variables?: Record<string,
|
|
177
|
-
/** Definition names from the flow's `definitions` section */
|
|
178
|
-
definitions?: Record<string, unknown>;
|
|
176
|
+
variables?: Record<string, unknown>;
|
|
179
177
|
/** Secret names available in the project (values are NOT included) */
|
|
180
178
|
secrets?: string[];
|
|
181
179
|
/** Step names from the current flow config, by type */
|
|
@@ -1277,7 +1275,7 @@ declare function getEnrichedContractSchema(): AnySchema$1;
|
|
|
1277
1275
|
type AnySchema = Record<string, any>;
|
|
1278
1276
|
declare function getVariablesSchema(): AnySchema;
|
|
1279
1277
|
|
|
1280
|
-
type ReferenceType = 'variable' | '
|
|
1278
|
+
type ReferenceType = 'variable' | 'secret' | 'env' | 'store' | 'flow' | 'contract' | 'code';
|
|
1281
1279
|
interface WalkerOSReference {
|
|
1282
1280
|
type: ReferenceType;
|
|
1283
1281
|
name: string;
|
|
@@ -1339,8 +1337,8 @@ declare function validateWalkerOSReferences(text: string, context: Partial<Intel
|
|
|
1339
1337
|
* Extract IntelliSense context from a Flow.Json JSON string.
|
|
1340
1338
|
*
|
|
1341
1339
|
* Parses the JSON, walks root → flow → steps, and collects
|
|
1342
|
-
* all discoverable variables,
|
|
1343
|
-
*
|
|
1340
|
+
* all discoverable variables, step names, packages, platform, and
|
|
1341
|
+
* contract entities.
|
|
1344
1342
|
*
|
|
1345
1343
|
* Returns `{}` for invalid JSON or non-Flow structures.
|
|
1346
1344
|
* Pure function, no side effects, no state.
|