windmill-cli 1.475.1 → 1.477.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/codebase.js CHANGED
@@ -1,18 +1,24 @@
1
1
  import { log } from "./deps.js";
2
2
  import { digestDir } from "./utils.js";
3
- export async function listSyncCodebases(options) {
3
+ export function listSyncCodebases(options) {
4
4
  const res = [];
5
5
  const nb_codebase = options?.codebases?.length ?? 0;
6
6
  if (nb_codebase > 0) {
7
- log.info(`Found ${nb_codebase} codebases:`);
7
+ log.info(`Found ${nb_codebase} codebases: ${options?.codebases?.map((c) => c.relative_path).join(", ")}`);
8
8
  }
9
9
  for (const codebase of options?.codebases ?? []) {
10
- let digest = await digestDir(codebase.relative_path, JSON.stringify(codebase));
11
- if (Array.isArray(codebase.assets) && codebase.assets.length > 0) {
12
- digest += ".tar";
13
- }
14
- log.info(`Codebase ${codebase.relative_path}, digest: ${digest}`);
15
- res.push({ ...codebase, digest });
10
+ let _digest = undefined;
11
+ const getDigest = async () => {
12
+ if (_digest == undefined) {
13
+ _digest = await digestDir(codebase.relative_path, JSON.stringify(codebase));
14
+ if (Array.isArray(codebase.assets) && codebase.assets.length > 0) {
15
+ _digest += ".tar";
16
+ }
17
+ log.info(`Codebase ${codebase.relative_path}, digest: ${_digest}`);
18
+ }
19
+ return _digest;
20
+ };
21
+ res.push({ ...codebase, getDigest });
16
22
  }
17
23
  return res;
18
24
  }
package/esm/flow.js CHANGED
@@ -196,7 +196,7 @@ async function generateLocks(opts, folder) {
196
196
  }
197
197
  else {
198
198
  const ignore = await ignoreF(opts);
199
- const elems = Object.keys(await elementsToMap(await FSFSElement(dntShim.Deno.cwd(), []), (p, isD) => {
199
+ const elems = Object.keys(await elementsToMap(await FSFSElement(dntShim.Deno.cwd(), [], true), (p, isD) => {
200
200
  return (ignore(p, isD) ||
201
201
  (!isD &&
202
202
  !p.endsWith(SEP + "flow.yaml") &&
@@ -32,7 +32,7 @@ export const OpenAPI = {
32
32
  PASSWORD: undefined,
33
33
  TOKEN: getEnv("WM_TOKEN"),
34
34
  USERNAME: undefined,
35
- VERSION: '1.475.1',
35
+ VERSION: '1.477.0',
36
36
  WITH_CREDENTIALS: true,
37
37
  interceptors: {
38
38
  request: new Interceptors(),
@@ -8214,6 +8214,7 @@ export const unstar = (data) => {
8214
8214
  * @param data.runnableType
8215
8215
  * @param data.page which page to return (start at 1, default 1)
8216
8216
  * @param data.perPage number of items to return for a given page (default 30, max 100)
8217
+ * @param data.args filter on jobs containing those args as a json subset (@> in postgres)
8217
8218
  * @param data.includePreview
8218
8219
  * @returns Input Input history for completed jobs
8219
8220
  * @throws ApiError
@@ -8230,6 +8231,7 @@ export const getInputHistory = (data) => {
8230
8231
  runnable_type: data.runnableType,
8231
8232
  page: data.page,
8232
8233
  per_page: data.perPage,
8234
+ args: data.args,
8233
8235
  include_preview: data.includePreview
8234
8236
  }
8235
8237
  });
package/esm/main.js CHANGED
@@ -34,7 +34,7 @@ export { flow, app, script, workspace, resource, user, variable, hub, folder, sc
34
34
  // console.error(JSON.stringify(event.error, null, 4));
35
35
  // }
36
36
  // });
37
- export const VERSION = "1.475.1";
37
+ export const VERSION = "1.477.0";
38
38
  const command = new Command()
39
39
  .name("wmill")
40
40
  .action(() => log.info(`Welcome to Windmill CLI ${VERSION}. Use -h for help.`))
package/esm/metadata.js CHANGED
@@ -47,7 +47,7 @@ function findClosestRawReqs(lang, remotePath, globalDeps) {
47
47
  }
48
48
  const TOP_HASH = "__flow_hash";
49
49
  async function generateFlowHash(folder) {
50
- const elems = await FSFSElement(path.join(dntShim.Deno.cwd(), folder), []);
50
+ const elems = await FSFSElement(path.join(dntShim.Deno.cwd(), folder), [], true);
51
51
  const hashes = {};
52
52
  for await (const f of elems.getChildren()) {
53
53
  if (exts.some((e) => f.path.endsWith(e))) {
package/esm/pull.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import { colors, Command, JSZip, log } from "./deps.js";
2
2
  import { getHeaders } from "./utils.js";
3
- export async function downloadZip(workspace, plainSecrets, skipVariables, skipResources, skipSecrets, includeSchedules, includeTriggers, includeUsers, includeGroups, includeSettings, includeKey, defaultTs) {
3
+ export async function downloadZip(workspace, plainSecrets, skipVariables, skipResources, skipResourceTypes, skipSecrets, includeSchedules, includeTriggers, includeUsers, includeGroups, includeSettings, includeKey, defaultTs) {
4
4
  const requestHeaders = new Headers();
5
5
  requestHeaders.set("Authorization", "Bearer " + workspace.token);
6
6
  requestHeaders.set("Content-Type", "application/octet-stream");
@@ -13,7 +13,7 @@ export async function downloadZip(workspace, plainSecrets, skipVariables, skipRe
13
13
  const zipResponse = await fetch(workspace.remote +
14
14
  "api/w/" +
15
15
  workspace.workspaceId +
16
- `/workspaces/tarball?archive_type=zip&plain_secret=${plainSecrets ?? false}&skip_variables=${skipVariables ?? false}&skip_resources=${skipResources ?? false}&skip_secrets=${skipSecrets ?? false}&include_schedules=${includeSchedules ?? false}&include_triggers=${includeTriggers ?? false}&include_users=${includeUsers ?? false}&include_groups=${includeGroups ?? false}&include_settings=${includeSettings ?? false}&include_key=${includeKey ?? false}&default_ts=${defaultTs ?? "bun"}`, {
16
+ `/workspaces/tarball?archive_type=zip&plain_secret=${plainSecrets ?? false}&skip_variables=${skipVariables ?? false}&skip_resources=${skipResources ?? false}&skip_secrets=${skipSecrets ?? false}&include_schedules=${includeSchedules ?? false}&include_triggers=${includeTriggers ?? false}&include_users=${includeUsers ?? false}&include_groups=${includeGroups ?? false}&include_settings=${includeSettings ?? false}&include_key=${includeKey ?? false}&default_ts=${defaultTs ?? "bun"}&skip_resource_types=${skipResourceTypes ?? false}`, {
17
17
  headers: requestHeaders,
18
18
  method: "GET",
19
19
  });
package/esm/script.js CHANGED
@@ -168,7 +168,7 @@ export async function handleFile(path, workspace, alreadySynced, message, opts,
168
168
  // }
169
169
  }
170
170
  if (typed && codebase) {
171
- typed.codebase = codebase.digest;
171
+ typed.codebase = await codebase.getDigest();
172
172
  }
173
173
  const requestBodyCommon = {
174
174
  content,
@@ -192,8 +192,7 @@ export async function handleFile(path, workspace, alreadySynced, message, opts,
192
192
  has_preprocessor: typed?.has_preprocessor,
193
193
  priority: typed?.priority,
194
194
  concurrency_key: typed?.concurrency_key,
195
- //@ts-ignore
196
- codebase: codebase?.digest,
195
+ codebase: await codebase?.getDigest(),
197
196
  timeout: typed?.timeout,
198
197
  on_behalf_of_email: typed?.on_behalf_of_email,
199
198
  };
@@ -632,7 +631,7 @@ export async function findGlobalDeps() {
632
631
  const pkgs = {};
633
632
  const reqs = {};
634
633
  const composers = {};
635
- const els = await FSFSElement(dntShim.Deno.cwd(), []);
634
+ const els = await FSFSElement(dntShim.Deno.cwd(), [], false);
636
635
  for await (const entry of readDirRecursiveWithIgnore((p, isDir) => {
637
636
  p = SEP + p;
638
637
  return (!isDir &&
@@ -674,7 +673,7 @@ async function generateMetadata(opts, scriptPath) {
674
673
  }
675
674
  else {
676
675
  const ignore = await ignoreF(opts);
677
- const elems = await elementsToMap(await FSFSElement(dntShim.Deno.cwd(), codebases), (p, isD) => {
676
+ const elems = await elementsToMap(await FSFSElement(dntShim.Deno.cwd(), codebases, false), (p, isD) => {
678
677
  return ((!isD && !exts.some((ext) => p.endsWith(ext))) ||
679
678
  ignore(p, isD) ||
680
679
  p.includes(".flow" + SEP) ||
package/esm/sync.js CHANGED
@@ -46,7 +46,7 @@ export function findCodebase(path, codebases) {
46
46
  }
47
47
  }
48
48
  }
49
- async function addCodebaseDigestIfRelevant(path, content, codebases) {
49
+ async function addCodebaseDigestIfRelevant(path, content, codebases, ignoreCodebaseChanges) {
50
50
  const isScript = path.endsWith(".script.yaml");
51
51
  if (!isScript) {
52
52
  return content;
@@ -67,7 +67,12 @@ async function addCodebaseDigestIfRelevant(path, content, codebases) {
67
67
  if (c) {
68
68
  const parsed = yamlParseContent(path, content);
69
69
  if (parsed && typeof parsed == "object") {
70
- parsed["codebase"] = c.digest;
70
+ if (ignoreCodebaseChanges) {
71
+ parsed["codebase"] = undefined;
72
+ }
73
+ else {
74
+ parsed["codebase"] = await c.getDigest();
75
+ }
71
76
  parsed["lock"] = "";
72
77
  return yamlStringify(parsed, yamlOptions);
73
78
  }
@@ -78,7 +83,7 @@ async function addCodebaseDigestIfRelevant(path, content, codebases) {
78
83
  }
79
84
  return content;
80
85
  }
81
- export async function FSFSElement(p, codebases) {
86
+ export async function FSFSElement(p, codebases, ignoreCodebaseChanges) {
82
87
  function _internal_element(localP, isDir, codebases) {
83
88
  return {
84
89
  isDirectory: isDir,
@@ -101,7 +106,7 @@ export async function FSFSElement(p, codebases) {
101
106
  async getContentText() {
102
107
  const content = await dntShim.Deno.readTextFile(localP);
103
108
  const itemPath = localP.substring(p.length + 1);
104
- const r = await addCodebaseDigestIfRelevant(itemPath, content, codebases);
109
+ const r = await addCodebaseDigestIfRelevant(itemPath, content, codebases, ignoreCodebaseChanges);
105
110
  return r;
106
111
  },
107
112
  };
@@ -279,7 +284,7 @@ export function newPathAssigner(defaultTs) {
279
284
  }
280
285
  return { assignPath };
281
286
  }
282
- function ZipFSElement(zip, useYaml, defaultTs, resourceTypeToFormatExtension) {
287
+ function ZipFSElement(zip, useYaml, defaultTs, resourceTypeToFormatExtension, ignoreCodebaseChanges) {
283
288
  async function _internal_file(p, f) {
284
289
  const kind = p.endsWith("flow.json")
285
290
  ? "flow"
@@ -375,6 +380,9 @@ function ZipFSElement(zip, useYaml, defaultTs, resourceTypeToFormatExtension) {
375
380
  else {
376
381
  parsed["lock"] = undefined;
377
382
  }
383
+ if (ignoreCodebaseChanges && parsed["codebase"]) {
384
+ parsed["codebase"] = undefined;
385
+ }
378
386
  return useYaml
379
387
  ? yamlStringify(parsed, yamlOptions)
380
388
  : JSON.stringify(parsed, null, 2);
@@ -536,9 +544,9 @@ export async function elementsToMap(els, ignore, json, skips) {
536
544
  continue;
537
545
  if (skips.skipResources && path.endsWith(".resource" + ext))
538
546
  continue;
539
- if (skips.skipVariables && path.endsWith(".variable" + ext))
547
+ if (skips.skipResourceTypes && path.endsWith(".resource-type" + ext))
540
548
  continue;
541
- if (skips.skipResources && path.endsWith(".resource" + ext))
549
+ if (skips.skipVariables && path.endsWith(".variable" + ext))
542
550
  continue;
543
551
  if (skips.skipResources && isFileResource(path))
544
552
  continue;
@@ -583,7 +591,7 @@ export async function elementsToMap(els, ignore, json, skips) {
583
591
  }
584
592
  return map;
585
593
  }
586
- async function compareDynFSElement(els1, els2, ignore, json, skips, ignoreMetadataDeletion, codebases) {
594
+ async function compareDynFSElement(els1, els2, ignore, json, skips, ignoreMetadataDeletion, codebases, ignoreCodebaseChanges) {
587
595
  const [m1, m2] = els2
588
596
  ? await Promise.all([
589
597
  elementsToMap(els1, ignore, json, skips),
@@ -646,16 +654,18 @@ async function compareDynFSElement(els1, els2, ignore, json, skips, ignoreMetada
646
654
  if (deepEqual(before, after)) {
647
655
  continue;
648
656
  }
649
- if (before.codebase != undefined) {
650
- delete before.codebase;
651
- m2[k] = yamlStringify(before, yamlOptions);
652
- }
653
- if (after.codebase != undefined) {
654
- if (before.codebase != after.codebase) {
655
- codebaseChanges[k] = after.codebase;
657
+ if (!ignoreCodebaseChanges) {
658
+ if (before.codebase != undefined) {
659
+ delete before.codebase;
660
+ m2[k] = yamlStringify(before, yamlOptions);
661
+ }
662
+ if (after.codebase != undefined) {
663
+ if (before.codebase != after.codebase) {
664
+ codebaseChanges[k] = after.codebase;
665
+ }
666
+ delete after.codebase;
667
+ v = yamlStringify(after, yamlOptions);
656
668
  }
657
- delete after.codebase;
658
- v = yamlStringify(after, yamlOptions);
659
669
  }
660
670
  if (skipMetadata) {
661
671
  continue;
@@ -685,29 +695,33 @@ async function compareDynFSElement(els1, els2, ignore, json, skips, ignoreMetada
685
695
  }
686
696
  }
687
697
  }
688
- for (const [k, v] of Object.entries(remoteCodebase)) {
689
- const tsFile = k.replace(".script.yaml", ".ts");
690
- if (changes.find((c) => c.path == tsFile && (c.name == "edited" || c.name == "deleted"))) {
691
- continue;
692
- }
693
- let c = findCodebase(tsFile, codebases);
694
- if (c?.digest != v) {
695
- changes.push({
696
- name: "edited",
697
- path: tsFile,
698
- codebase: v,
699
- before: m1[tsFile],
700
- after: m2[tsFile],
701
- });
698
+ if (!ignoreCodebaseChanges) {
699
+ for (const [k, v] of Object.entries(remoteCodebase)) {
700
+ const tsFile = k.replace(".script.yaml", ".ts");
701
+ if (changes.find((c) => c.path == tsFile && (c.name == "edited" || c.name == "deleted"))) {
702
+ continue;
703
+ }
704
+ const c = findCodebase(tsFile, codebases);
705
+ if (await c?.getDigest() != v) {
706
+ changes.push({
707
+ name: "edited",
708
+ path: tsFile,
709
+ codebase: v,
710
+ before: m1[tsFile],
711
+ after: m2[tsFile],
712
+ });
713
+ }
702
714
  }
703
715
  }
704
- for (const change of changes) {
705
- const codebase = codebaseChanges[change.path];
706
- if (!codebase)
707
- continue;
708
- const tsFile = change.path.replace(".script.yaml", ".ts");
709
- if (change.name == "edited" && change.path == tsFile) {
710
- change.codebase = codebase;
716
+ if (!ignoreCodebaseChanges) {
717
+ for (const change of changes) {
718
+ const codebase = codebaseChanges[change.path];
719
+ if (!codebase)
720
+ continue;
721
+ const tsFile = change.path.replace(".script.yaml", ".ts");
722
+ if (change.name == "edited" && change.path == tsFile) {
723
+ change.codebase = codebase;
724
+ }
711
725
  }
712
726
  }
713
727
  changes.sort((a, b) => getOrderFromPath(a.path) == getOrderFromPath(b.path)
@@ -829,6 +843,10 @@ export async function ignoreF(wmillconf) {
829
843
  }
830
844
  // new Gitignore.default({ initialRules: ignoreContent.split("\n")}).ignoreContent).compile();
831
845
  return (p, isDirectory) => {
846
+ const ext = wmillconf.json ? ".json" : ".yaml";
847
+ if (!isDirectory && p.endsWith(".resource-type" + ext)) {
848
+ return wmillconf.skipResourceTypes ?? false;
849
+ }
832
850
  return (!isWhitelisted(p) &&
833
851
  (isNotWmillFile(p, isDirectory) ||
834
852
  (!isDirectory && whitelist != undefined && !whitelist.approve(p))));
@@ -901,11 +919,11 @@ export async function pull(opts) {
901
919
  catch {
902
920
  // ignore
903
921
  }
904
- const remote = ZipFSElement((await downloadZip(workspace, opts.plainSecrets, opts.skipVariables, opts.skipResources, opts.skipSecrets, opts.includeSchedules, opts.includeTriggers, opts.includeUsers, opts.includeGroups, opts.includeSettings, opts.includeKey, opts.defaultTs)), !opts.json, opts.defaultTs ?? "bun", resourceTypeToFormatExtension);
922
+ const remote = ZipFSElement((await downloadZip(workspace, opts.plainSecrets, opts.skipVariables, opts.skipResources, opts.skipResourceTypes, opts.skipSecrets, opts.includeSchedules, opts.includeTriggers, opts.includeUsers, opts.includeGroups, opts.includeSettings, opts.includeKey, opts.defaultTs)), !opts.json, opts.defaultTs ?? "bun", resourceTypeToFormatExtension, true);
905
923
  const local = !opts.stateful
906
- ? await FSFSElement(dntShim.Deno.cwd(), codebases)
907
- : await FSFSElement(path.join(dntShim.Deno.cwd(), ".wmill"), []);
908
- const changes = await compareDynFSElement(remote, local, await ignoreF(opts), opts.json ?? false, opts, false, codebases);
924
+ ? await FSFSElement(dntShim.Deno.cwd(), codebases, true)
925
+ : await FSFSElement(path.join(dntShim.Deno.cwd(), ".wmill"), [], true);
926
+ const changes = await compareDynFSElement(remote, local, await ignoreF(opts), opts.json ?? false, opts, false, codebases, true);
909
927
  log.info(`remote (${workspace.name}) -> local: ${changes.length} changes to apply`);
910
928
  if (changes.length > 0) {
911
929
  prettyChanges(changes);
@@ -1089,11 +1107,10 @@ export async function push(opts) {
1089
1107
  catch {
1090
1108
  // ignore
1091
1109
  }
1092
- const remote = ZipFSElement((await downloadZip(workspace, opts.plainSecrets, opts.skipVariables, opts.skipResources, opts.skipSecrets, opts.includeSchedules, opts.includeTriggers, opts.includeUsers, opts.includeGroups, opts.includeSettings, opts.includeKey, opts.defaultTs)), !opts.json, opts.defaultTs ?? "bun", resourceTypeToFormatExtension);
1093
- const local = await FSFSElement(path.join(dntShim.Deno.cwd(), ""), codebases);
1094
- const changes = await compareDynFSElement(local, remote, await ignoreF(opts), opts.json ?? false, opts, true, codebases);
1110
+ const remote = ZipFSElement((await downloadZip(workspace, opts.plainSecrets, opts.skipVariables, opts.skipResources, opts.skipResourceTypes, opts.skipSecrets, opts.includeSchedules, opts.includeTriggers, opts.includeUsers, opts.includeGroups, opts.includeSettings, opts.includeKey, opts.defaultTs)), !opts.json, opts.defaultTs ?? "bun", resourceTypeToFormatExtension, false);
1111
+ const local = await FSFSElement(path.join(dntShim.Deno.cwd(), ""), codebases, false);
1112
+ const changes = await compareDynFSElement(local, remote, await ignoreF(opts), opts.json ?? false, opts, true, codebases, false);
1095
1113
  const globalDeps = await findGlobalDeps();
1096
- console.log("globalDeps", globalDeps);
1097
1114
  const tracker = await buildTracker(changes);
1098
1115
  const staleScripts = [];
1099
1116
  const staleFlows = [];
@@ -1408,6 +1425,7 @@ const command = new Command()
1408
1425
  .option("--skip-variables", "Skip syncing variables (including secrets)")
1409
1426
  .option("--skip-secrets", "Skip syncing only secrets variables")
1410
1427
  .option("--skip-resources", "Skip syncing resources")
1428
+ .option("--skip-resource-types", "Skip syncing resource types")
1411
1429
  // .option("--skip-scripts-metadata", "Skip syncing scripts metadata, focus solely on logic")
1412
1430
  .option("--include-schedules", "Include syncing schedules")
1413
1431
  .option("--include-triggers", "Include syncing triggers")
@@ -1428,6 +1446,7 @@ const command = new Command()
1428
1446
  .option("--skip-variables", "Skip syncing variables (including secrets)")
1429
1447
  .option("--skip-secrets", "Skip syncing only secrets variables")
1430
1448
  .option("--skip-resources", "Skip syncing resources")
1449
+ .option("--skip-resource-types", "Skip syncing resource types")
1431
1450
  // .option("--skip-scripts-metadata", "Skip syncing scripts metadata, focus solely on logic")
1432
1451
  .option("--include-schedules", "Include syncing schedules")
1433
1452
  .option("--include-triggers", "Include syncing triggers")
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "windmill-cli",
3
- "version": "1.475.1",
3
+ "version": "1.477.0",
4
4
  "description": "CLI for Windmill",
5
5
  "repository": {
6
6
  "type": "git",
@@ -1,6 +1,6 @@
1
1
  import { Codebase, SyncOptions } from "./conf.js";
2
2
  export type SyncCodebase = Codebase & {
3
- digest: string;
3
+ getDigest: () => Promise<string>;
4
4
  };
5
- export declare function listSyncCodebases(options: SyncOptions): Promise<SyncCodebase[]>;
5
+ export declare function listSyncCodebases(options: SyncOptions): SyncCodebase[];
6
6
  //# sourceMappingURL=codebase.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"codebase.d.ts","sourceRoot":"","sources":["../src/codebase.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,WAAW,CAAC;AAIlD,MAAM,MAAM,YAAY,GAAG,QAAQ,GAAG;IAAE,MAAM,EAAE,MAAM,CAAA;CAAE,CAAC;AACzD,wBAAsB,iBAAiB,CACrC,OAAO,EAAE,WAAW,GACnB,OAAO,CAAC,YAAY,EAAE,CAAC,CAmBzB"}
1
+ {"version":3,"file":"codebase.d.ts","sourceRoot":"","sources":["../src/codebase.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,WAAW,CAAC;AAIlD,MAAM,MAAM,YAAY,GAAG,QAAQ,GAAG;IAAE,SAAS,EAAE,MAAM,OAAO,CAAC,MAAM,CAAC,CAAA;CAAE,CAAC;AAC3E,wBAAgB,iBAAiB,CAC/B,OAAO,EAAE,WAAW,GACnB,YAAY,EAAE,CAyBhB"}
package/types/conf.d.ts CHANGED
@@ -8,6 +8,7 @@ export interface SyncOptions {
8
8
  json?: boolean;
9
9
  skipVariables?: boolean;
10
10
  skipResources?: boolean;
11
+ skipResourceTypes?: boolean;
11
12
  skipSecrets?: boolean;
12
13
  includeSchedules?: boolean;
13
14
  includeTriggers?: boolean;
@@ -1 +1 @@
1
- {"version":3,"file":"conf.d.ts","sourceRoot":"","sources":["../src/conf.ts"],"names":[],"mappings":"AAEA,MAAM,WAAW,WAAW;IAC1B,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,GAAG,CAAC,EAAE,OAAO,CAAC;IACd,GAAG,CAAC,EAAE,OAAO,CAAC;IACd,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,QAAQ,CAAC,EAAE,MAAM,EAAE,CAAC;IACpB,aAAa,CAAC,EAAE,MAAM,EAAE,CAAC;IACzB,QAAQ,CAAC,EAAE,MAAM,EAAE,CAAC;IACpB,SAAS,CAAC,EAAE,KAAK,GAAG,MAAM,CAAC;IAC3B,SAAS,CAAC,EAAE,QAAQ,EAAE,CAAC;IACvB,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB;AAED,MAAM,WAAW,QAAQ;IACvB,aAAa,EAAE,MAAM,CAAC;IACtB,QAAQ,CAAC,EAAE,MAAM,EAAE,CAAC;IACpB,QAAQ,CAAC,EAAE,MAAM,EAAE,CAAC;IACpB,MAAM,CAAC,EAAE;QACP,IAAI,EAAE,MAAM,CAAC;QACb,EAAE,EAAE,MAAM,CAAC;KACZ,EAAE,CAAC;IACJ,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,QAAQ,CAAC,EAAE,MAAM,EAAE,CAAC;IACpB,MAAM,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAA;KAAE,CAAC;IACnC,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;CACnB;AAED,wBAAsB,cAAc,IAAI,OAAO,CAAC,WAAW,CAAC,CAe3D;AAED,wBAAsB,yBAAyB,CAAC,CAAC,EAC/C,IAAI,EAAE,CAAC,GACN,OAAO,CAAC,CAAC,GAAG,WAAW,CAAC,CAG1B"}
1
+ {"version":3,"file":"conf.d.ts","sourceRoot":"","sources":["../src/conf.ts"],"names":[],"mappings":"AAEA,MAAM,WAAW,WAAW;IAC1B,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,GAAG,CAAC,EAAE,OAAO,CAAC;IACd,GAAG,CAAC,EAAE,OAAO,CAAC;IACd,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAC5B,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,QAAQ,CAAC,EAAE,MAAM,EAAE,CAAC;IACpB,aAAa,CAAC,EAAE,MAAM,EAAE,CAAC;IACzB,QAAQ,CAAC,EAAE,MAAM,EAAE,CAAC;IACpB,SAAS,CAAC,EAAE,KAAK,GAAG,MAAM,CAAC;IAC3B,SAAS,CAAC,EAAE,QAAQ,EAAE,CAAC;IACvB,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB;AAED,MAAM,WAAW,QAAQ;IACvB,aAAa,EAAE,MAAM,CAAC;IACtB,QAAQ,CAAC,EAAE,MAAM,EAAE,CAAC;IACpB,QAAQ,CAAC,EAAE,MAAM,EAAE,CAAC;IACpB,MAAM,CAAC,EAAE;QACP,IAAI,EAAE,MAAM,CAAC;QACb,EAAE,EAAE,MAAM,CAAC;KACZ,EAAE,CAAC;IACJ,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,QAAQ,CAAC,EAAE,MAAM,EAAE,CAAC;IACpB,MAAM,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAA;KAAE,CAAC;IACnC,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;CACnB;AAED,wBAAsB,cAAc,IAAI,OAAO,CAAC,WAAW,CAAC,CAe3D;AAED,wBAAsB,yBAAyB,CAAC,CAAC,EAC/C,IAAI,EAAE,CAAC,GACN,OAAO,CAAC,CAAC,GAAG,WAAW,CAAC,CAG1B"}
@@ -4049,6 +4049,7 @@ export declare const unstar: (data: UnstarData) => CancelablePromise<UnstarRespo
4049
4049
  * @param data.runnableType
4050
4050
  * @param data.page which page to return (start at 1, default 1)
4051
4051
  * @param data.perPage number of items to return for a given page (default 30, max 100)
4052
+ * @param data.args filter on jobs containing those args as a json subset (@> in postgres)
4052
4053
  * @param data.includePreview
4053
4054
  * @returns Input Input history for completed jobs
4054
4055
  * @throws ApiError