windmill-client 0.3.11 → 0.3.13
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.js +120 -155
- package/dist/core/CancelablePromise.js +3 -6
- package/dist/core/request.d.ts +0 -4
- package/dist/core/request.js +47 -43
- package/dist/index.js +42 -42
- package/dist/services/AdminService.js +2 -2
- package/dist/services/AppService.js +2 -2
- package/dist/services/AuditService.js +2 -2
- package/dist/services/CaptureService.js +2 -2
- package/dist/services/DraftService.js +2 -2
- package/dist/services/FavoriteService.js +2 -2
- package/dist/services/FlowService.js +2 -2
- package/dist/services/FolderService.js +2 -2
- package/dist/services/GranularAclService.js +2 -2
- package/dist/services/GroupService.js +2 -2
- package/dist/services/InputService.js +2 -2
- package/dist/services/JobService.js +2 -2
- package/dist/services/OauthService.js +2 -2
- package/dist/services/RawAppService.js +2 -2
- package/dist/services/ResourceService.js +2 -2
- package/dist/services/ScheduleService.js +2 -2
- package/dist/services/ScriptService.js +2 -2
- package/dist/services/SettingsService.js +2 -2
- package/dist/services/UserService.js +2 -2
- package/dist/services/VariableService.js +2 -2
- package/dist/services/WorkerService.js +2 -2
- package/dist/services/WorkspaceService.js +2 -2
- package/dist/src/client.d.ts +77 -0
- package/dist/src/client.js +301 -0
- package/dist/src/core/ApiError.d.ts +10 -0
- package/dist/src/core/ApiError.js +11 -0
- package/dist/src/core/ApiRequestOptions.d.ts +13 -0
- package/dist/src/core/ApiRequestOptions.js +1 -0
- package/dist/src/core/ApiResult.d.ts +7 -0
- package/dist/src/core/ApiResult.js +1 -0
- package/dist/src/core/CancelablePromise.d.ts +20 -0
- package/dist/src/core/CancelablePromise.js +108 -0
- package/dist/src/core/OpenAPI.d.ts +16 -0
- package/dist/src/core/OpenAPI.js +11 -0
- package/dist/src/core/request.d.ts +30 -0
- package/dist/src/core/request.js +274 -0
- package/dist/src/index.d.ts +143 -0
- package/dist/src/index.js +46 -0
- package/dist/src/models/AccountId.d.ts +1 -0
- package/dist/src/models/AccountId.js +5 -0
- package/dist/src/models/ActionKind.d.ts +9 -0
- package/dist/src/models/ActionKind.js +14 -0
- package/dist/src/models/After.d.ts +4 -0
- package/dist/src/models/After.js +5 -0
- package/dist/src/models/AppWithLastVersion.d.ts +21 -0
- package/dist/src/models/AppWithLastVersion.js +13 -0
- package/dist/src/models/AppWithLastVersionWDraft.d.ts +5 -0
- package/dist/src/models/AppWithLastVersionWDraft.js +5 -0
- package/dist/src/models/ArgsFilter.d.ts +4 -0
- package/dist/src/models/ArgsFilter.js +5 -0
- package/dist/src/models/AuditLog.d.ts +32 -0
- package/dist/src/models/AuditLog.js +30 -0
- package/dist/src/models/Before.d.ts +4 -0
- package/dist/src/models/Before.js +5 -0
- package/dist/src/models/BranchAll.d.ts +10 -0
- package/dist/src/models/BranchAll.js +5 -0
- package/dist/src/models/BranchOne.d.ts +10 -0
- package/dist/src/models/BranchOne.js +5 -0
- package/dist/src/models/ClientName.d.ts +1 -0
- package/dist/src/models/ClientName.js +5 -0
- package/dist/src/models/CompletedJob.d.ts +61 -0
- package/dist/src/models/CompletedJob.js +28 -0
- package/dist/src/models/ContextualVariable.d.ts +5 -0
- package/dist/src/models/ContextualVariable.js +5 -0
- package/dist/src/models/CreateInput.d.ts +4 -0
- package/dist/src/models/CreateInput.js +5 -0
- package/dist/src/models/CreateResource.d.ts +6 -0
- package/dist/src/models/CreateResource.js +5 -0
- package/dist/src/models/CreateVariable.d.ts +8 -0
- package/dist/src/models/CreateVariable.js +5 -0
- package/dist/src/models/CreateWorkspace.d.ts +5 -0
- package/dist/src/models/CreateWorkspace.js +5 -0
- package/dist/src/models/CreatedBy.d.ts +4 -0
- package/dist/src/models/CreatedBy.js +5 -0
- package/dist/src/models/EditResource.d.ts +5 -0
- package/dist/src/models/EditResource.js +5 -0
- package/dist/src/models/EditResourceType.d.ts +4 -0
- package/dist/src/models/EditResourceType.js +5 -0
- package/dist/src/models/EditSchedule.d.ts +7 -0
- package/dist/src/models/EditSchedule.js +5 -0
- package/dist/src/models/EditVariable.d.ts +6 -0
- package/dist/src/models/EditVariable.js +5 -0
- package/dist/src/models/EditWorkspaceUser.d.ts +5 -0
- package/dist/src/models/EditWorkspaceUser.js +5 -0
- package/dist/src/models/Flow.d.ts +3 -0
- package/dist/src/models/Flow.js +5 -0
- package/dist/src/models/FlowMetadata.d.ts +11 -0
- package/dist/src/models/FlowMetadata.js +5 -0
- package/dist/src/models/FlowModule.d.ts +26 -0
- package/dist/src/models/FlowModule.js +5 -0
- package/dist/src/models/FlowModuleValue.d.ts +10 -0
- package/dist/src/models/FlowModuleValue.js +5 -0
- package/dist/src/models/FlowPreview.d.ts +7 -0
- package/dist/src/models/FlowPreview.js +5 -0
- package/dist/src/models/FlowStatus.d.ts +12 -0
- package/dist/src/models/FlowStatus.js +5 -0
- package/dist/src/models/FlowStatusModule.d.ts +34 -0
- package/dist/src/models/FlowStatusModule.js +16 -0
- package/dist/src/models/FlowValue.d.ts +6 -0
- package/dist/src/models/FlowValue.js +5 -0
- package/dist/src/models/Folder.d.ts +5 -0
- package/dist/src/models/Folder.js +5 -0
- package/dist/src/models/ForloopFlow.d.ts +9 -0
- package/dist/src/models/ForloopFlow.js +5 -0
- package/dist/src/models/GlobalUserInfo.d.ts +14 -0
- package/dist/src/models/GlobalUserInfo.js +12 -0
- package/dist/src/models/Graphql.d.ts +3 -0
- package/dist/src/models/Graphql.js +5 -0
- package/dist/src/models/Group.d.ts +6 -0
- package/dist/src/models/Group.js +5 -0
- package/dist/src/models/Http.d.ts +3 -0
- package/dist/src/models/Http.js +5 -0
- package/dist/src/models/Identity.d.ts +4 -0
- package/dist/src/models/Identity.js +5 -0
- package/dist/src/models/IncludeHeader.d.ts +6 -0
- package/dist/src/models/IncludeHeader.js +5 -0
- package/dist/src/models/Input.d.ts +8 -0
- package/dist/src/models/Input.js +5 -0
- package/dist/src/models/InputId.d.ts +1 -0
- package/dist/src/models/InputId.js +5 -0
- package/dist/src/models/InputTransform.d.ts +3 -0
- package/dist/src/models/InputTransform.js +5 -0
- package/dist/src/models/JavascriptTransform.d.ts +4 -0
- package/dist/src/models/JavascriptTransform.js +5 -0
- package/dist/src/models/Job.d.ts +11 -0
- package/dist/src/models/Job.js +12 -0
- package/dist/src/models/JobId.d.ts +1 -0
- package/dist/src/models/JobId.js +5 -0
- package/dist/src/models/JobKinds.d.ts +4 -0
- package/dist/src/models/JobKinds.js +5 -0
- package/dist/src/models/ListableApp.d.ts +18 -0
- package/dist/src/models/ListableApp.js +13 -0
- package/dist/src/models/ListableRawApp.d.ts +9 -0
- package/dist/src/models/ListableRawApp.js +5 -0
- package/dist/src/models/ListableResource.d.ts +14 -0
- package/dist/src/models/ListableResource.js +5 -0
- package/dist/src/models/ListableVariable.d.ts +14 -0
- package/dist/src/models/ListableVariable.js +5 -0
- package/dist/src/models/Login.d.ts +4 -0
- package/dist/src/models/Login.js +5 -0
- package/dist/src/models/MainArgSignature.d.ts +33 -0
- package/dist/src/models/MainArgSignature.js +12 -0
- package/dist/src/models/Name.d.ts +1 -0
- package/dist/src/models/Name.js +5 -0
- package/dist/src/models/NewJobId.d.ts +4 -0
- package/dist/src/models/NewJobId.js +5 -0
- package/dist/src/models/NewSchedule.d.ts +11 -0
- package/dist/src/models/NewSchedule.js +5 -0
- package/dist/src/models/NewScript.d.ts +33 -0
- package/dist/src/models/NewScript.js +25 -0
- package/dist/src/models/NewScriptWithDraft.d.ts +5 -0
- package/dist/src/models/NewScriptWithDraft.js +5 -0
- package/dist/src/models/NewToken.d.ts +5 -0
- package/dist/src/models/NewToken.js +5 -0
- package/dist/src/models/NewTokenImpersonate.d.ts +5 -0
- package/dist/src/models/NewTokenImpersonate.js +5 -0
- package/dist/src/models/NewUser.d.ts +5 -0
- package/dist/src/models/NewUser.js +5 -0
- package/dist/src/models/OpenFlow.d.ts +7 -0
- package/dist/src/models/OpenFlow.js +5 -0
- package/dist/src/models/OpenFlowWPath.d.ts +4 -0
- package/dist/src/models/OpenFlowWPath.js +5 -0
- package/dist/src/models/Operation.d.ts +4 -0
- package/dist/src/models/Operation.js +5 -0
- package/dist/src/models/OrderDesc.d.ts +4 -0
- package/dist/src/models/OrderDesc.js +5 -0
- package/dist/src/models/Page.d.ts +4 -0
- package/dist/src/models/Page.js +5 -0
- package/dist/src/models/ParentJob.d.ts +4 -0
- package/dist/src/models/ParentJob.js +5 -0
- package/dist/src/models/Path.d.ts +1 -0
- package/dist/src/models/Path.js +5 -0
- package/dist/src/models/PathFlow.d.ts +6 -0
- package/dist/src/models/PathFlow.js +5 -0
- package/dist/src/models/PathId.d.ts +1 -0
- package/dist/src/models/PathId.js +5 -0
- package/dist/src/models/PathScript.d.ts +7 -0
- package/dist/src/models/PathScript.js +5 -0
- package/dist/src/models/Payload.d.ts +6 -0
- package/dist/src/models/Payload.js +5 -0
- package/dist/src/models/PerPage.d.ts +4 -0
- package/dist/src/models/PerPage.js +5 -0
- package/dist/src/models/Policy.d.ts +13 -0
- package/dist/src/models/Policy.js +13 -0
- package/dist/src/models/Preview.d.ts +25 -0
- package/dist/src/models/Preview.js +23 -0
- package/dist/src/models/QueueLimit.d.ts +5 -0
- package/dist/src/models/QueueLimit.js +5 -0
- package/dist/src/models/QueuedJob.d.ts +59 -0
- package/dist/src/models/QueuedJob.js +28 -0
- package/dist/src/models/RawScript.d.ts +20 -0
- package/dist/src/models/RawScript.js +16 -0
- package/dist/src/models/Resource.d.ts +9 -0
- package/dist/src/models/Resource.js +5 -0
- package/dist/src/models/ResourceName.d.ts +4 -0
- package/dist/src/models/ResourceName.js +5 -0
- package/dist/src/models/ResourceType.d.ts +6 -0
- package/dist/src/models/ResourceType.js +5 -0
- package/dist/src/models/ResultFilter.d.ts +4 -0
- package/dist/src/models/ResultFilter.js +5 -0
- package/dist/src/models/Retry.d.ts +11 -0
- package/dist/src/models/Retry.js +5 -0
- package/dist/src/models/RunnableId.d.ts +1 -0
- package/dist/src/models/RunnableId.js +5 -0
- package/dist/src/models/RunnableType.d.ts +5 -0
- package/dist/src/models/RunnableType.js +10 -0
- package/dist/src/models/RunnableTypeQuery.d.ts +2 -0
- package/dist/src/models/RunnableTypeQuery.js +5 -0
- package/dist/src/models/Running.d.ts +4 -0
- package/dist/src/models/Running.js +5 -0
- package/dist/src/models/Schedule.d.ts +16 -0
- package/dist/src/models/Schedule.js +5 -0
- package/dist/src/models/SchedulePath.d.ts +4 -0
- package/dist/src/models/SchedulePath.js +5 -0
- package/dist/src/models/ScheduleWJobs.d.ts +8 -0
- package/dist/src/models/ScheduleWJobs.js +5 -0
- package/dist/src/models/Script.d.ts +47 -0
- package/dist/src/models/Script.js +25 -0
- package/dist/src/models/ScriptArgs.d.ts +1 -0
- package/dist/src/models/ScriptArgs.js +5 -0
- package/dist/src/models/ScriptExactHash.d.ts +4 -0
- package/dist/src/models/ScriptExactHash.js +5 -0
- package/dist/src/models/ScriptExactPath.d.ts +4 -0
- package/dist/src/models/ScriptExactPath.js +5 -0
- package/dist/src/models/ScriptHash.d.ts +1 -0
- package/dist/src/models/ScriptHash.js +5 -0
- package/dist/src/models/ScriptPath.d.ts +1 -0
- package/dist/src/models/ScriptPath.js +5 -0
- package/dist/src/models/ScriptStartPath.d.ts +4 -0
- package/dist/src/models/ScriptStartPath.js +5 -0
- package/dist/src/models/SlackToken.d.ts +8 -0
- package/dist/src/models/SlackToken.js +5 -0
- package/dist/src/models/StartedAfter.d.ts +4 -0
- package/dist/src/models/StartedAfter.js +5 -0
- package/dist/src/models/StartedBefore.d.ts +4 -0
- package/dist/src/models/StartedBefore.js +5 -0
- package/dist/src/models/StaticTransform.d.ts +4 -0
- package/dist/src/models/StaticTransform.js +5 -0
- package/dist/src/models/Success.d.ts +4 -0
- package/dist/src/models/Success.js +5 -0
- package/dist/src/models/Suspended.d.ts +4 -0
- package/dist/src/models/Suspended.js +5 -0
- package/dist/src/models/Tag.d.ts +4 -0
- package/dist/src/models/Tag.js +5 -0
- package/dist/src/models/Token.d.ts +1 -0
- package/dist/src/models/Token.js +5 -0
- package/dist/src/models/TokenResponse.d.ts +6 -0
- package/dist/src/models/TokenResponse.js +5 -0
- package/dist/src/models/TruncatedToken.d.ts +8 -0
- package/dist/src/models/TruncatedToken.js +5 -0
- package/dist/src/models/UpdateInput.d.ts +5 -0
- package/dist/src/models/UpdateInput.js +5 -0
- package/dist/src/models/Usage.d.ts +3 -0
- package/dist/src/models/Usage.js +5 -0
- package/dist/src/models/User.d.ts +14 -0
- package/dist/src/models/User.js +5 -0
- package/dist/src/models/UserWorkspaceList.d.ts +8 -0
- package/dist/src/models/UserWorkspaceList.js +5 -0
- package/dist/src/models/Username.d.ts +4 -0
- package/dist/src/models/Username.js +5 -0
- package/dist/src/models/VersionId.d.ts +1 -0
- package/dist/src/models/VersionId.js +5 -0
- package/dist/src/models/WorkerPing.d.ts +8 -0
- package/dist/src/models/WorkerPing.js +5 -0
- package/dist/src/models/Workspace.d.ts +6 -0
- package/dist/src/models/Workspace.js +5 -0
- package/dist/src/models/WorkspaceId.d.ts +1 -0
- package/dist/src/models/WorkspaceId.js +5 -0
- package/dist/src/models/WorkspaceInvite.d.ts +6 -0
- package/dist/src/models/WorkspaceInvite.js +5 -0
- package/dist/src/services/AdminService.d.ts +39 -0
- package/dist/src/services/AdminService.js +52 -0
- package/dist/src/services/AppService.d.ts +195 -0
- package/dist/src/services/AppService.js +207 -0
- package/dist/src/services/AuditService.d.ts +53 -0
- package/dist/src/services/AuditService.js +43 -0
- package/dist/src/services/CaptureService.d.ts +30 -0
- package/dist/src/services/CaptureService.js +52 -0
- package/dist/src/services/DraftService.d.ts +26 -0
- package/dist/src/services/DraftService.js +36 -0
- package/dist/src/services/FavoriteService.d.ts +27 -0
- package/dist/src/services/FavoriteService.js +36 -0
- package/dist/src/services/FlowService.d.ts +186 -0
- package/dist/src/services/FlowService.js +196 -0
- package/dist/src/services/FolderService.d.ts +128 -0
- package/dist/src/services/FolderService.js +151 -0
- package/dist/src/services/GranularAclService.d.ts +46 -0
- package/dist/src/services/GranularAclService.js +56 -0
- package/dist/src/services/GroupService.d.ts +110 -0
- package/dist/src/services/GroupService.js +136 -0
- package/dist/src/services/InputService.d.ts +78 -0
- package/dist/src/services/InputService.js +95 -0
- package/dist/src/services/JobService.d.ts +761 -0
- package/dist/src/services/JobService.js +646 -0
- package/dist/src/services/OauthService.d.ts +95 -0
- package/dist/src/services/OauthService.js +120 -0
- package/dist/src/services/RawAppService.d.ts +103 -0
- package/dist/src/services/RawAppService.js +106 -0
- package/dist/src/services/ResourceService.d.ts +178 -0
- package/dist/src/services/ResourceService.js +243 -0
- package/dist/src/services/ScheduleService.d.ts +120 -0
- package/dist/src/services/ScheduleService.js +148 -0
- package/dist/src/services/ScriptService.d.ts +258 -0
- package/dist/src/services/ScriptService.js +283 -0
- package/dist/src/services/SettingsService.d.ts +27 -0
- package/dist/src/services/SettingsService.js +48 -0
- package/dist/src/services/UserService.d.ts +306 -0
- package/dist/src/services/UserService.js +397 -0
- package/dist/src/services/VariableService.d.ts +95 -0
- package/dist/src/services/VariableService.js +135 -0
- package/dist/src/services/WorkerService.d.ts +25 -0
- package/dist/src/services/WorkerService.js +30 -0
- package/dist/src/services/WorkspaceService.d.ts +249 -0
- package/dist/src/services/WorkspaceService.js +301 -0
- package/package.json +2 -3
|
@@ -0,0 +1,301 @@
|
|
|
1
|
+
import { ResourceService, VariableService } from "./index.js";
|
|
2
|
+
import { OpenAPI } from "./index.js";
|
|
3
|
+
export { AdminService, AuditService, FlowService, GranularAclService, GroupService, JobService, ResourceService, VariableService, ScriptService, ScheduleService, SettingsService, UserService, WorkspaceService, } from "./index.js";
|
|
4
|
+
export const SHARED_FOLDER = "/shared";
|
|
5
|
+
export function setClient(token, baseUrl) {
|
|
6
|
+
if (baseUrl === undefined) {
|
|
7
|
+
baseUrl =
|
|
8
|
+
getEnv("BASE_INTERNAL_URL") ??
|
|
9
|
+
getEnv("BASE_URL") ??
|
|
10
|
+
"http://localhost:8000";
|
|
11
|
+
}
|
|
12
|
+
if (token === undefined) {
|
|
13
|
+
token = getEnv("WM_TOKEN") ?? "no_token";
|
|
14
|
+
}
|
|
15
|
+
OpenAPI.WITH_CREDENTIALS = true;
|
|
16
|
+
OpenAPI.TOKEN = token;
|
|
17
|
+
OpenAPI.BASE = baseUrl + "/api";
|
|
18
|
+
}
|
|
19
|
+
const getEnv = (key) => {
|
|
20
|
+
if (typeof window === "undefined") {
|
|
21
|
+
// node
|
|
22
|
+
return process.env[key];
|
|
23
|
+
}
|
|
24
|
+
// browser
|
|
25
|
+
return window.process.env[key];
|
|
26
|
+
};
|
|
27
|
+
/**
|
|
28
|
+
* Create a client configuration from env variables
|
|
29
|
+
* @returns client configuration
|
|
30
|
+
*/
|
|
31
|
+
export function getWorkspace() {
|
|
32
|
+
return getEnv("WM_WORKSPACE") ?? "no_workspace";
|
|
33
|
+
}
|
|
34
|
+
/**
|
|
35
|
+
* Get a resource value by path
|
|
36
|
+
* @param path path of the resource, default to internal state path
|
|
37
|
+
* @param undefinedIfEmpty if the resource does not exist, return undefined instead of throwing an error
|
|
38
|
+
* @returns resource value
|
|
39
|
+
*/
|
|
40
|
+
export async function getResource(path, undefinedIfEmpty) {
|
|
41
|
+
const workspace = getWorkspace();
|
|
42
|
+
path = path ?? getStatePath();
|
|
43
|
+
try {
|
|
44
|
+
const resource = await ResourceService.getResource({ workspace, path });
|
|
45
|
+
return await _transformLeaf(resource.value);
|
|
46
|
+
}
|
|
47
|
+
catch (e) {
|
|
48
|
+
if (undefinedIfEmpty && e.status === 404) {
|
|
49
|
+
return undefined;
|
|
50
|
+
}
|
|
51
|
+
else {
|
|
52
|
+
throw Error(`Resource not found at ${path} or not visible to you`);
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
/**
|
|
57
|
+
* Resolve a resource value in case the default value was picked because the input payload was undefined
|
|
58
|
+
* @param obj resource value or path of the resource under the format `$res:path`
|
|
59
|
+
* @returns resource value
|
|
60
|
+
*/
|
|
61
|
+
export async function resolveDefaultResource(obj) {
|
|
62
|
+
if (typeof obj === "string" && obj.startsWith("$res:")) {
|
|
63
|
+
return await getResource(obj.substring(5), true);
|
|
64
|
+
}
|
|
65
|
+
else {
|
|
66
|
+
return obj;
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
/**
|
|
70
|
+
* Get the full resource value by path
|
|
71
|
+
* @param path path of the resource, default to internal state path
|
|
72
|
+
* @param undefinedIfEmpty if the resource does not exist, return undefined instead of throwing an error
|
|
73
|
+
* @returns full resource
|
|
74
|
+
*/
|
|
75
|
+
export async function getFullResource(path, undefinedIfEmpty) {
|
|
76
|
+
const workspace = getWorkspace();
|
|
77
|
+
path = path ?? getStatePath();
|
|
78
|
+
try {
|
|
79
|
+
const resource = await ResourceService.getResource({ workspace, path });
|
|
80
|
+
const value = await _transformLeaf(resource.value);
|
|
81
|
+
return { ...resource, value };
|
|
82
|
+
}
|
|
83
|
+
catch (e) {
|
|
84
|
+
if (undefinedIfEmpty && e.status === 404) {
|
|
85
|
+
return undefined;
|
|
86
|
+
}
|
|
87
|
+
else {
|
|
88
|
+
throw Error(`Resource not found at ${path} or not visible to you`);
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
export function getStatePath() {
|
|
93
|
+
const state_path = getEnv("WM_STATE_PATH");
|
|
94
|
+
if (state_path === undefined) {
|
|
95
|
+
throw Error("State path not set");
|
|
96
|
+
}
|
|
97
|
+
return state_path;
|
|
98
|
+
}
|
|
99
|
+
/**
|
|
100
|
+
* Set a resource value by path
|
|
101
|
+
* @param path path of the resource to set, default to state path
|
|
102
|
+
* @param value new value of the resource to set
|
|
103
|
+
* @param initializeToTypeIfNotExist if the resource does not exist, initialize it with this type
|
|
104
|
+
*/
|
|
105
|
+
export async function setResource(value, path, initializeToTypeIfNotExist) {
|
|
106
|
+
path = path ?? getStatePath();
|
|
107
|
+
const workspace = getWorkspace();
|
|
108
|
+
if (await ResourceService.existsResource({ workspace, path })) {
|
|
109
|
+
await ResourceService.updateResourceValue({
|
|
110
|
+
workspace,
|
|
111
|
+
path,
|
|
112
|
+
requestBody: { value },
|
|
113
|
+
});
|
|
114
|
+
}
|
|
115
|
+
else if (initializeToTypeIfNotExist) {
|
|
116
|
+
await ResourceService.createResource({
|
|
117
|
+
workspace,
|
|
118
|
+
requestBody: { path, value, resource_type: initializeToTypeIfNotExist },
|
|
119
|
+
});
|
|
120
|
+
}
|
|
121
|
+
else {
|
|
122
|
+
throw Error(`Resource at path ${path} does not exist and no type was provided to initialize it`);
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
/**
|
|
126
|
+
* Set the state
|
|
127
|
+
* @param state state to set
|
|
128
|
+
* @deprecated use setState instead
|
|
129
|
+
*/
|
|
130
|
+
export async function setInternalState(state) {
|
|
131
|
+
await setResource(state, undefined, "state");
|
|
132
|
+
}
|
|
133
|
+
/**
|
|
134
|
+
* Set the state
|
|
135
|
+
* @param state state to set
|
|
136
|
+
*/
|
|
137
|
+
export async function setState(state) {
|
|
138
|
+
await setResource(state, undefined, "state");
|
|
139
|
+
}
|
|
140
|
+
// /**
|
|
141
|
+
// * Set the shared state
|
|
142
|
+
// * @param state state to set
|
|
143
|
+
// */
|
|
144
|
+
// export async function setSharedState(
|
|
145
|
+
// state: any,
|
|
146
|
+
// path = "state.json"
|
|
147
|
+
// ): Promise<void> {
|
|
148
|
+
// await Deno.writeTextFile(SHARED_FOLDER + "/" + path, JSON.stringify(state));
|
|
149
|
+
// }
|
|
150
|
+
// /**
|
|
151
|
+
// * Get the shared state
|
|
152
|
+
// * @param state state to set
|
|
153
|
+
// */
|
|
154
|
+
// export async function getSharedState(path = "state.json"): Promise<any> {
|
|
155
|
+
// return JSON.parse(await Deno.readTextFile(SHARED_FOLDER + "/" + path));
|
|
156
|
+
// }
|
|
157
|
+
/**
|
|
158
|
+
* Get the internal state
|
|
159
|
+
* @deprecated use getState instead
|
|
160
|
+
*/
|
|
161
|
+
export async function getInternalState() {
|
|
162
|
+
return await getResource(getStatePath(), true);
|
|
163
|
+
}
|
|
164
|
+
/**
|
|
165
|
+
* Get the state shared across executions
|
|
166
|
+
*/
|
|
167
|
+
export async function getState() {
|
|
168
|
+
return await getResource(getStatePath(), true);
|
|
169
|
+
}
|
|
170
|
+
/**
|
|
171
|
+
* Get a variable by path
|
|
172
|
+
* @param path path of the variable
|
|
173
|
+
* @returns variable value
|
|
174
|
+
*/
|
|
175
|
+
export async function getVariable(path) {
|
|
176
|
+
const workspace = getWorkspace();
|
|
177
|
+
try {
|
|
178
|
+
const variable = await VariableService.getVariable({ workspace, path });
|
|
179
|
+
return variable.value;
|
|
180
|
+
}
|
|
181
|
+
catch (e) {
|
|
182
|
+
throw Error(`Variable not found at ${path} or not visible to you`);
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
/**
|
|
186
|
+
* Set a variable by path, create if not exist
|
|
187
|
+
* @param path path of the variable
|
|
188
|
+
* @param value value of the variable
|
|
189
|
+
* @param isSecretIfNotExist if the variable does not exist, create it as secret or not (default: false)
|
|
190
|
+
* @param descriptionIfNotExist if the variable does not exist, create it with this description (default: "")
|
|
191
|
+
*/
|
|
192
|
+
export async function setVariable(path, value, isSecretIfNotExist, descriptionIfNotExist) {
|
|
193
|
+
const workspace = getWorkspace();
|
|
194
|
+
if (await VariableService.existsVariable({ workspace, path })) {
|
|
195
|
+
await VariableService.updateVariable({
|
|
196
|
+
workspace,
|
|
197
|
+
path,
|
|
198
|
+
requestBody: { value },
|
|
199
|
+
});
|
|
200
|
+
}
|
|
201
|
+
else {
|
|
202
|
+
await VariableService.createVariable({
|
|
203
|
+
workspace,
|
|
204
|
+
requestBody: {
|
|
205
|
+
path,
|
|
206
|
+
value,
|
|
207
|
+
is_secret: isSecretIfNotExist ?? false,
|
|
208
|
+
description: descriptionIfNotExist ?? "",
|
|
209
|
+
},
|
|
210
|
+
});
|
|
211
|
+
}
|
|
212
|
+
}
|
|
213
|
+
async function transformLeaves(d) {
|
|
214
|
+
for (const k in d) {
|
|
215
|
+
d[k] = await _transformLeaf(d[k]);
|
|
216
|
+
}
|
|
217
|
+
return d;
|
|
218
|
+
}
|
|
219
|
+
const VAR_RESOURCE_PREFIX = "$var:";
|
|
220
|
+
const RES_RESOURCE_PREFIX = "$res:";
|
|
221
|
+
async function _transformLeaf(v) {
|
|
222
|
+
if (typeof v === "object") {
|
|
223
|
+
return transformLeaves(v);
|
|
224
|
+
}
|
|
225
|
+
else if (typeof v === "string" && v.startsWith(VAR_RESOURCE_PREFIX)) {
|
|
226
|
+
const varName = v.substring(VAR_RESOURCE_PREFIX.length);
|
|
227
|
+
return await getVariable(varName);
|
|
228
|
+
}
|
|
229
|
+
else if (typeof v === "string" && v.startsWith(RES_RESOURCE_PREFIX)) {
|
|
230
|
+
const resName = v.substring(RES_RESOURCE_PREFIX.length);
|
|
231
|
+
return await getResource(resName);
|
|
232
|
+
}
|
|
233
|
+
else {
|
|
234
|
+
return v;
|
|
235
|
+
}
|
|
236
|
+
}
|
|
237
|
+
export async function databaseUrlFromResource(path) {
|
|
238
|
+
const resource = await getResource(path);
|
|
239
|
+
return `postgresql://${resource.user}:${resource.password}@${resource.host}:${resource.port}/${resource.dbname}?sslmode=${resource.sslmode}`;
|
|
240
|
+
}
|
|
241
|
+
// /**
|
|
242
|
+
// * Get URLs needed for resuming a flow after this step
|
|
243
|
+
// * @param approver approver name
|
|
244
|
+
// * @returns approval page UI URL, resume and cancel API URLs for resumeing the flow
|
|
245
|
+
// */
|
|
246
|
+
// export async function getResumeUrls(approver?: string): Promise<{
|
|
247
|
+
// approvalPage: string;
|
|
248
|
+
// resume: string;
|
|
249
|
+
// cancel: string;
|
|
250
|
+
// }> {
|
|
251
|
+
// const nonce = Math.floor(Math.random() * 4294967295);
|
|
252
|
+
// const workspace = getWorkspace();
|
|
253
|
+
// return await JobService.getResumeUrls({
|
|
254
|
+
// workspace,
|
|
255
|
+
// resumeId: nonce,
|
|
256
|
+
// approver,
|
|
257
|
+
// id: process.env.get("WM_JOB_ID") ?? "NO_JOB_ID",
|
|
258
|
+
// });
|
|
259
|
+
// }
|
|
260
|
+
export function base64ToUint8Array(data) {
|
|
261
|
+
return Uint8Array.from(atob(data), (c) => c.charCodeAt(0));
|
|
262
|
+
}
|
|
263
|
+
export function uint8ArrayToBase64(arrayBuffer) {
|
|
264
|
+
let base64 = "";
|
|
265
|
+
const encodings = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
|
|
266
|
+
const bytes = new Uint8Array(arrayBuffer);
|
|
267
|
+
const byteLength = bytes.byteLength;
|
|
268
|
+
const byteRemainder = byteLength % 3;
|
|
269
|
+
const mainLength = byteLength - byteRemainder;
|
|
270
|
+
let a, b, c, d;
|
|
271
|
+
let chunk;
|
|
272
|
+
// Main loop deals with bytes in chunks of 3
|
|
273
|
+
for (let i = 0; i < mainLength; i = i + 3) {
|
|
274
|
+
// Combine the three bytes into a single integer
|
|
275
|
+
chunk = (bytes[i] << 16) | (bytes[i + 1] << 8) | bytes[i + 2];
|
|
276
|
+
// Use bitmasks to extract 6-bit segments from the triplet
|
|
277
|
+
a = (chunk & 16515072) >> 18; // 16515072 = (2^6 - 1) << 18
|
|
278
|
+
b = (chunk & 258048) >> 12; // 258048 = (2^6 - 1) << 12
|
|
279
|
+
c = (chunk & 4032) >> 6; // 4032 = (2^6 - 1) << 6
|
|
280
|
+
d = chunk & 63; // 63 = 2^6 - 1
|
|
281
|
+
// Convert the raw binary segments to the appropriate ASCII encoding
|
|
282
|
+
base64 += encodings[a] + encodings[b] + encodings[c] + encodings[d];
|
|
283
|
+
}
|
|
284
|
+
// Deal with the remaining bytes and padding
|
|
285
|
+
if (byteRemainder == 1) {
|
|
286
|
+
chunk = bytes[mainLength];
|
|
287
|
+
a = (chunk & 252) >> 2; // 252 = (2^6 - 1) << 2
|
|
288
|
+
// Set the 4 least significant bits to zero
|
|
289
|
+
b = (chunk & 3) << 4; // 3 = 2^2 - 1
|
|
290
|
+
base64 += encodings[a] + encodings[b] + "==";
|
|
291
|
+
}
|
|
292
|
+
else if (byteRemainder == 2) {
|
|
293
|
+
chunk = (bytes[mainLength] << 8) | bytes[mainLength + 1];
|
|
294
|
+
a = (chunk & 64512) >> 10; // 64512 = (2^6 - 1) << 10
|
|
295
|
+
b = (chunk & 1008) >> 4; // 1008 = (2^6 - 1) << 4
|
|
296
|
+
// Set the 2 least significant bits to zero
|
|
297
|
+
c = (chunk & 15) << 2; // 15 = 2^4 - 1
|
|
298
|
+
base64 += encodings[a] + encodings[b] + encodings[c] + "=";
|
|
299
|
+
}
|
|
300
|
+
return base64;
|
|
301
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { ApiRequestOptions } from './ApiRequestOptions';
|
|
2
|
+
import type { ApiResult } from './ApiResult';
|
|
3
|
+
export declare class ApiError extends Error {
|
|
4
|
+
readonly url: string;
|
|
5
|
+
readonly status: number;
|
|
6
|
+
readonly statusText: string;
|
|
7
|
+
readonly body: any;
|
|
8
|
+
readonly request: ApiRequestOptions;
|
|
9
|
+
constructor(request: ApiRequestOptions, response: ApiResult, message: string);
|
|
10
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export class ApiError extends Error {
|
|
2
|
+
constructor(request, response, message) {
|
|
3
|
+
super(message);
|
|
4
|
+
this.name = 'ApiError';
|
|
5
|
+
this.url = response.url;
|
|
6
|
+
this.status = response.status;
|
|
7
|
+
this.statusText = response.statusText;
|
|
8
|
+
this.body = response.body;
|
|
9
|
+
this.request = request;
|
|
10
|
+
}
|
|
11
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export type ApiRequestOptions = {
|
|
2
|
+
readonly method: 'GET' | 'PUT' | 'POST' | 'DELETE' | 'OPTIONS' | 'HEAD' | 'PATCH';
|
|
3
|
+
readonly url: string;
|
|
4
|
+
readonly path?: Record<string, any>;
|
|
5
|
+
readonly cookies?: Record<string, any>;
|
|
6
|
+
readonly headers?: Record<string, any>;
|
|
7
|
+
readonly query?: Record<string, any>;
|
|
8
|
+
readonly formData?: Record<string, any>;
|
|
9
|
+
readonly body?: any;
|
|
10
|
+
readonly mediaType?: string;
|
|
11
|
+
readonly responseHeader?: string;
|
|
12
|
+
readonly errors?: Record<number, string>;
|
|
13
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
export declare class CancelError extends Error {
|
|
2
|
+
constructor(message: string);
|
|
3
|
+
get isCancelled(): boolean;
|
|
4
|
+
}
|
|
5
|
+
export interface OnCancel {
|
|
6
|
+
readonly isResolved: boolean;
|
|
7
|
+
readonly isRejected: boolean;
|
|
8
|
+
readonly isCancelled: boolean;
|
|
9
|
+
(cancelHandler: () => void): void;
|
|
10
|
+
}
|
|
11
|
+
export declare class CancelablePromise<T> implements Promise<T> {
|
|
12
|
+
#private;
|
|
13
|
+
constructor(executor: (resolve: (value: T | PromiseLike<T>) => void, reject: (reason?: any) => void, onCancel: OnCancel) => void);
|
|
14
|
+
get [Symbol.toStringTag](): string;
|
|
15
|
+
then<TResult1 = T, TResult2 = never>(onFulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | null, onRejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | null): Promise<TResult1 | TResult2>;
|
|
16
|
+
catch<TResult = never>(onRejected?: ((reason: any) => TResult | PromiseLike<TResult>) | null): Promise<T | TResult>;
|
|
17
|
+
finally(onFinally?: (() => void) | null): Promise<T>;
|
|
18
|
+
cancel(): void;
|
|
19
|
+
get isCancelled(): boolean;
|
|
20
|
+
}
|
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
var __classPrivateFieldSet = (this && this.__classPrivateFieldSet) || function (receiver, state, value, kind, f) {
|
|
2
|
+
if (kind === "m") throw new TypeError("Private method is not writable");
|
|
3
|
+
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a setter");
|
|
4
|
+
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot write private member to an object whose class did not declare it");
|
|
5
|
+
return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
|
|
6
|
+
};
|
|
7
|
+
var __classPrivateFieldGet = (this && this.__classPrivateFieldGet) || function (receiver, state, kind, f) {
|
|
8
|
+
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a getter");
|
|
9
|
+
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
|
|
10
|
+
return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
|
|
11
|
+
};
|
|
12
|
+
var _CancelablePromise_isResolved, _CancelablePromise_isRejected, _CancelablePromise_isCancelled, _CancelablePromise_cancelHandlers, _CancelablePromise_promise, _CancelablePromise_resolve, _CancelablePromise_reject;
|
|
13
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
14
|
+
/* istanbul ignore file */
|
|
15
|
+
/* tslint:disable */
|
|
16
|
+
/* eslint-disable */
|
|
17
|
+
export class CancelError extends Error {
|
|
18
|
+
constructor(message) {
|
|
19
|
+
super(message);
|
|
20
|
+
this.name = 'CancelError';
|
|
21
|
+
}
|
|
22
|
+
get isCancelled() {
|
|
23
|
+
return true;
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
export class CancelablePromise {
|
|
27
|
+
constructor(executor) {
|
|
28
|
+
_CancelablePromise_isResolved.set(this, void 0);
|
|
29
|
+
_CancelablePromise_isRejected.set(this, void 0);
|
|
30
|
+
_CancelablePromise_isCancelled.set(this, void 0);
|
|
31
|
+
_CancelablePromise_cancelHandlers.set(this, void 0);
|
|
32
|
+
_CancelablePromise_promise.set(this, void 0);
|
|
33
|
+
_CancelablePromise_resolve.set(this, void 0);
|
|
34
|
+
_CancelablePromise_reject.set(this, void 0);
|
|
35
|
+
__classPrivateFieldSet(this, _CancelablePromise_isResolved, false, "f");
|
|
36
|
+
__classPrivateFieldSet(this, _CancelablePromise_isRejected, false, "f");
|
|
37
|
+
__classPrivateFieldSet(this, _CancelablePromise_isCancelled, false, "f");
|
|
38
|
+
__classPrivateFieldSet(this, _CancelablePromise_cancelHandlers, [], "f");
|
|
39
|
+
__classPrivateFieldSet(this, _CancelablePromise_promise, new Promise((resolve, reject) => {
|
|
40
|
+
__classPrivateFieldSet(this, _CancelablePromise_resolve, resolve, "f");
|
|
41
|
+
__classPrivateFieldSet(this, _CancelablePromise_reject, reject, "f");
|
|
42
|
+
const onResolve = (value) => {
|
|
43
|
+
if (__classPrivateFieldGet(this, _CancelablePromise_isResolved, "f") || __classPrivateFieldGet(this, _CancelablePromise_isRejected, "f") || __classPrivateFieldGet(this, _CancelablePromise_isCancelled, "f")) {
|
|
44
|
+
return;
|
|
45
|
+
}
|
|
46
|
+
__classPrivateFieldSet(this, _CancelablePromise_isResolved, true, "f");
|
|
47
|
+
__classPrivateFieldGet(this, _CancelablePromise_resolve, "f")?.call(this, value);
|
|
48
|
+
};
|
|
49
|
+
const onReject = (reason) => {
|
|
50
|
+
if (__classPrivateFieldGet(this, _CancelablePromise_isResolved, "f") || __classPrivateFieldGet(this, _CancelablePromise_isRejected, "f") || __classPrivateFieldGet(this, _CancelablePromise_isCancelled, "f")) {
|
|
51
|
+
return;
|
|
52
|
+
}
|
|
53
|
+
__classPrivateFieldSet(this, _CancelablePromise_isRejected, true, "f");
|
|
54
|
+
__classPrivateFieldGet(this, _CancelablePromise_reject, "f")?.call(this, reason);
|
|
55
|
+
};
|
|
56
|
+
const onCancel = (cancelHandler) => {
|
|
57
|
+
if (__classPrivateFieldGet(this, _CancelablePromise_isResolved, "f") || __classPrivateFieldGet(this, _CancelablePromise_isRejected, "f") || __classPrivateFieldGet(this, _CancelablePromise_isCancelled, "f")) {
|
|
58
|
+
return;
|
|
59
|
+
}
|
|
60
|
+
__classPrivateFieldGet(this, _CancelablePromise_cancelHandlers, "f").push(cancelHandler);
|
|
61
|
+
};
|
|
62
|
+
Object.defineProperty(onCancel, 'isResolved', {
|
|
63
|
+
get: () => __classPrivateFieldGet(this, _CancelablePromise_isResolved, "f"),
|
|
64
|
+
});
|
|
65
|
+
Object.defineProperty(onCancel, 'isRejected', {
|
|
66
|
+
get: () => __classPrivateFieldGet(this, _CancelablePromise_isRejected, "f"),
|
|
67
|
+
});
|
|
68
|
+
Object.defineProperty(onCancel, 'isCancelled', {
|
|
69
|
+
get: () => __classPrivateFieldGet(this, _CancelablePromise_isCancelled, "f"),
|
|
70
|
+
});
|
|
71
|
+
return executor(onResolve, onReject, onCancel);
|
|
72
|
+
}), "f");
|
|
73
|
+
}
|
|
74
|
+
get [(_CancelablePromise_isResolved = new WeakMap(), _CancelablePromise_isRejected = new WeakMap(), _CancelablePromise_isCancelled = new WeakMap(), _CancelablePromise_cancelHandlers = new WeakMap(), _CancelablePromise_promise = new WeakMap(), _CancelablePromise_resolve = new WeakMap(), _CancelablePromise_reject = new WeakMap(), Symbol.toStringTag)]() {
|
|
75
|
+
return "Cancellable Promise";
|
|
76
|
+
}
|
|
77
|
+
then(onFulfilled, onRejected) {
|
|
78
|
+
return __classPrivateFieldGet(this, _CancelablePromise_promise, "f").then(onFulfilled, onRejected);
|
|
79
|
+
}
|
|
80
|
+
catch(onRejected) {
|
|
81
|
+
return __classPrivateFieldGet(this, _CancelablePromise_promise, "f").catch(onRejected);
|
|
82
|
+
}
|
|
83
|
+
finally(onFinally) {
|
|
84
|
+
return __classPrivateFieldGet(this, _CancelablePromise_promise, "f").finally(onFinally);
|
|
85
|
+
}
|
|
86
|
+
cancel() {
|
|
87
|
+
if (__classPrivateFieldGet(this, _CancelablePromise_isResolved, "f") || __classPrivateFieldGet(this, _CancelablePromise_isRejected, "f") || __classPrivateFieldGet(this, _CancelablePromise_isCancelled, "f")) {
|
|
88
|
+
return;
|
|
89
|
+
}
|
|
90
|
+
__classPrivateFieldSet(this, _CancelablePromise_isCancelled, true, "f");
|
|
91
|
+
if (__classPrivateFieldGet(this, _CancelablePromise_cancelHandlers, "f").length) {
|
|
92
|
+
try {
|
|
93
|
+
for (const cancelHandler of __classPrivateFieldGet(this, _CancelablePromise_cancelHandlers, "f")) {
|
|
94
|
+
cancelHandler();
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
catch (error) {
|
|
98
|
+
console.warn('Cancellation threw an error', error);
|
|
99
|
+
return;
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
__classPrivateFieldGet(this, _CancelablePromise_cancelHandlers, "f").length = 0;
|
|
103
|
+
__classPrivateFieldGet(this, _CancelablePromise_reject, "f")?.call(this, new CancelError('Request aborted'));
|
|
104
|
+
}
|
|
105
|
+
get isCancelled() {
|
|
106
|
+
return __classPrivateFieldGet(this, _CancelablePromise_isCancelled, "f");
|
|
107
|
+
}
|
|
108
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import type { ApiRequestOptions } from './ApiRequestOptions';
|
|
2
|
+
type Resolver<T> = (options: ApiRequestOptions) => Promise<T>;
|
|
3
|
+
type Headers = Record<string, string>;
|
|
4
|
+
export type OpenAPIConfig = {
|
|
5
|
+
BASE: string;
|
|
6
|
+
VERSION: string;
|
|
7
|
+
WITH_CREDENTIALS: boolean;
|
|
8
|
+
CREDENTIALS: 'include' | 'omit' | 'same-origin';
|
|
9
|
+
TOKEN?: string | Resolver<string> | undefined;
|
|
10
|
+
USERNAME?: string | Resolver<string> | undefined;
|
|
11
|
+
PASSWORD?: string | Resolver<string> | undefined;
|
|
12
|
+
HEADERS?: Headers | Resolver<Headers> | undefined;
|
|
13
|
+
ENCODE_PATH?: ((path: string) => string) | undefined;
|
|
14
|
+
};
|
|
15
|
+
export declare const OpenAPI: OpenAPIConfig;
|
|
16
|
+
export {};
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import type { ApiRequestOptions } from './ApiRequestOptions';
|
|
2
|
+
import type { ApiResult } from './ApiResult';
|
|
3
|
+
import { CancelablePromise } from './CancelablePromise';
|
|
4
|
+
import type { OnCancel } from './CancelablePromise';
|
|
5
|
+
import type { OpenAPIConfig } from './OpenAPI';
|
|
6
|
+
export declare const isDefined: <T>(value: T | null | undefined) => value is Exclude<T, null | undefined>;
|
|
7
|
+
export declare const isString: (value: any) => value is string;
|
|
8
|
+
export declare const isStringWithValue: (value: any) => value is string;
|
|
9
|
+
export declare const isBlob: (value: any) => value is Blob;
|
|
10
|
+
export declare const isFormData: (value: any) => value is FormData;
|
|
11
|
+
export declare const base64: (str: string) => string;
|
|
12
|
+
export declare const getQueryString: (params: Record<string, any>) => string;
|
|
13
|
+
export declare const getFormData: (options: ApiRequestOptions) => FormData | undefined;
|
|
14
|
+
type Resolver<T> = (options: ApiRequestOptions) => Promise<T>;
|
|
15
|
+
export declare const resolve: <T>(options: ApiRequestOptions, resolver?: T | Resolver<T> | undefined) => Promise<T | undefined>;
|
|
16
|
+
export declare const getHeaders: (config: OpenAPIConfig, options: ApiRequestOptions) => Promise<Headers>;
|
|
17
|
+
export declare const getRequestBody: (options: ApiRequestOptions) => any;
|
|
18
|
+
export declare const sendRequest: (config: OpenAPIConfig, options: ApiRequestOptions, url: string, body: any, formData: FormData | undefined, headers: Headers, onCancel: OnCancel) => Promise<Response>;
|
|
19
|
+
export declare const getResponseHeader: (response: Response, responseHeader?: string) => string | undefined;
|
|
20
|
+
export declare const getResponseBody: (response: Response) => Promise<any>;
|
|
21
|
+
export declare const catchErrorCodes: (options: ApiRequestOptions, result: ApiResult) => void;
|
|
22
|
+
/**
|
|
23
|
+
* Request method
|
|
24
|
+
* @param config The OpenAPI configuration object
|
|
25
|
+
* @param options The request options from the service
|
|
26
|
+
* @returns CancelablePromise<T>
|
|
27
|
+
* @throws ApiError
|
|
28
|
+
*/
|
|
29
|
+
export declare const request: <T>(config: OpenAPIConfig, options: ApiRequestOptions) => CancelablePromise<T>;
|
|
30
|
+
export {};
|