windmill-cli 1.554.0 → 1.555.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/esm/gen/core/OpenAPI.js +1 -1
- package/esm/gen/services.gen.js +337 -2
- package/esm/src/main.js +1 -1
- package/esm/windmill-utils-internal/src/inline-scripts/extractor.js +11 -8
- package/package.json +1 -1
- package/types/gen/services.gen.d.ts +171 -1
- package/types/gen/services.gen.d.ts.map +1 -1
- package/types/gen/types.gen.d.ts +372 -0
- package/types/gen/types.gen.d.ts.map +1 -1
- package/types/src/main.d.ts +1 -1
- package/types/windmill-utils-internal/src/gen/types.gen.d.ts +372 -0
- package/types/windmill-utils-internal/src/gen/types.gen.d.ts.map +1 -1
- package/types/windmill-utils-internal/src/inline-scripts/extractor.d.ts +4 -1
- package/types/windmill-utils-internal/src/inline-scripts/extractor.d.ts.map +1 -1
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { PathAssigner } from "../path-utils/path-assigner.js";
|
|
1
2
|
import { FlowModule } from "../gen/types.gen.js";
|
|
2
3
|
/**
|
|
3
4
|
* Represents an inline script extracted from a flow module
|
|
@@ -14,10 +15,12 @@ interface InlineScript {
|
|
|
14
15
|
*
|
|
15
16
|
* @param modules - Array of flow modules to process
|
|
16
17
|
* @param mapping - Optional mapping of module IDs to custom file paths
|
|
18
|
+
* @param separator - Path separator to use
|
|
17
19
|
* @param defaultTs - Default TypeScript runtime to use ("bun" or "deno")
|
|
20
|
+
* @param pathAssigner - Optional path assigner to reuse (for nested calls)
|
|
18
21
|
* @returns Array of inline scripts with their paths and content
|
|
19
22
|
*/
|
|
20
|
-
export declare function extractInlineScripts(modules: FlowModule[], mapping?: Record<string, string>, separator?: string, defaultTs?: "bun" | "deno"): InlineScript[];
|
|
23
|
+
export declare function extractInlineScripts(modules: FlowModule[], mapping?: Record<string, string>, separator?: string, defaultTs?: "bun" | "deno", pathAssigner?: PathAssigner): InlineScript[];
|
|
21
24
|
/**
|
|
22
25
|
* Extracts the current mapping of module IDs to file paths from flow modules
|
|
23
26
|
* by analyzing existing inline script references.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"extractor.d.ts","sourceRoot":"","sources":["../../../../src/windmill-utils-internal/src/inline-scripts/extractor.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"extractor.d.ts","sourceRoot":"","sources":["../../../../src/windmill-utils-internal/src/inline-scripts/extractor.ts"],"names":[],"mappings":"AAAA,OAAO,EAAmB,YAAY,EAAE,MAAM,gCAAgC,CAAC;AAC/E,OAAO,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAEjD;;GAEG;AACH,UAAU,YAAY;IACpB,2DAA2D;IAC3D,IAAI,EAAE,MAAM,CAAC;IACb,gCAAgC;IAChC,OAAO,EAAE,MAAM,CAAC;CACjB;AAED;;;;;;;;;;GAUG;AACH,wBAAgB,oBAAoB,CAClC,OAAO,EAAE,UAAU,EAAE,EACrB,OAAO,GAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAM,EACpC,SAAS,GAAE,MAAY,EACvB,SAAS,CAAC,EAAE,KAAK,GAAG,MAAM,EAC1B,YAAY,CAAC,EAAE,YAAY,GAC1B,YAAY,EAAE,CA8DhB;AAED;;;;;;;GAOG;AACH,wBAAgB,qBAAqB,CACnC,OAAO,EAAE,UAAU,EAAE,GAAG,SAAS,EACjC,OAAO,GAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAM,GACnC,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAgCxB"}
|