windmill-cli 1.735.0 → 1.737.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/main.js +71 -2
- package/package.json +1 -1
package/esm/main.js
CHANGED
|
@@ -16772,7 +16772,7 @@ var init_OpenAPI = __esm(() => {
|
|
|
16772
16772
|
PASSWORD: undefined,
|
|
16773
16773
|
TOKEN: getEnv3("WM_TOKEN"),
|
|
16774
16774
|
USERNAME: undefined,
|
|
16775
|
-
VERSION: "1.
|
|
16775
|
+
VERSION: "1.737.0",
|
|
16776
16776
|
WITH_CREDENTIALS: true,
|
|
16777
16777
|
interceptors: {
|
|
16778
16778
|
request: new Interceptors,
|
|
@@ -17051,6 +17051,7 @@ __export(exports_services_gen, {
|
|
|
17051
17051
|
whoami: () => whoami,
|
|
17052
17052
|
usernameToEmail: () => usernameToEmail,
|
|
17053
17053
|
uploadS3FileFromApp: () => uploadS3FileFromApp,
|
|
17054
|
+
uploadAiSkills: () => uploadAiSkills,
|
|
17054
17055
|
updateWebsocketTrigger: () => updateWebsocketTrigger,
|
|
17055
17056
|
updateVariable: () => updateVariable,
|
|
17056
17057
|
updateUser: () => updateUser,
|
|
@@ -17360,6 +17361,7 @@ __export(exports_services_gen, {
|
|
|
17360
17361
|
listAllWorkspaceDependencies: () => listAllWorkspaceDependencies,
|
|
17361
17362
|
listAllTgoogleTopicSubscriptions: () => listAllTgoogleTopicSubscriptions,
|
|
17362
17363
|
listAllDedicatedWithDeps: () => listAllDedicatedWithDeps,
|
|
17364
|
+
listAiSkills: () => listAiSkills,
|
|
17363
17365
|
leaveWorkspace: () => leaveWorkspace,
|
|
17364
17366
|
leaveInstance: () => leaveInstance,
|
|
17365
17367
|
isValidPostgresConfiguration: () => isValidPostgresConfiguration,
|
|
@@ -17556,8 +17558,12 @@ __export(exports_services_gen, {
|
|
|
17556
17558
|
getAppLiteByPath: () => getAppLiteByPath,
|
|
17557
17559
|
getAppLatestVersion: () => getAppLatestVersion,
|
|
17558
17560
|
getAppHistoryByPath: () => getAppHistoryByPath,
|
|
17561
|
+
getAppEmbedTokenBySecret: () => getAppEmbedTokenBySecret,
|
|
17562
|
+
getAppEmbedTokenByPath: () => getAppEmbedTokenByPath,
|
|
17563
|
+
getAppEmbedTokenByCustomPath: () => getAppEmbedTokenByCustomPath,
|
|
17559
17564
|
getAppByVersion: () => getAppByVersion,
|
|
17560
17565
|
getAppByPath: () => getAppByPath,
|
|
17566
|
+
getAiSkill: () => getAiSkill,
|
|
17561
17567
|
generateOpenapiSpec: () => generateOpenapiSpec,
|
|
17562
17568
|
generateNativeTriggerServiceConnectUrl: () => generateNativeTriggerServiceConnectUrl,
|
|
17563
17569
|
generateInstanceConnectUrl: () => generateInstanceConnectUrl,
|
|
@@ -17677,6 +17683,7 @@ __export(exports_services_gen, {
|
|
|
17677
17683
|
deleteAzureTrigger: () => deleteAzureTrigger,
|
|
17678
17684
|
deleteAzureSubscription: () => deleteAzureSubscription,
|
|
17679
17685
|
deleteApp: () => deleteApp,
|
|
17686
|
+
deleteAiSkill: () => deleteAiSkill,
|
|
17680
17687
|
declineInvite: () => declineInvite,
|
|
17681
17688
|
datasetStorageTestConnection: () => datasetStorageTestConnection,
|
|
17682
17689
|
customPathExists: () => customPathExists,
|
|
@@ -20238,6 +20245,14 @@ var backendVersion = () => {
|
|
|
20238
20245
|
custom_path: data3.customPath
|
|
20239
20246
|
}
|
|
20240
20247
|
});
|
|
20248
|
+
}, getAppEmbedTokenByCustomPath = (data3) => {
|
|
20249
|
+
return request(OpenAPI, {
|
|
20250
|
+
method: "GET",
|
|
20251
|
+
url: "/apps_u/embed_token_by_custom_path/{custom_path}",
|
|
20252
|
+
path: {
|
|
20253
|
+
custom_path: data3.customPath
|
|
20254
|
+
}
|
|
20255
|
+
});
|
|
20241
20256
|
}, getHubScriptContentByPath = (data3) => {
|
|
20242
20257
|
return request(OpenAPI, {
|
|
20243
20258
|
method: "GET",
|
|
@@ -21309,6 +21324,42 @@ var backendVersion = () => {
|
|
|
21309
21324
|
body: data3.requestBody,
|
|
21310
21325
|
mediaType: "application/json"
|
|
21311
21326
|
});
|
|
21327
|
+
}, listAiSkills = (data3) => {
|
|
21328
|
+
return request(OpenAPI, {
|
|
21329
|
+
method: "GET",
|
|
21330
|
+
url: "/w/{workspace}/ai_skills/list",
|
|
21331
|
+
path: {
|
|
21332
|
+
workspace: data3.workspace
|
|
21333
|
+
}
|
|
21334
|
+
});
|
|
21335
|
+
}, getAiSkill = (data3) => {
|
|
21336
|
+
return request(OpenAPI, {
|
|
21337
|
+
method: "GET",
|
|
21338
|
+
url: "/w/{workspace}/ai_skills/get/{name}",
|
|
21339
|
+
path: {
|
|
21340
|
+
workspace: data3.workspace,
|
|
21341
|
+
name: data3.name
|
|
21342
|
+
}
|
|
21343
|
+
});
|
|
21344
|
+
}, uploadAiSkills = (data3) => {
|
|
21345
|
+
return request(OpenAPI, {
|
|
21346
|
+
method: "POST",
|
|
21347
|
+
url: "/w/{workspace}/ai_skills/upload",
|
|
21348
|
+
path: {
|
|
21349
|
+
workspace: data3.workspace
|
|
21350
|
+
},
|
|
21351
|
+
body: data3.requestBody,
|
|
21352
|
+
mediaType: "application/json"
|
|
21353
|
+
});
|
|
21354
|
+
}, deleteAiSkill = (data3) => {
|
|
21355
|
+
return request(OpenAPI, {
|
|
21356
|
+
method: "DELETE",
|
|
21357
|
+
url: "/w/{workspace}/ai_skills/delete/{name}",
|
|
21358
|
+
path: {
|
|
21359
|
+
workspace: data3.workspace,
|
|
21360
|
+
name: data3.name
|
|
21361
|
+
}
|
|
21362
|
+
});
|
|
21312
21363
|
}, getRawAppData = (data3) => {
|
|
21313
21364
|
return request(OpenAPI, {
|
|
21314
21365
|
method: "GET",
|
|
@@ -21389,6 +21440,15 @@ var backendVersion = () => {
|
|
|
21389
21440
|
raw_app: data3.rawApp
|
|
21390
21441
|
}
|
|
21391
21442
|
});
|
|
21443
|
+
}, getAppEmbedTokenByPath = (data3) => {
|
|
21444
|
+
return request(OpenAPI, {
|
|
21445
|
+
method: "GET",
|
|
21446
|
+
url: "/w/{workspace}/apps/embed_token/p/{path}",
|
|
21447
|
+
path: {
|
|
21448
|
+
workspace: data3.workspace,
|
|
21449
|
+
path: data3.path
|
|
21450
|
+
}
|
|
21451
|
+
});
|
|
21392
21452
|
}, getAppLiteByPath = (data3) => {
|
|
21393
21453
|
return request(OpenAPI, {
|
|
21394
21454
|
method: "GET",
|
|
@@ -21447,6 +21507,15 @@ var backendVersion = () => {
|
|
|
21447
21507
|
path: data3.path
|
|
21448
21508
|
}
|
|
21449
21509
|
});
|
|
21510
|
+
}, getAppEmbedTokenBySecret = (data3) => {
|
|
21511
|
+
return request(OpenAPI, {
|
|
21512
|
+
method: "GET",
|
|
21513
|
+
url: "/w/{workspace}/apps_u/embed_token/{secret}",
|
|
21514
|
+
path: {
|
|
21515
|
+
workspace: data3.workspace,
|
|
21516
|
+
secret: data3.secret
|
|
21517
|
+
}
|
|
21518
|
+
});
|
|
21450
21519
|
}, getPublicResource = (data3) => {
|
|
21451
21520
|
return request(OpenAPI, {
|
|
21452
21521
|
method: "GET",
|
|
@@ -25420,7 +25489,7 @@ var init_auth = __esm(async () => {
|
|
|
25420
25489
|
});
|
|
25421
25490
|
|
|
25422
25491
|
// src/core/constants.ts
|
|
25423
|
-
var WM_FORK_PREFIX = "wm-fork", VERSION = "1.
|
|
25492
|
+
var WM_FORK_PREFIX = "wm-fork", VERSION = "1.737.0";
|
|
25424
25493
|
|
|
25425
25494
|
// src/utils/git.ts
|
|
25426
25495
|
var exports_git = {};
|