windmill-client 1.811.1 → 1.813.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/client.d.ts +7 -0
- package/dist/core/OpenAPI.mjs +1 -1
- package/dist/index.js +346 -1
- package/dist/index.mjs +2 -2
- package/dist/services.gen.d.ts +181 -1
- package/dist/services.gen.mjs +345 -1
- package/dist/types.gen.d.ts +838 -28
- package/package.json +1 -1
package/dist/client.d.ts
CHANGED
|
@@ -528,6 +528,13 @@ export interface TaskRetry {
|
|
|
528
528
|
export interface TaskOptions {
|
|
529
529
|
timeout?: number;
|
|
530
530
|
tag?: string;
|
|
531
|
+
/** Seconds during which a previous result of this task is served instead of
|
|
532
|
+
* running it again. A task written inline in the workflow is keyed on its
|
|
533
|
+
* step key (its name and call order) and the workflow's input, not on the
|
|
534
|
+
* arguments it is called with, so cache one only when whether it runs, and
|
|
535
|
+
* what it receives, follow from the workflow's input alone. A `taskScript`
|
|
536
|
+
* target is keyed on the arguments it is called with. It has no effect on a
|
|
537
|
+
* `taskFlow` target, which keeps its flow's own cache policy. */
|
|
531
538
|
cache_ttl?: number;
|
|
532
539
|
priority?: number;
|
|
533
540
|
concurrency_limit?: number;
|
package/dist/core/OpenAPI.mjs
CHANGED
package/dist/index.js
CHANGED
|
@@ -126,7 +126,7 @@ const OpenAPI = {
|
|
|
126
126
|
PASSWORD: void 0,
|
|
127
127
|
TOKEN: getEnv$1("WM_TOKEN"),
|
|
128
128
|
USERNAME: void 0,
|
|
129
|
-
VERSION: "1.
|
|
129
|
+
VERSION: "1.813.0",
|
|
130
130
|
WITH_CREDENTIALS: !getEnv$1("WM_RAW_APP"),
|
|
131
131
|
interceptors: {
|
|
132
132
|
request: new Interceptors(),
|
|
@@ -549,6 +549,99 @@ var AuditService = class {
|
|
|
549
549
|
});
|
|
550
550
|
}
|
|
551
551
|
};
|
|
552
|
+
var TrashService = class {
|
|
553
|
+
/**
|
|
554
|
+
* list the workspace trashbin (requires admin privilege)
|
|
555
|
+
* @param data The data for the request.
|
|
556
|
+
* @param data.workspace
|
|
557
|
+
* @param data.itemKind only return items of this kind: script, flow, app, schedule, variable, resource, or a trigger kind such as http_trigger
|
|
558
|
+
*
|
|
559
|
+
* @param data.page which page to return (starts at 0, default 0)
|
|
560
|
+
* @param data.perPage number of items to return for a given page (default 100, max 1000)
|
|
561
|
+
* @returns TrashItem the trashed items, most recently deleted first
|
|
562
|
+
* @throws ApiError
|
|
563
|
+
*/
|
|
564
|
+
static listTrash(data) {
|
|
565
|
+
return request(OpenAPI, {
|
|
566
|
+
method: "GET",
|
|
567
|
+
url: "/w/{workspace}/trash/list",
|
|
568
|
+
path: { workspace: data.workspace },
|
|
569
|
+
query: {
|
|
570
|
+
item_kind: data.itemKind,
|
|
571
|
+
page: data.page,
|
|
572
|
+
per_page: data.perPage
|
|
573
|
+
}
|
|
574
|
+
});
|
|
575
|
+
}
|
|
576
|
+
/**
|
|
577
|
+
* get a trashed item with the data it was deleted with (requires admin privilege)
|
|
578
|
+
* @param data The data for the request.
|
|
579
|
+
* @param data.workspace
|
|
580
|
+
* @param data.id
|
|
581
|
+
* @returns TrashItemWithData the trashed item
|
|
582
|
+
* @throws ApiError
|
|
583
|
+
*/
|
|
584
|
+
static getTrashItem(data) {
|
|
585
|
+
return request(OpenAPI, {
|
|
586
|
+
method: "GET",
|
|
587
|
+
url: "/w/{workspace}/trash/get/{id}",
|
|
588
|
+
path: {
|
|
589
|
+
workspace: data.workspace,
|
|
590
|
+
id: data.id
|
|
591
|
+
}
|
|
592
|
+
});
|
|
593
|
+
}
|
|
594
|
+
/**
|
|
595
|
+
* restore a trashed item to its path (requires admin privilege)
|
|
596
|
+
* @param data The data for the request.
|
|
597
|
+
* @param data.workspace
|
|
598
|
+
* @param data.id
|
|
599
|
+
* @returns string item restored
|
|
600
|
+
* @throws ApiError
|
|
601
|
+
*/
|
|
602
|
+
static restoreTrashItem(data) {
|
|
603
|
+
return request(OpenAPI, {
|
|
604
|
+
method: "POST",
|
|
605
|
+
url: "/w/{workspace}/trash/restore/{id}",
|
|
606
|
+
path: {
|
|
607
|
+
workspace: data.workspace,
|
|
608
|
+
id: data.id
|
|
609
|
+
}
|
|
610
|
+
});
|
|
611
|
+
}
|
|
612
|
+
/**
|
|
613
|
+
* permanently delete a trashed item (requires admin privilege)
|
|
614
|
+
* @param data The data for the request.
|
|
615
|
+
* @param data.workspace
|
|
616
|
+
* @param data.id
|
|
617
|
+
* @returns string item permanently deleted
|
|
618
|
+
* @throws ApiError
|
|
619
|
+
*/
|
|
620
|
+
static permanentlyDeleteTrashItem(data) {
|
|
621
|
+
return request(OpenAPI, {
|
|
622
|
+
method: "DELETE",
|
|
623
|
+
url: "/w/{workspace}/trash/delete/{id}",
|
|
624
|
+
path: {
|
|
625
|
+
workspace: data.workspace,
|
|
626
|
+
id: data.id
|
|
627
|
+
}
|
|
628
|
+
});
|
|
629
|
+
}
|
|
630
|
+
/**
|
|
631
|
+
* permanently delete every item in the workspace trashbin (requires admin privilege)
|
|
632
|
+
* @param data The data for the request.
|
|
633
|
+
* @param data.workspace
|
|
634
|
+
* @returns string trashbin emptied
|
|
635
|
+
* @throws ApiError
|
|
636
|
+
*/
|
|
637
|
+
static emptyTrash(data) {
|
|
638
|
+
return request(OpenAPI, {
|
|
639
|
+
method: "POST",
|
|
640
|
+
url: "/w/{workspace}/trash/empty",
|
|
641
|
+
path: { workspace: data.workspace }
|
|
642
|
+
});
|
|
643
|
+
}
|
|
644
|
+
};
|
|
552
645
|
var UserService = class {
|
|
553
646
|
/**
|
|
554
647
|
* login with password
|
|
@@ -616,6 +709,22 @@ var UserService = class {
|
|
|
616
709
|
});
|
|
617
710
|
}
|
|
618
711
|
/**
|
|
712
|
+
* consume a single-use login link, set the session cookie and redirect
|
|
713
|
+
* @param data The data for the request.
|
|
714
|
+
* @param data.token
|
|
715
|
+
* @param data.rd
|
|
716
|
+
* @throws ApiError
|
|
717
|
+
*/
|
|
718
|
+
static consumeLoginLink(data) {
|
|
719
|
+
return request(OpenAPI, {
|
|
720
|
+
method: "GET",
|
|
721
|
+
url: "/auth/login_link/{token}",
|
|
722
|
+
path: { token: data.token },
|
|
723
|
+
query: { rd: data.rd },
|
|
724
|
+
errors: { 302: "redirected to the post-login destination, or to /user/login_link_expired when the link is used, expired or unknown" }
|
|
725
|
+
});
|
|
726
|
+
}
|
|
727
|
+
/**
|
|
619
728
|
* reset password using token
|
|
620
729
|
* @param data The data for the request.
|
|
621
730
|
* @param data.requestBody token and new password
|
|
@@ -1364,6 +1473,89 @@ var UserService = class {
|
|
|
1364
1473
|
});
|
|
1365
1474
|
}
|
|
1366
1475
|
/**
|
|
1476
|
+
* mint a single-use login link for an account (require superadmin)
|
|
1477
|
+
* @param data The data for the request.
|
|
1478
|
+
* @param data.requestBody target account and link options
|
|
1479
|
+
* @returns unknown login link minted
|
|
1480
|
+
* @throws ApiError
|
|
1481
|
+
*/
|
|
1482
|
+
static createLoginLink(data) {
|
|
1483
|
+
return request(OpenAPI, {
|
|
1484
|
+
method: "POST",
|
|
1485
|
+
url: "/users/login_links",
|
|
1486
|
+
body: data.requestBody,
|
|
1487
|
+
mediaType: "application/json",
|
|
1488
|
+
errors: { 409: "the account does not have the required login type" }
|
|
1489
|
+
});
|
|
1490
|
+
}
|
|
1491
|
+
/**
|
|
1492
|
+
* record or consume a pre-approved self-hosted trial offer for a cloud account (require superadmin, cloud only)
|
|
1493
|
+
* @param data The data for the request.
|
|
1494
|
+
* @param data.requestBody
|
|
1495
|
+
* @returns string offer recorded or consumed
|
|
1496
|
+
* @throws ApiError
|
|
1497
|
+
*/
|
|
1498
|
+
static setCloudTrialOffer(data) {
|
|
1499
|
+
return request(OpenAPI, {
|
|
1500
|
+
method: "POST",
|
|
1501
|
+
url: "/users/cloud_trial_offer",
|
|
1502
|
+
body: data.requestBody,
|
|
1503
|
+
mediaType: "application/json"
|
|
1504
|
+
});
|
|
1505
|
+
}
|
|
1506
|
+
/**
|
|
1507
|
+
* whether the signed-in account holds an unconsumed pre-approved self-hosted trial offer (cloud only)
|
|
1508
|
+
* @returns unknown offer state
|
|
1509
|
+
* @throws ApiError
|
|
1510
|
+
*/
|
|
1511
|
+
static getCloudTrialOffer() {
|
|
1512
|
+
return request(OpenAPI, {
|
|
1513
|
+
method: "GET",
|
|
1514
|
+
url: "/users/cloud_trial_offer"
|
|
1515
|
+
});
|
|
1516
|
+
}
|
|
1517
|
+
/**
|
|
1518
|
+
* start the signed-in account's pre-approved self-hosted trial on the customer portal (cloud only). A POST answered as JSON rather than a redirecting GET, so a cross-site navigation cannot start it; the browser navigates to `location` itself
|
|
1519
|
+
* @returns unknown where to go — the customer portal signed in with the trial being started, or the portal home with the reason the offer could not be used
|
|
1520
|
+
* @throws ApiError
|
|
1521
|
+
*/
|
|
1522
|
+
static goCloudTrialOffer() {
|
|
1523
|
+
return request(OpenAPI, {
|
|
1524
|
+
method: "POST",
|
|
1525
|
+
url: "/users/cloud_trial_offer/go",
|
|
1526
|
+
errors: {
|
|
1527
|
+
403: "called with a job token",
|
|
1528
|
+
404: "no offer for this account"
|
|
1529
|
+
}
|
|
1530
|
+
});
|
|
1531
|
+
}
|
|
1532
|
+
/**
|
|
1533
|
+
* record the invite context an account's onboarding tailors itself from (require superadmin, cloud only)
|
|
1534
|
+
* @param data The data for the request.
|
|
1535
|
+
* @param data.requestBody
|
|
1536
|
+
* @returns string profile recorded
|
|
1537
|
+
* @throws ApiError
|
|
1538
|
+
*/
|
|
1539
|
+
static setOnboardingProfile(data) {
|
|
1540
|
+
return request(OpenAPI, {
|
|
1541
|
+
method: "POST",
|
|
1542
|
+
url: "/users/onboarding_profile",
|
|
1543
|
+
body: data.requestBody,
|
|
1544
|
+
mediaType: "application/json"
|
|
1545
|
+
});
|
|
1546
|
+
}
|
|
1547
|
+
/**
|
|
1548
|
+
* the invite context recorded for the signed-in account, if any (cloud only)
|
|
1549
|
+
* @returns unknown the profile, or null when none was recorded
|
|
1550
|
+
* @throws ApiError
|
|
1551
|
+
*/
|
|
1552
|
+
static getOnboardingProfile() {
|
|
1553
|
+
return request(OpenAPI, {
|
|
1554
|
+
method: "GET",
|
|
1555
|
+
url: "/users/onboarding_profile"
|
|
1556
|
+
});
|
|
1557
|
+
}
|
|
1558
|
+
/**
|
|
1367
1559
|
* delete token
|
|
1368
1560
|
* @param data The data for the request.
|
|
1369
1561
|
* @param data.tokenPrefix
|
|
@@ -1844,6 +2036,21 @@ var WorkspaceService = class {
|
|
|
1844
2036
|
});
|
|
1845
2037
|
}
|
|
1846
2038
|
/**
|
|
2039
|
+
* get the AI session retention of workspaces referenced by client-side sessions
|
|
2040
|
+
* @param data The data for the request.
|
|
2041
|
+
* @param data.requestBody
|
|
2042
|
+
* @returns number map of workspace id to its `ai_config.sessions_retention_days`; a workspace without a retention, or one the caller cannot be authenticated into, is absent
|
|
2043
|
+
* @throws ApiError
|
|
2044
|
+
*/
|
|
2045
|
+
static getSessionWorkspaceRetention(data) {
|
|
2046
|
+
return request(OpenAPI, {
|
|
2047
|
+
method: "POST",
|
|
2048
|
+
url: "/workspaces/session_workspace_retention",
|
|
2049
|
+
body: data.requestBody,
|
|
2050
|
+
mediaType: "application/json"
|
|
2051
|
+
});
|
|
2052
|
+
}
|
|
2053
|
+
/**
|
|
1847
2054
|
* get workspace as super admin (require to be super admin)
|
|
1848
2055
|
* @param data The data for the request.
|
|
1849
2056
|
* @param data.workspace
|
|
@@ -6098,6 +6305,24 @@ var FlowService = class {
|
|
|
6098
6305
|
});
|
|
6099
6306
|
}
|
|
6100
6307
|
/**
|
|
6308
|
+
* list flow paths with a step linked to a saved agent
|
|
6309
|
+
* @param data The data for the request.
|
|
6310
|
+
* @param data.workspace
|
|
6311
|
+
* @param data.path
|
|
6312
|
+
* @returns string paths of the flows linking the `ai_agent` resource, as of their last deploy
|
|
6313
|
+
* @throws ApiError
|
|
6314
|
+
*/
|
|
6315
|
+
static listFlowPathsLinkingAgent(data) {
|
|
6316
|
+
return request(OpenAPI, {
|
|
6317
|
+
method: "GET",
|
|
6318
|
+
url: "/w/{workspace}/flows/list_paths_linking_agent/{path}",
|
|
6319
|
+
path: {
|
|
6320
|
+
workspace: data.workspace,
|
|
6321
|
+
path: data.path
|
|
6322
|
+
}
|
|
6323
|
+
});
|
|
6324
|
+
}
|
|
6325
|
+
/**
|
|
6101
6326
|
* get flow version
|
|
6102
6327
|
* @param data The data for the request.
|
|
6103
6328
|
* @param data.workspace
|
|
@@ -11639,6 +11864,125 @@ var AiService = class {
|
|
|
11639
11864
|
}
|
|
11640
11865
|
});
|
|
11641
11866
|
}
|
|
11867
|
+
/**
|
|
11868
|
+
* list the calling user's AI session backups in the workspace object storage
|
|
11869
|
+
* @param data The data for the request.
|
|
11870
|
+
* @param data.workspace
|
|
11871
|
+
* @returns unknown backups, newest first; `enabled` is false when the workspace has no storage for them
|
|
11872
|
+
* @throws ApiError
|
|
11873
|
+
*/
|
|
11874
|
+
static listAiSessionBackups(data) {
|
|
11875
|
+
return request(OpenAPI, {
|
|
11876
|
+
method: "GET",
|
|
11877
|
+
url: "/w/{workspace}/ai/sessions/list",
|
|
11878
|
+
path: { workspace: data.workspace }
|
|
11879
|
+
});
|
|
11880
|
+
}
|
|
11881
|
+
/**
|
|
11882
|
+
* fetch whole AI session backups
|
|
11883
|
+
* @param data The data for the request.
|
|
11884
|
+
* @param data.workspace
|
|
11885
|
+
* @param data.requestBody
|
|
11886
|
+
* @returns unknown the backups found; `deferred` lists ids that did not fit the response budget
|
|
11887
|
+
* @throws ApiError
|
|
11888
|
+
*/
|
|
11889
|
+
static pullAiSessionBackups(data) {
|
|
11890
|
+
return request(OpenAPI, {
|
|
11891
|
+
method: "POST",
|
|
11892
|
+
url: "/w/{workspace}/ai/sessions/pull",
|
|
11893
|
+
path: { workspace: data.workspace },
|
|
11894
|
+
body: data.requestBody,
|
|
11895
|
+
mediaType: "application/json"
|
|
11896
|
+
});
|
|
11897
|
+
}
|
|
11898
|
+
/**
|
|
11899
|
+
* write changed pieces of AI sessions to their backups, and remove deleted ones
|
|
11900
|
+
* @param data The data for the request.
|
|
11901
|
+
* @param data.workspace
|
|
11902
|
+
* @param data.requestBody
|
|
11903
|
+
* @returns unknown one result per session written or removed, in request order
|
|
11904
|
+
* @throws ApiError
|
|
11905
|
+
*/
|
|
11906
|
+
static pushAiSessionBackups(data) {
|
|
11907
|
+
return request(OpenAPI, {
|
|
11908
|
+
method: "POST",
|
|
11909
|
+
url: "/w/{workspace}/ai/sessions/push",
|
|
11910
|
+
path: { workspace: data.workspace },
|
|
11911
|
+
body: data.requestBody,
|
|
11912
|
+
mediaType: "application/json"
|
|
11913
|
+
});
|
|
11914
|
+
}
|
|
11915
|
+
/**
|
|
11916
|
+
* share an AI session artifact with the workspace
|
|
11917
|
+
* Stores a read-only copy that any member of the workspace can open by id. Sharing the same artifact again updates that copy, keeps its id, and restarts its retention window.
|
|
11918
|
+
*
|
|
11919
|
+
* @param data The data for the request.
|
|
11920
|
+
* @param data.workspace
|
|
11921
|
+
* @param data.requestBody
|
|
11922
|
+
* @returns SharedAiArtifactInfo the shared copy
|
|
11923
|
+
* @throws ApiError
|
|
11924
|
+
*/
|
|
11925
|
+
static shareAiArtifact(data) {
|
|
11926
|
+
return request(OpenAPI, {
|
|
11927
|
+
method: "POST",
|
|
11928
|
+
url: "/w/{workspace}/ai/shared_artifacts/share",
|
|
11929
|
+
path: { workspace: data.workspace },
|
|
11930
|
+
body: data.requestBody,
|
|
11931
|
+
mediaType: "application/json"
|
|
11932
|
+
});
|
|
11933
|
+
}
|
|
11934
|
+
/**
|
|
11935
|
+
* get the calling user's share of one of their AI session artifacts
|
|
11936
|
+
* @param data The data for the request.
|
|
11937
|
+
* @param data.workspace
|
|
11938
|
+
* @param data.artifactId
|
|
11939
|
+
* @returns unknown the live share, if any, and how long shares last
|
|
11940
|
+
* @throws ApiError
|
|
11941
|
+
*/
|
|
11942
|
+
static getAiArtifactShareStatus(data) {
|
|
11943
|
+
return request(OpenAPI, {
|
|
11944
|
+
method: "GET",
|
|
11945
|
+
url: "/w/{workspace}/ai/shared_artifacts/status",
|
|
11946
|
+
path: { workspace: data.workspace },
|
|
11947
|
+
query: { artifact_id: data.artifactId }
|
|
11948
|
+
});
|
|
11949
|
+
}
|
|
11950
|
+
/**
|
|
11951
|
+
* get a shared AI session artifact
|
|
11952
|
+
* @param data The data for the request.
|
|
11953
|
+
* @param data.workspace
|
|
11954
|
+
* @param data.id
|
|
11955
|
+
* @returns unknown the shared artifact
|
|
11956
|
+
* @throws ApiError
|
|
11957
|
+
*/
|
|
11958
|
+
static getSharedAiArtifact(data) {
|
|
11959
|
+
return request(OpenAPI, {
|
|
11960
|
+
method: "GET",
|
|
11961
|
+
url: "/w/{workspace}/ai/shared_artifacts/get/{id}",
|
|
11962
|
+
path: {
|
|
11963
|
+
workspace: data.workspace,
|
|
11964
|
+
id: data.id
|
|
11965
|
+
}
|
|
11966
|
+
});
|
|
11967
|
+
}
|
|
11968
|
+
/**
|
|
11969
|
+
* stop sharing an AI session artifact
|
|
11970
|
+
* @param data The data for the request.
|
|
11971
|
+
* @param data.workspace
|
|
11972
|
+
* @param data.id
|
|
11973
|
+
* @returns string share deleted
|
|
11974
|
+
* @throws ApiError
|
|
11975
|
+
*/
|
|
11976
|
+
static unshareAiArtifact(data) {
|
|
11977
|
+
return request(OpenAPI, {
|
|
11978
|
+
method: "DELETE",
|
|
11979
|
+
url: "/w/{workspace}/ai/shared_artifacts/delete/{id}",
|
|
11980
|
+
path: {
|
|
11981
|
+
workspace: data.workspace,
|
|
11982
|
+
id: data.id
|
|
11983
|
+
}
|
|
11984
|
+
});
|
|
11985
|
+
}
|
|
11642
11986
|
};
|
|
11643
11987
|
var TriggerService = class {
|
|
11644
11988
|
/**
|
|
@@ -19961,6 +20305,7 @@ exports.SqsTriggerService = SqsTriggerService;
|
|
|
19961
20305
|
exports.StepSuspend = StepSuspend;
|
|
19962
20306
|
exports.TeamsService = TeamsService;
|
|
19963
20307
|
exports.TokenService = TokenService;
|
|
20308
|
+
exports.TrashService = TrashService;
|
|
19964
20309
|
exports.TriggerService = TriggerService;
|
|
19965
20310
|
exports.UserService = UserService;
|
|
19966
20311
|
exports.VariableService = VariableService;
|
package/dist/index.mjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ApiError } from "./core/ApiError.mjs";
|
|
2
2
|
import { CancelError, CancelablePromise } from "./core/CancelablePromise.mjs";
|
|
3
3
|
import { OpenAPI } from "./core/OpenAPI.mjs";
|
|
4
|
-
import { AdminService, AgentWorkersService, AiEvalsService, AiService, AmqpTriggerService, AppService, AssetService, AuditService, AzureTriggerService, CaptureService, ConcurrencyGroupsService, ConfigService, DataMetricService, DbtService, DocumentationService, DraftService, EmailTriggerService, FavoriteService, FlowConversationsService, FlowService, FolderService, GcpTriggerService, GitSyncService, GranularAclService, GroupService, HealthService, HelpersService, HttpTriggerService, HubPublishService, IndexSearchService, InputService, IntegrationService, JobService, KafkaTriggerService, McpOauthService, McpService, MetricsService, MqttTriggerService, NativeTriggerService, NatsTriggerService, NpmProxyService, OauthService, OidcService, OpenapiService, PathAutocompleteService, PostgresTriggerService, RawAppService, ResourceService, ScheduleService, ScriptService, ServiceLogsService, SettingService, SettingsService, SqsTriggerService, TeamsService, TokenService, TriggerService, UserService, VariableService, VolumeService, WebsocketTriggerService, WorkerService, WorkspaceDependenciesService, WorkspaceIntegrationService, WorkspaceService } from "./services.gen.mjs";
|
|
4
|
+
import { AdminService, AgentWorkersService, AiEvalsService, AiService, AmqpTriggerService, AppService, AssetService, AuditService, AzureTriggerService, CaptureService, ConcurrencyGroupsService, ConfigService, DataMetricService, DbtService, DocumentationService, DraftService, EmailTriggerService, FavoriteService, FlowConversationsService, FlowService, FolderService, GcpTriggerService, GitSyncService, GranularAclService, GroupService, HealthService, HelpersService, HttpTriggerService, HubPublishService, IndexSearchService, InputService, IntegrationService, JobService, KafkaTriggerService, McpOauthService, McpService, MetricsService, MqttTriggerService, NativeTriggerService, NatsTriggerService, NpmProxyService, OauthService, OidcService, OpenapiService, PathAutocompleteService, PostgresTriggerService, RawAppService, ResourceService, ScheduleService, ScriptService, ServiceLogsService, SettingService, SettingsService, SqsTriggerService, TeamsService, TokenService, TrashService, TriggerService, UserService, VariableService, VolumeService, WebsocketTriggerService, WorkerService, WorkspaceDependenciesService, WorkspaceIntegrationService, WorkspaceService } from "./services.gen.mjs";
|
|
5
5
|
import { parseS3Object } from "./s3Types.mjs";
|
|
6
6
|
import { appendPartition, datatable, ducklake, upsertPartition } from "./sqlUtils.mjs";
|
|
7
7
|
import { SHARED_FOLDER, StepSuspend, WorkflowCtx, _workflowCtx, appendToResultStream, base64ToUint8Array, cancelJob, commitKafkaOffsets, databaseUrlFromResource, deleteS3File, denoS3LightClientSettings, getApprovalUrls, getFlowUserState, getIdToken, getInternalState, getPresignedS3PublicUrl, getPresignedS3PublicUrls, getProgress, getResource, getResult, getResultMaybe, getResumeEndpoints, getResumeUrls, getRootJobId, getState, getStatePath, getVariable, getWorkspace, loadS3File, loadS3FileStream, parallel, requestInteractiveSlackApproval, requestInteractiveTeamsApproval, resolveDefaultResource, runFlow, runFlowAsync, runScript, runScriptAsync, runScriptByHash, runScriptByHashAsync, runScriptByPath, runScriptByPathAsync, setClient, setFlowUserState, setInternalState, setProgress, setResource, setState, setVariable, setWorkflowCtx, signS3Object, signS3Objects, sleep, step, streamResult, task, taskFlow, taskScript, uint8ArrayToBase64, usernameToEmail, waitForApproval, waitJob, workflow, writeS3File } from "./client.mjs";
|
|
@@ -95,4 +95,4 @@ const wmill = {
|
|
|
95
95
|
var src_default = wmill;
|
|
96
96
|
|
|
97
97
|
//#endregion
|
|
98
|
-
export { AdminService, AgentWorkersService, AiEvalsService, AiService, AmqpTriggerService, ApiError, AppService, AssetService, AuditService, AzureTriggerService, CancelError, CancelablePromise, CaptureService, ConcurrencyGroupsService, ConfigService, DataMetricService, DbtService, DocumentationService, DraftService, EmailTriggerService, FavoriteService, FlowConversationsService, FlowService, FolderService, GcpTriggerService, GitSyncService, GranularAclService, GroupService, HealthService, HelpersService, HttpTriggerService, HubPublishService, IndexSearchService, InputService, IntegrationService, JobService, KafkaTriggerService, McpOauthService, McpService, MetricsService, MqttTriggerService, NativeTriggerService, NatsTriggerService, NpmProxyService, OauthService, OidcService, OpenAPI, OpenapiService, PathAutocompleteService, PostgresTriggerService, RawAppService, ResourceService, ScheduleService, ScriptService, ServiceLogsService, SettingService, SettingsService, SqsTriggerService, StepSuspend, TeamsService, TokenService, TriggerService, UserService, VariableService, VolumeService, WebsocketTriggerService, WorkerService, WorkflowCtx, WorkspaceDependenciesService, WorkspaceIntegrationService, WorkspaceService, _workflowCtx, appendPartition, appendToResultStream, cancelJob, commitKafkaOffsets, datatable, src_default as default, deleteS3File, denoS3LightClientSettings, ducklake, getApprovalUrls, getFlowUserState, getIdToken, getPresignedS3PublicUrl, getPresignedS3PublicUrls, getProgress, getResource, getResumeUrls, getRootJobId, getState, getVariable, loadS3File, loadS3FileStream, parallel, requestInteractiveSlackApproval, requestInteractiveTeamsApproval, runFlow, runFlowAsync, runScript, runScriptAsync, runScriptByHash, runScriptByHashAsync, runScriptByPath, runScriptByPathAsync, setClient, setFlowUserState, setProgress, setResource, setState, setVariable, setWorkflowCtx, signS3Object, signS3Objects, sleep, step, streamResult, task, taskFlow, taskScript, upsertPartition, usernameToEmail, waitForApproval, waitJob, workflow, writeS3File };
|
|
98
|
+
export { AdminService, AgentWorkersService, AiEvalsService, AiService, AmqpTriggerService, ApiError, AppService, AssetService, AuditService, AzureTriggerService, CancelError, CancelablePromise, CaptureService, ConcurrencyGroupsService, ConfigService, DataMetricService, DbtService, DocumentationService, DraftService, EmailTriggerService, FavoriteService, FlowConversationsService, FlowService, FolderService, GcpTriggerService, GitSyncService, GranularAclService, GroupService, HealthService, HelpersService, HttpTriggerService, HubPublishService, IndexSearchService, InputService, IntegrationService, JobService, KafkaTriggerService, McpOauthService, McpService, MetricsService, MqttTriggerService, NativeTriggerService, NatsTriggerService, NpmProxyService, OauthService, OidcService, OpenAPI, OpenapiService, PathAutocompleteService, PostgresTriggerService, RawAppService, ResourceService, ScheduleService, ScriptService, ServiceLogsService, SettingService, SettingsService, SqsTriggerService, StepSuspend, TeamsService, TokenService, TrashService, TriggerService, UserService, VariableService, VolumeService, WebsocketTriggerService, WorkerService, WorkflowCtx, WorkspaceDependenciesService, WorkspaceIntegrationService, WorkspaceService, _workflowCtx, appendPartition, appendToResultStream, cancelJob, commitKafkaOffsets, datatable, src_default as default, deleteS3File, denoS3LightClientSettings, ducklake, getApprovalUrls, getFlowUserState, getIdToken, getPresignedS3PublicUrl, getPresignedS3PublicUrls, getProgress, getResource, getResumeUrls, getRootJobId, getState, getVariable, loadS3File, loadS3FileStream, parallel, requestInteractiveSlackApproval, requestInteractiveTeamsApproval, runFlow, runFlowAsync, runScript, runScriptAsync, runScriptByHash, runScriptByHashAsync, runScriptByPath, runScriptByPathAsync, setClient, setFlowUserState, setProgress, setResource, setState, setVariable, setWorkflowCtx, signS3Object, signS3Objects, sleep, step, streamResult, task, taskFlow, taskScript, upsertPartition, usernameToEmail, waitForApproval, waitJob, workflow, writeS3File };
|