@datatechsolutions/ui 2.11.56 → 2.11.57
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/astrlabe/contracts.d.mts +4 -0
- package/dist/astrlabe/contracts.d.ts +4 -0
- package/dist/astrlabe/index.js +131 -131
- package/dist/astrlabe/index.mjs +3 -3
- package/dist/astrlabe/workflow-canvas.js +3 -3
- package/dist/astrlabe/workflow-canvas.mjs +2 -2
- package/dist/{chunk-GWLWSE2C.mjs → chunk-7L2ASZLV.mjs} +543 -4
- package/dist/chunk-7L2ASZLV.mjs.map +1 -0
- package/dist/{chunk-FXJBJ77I.mjs → chunk-ESC5OVLF.mjs} +18 -4
- package/dist/chunk-ESC5OVLF.mjs.map +1 -0
- package/dist/{chunk-P67L6WXL.js → chunk-G77XRUWZ.js} +67 -53
- package/dist/{chunk-P67L6WXL.js.map → chunk-G77XRUWZ.js.map} +1 -1
- package/dist/{chunk-5N6QYUAA.js → chunk-JGVH3R46.js} +542 -2
- package/dist/chunk-JGVH3R46.js.map +1 -0
- package/dist/index.d.mts +18 -1
- package/dist/index.d.ts +18 -1
- package/dist/index.js +720 -716
- package/dist/index.mjs +1 -1
- package/package.json +3 -3
- package/dist/chunk-5N6QYUAA.js.map +0 -1
- package/dist/chunk-FXJBJ77I.mjs.map +0 -1
- package/dist/chunk-GWLWSE2C.mjs.map +0 -1
|
@@ -34,6 +34,10 @@ type HttpRequestNodeConfig = {
|
|
|
34
34
|
headers: Record<string, string>;
|
|
35
35
|
body: string;
|
|
36
36
|
timeoutMs: number;
|
|
37
|
+
/** How to decode the response body before storing it under `output.body`.
|
|
38
|
+
* `json` (default) tries `serde_json::from_slice` and falls back to text.
|
|
39
|
+
* `text` always stores the body as a raw string — use for RSS/HTML/XML. */
|
|
40
|
+
parseResponse?: 'json' | 'text';
|
|
37
41
|
};
|
|
38
42
|
type TemplateTransformNodeConfig = {
|
|
39
43
|
type: 'template_transform';
|
|
@@ -34,6 +34,10 @@ type HttpRequestNodeConfig = {
|
|
|
34
34
|
headers: Record<string, string>;
|
|
35
35
|
body: string;
|
|
36
36
|
timeoutMs: number;
|
|
37
|
+
/** How to decode the response body before storing it under `output.body`.
|
|
38
|
+
* `json` (default) tries `serde_json::from_slice` and falls back to text.
|
|
39
|
+
* `text` always stores the body as a raw string — use for RSS/HTML/XML. */
|
|
40
|
+
parseResponse?: 'json' | 'text';
|
|
37
41
|
};
|
|
38
42
|
type TemplateTransformNodeConfig = {
|
|
39
43
|
type: 'template_transform';
|