vellum-ai 0.8.10 → 0.8.12
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/.mock/definition/__package__.yml +4 -2
- package/.mock/definition/api.yml +1 -1
- package/.mock/definition/documentIndexes.yml +2 -2
- package/.mock/definition/documents.yml +1 -1
- package/.mock/fern.config.json +1 -1
- package/.mock/openapi/openapi.yml +12 -3
- package/Client.js +9 -9
- package/api/resources/adHoc/client/Client.js +1 -1
- package/api/resources/deployments/client/Client.js +5 -5
- package/api/resources/documentIndexes/client/Client.js +10 -10
- package/api/resources/documents/client/Client.js +6 -6
- package/api/resources/folderEntities/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 +4 -4
- package/api/resources/workflowSandboxes/client/Client.js +1 -1
- package/api/types/IterationStateEnum.d.ts +3 -1
- package/api/types/IterationStateEnum.js +1 -0
- package/api/types/JsonInputRequest.d.ts +1 -1
- package/dist/Client.js +9 -9
- package/dist/api/resources/adHoc/client/Client.js +1 -1
- package/dist/api/resources/deployments/client/Client.js +5 -5
- package/dist/api/resources/documentIndexes/client/Client.js +10 -10
- package/dist/api/resources/documents/client/Client.js +6 -6
- package/dist/api/resources/folderEntities/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 +4 -4
- package/dist/api/resources/workflowSandboxes/client/Client.js +1 -1
- package/dist/api/types/IterationStateEnum.d.ts +3 -1
- package/dist/api/types/IterationStateEnum.js +1 -0
- package/dist/api/types/JsonInputRequest.d.ts +1 -1
- package/dist/environments.d.ts +2 -2
- package/dist/environments.js +1 -1
- package/dist/serialization/types/IterationStateEnum.d.ts +1 -1
- package/dist/serialization/types/IterationStateEnum.js +1 -1
- package/dist/serialization/types/JsonInputRequest.d.ts +1 -1
- package/dist/serialization/types/JsonInputRequest.js +1 -1
- package/environments.d.ts +2 -2
- package/environments.js +1 -1
- package/package.json +1 -1
- package/serialization/types/IterationStateEnum.d.ts +1 -1
- package/serialization/types/IterationStateEnum.js +1 -1
- package/serialization/types/JsonInputRequest.d.ts +1 -1
- package/serialization/types/JsonInputRequest.js +1 -1
package/package.json
CHANGED
|
@@ -6,5 +6,5 @@ import * as Vellum from "../../api/index";
|
|
|
6
6
|
import * as core from "../../core";
|
|
7
7
|
export declare const IterationStateEnum: core.serialization.Schema<serializers.IterationStateEnum.Raw, Vellum.IterationStateEnum>;
|
|
8
8
|
export declare namespace IterationStateEnum {
|
|
9
|
-
type Raw = "INITIATED" | "FULFILLED";
|
|
9
|
+
type Raw = "INITIATED" | "FULFILLED" | "REJECTED";
|
|
10
10
|
}
|
|
@@ -28,4 +28,4 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
28
28
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
29
|
exports.IterationStateEnum = void 0;
|
|
30
30
|
const core = __importStar(require("../../core"));
|
|
31
|
-
exports.IterationStateEnum = core.serialization.enum_(["INITIATED", "FULFILLED"]);
|
|
31
|
+
exports.IterationStateEnum = core.serialization.enum_(["INITIATED", "FULFILLED", "REJECTED"]);
|
|
@@ -31,5 +31,5 @@ const core = __importStar(require("../../core"));
|
|
|
31
31
|
exports.JsonInputRequest = core.serialization.object({
|
|
32
32
|
name: core.serialization.string(),
|
|
33
33
|
type: core.serialization.stringLiteral("JSON"),
|
|
34
|
-
value: core.serialization.
|
|
34
|
+
value: core.serialization.unknown(),
|
|
35
35
|
});
|