vellum-ai 0.14.74 → 0.14.76
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/Client.js +11 -11
- package/api/resources/adHoc/client/Client.js +2 -2
- package/api/resources/containerImages/client/Client.js +4 -4
- package/api/resources/deployments/client/Client.js +8 -8
- package/api/resources/documentIndexes/client/Client.js +8 -8
- package/api/resources/documents/client/Client.js +5 -5
- package/api/resources/folderEntities/client/Client.js +2 -2
- package/api/resources/metricDefinitions/client/Client.js +2 -2
- package/api/resources/mlModels/client/Client.js +1 -1
- package/api/resources/organizations/client/Client.js +1 -1
- package/api/resources/prompts/client/Client.js +2 -2
- package/api/resources/prompts/client/requests/PromptPush.d.ts +4 -1
- package/api/resources/releaseReviews/client/Client.js +1 -1
- package/api/resources/sandboxes/client/Client.js +3 -3
- package/api/resources/testSuiteRuns/client/Client.js +3 -3
- package/api/resources/testSuites/client/Client.js +4 -4
- package/api/resources/workflowDeployments/client/Client.js +8 -8
- package/api/resources/workflowSandboxes/client/Client.js +2 -2
- package/api/resources/workflows/client/Client.js +2 -2
- package/api/resources/workspaceSecrets/client/Client.js +2 -2
- package/api/resources/workspaces/client/Client.js +1 -1
- package/dist/Client.js +11 -11
- package/dist/api/resources/adHoc/client/Client.js +2 -2
- package/dist/api/resources/containerImages/client/Client.js +4 -4
- package/dist/api/resources/deployments/client/Client.js +8 -8
- package/dist/api/resources/documentIndexes/client/Client.js +8 -8
- package/dist/api/resources/documents/client/Client.js +5 -5
- package/dist/api/resources/folderEntities/client/Client.js +2 -2
- package/dist/api/resources/metricDefinitions/client/Client.js +2 -2
- package/dist/api/resources/mlModels/client/Client.js +1 -1
- package/dist/api/resources/organizations/client/Client.js +1 -1
- package/dist/api/resources/prompts/client/Client.js +2 -2
- package/dist/api/resources/prompts/client/requests/PromptPush.d.ts +4 -1
- package/dist/api/resources/releaseReviews/client/Client.js +1 -1
- package/dist/api/resources/sandboxes/client/Client.js +3 -3
- package/dist/api/resources/testSuiteRuns/client/Client.js +3 -3
- package/dist/api/resources/testSuites/client/Client.js +4 -4
- package/dist/api/resources/workflowDeployments/client/Client.js +8 -8
- package/dist/api/resources/workflowSandboxes/client/Client.js +2 -2
- package/dist/api/resources/workflows/client/Client.js +2 -2
- package/dist/api/resources/workspaceSecrets/client/Client.js +2 -2
- package/dist/api/resources/workspaces/client/Client.js +1 -1
- package/dist/serialization/resources/prompts/client/requests/PromptPush.d.ts +2 -1
- package/dist/serialization/resources/prompts/client/requests/PromptPush.js +2 -1
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +1 -1
- package/serialization/resources/prompts/client/requests/PromptPush.d.ts +2 -1
- package/serialization/resources/prompts/client/requests/PromptPush.js +2 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -8,8 +8,9 @@ import { PromptExecConfig } from "../../../../types/PromptExecConfig";
|
|
|
8
8
|
export declare const PromptPush: core.serialization.Schema<serializers.PromptPush.Raw, Vellum.PromptPush>;
|
|
9
9
|
export declare namespace PromptPush {
|
|
10
10
|
interface Raw {
|
|
11
|
-
exec_config: PromptExecConfig.Raw;
|
|
12
11
|
prompt_variant_id?: (string | null) | null;
|
|
12
|
+
prompt_variant_label?: (string | null) | null;
|
|
13
13
|
prompt_sandbox_id?: (string | null) | null;
|
|
14
|
+
exec_config: PromptExecConfig.Raw;
|
|
14
15
|
}
|
|
15
16
|
}
|
|
@@ -40,7 +40,8 @@ exports.PromptPush = void 0;
|
|
|
40
40
|
const core = __importStar(require("../../../../../core"));
|
|
41
41
|
const PromptExecConfig_1 = require("../../../../types/PromptExecConfig");
|
|
42
42
|
exports.PromptPush = core.serialization.object({
|
|
43
|
-
execConfig: core.serialization.property("exec_config", PromptExecConfig_1.PromptExecConfig),
|
|
44
43
|
promptVariantId: core.serialization.property("prompt_variant_id", core.serialization.string().optionalNullable()),
|
|
44
|
+
promptVariantLabel: core.serialization.property("prompt_variant_label", core.serialization.string().optionalNullable()),
|
|
45
45
|
promptSandboxId: core.serialization.property("prompt_sandbox_id", core.serialization.string().optionalNullable()),
|
|
46
|
+
execConfig: core.serialization.property("exec_config", PromptExecConfig_1.PromptExecConfig),
|
|
46
47
|
});
|
package/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const SDK_VERSION = "0.14.
|
|
1
|
+
export declare const SDK_VERSION = "0.14.76";
|
package/version.js
CHANGED