@mutagent/cli 0.1.4 → 0.1.6
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/bin/cli.js +34 -22
- package/dist/bin/cli.js.map +5 -5
- package/dist/index.js +18 -16
- package/dist/index.js.map +4 -4
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -185,9 +185,9 @@ function serverURLFromOptions(options) {
|
|
|
185
185
|
var SDK_METADATA = {
|
|
186
186
|
language: "typescript",
|
|
187
187
|
openapiDocVersion: "2.0.0",
|
|
188
|
-
sdkVersion: "0.2.
|
|
188
|
+
sdkVersion: "0.2.24",
|
|
189
189
|
genVersion: "2.812.2",
|
|
190
|
-
userAgent: "speakeasy-sdk/typescript 0.2.
|
|
190
|
+
userAgent: "speakeasy-sdk/typescript 0.2.24 2.812.2 2.0.0 @mutagent/sdk"
|
|
191
191
|
};
|
|
192
192
|
// ../mutagent-sdk/dist/esm/lib/http.js
|
|
193
193
|
var DEFAULT_FETCHER = (input, init) => {
|
|
@@ -13431,19 +13431,21 @@ class SDKClientWrapper {
|
|
|
13431
13431
|
}
|
|
13432
13432
|
async updatePrompt(id, data) {
|
|
13433
13433
|
try {
|
|
13434
|
-
const
|
|
13435
|
-
|
|
13436
|
-
|
|
13437
|
-
|
|
13438
|
-
|
|
13439
|
-
|
|
13440
|
-
|
|
13441
|
-
|
|
13442
|
-
|
|
13443
|
-
|
|
13444
|
-
|
|
13445
|
-
|
|
13446
|
-
}
|
|
13434
|
+
const body = {
|
|
13435
|
+
description: data.description ?? undefined,
|
|
13436
|
+
isLatest: data.isLatest ?? undefined,
|
|
13437
|
+
systemPrompt: data.systemPrompt ?? undefined,
|
|
13438
|
+
humanPrompt: data.humanPrompt ?? undefined,
|
|
13439
|
+
rawPrompt: data.rawPrompt ?? undefined,
|
|
13440
|
+
outputSchema: data.outputSchema,
|
|
13441
|
+
metadata: data.metadata,
|
|
13442
|
+
tags: data.tags ?? undefined
|
|
13443
|
+
};
|
|
13444
|
+
if (data.name !== undefined) {
|
|
13445
|
+
body.name = data.name;
|
|
13446
|
+
}
|
|
13447
|
+
const updateArgs = { id: parseInt(id, 10), body };
|
|
13448
|
+
const response = await this.sdk.prompt.updatePrompt(updateArgs);
|
|
13447
13449
|
return response;
|
|
13448
13450
|
} catch (error) {
|
|
13449
13451
|
this.handleError(error);
|
|
@@ -13969,5 +13971,5 @@ export {
|
|
|
13969
13971
|
ApiError
|
|
13970
13972
|
};
|
|
13971
13973
|
|
|
13972
|
-
//# debugId=
|
|
13974
|
+
//# debugId=893E9CC9D3B58B1364756E2164756E21
|
|
13973
13975
|
//# sourceMappingURL=index.js.map
|