vellum-ai 0.8.24 → 0.8.26
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 +175 -1
- package/.mock/definition/adHoc.yml +1 -0
- package/.mock/definition/folderEntities.yml +91 -2
- package/.mock/definition/workspaceSecrets.yml +34 -0
- package/.mock/openapi/openapi.yml +374 -6
- package/Client.d.ts +6 -3
- package/Client.js +16 -11
- package/api/resources/adHoc/client/Client.d.ts +3 -3
- package/api/resources/adHoc/client/Client.js +2 -2
- package/api/resources/adHoc/client/requests/AdHocExecutePromptStreamRequest.d.ts +4 -0
- package/api/resources/deployments/client/Client.d.ts +3 -3
- package/api/resources/deployments/client/Client.js +6 -6
- package/api/resources/documentIndexes/client/Client.d.ts +3 -3
- package/api/resources/documentIndexes/client/Client.js +9 -9
- package/api/resources/documents/client/Client.d.ts +3 -3
- package/api/resources/documents/client/Client.js +6 -6
- package/api/resources/folderEntities/client/Client.d.ts +22 -4
- package/api/resources/folderEntities/client/Client.js +80 -4
- package/api/resources/folderEntities/client/requests/FolderEntitiesListRequest.d.ts +43 -0
- package/api/resources/folderEntities/client/requests/FolderEntitiesListRequest.js +5 -0
- package/api/resources/folderEntities/client/requests/index.d.ts +1 -0
- package/api/resources/folderEntities/index.d.ts +1 -0
- package/api/resources/folderEntities/index.js +1 -0
- package/api/resources/folderEntities/types/FolderEntitiesListRequestEntityStatus.d.ts +8 -0
- package/api/resources/folderEntities/types/FolderEntitiesListRequestEntityStatus.js +10 -0
- package/api/resources/folderEntities/types/index.d.ts +1 -0
- package/api/resources/folderEntities/types/index.js +17 -0
- package/api/resources/index.d.ts +3 -1
- package/api/resources/index.js +4 -2
- package/api/resources/metricDefinitions/client/Client.d.ts +3 -3
- package/api/resources/metricDefinitions/client/Client.js +2 -2
- package/api/resources/sandboxes/client/Client.d.ts +3 -3
- package/api/resources/sandboxes/client/Client.js +4 -4
- package/api/resources/testSuiteRuns/client/Client.d.ts +3 -3
- package/api/resources/testSuiteRuns/client/Client.js +4 -4
- package/api/resources/testSuites/client/Client.d.ts +3 -3
- package/api/resources/testSuites/client/Client.js +5 -5
- package/api/resources/workflowDeployments/client/Client.d.ts +3 -3
- package/api/resources/workflowDeployments/client/Client.js +5 -5
- package/api/resources/workflowSandboxes/client/Client.d.ts +3 -3
- package/api/resources/workflowSandboxes/client/Client.js +2 -2
- package/api/resources/workspaceSecrets/client/Client.d.ts +37 -0
- package/api/resources/workspaceSecrets/client/Client.js +110 -0
- package/api/resources/workspaceSecrets/client/index.d.ts +1 -0
- package/api/resources/workspaceSecrets/client/index.js +2 -0
- package/api/resources/workspaceSecrets/index.d.ts +1 -0
- package/api/resources/workspaceSecrets/index.js +17 -0
- package/api/types/ApiNodeResultData.d.ts +1 -1
- package/api/types/FolderEntity.d.ts +5 -0
- package/api/types/FolderEntity.js +5 -0
- package/api/types/FolderEntityDocumentIndex.d.ts +12 -0
- package/api/types/FolderEntityDocumentIndex.js +5 -0
- package/api/types/FolderEntityDocumentIndexData.d.ts +11 -0
- package/api/types/FolderEntityDocumentIndexData.js +5 -0
- package/api/types/FolderEntityFolder.d.ts +12 -0
- package/api/types/FolderEntityFolder.js +5 -0
- package/api/types/FolderEntityFolderData.d.ts +10 -0
- package/api/types/FolderEntityFolderData.js +5 -0
- package/api/types/FolderEntityPromptSandbox.d.ts +12 -0
- package/api/types/FolderEntityPromptSandbox.js +5 -0
- package/api/types/FolderEntityPromptSandboxData.d.ts +12 -0
- package/api/types/FolderEntityPromptSandboxData.js +5 -0
- package/api/types/FolderEntityTestSuite.d.ts +12 -0
- package/api/types/FolderEntityTestSuite.js +5 -0
- package/api/types/FolderEntityTestSuiteData.d.ts +11 -0
- package/api/types/FolderEntityTestSuiteData.js +5 -0
- package/api/types/FolderEntityWorkflowSandbox.d.ts +12 -0
- package/api/types/FolderEntityWorkflowSandbox.js +5 -0
- package/api/types/FolderEntityWorkflowSandboxData.d.ts +12 -0
- package/api/types/FolderEntityWorkflowSandboxData.js +5 -0
- package/api/types/PaginatedFolderEntityList.d.ts +10 -0
- package/api/types/PaginatedFolderEntityList.js +5 -0
- package/api/types/PromptSettingsRequest.d.ts +6 -0
- package/api/types/PromptSettingsRequest.js +5 -0
- package/api/types/SecretTypeEnum.d.ts +14 -0
- package/api/types/SecretTypeEnum.js +11 -0
- package/api/types/VellumErrorCodeEnum.d.ts +3 -1
- package/api/types/VellumErrorCodeEnum.js +1 -0
- package/api/types/WorkspaceSecretRead.d.ts +11 -0
- package/api/types/WorkspaceSecretRead.js +5 -0
- package/api/types/index.d.ts +15 -0
- package/api/types/index.js +15 -0
- package/dist/Client.d.ts +6 -3
- package/dist/Client.js +16 -11
- package/dist/api/resources/adHoc/client/Client.d.ts +3 -3
- package/dist/api/resources/adHoc/client/Client.js +2 -2
- package/dist/api/resources/adHoc/client/requests/AdHocExecutePromptStreamRequest.d.ts +4 -0
- package/dist/api/resources/deployments/client/Client.d.ts +3 -3
- package/dist/api/resources/deployments/client/Client.js +6 -6
- package/dist/api/resources/documentIndexes/client/Client.d.ts +3 -3
- package/dist/api/resources/documentIndexes/client/Client.js +9 -9
- package/dist/api/resources/documents/client/Client.d.ts +3 -3
- package/dist/api/resources/documents/client/Client.js +6 -6
- package/dist/api/resources/folderEntities/client/Client.d.ts +22 -4
- package/dist/api/resources/folderEntities/client/Client.js +80 -4
- package/dist/api/resources/folderEntities/client/requests/FolderEntitiesListRequest.d.ts +43 -0
- package/dist/api/resources/folderEntities/client/requests/FolderEntitiesListRequest.js +5 -0
- package/dist/api/resources/folderEntities/client/requests/index.d.ts +1 -0
- package/dist/api/resources/folderEntities/index.d.ts +1 -0
- package/dist/api/resources/folderEntities/index.js +1 -0
- package/dist/api/resources/folderEntities/types/FolderEntitiesListRequestEntityStatus.d.ts +8 -0
- package/dist/api/resources/folderEntities/types/FolderEntitiesListRequestEntityStatus.js +10 -0
- package/dist/api/resources/folderEntities/types/index.d.ts +1 -0
- package/dist/api/resources/folderEntities/types/index.js +17 -0
- package/dist/api/resources/index.d.ts +3 -1
- package/dist/api/resources/index.js +4 -2
- package/dist/api/resources/metricDefinitions/client/Client.d.ts +3 -3
- package/dist/api/resources/metricDefinitions/client/Client.js +2 -2
- package/dist/api/resources/sandboxes/client/Client.d.ts +3 -3
- package/dist/api/resources/sandboxes/client/Client.js +4 -4
- package/dist/api/resources/testSuiteRuns/client/Client.d.ts +3 -3
- package/dist/api/resources/testSuiteRuns/client/Client.js +4 -4
- package/dist/api/resources/testSuites/client/Client.d.ts +3 -3
- package/dist/api/resources/testSuites/client/Client.js +5 -5
- package/dist/api/resources/workflowDeployments/client/Client.d.ts +3 -3
- package/dist/api/resources/workflowDeployments/client/Client.js +5 -5
- package/dist/api/resources/workflowSandboxes/client/Client.d.ts +3 -3
- package/dist/api/resources/workflowSandboxes/client/Client.js +2 -2
- package/dist/api/resources/workspaceSecrets/client/Client.d.ts +37 -0
- package/dist/api/resources/workspaceSecrets/client/Client.js +110 -0
- package/dist/api/resources/workspaceSecrets/client/index.d.ts +1 -0
- package/dist/api/resources/workspaceSecrets/client/index.js +2 -0
- package/dist/api/resources/workspaceSecrets/index.d.ts +1 -0
- package/dist/api/resources/workspaceSecrets/index.js +17 -0
- package/dist/api/types/ApiNodeResultData.d.ts +1 -1
- package/dist/api/types/FolderEntity.d.ts +5 -0
- package/dist/api/types/FolderEntity.js +5 -0
- package/dist/api/types/FolderEntityDocumentIndex.d.ts +12 -0
- package/dist/api/types/FolderEntityDocumentIndex.js +5 -0
- package/dist/api/types/FolderEntityDocumentIndexData.d.ts +11 -0
- package/dist/api/types/FolderEntityDocumentIndexData.js +5 -0
- package/dist/api/types/FolderEntityFolder.d.ts +12 -0
- package/dist/api/types/FolderEntityFolder.js +5 -0
- package/dist/api/types/FolderEntityFolderData.d.ts +10 -0
- package/dist/api/types/FolderEntityFolderData.js +5 -0
- package/dist/api/types/FolderEntityPromptSandbox.d.ts +12 -0
- package/dist/api/types/FolderEntityPromptSandbox.js +5 -0
- package/dist/api/types/FolderEntityPromptSandboxData.d.ts +12 -0
- package/dist/api/types/FolderEntityPromptSandboxData.js +5 -0
- package/dist/api/types/FolderEntityTestSuite.d.ts +12 -0
- package/dist/api/types/FolderEntityTestSuite.js +5 -0
- package/dist/api/types/FolderEntityTestSuiteData.d.ts +11 -0
- package/dist/api/types/FolderEntityTestSuiteData.js +5 -0
- package/dist/api/types/FolderEntityWorkflowSandbox.d.ts +12 -0
- package/dist/api/types/FolderEntityWorkflowSandbox.js +5 -0
- package/dist/api/types/FolderEntityWorkflowSandboxData.d.ts +12 -0
- package/dist/api/types/FolderEntityWorkflowSandboxData.js +5 -0
- package/dist/api/types/PaginatedFolderEntityList.d.ts +10 -0
- package/dist/api/types/PaginatedFolderEntityList.js +5 -0
- package/dist/api/types/PromptSettingsRequest.d.ts +6 -0
- package/dist/api/types/PromptSettingsRequest.js +5 -0
- package/dist/api/types/SecretTypeEnum.d.ts +14 -0
- package/dist/api/types/SecretTypeEnum.js +11 -0
- package/dist/api/types/VellumErrorCodeEnum.d.ts +3 -1
- package/dist/api/types/VellumErrorCodeEnum.js +1 -0
- package/dist/api/types/WorkspaceSecretRead.d.ts +11 -0
- package/dist/api/types/WorkspaceSecretRead.js +5 -0
- package/dist/api/types/index.d.ts +15 -0
- package/dist/api/types/index.js +15 -0
- package/dist/serialization/resources/adHoc/client/requests/AdHocExecutePromptStreamRequest.d.ts +2 -0
- package/dist/serialization/resources/adHoc/client/requests/AdHocExecutePromptStreamRequest.js +2 -0
- package/dist/serialization/resources/folderEntities/index.d.ts +1 -0
- package/dist/serialization/resources/folderEntities/index.js +1 -0
- package/dist/serialization/resources/folderEntities/types/FolderEntitiesListRequestEntityStatus.d.ts +10 -0
- package/dist/serialization/resources/folderEntities/types/FolderEntitiesListRequestEntityStatus.js +31 -0
- package/dist/serialization/resources/folderEntities/types/index.d.ts +1 -0
- package/dist/serialization/resources/folderEntities/types/index.js +17 -0
- package/dist/serialization/resources/index.d.ts +2 -1
- package/dist/serialization/resources/index.js +3 -2
- package/dist/serialization/types/ApiNodeResultData.d.ts +1 -1
- package/dist/serialization/types/ApiNodeResultData.js +1 -1
- package/dist/serialization/types/FolderEntity.d.ts +15 -0
- package/dist/serialization/types/FolderEntity.js +42 -0
- package/dist/serialization/types/FolderEntityDocumentIndex.d.ts +15 -0
- package/dist/serialization/types/FolderEntityDocumentIndex.js +36 -0
- package/dist/serialization/types/FolderEntityDocumentIndexData.d.ts +17 -0
- package/dist/serialization/types/FolderEntityDocumentIndexData.js +38 -0
- package/dist/serialization/types/FolderEntityFolder.d.ts +15 -0
- package/dist/serialization/types/FolderEntityFolder.js +36 -0
- package/dist/serialization/types/FolderEntityFolderData.d.ts +16 -0
- package/dist/serialization/types/FolderEntityFolderData.js +37 -0
- package/dist/serialization/types/FolderEntityPromptSandbox.d.ts +15 -0
- package/dist/serialization/types/FolderEntityPromptSandbox.js +36 -0
- package/dist/serialization/types/FolderEntityPromptSandboxData.d.ts +18 -0
- package/dist/serialization/types/FolderEntityPromptSandboxData.js +39 -0
- package/dist/serialization/types/FolderEntityTestSuite.d.ts +15 -0
- package/dist/serialization/types/FolderEntityTestSuite.js +36 -0
- package/dist/serialization/types/FolderEntityTestSuiteData.d.ts +17 -0
- package/dist/serialization/types/FolderEntityTestSuiteData.js +38 -0
- package/dist/serialization/types/FolderEntityWorkflowSandbox.d.ts +15 -0
- package/dist/serialization/types/FolderEntityWorkflowSandbox.js +36 -0
- package/dist/serialization/types/FolderEntityWorkflowSandboxData.d.ts +18 -0
- package/dist/serialization/types/FolderEntityWorkflowSandboxData.js +39 -0
- package/dist/serialization/types/PaginatedFolderEntityList.d.ts +16 -0
- package/dist/serialization/types/PaginatedFolderEntityList.js +37 -0
- package/dist/serialization/types/PromptSettingsRequest.d.ts +12 -0
- package/dist/serialization/types/PromptSettingsRequest.js +33 -0
- package/dist/serialization/types/SecretTypeEnum.d.ts +10 -0
- package/dist/serialization/types/SecretTypeEnum.js +31 -0
- package/dist/serialization/types/VellumErrorCodeEnum.d.ts +1 -1
- package/dist/serialization/types/VellumErrorCodeEnum.js +7 -1
- package/dist/serialization/types/WorkspaceSecretRead.d.ts +17 -0
- package/dist/serialization/types/WorkspaceSecretRead.js +38 -0
- package/dist/serialization/types/index.d.ts +15 -0
- package/dist/serialization/types/index.js +15 -0
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +1 -1
- package/reference.md +142 -1
- package/serialization/resources/adHoc/client/requests/AdHocExecutePromptStreamRequest.d.ts +2 -0
- package/serialization/resources/adHoc/client/requests/AdHocExecutePromptStreamRequest.js +2 -0
- package/serialization/resources/folderEntities/index.d.ts +1 -0
- package/serialization/resources/folderEntities/index.js +1 -0
- package/serialization/resources/folderEntities/types/FolderEntitiesListRequestEntityStatus.d.ts +10 -0
- package/serialization/resources/folderEntities/types/FolderEntitiesListRequestEntityStatus.js +31 -0
- package/serialization/resources/folderEntities/types/index.d.ts +1 -0
- package/serialization/resources/folderEntities/types/index.js +17 -0
- package/serialization/resources/index.d.ts +2 -1
- package/serialization/resources/index.js +3 -2
- package/serialization/types/ApiNodeResultData.d.ts +1 -1
- package/serialization/types/ApiNodeResultData.js +1 -1
- package/serialization/types/FolderEntity.d.ts +15 -0
- package/serialization/types/FolderEntity.js +42 -0
- package/serialization/types/FolderEntityDocumentIndex.d.ts +15 -0
- package/serialization/types/FolderEntityDocumentIndex.js +36 -0
- package/serialization/types/FolderEntityDocumentIndexData.d.ts +17 -0
- package/serialization/types/FolderEntityDocumentIndexData.js +38 -0
- package/serialization/types/FolderEntityFolder.d.ts +15 -0
- package/serialization/types/FolderEntityFolder.js +36 -0
- package/serialization/types/FolderEntityFolderData.d.ts +16 -0
- package/serialization/types/FolderEntityFolderData.js +37 -0
- package/serialization/types/FolderEntityPromptSandbox.d.ts +15 -0
- package/serialization/types/FolderEntityPromptSandbox.js +36 -0
- package/serialization/types/FolderEntityPromptSandboxData.d.ts +18 -0
- package/serialization/types/FolderEntityPromptSandboxData.js +39 -0
- package/serialization/types/FolderEntityTestSuite.d.ts +15 -0
- package/serialization/types/FolderEntityTestSuite.js +36 -0
- package/serialization/types/FolderEntityTestSuiteData.d.ts +17 -0
- package/serialization/types/FolderEntityTestSuiteData.js +38 -0
- package/serialization/types/FolderEntityWorkflowSandbox.d.ts +15 -0
- package/serialization/types/FolderEntityWorkflowSandbox.js +36 -0
- package/serialization/types/FolderEntityWorkflowSandboxData.d.ts +18 -0
- package/serialization/types/FolderEntityWorkflowSandboxData.js +39 -0
- package/serialization/types/PaginatedFolderEntityList.d.ts +16 -0
- package/serialization/types/PaginatedFolderEntityList.js +37 -0
- package/serialization/types/PromptSettingsRequest.d.ts +12 -0
- package/serialization/types/PromptSettingsRequest.js +33 -0
- package/serialization/types/SecretTypeEnum.d.ts +10 -0
- package/serialization/types/SecretTypeEnum.js +31 -0
- package/serialization/types/VellumErrorCodeEnum.d.ts +1 -1
- package/serialization/types/VellumErrorCodeEnum.js +7 -1
- package/serialization/types/WorkspaceSecretRead.d.ts +17 -0
- package/serialization/types/WorkspaceSecretRead.js +38 -0
- package/serialization/types/index.d.ts +15 -0
- package/serialization/types/index.js +15 -0
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
4
|
+
*/
|
|
5
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
+
}
|
|
11
|
+
Object.defineProperty(o, k2, desc);
|
|
12
|
+
}) : (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
o[k2] = m[k];
|
|
15
|
+
}));
|
|
16
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
+
}) : function(o, v) {
|
|
19
|
+
o["default"] = v;
|
|
20
|
+
});
|
|
21
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
22
|
+
if (mod && mod.__esModule) return mod;
|
|
23
|
+
var result = {};
|
|
24
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
25
|
+
__setModuleDefault(result, mod);
|
|
26
|
+
return result;
|
|
27
|
+
};
|
|
28
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
+
exports.FolderEntityDocumentIndexData = void 0;
|
|
30
|
+
const core = __importStar(require("../../core"));
|
|
31
|
+
const EntityStatus_1 = require("./EntityStatus");
|
|
32
|
+
exports.FolderEntityDocumentIndexData = core.serialization.object({
|
|
33
|
+
id: core.serialization.string(),
|
|
34
|
+
label: core.serialization.string(),
|
|
35
|
+
created: core.serialization.date(),
|
|
36
|
+
modified: core.serialization.date(),
|
|
37
|
+
status: EntityStatus_1.EntityStatus,
|
|
38
|
+
});
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../index";
|
|
5
|
+
import * as Vellum from "../../api/index";
|
|
6
|
+
import * as core from "../../core";
|
|
7
|
+
import { FolderEntityFolderData } from "./FolderEntityFolderData";
|
|
8
|
+
export declare const FolderEntityFolder: core.serialization.ObjectSchema<serializers.FolderEntityFolder.Raw, Vellum.FolderEntityFolder>;
|
|
9
|
+
export declare namespace FolderEntityFolder {
|
|
10
|
+
interface Raw {
|
|
11
|
+
id: string;
|
|
12
|
+
type: "FOLDER";
|
|
13
|
+
data: FolderEntityFolderData.Raw;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
4
|
+
*/
|
|
5
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
+
}
|
|
11
|
+
Object.defineProperty(o, k2, desc);
|
|
12
|
+
}) : (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
o[k2] = m[k];
|
|
15
|
+
}));
|
|
16
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
+
}) : function(o, v) {
|
|
19
|
+
o["default"] = v;
|
|
20
|
+
});
|
|
21
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
22
|
+
if (mod && mod.__esModule) return mod;
|
|
23
|
+
var result = {};
|
|
24
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
25
|
+
__setModuleDefault(result, mod);
|
|
26
|
+
return result;
|
|
27
|
+
};
|
|
28
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
+
exports.FolderEntityFolder = void 0;
|
|
30
|
+
const core = __importStar(require("../../core"));
|
|
31
|
+
const FolderEntityFolderData_1 = require("./FolderEntityFolderData");
|
|
32
|
+
exports.FolderEntityFolder = core.serialization.object({
|
|
33
|
+
id: core.serialization.string(),
|
|
34
|
+
type: core.serialization.stringLiteral("FOLDER"),
|
|
35
|
+
data: FolderEntityFolderData_1.FolderEntityFolderData,
|
|
36
|
+
});
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../index";
|
|
5
|
+
import * as Vellum from "../../api/index";
|
|
6
|
+
import * as core from "../../core";
|
|
7
|
+
export declare const FolderEntityFolderData: core.serialization.ObjectSchema<serializers.FolderEntityFolderData.Raw, Vellum.FolderEntityFolderData>;
|
|
8
|
+
export declare namespace FolderEntityFolderData {
|
|
9
|
+
interface Raw {
|
|
10
|
+
id: string;
|
|
11
|
+
label: string;
|
|
12
|
+
created: string;
|
|
13
|
+
modified: string;
|
|
14
|
+
has_contents: boolean;
|
|
15
|
+
}
|
|
16
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
4
|
+
*/
|
|
5
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
+
}
|
|
11
|
+
Object.defineProperty(o, k2, desc);
|
|
12
|
+
}) : (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
o[k2] = m[k];
|
|
15
|
+
}));
|
|
16
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
+
}) : function(o, v) {
|
|
19
|
+
o["default"] = v;
|
|
20
|
+
});
|
|
21
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
22
|
+
if (mod && mod.__esModule) return mod;
|
|
23
|
+
var result = {};
|
|
24
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
25
|
+
__setModuleDefault(result, mod);
|
|
26
|
+
return result;
|
|
27
|
+
};
|
|
28
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
+
exports.FolderEntityFolderData = void 0;
|
|
30
|
+
const core = __importStar(require("../../core"));
|
|
31
|
+
exports.FolderEntityFolderData = core.serialization.object({
|
|
32
|
+
id: core.serialization.string(),
|
|
33
|
+
label: core.serialization.string(),
|
|
34
|
+
created: core.serialization.date(),
|
|
35
|
+
modified: core.serialization.date(),
|
|
36
|
+
hasContents: core.serialization.property("has_contents", core.serialization.boolean()),
|
|
37
|
+
});
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../index";
|
|
5
|
+
import * as Vellum from "../../api/index";
|
|
6
|
+
import * as core from "../../core";
|
|
7
|
+
import { FolderEntityPromptSandboxData } from "./FolderEntityPromptSandboxData";
|
|
8
|
+
export declare const FolderEntityPromptSandbox: core.serialization.ObjectSchema<serializers.FolderEntityPromptSandbox.Raw, Vellum.FolderEntityPromptSandbox>;
|
|
9
|
+
export declare namespace FolderEntityPromptSandbox {
|
|
10
|
+
interface Raw {
|
|
11
|
+
id: string;
|
|
12
|
+
type: "PROMPT_SANDBOX";
|
|
13
|
+
data: FolderEntityPromptSandboxData.Raw;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
4
|
+
*/
|
|
5
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
+
}
|
|
11
|
+
Object.defineProperty(o, k2, desc);
|
|
12
|
+
}) : (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
o[k2] = m[k];
|
|
15
|
+
}));
|
|
16
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
+
}) : function(o, v) {
|
|
19
|
+
o["default"] = v;
|
|
20
|
+
});
|
|
21
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
22
|
+
if (mod && mod.__esModule) return mod;
|
|
23
|
+
var result = {};
|
|
24
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
25
|
+
__setModuleDefault(result, mod);
|
|
26
|
+
return result;
|
|
27
|
+
};
|
|
28
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
+
exports.FolderEntityPromptSandbox = void 0;
|
|
30
|
+
const core = __importStar(require("../../core"));
|
|
31
|
+
const FolderEntityPromptSandboxData_1 = require("./FolderEntityPromptSandboxData");
|
|
32
|
+
exports.FolderEntityPromptSandbox = core.serialization.object({
|
|
33
|
+
id: core.serialization.string(),
|
|
34
|
+
type: core.serialization.stringLiteral("PROMPT_SANDBOX"),
|
|
35
|
+
data: FolderEntityPromptSandboxData_1.FolderEntityPromptSandboxData,
|
|
36
|
+
});
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../index";
|
|
5
|
+
import * as Vellum from "../../api/index";
|
|
6
|
+
import * as core from "../../core";
|
|
7
|
+
import { EntityStatus } from "./EntityStatus";
|
|
8
|
+
export declare const FolderEntityPromptSandboxData: core.serialization.ObjectSchema<serializers.FolderEntityPromptSandboxData.Raw, Vellum.FolderEntityPromptSandboxData>;
|
|
9
|
+
export declare namespace FolderEntityPromptSandboxData {
|
|
10
|
+
interface Raw {
|
|
11
|
+
id: string;
|
|
12
|
+
label: string;
|
|
13
|
+
created: string;
|
|
14
|
+
modified: string;
|
|
15
|
+
status: EntityStatus.Raw;
|
|
16
|
+
last_deployed_on?: string | null;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
4
|
+
*/
|
|
5
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
+
}
|
|
11
|
+
Object.defineProperty(o, k2, desc);
|
|
12
|
+
}) : (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
o[k2] = m[k];
|
|
15
|
+
}));
|
|
16
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
+
}) : function(o, v) {
|
|
19
|
+
o["default"] = v;
|
|
20
|
+
});
|
|
21
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
22
|
+
if (mod && mod.__esModule) return mod;
|
|
23
|
+
var result = {};
|
|
24
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
25
|
+
__setModuleDefault(result, mod);
|
|
26
|
+
return result;
|
|
27
|
+
};
|
|
28
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
+
exports.FolderEntityPromptSandboxData = void 0;
|
|
30
|
+
const core = __importStar(require("../../core"));
|
|
31
|
+
const EntityStatus_1 = require("./EntityStatus");
|
|
32
|
+
exports.FolderEntityPromptSandboxData = core.serialization.object({
|
|
33
|
+
id: core.serialization.string(),
|
|
34
|
+
label: core.serialization.string(),
|
|
35
|
+
created: core.serialization.date(),
|
|
36
|
+
modified: core.serialization.date(),
|
|
37
|
+
status: EntityStatus_1.EntityStatus,
|
|
38
|
+
lastDeployedOn: core.serialization.property("last_deployed_on", core.serialization.date().optional()),
|
|
39
|
+
});
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../index";
|
|
5
|
+
import * as Vellum from "../../api/index";
|
|
6
|
+
import * as core from "../../core";
|
|
7
|
+
import { FolderEntityTestSuiteData } from "./FolderEntityTestSuiteData";
|
|
8
|
+
export declare const FolderEntityTestSuite: core.serialization.ObjectSchema<serializers.FolderEntityTestSuite.Raw, Vellum.FolderEntityTestSuite>;
|
|
9
|
+
export declare namespace FolderEntityTestSuite {
|
|
10
|
+
interface Raw {
|
|
11
|
+
id: string;
|
|
12
|
+
type: "TEST_SUITE";
|
|
13
|
+
data: FolderEntityTestSuiteData.Raw;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
4
|
+
*/
|
|
5
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
+
}
|
|
11
|
+
Object.defineProperty(o, k2, desc);
|
|
12
|
+
}) : (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
o[k2] = m[k];
|
|
15
|
+
}));
|
|
16
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
+
}) : function(o, v) {
|
|
19
|
+
o["default"] = v;
|
|
20
|
+
});
|
|
21
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
22
|
+
if (mod && mod.__esModule) return mod;
|
|
23
|
+
var result = {};
|
|
24
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
25
|
+
__setModuleDefault(result, mod);
|
|
26
|
+
return result;
|
|
27
|
+
};
|
|
28
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
+
exports.FolderEntityTestSuite = void 0;
|
|
30
|
+
const core = __importStar(require("../../core"));
|
|
31
|
+
const FolderEntityTestSuiteData_1 = require("./FolderEntityTestSuiteData");
|
|
32
|
+
exports.FolderEntityTestSuite = core.serialization.object({
|
|
33
|
+
id: core.serialization.string(),
|
|
34
|
+
type: core.serialization.stringLiteral("TEST_SUITE"),
|
|
35
|
+
data: FolderEntityTestSuiteData_1.FolderEntityTestSuiteData,
|
|
36
|
+
});
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../index";
|
|
5
|
+
import * as Vellum from "../../api/index";
|
|
6
|
+
import * as core from "../../core";
|
|
7
|
+
import { EntityStatus } from "./EntityStatus";
|
|
8
|
+
export declare const FolderEntityTestSuiteData: core.serialization.ObjectSchema<serializers.FolderEntityTestSuiteData.Raw, Vellum.FolderEntityTestSuiteData>;
|
|
9
|
+
export declare namespace FolderEntityTestSuiteData {
|
|
10
|
+
interface Raw {
|
|
11
|
+
id: string;
|
|
12
|
+
label: string;
|
|
13
|
+
created: string;
|
|
14
|
+
modified: string;
|
|
15
|
+
status: EntityStatus.Raw;
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
4
|
+
*/
|
|
5
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
+
}
|
|
11
|
+
Object.defineProperty(o, k2, desc);
|
|
12
|
+
}) : (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
o[k2] = m[k];
|
|
15
|
+
}));
|
|
16
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
+
}) : function(o, v) {
|
|
19
|
+
o["default"] = v;
|
|
20
|
+
});
|
|
21
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
22
|
+
if (mod && mod.__esModule) return mod;
|
|
23
|
+
var result = {};
|
|
24
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
25
|
+
__setModuleDefault(result, mod);
|
|
26
|
+
return result;
|
|
27
|
+
};
|
|
28
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
+
exports.FolderEntityTestSuiteData = void 0;
|
|
30
|
+
const core = __importStar(require("../../core"));
|
|
31
|
+
const EntityStatus_1 = require("./EntityStatus");
|
|
32
|
+
exports.FolderEntityTestSuiteData = core.serialization.object({
|
|
33
|
+
id: core.serialization.string(),
|
|
34
|
+
label: core.serialization.string(),
|
|
35
|
+
created: core.serialization.date(),
|
|
36
|
+
modified: core.serialization.date(),
|
|
37
|
+
status: EntityStatus_1.EntityStatus,
|
|
38
|
+
});
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../index";
|
|
5
|
+
import * as Vellum from "../../api/index";
|
|
6
|
+
import * as core from "../../core";
|
|
7
|
+
import { FolderEntityWorkflowSandboxData } from "./FolderEntityWorkflowSandboxData";
|
|
8
|
+
export declare const FolderEntityWorkflowSandbox: core.serialization.ObjectSchema<serializers.FolderEntityWorkflowSandbox.Raw, Vellum.FolderEntityWorkflowSandbox>;
|
|
9
|
+
export declare namespace FolderEntityWorkflowSandbox {
|
|
10
|
+
interface Raw {
|
|
11
|
+
id: string;
|
|
12
|
+
type: "WORKFLOW_SANDBOX";
|
|
13
|
+
data: FolderEntityWorkflowSandboxData.Raw;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
4
|
+
*/
|
|
5
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
+
}
|
|
11
|
+
Object.defineProperty(o, k2, desc);
|
|
12
|
+
}) : (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
o[k2] = m[k];
|
|
15
|
+
}));
|
|
16
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
+
}) : function(o, v) {
|
|
19
|
+
o["default"] = v;
|
|
20
|
+
});
|
|
21
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
22
|
+
if (mod && mod.__esModule) return mod;
|
|
23
|
+
var result = {};
|
|
24
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
25
|
+
__setModuleDefault(result, mod);
|
|
26
|
+
return result;
|
|
27
|
+
};
|
|
28
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
+
exports.FolderEntityWorkflowSandbox = void 0;
|
|
30
|
+
const core = __importStar(require("../../core"));
|
|
31
|
+
const FolderEntityWorkflowSandboxData_1 = require("./FolderEntityWorkflowSandboxData");
|
|
32
|
+
exports.FolderEntityWorkflowSandbox = core.serialization.object({
|
|
33
|
+
id: core.serialization.string(),
|
|
34
|
+
type: core.serialization.stringLiteral("WORKFLOW_SANDBOX"),
|
|
35
|
+
data: FolderEntityWorkflowSandboxData_1.FolderEntityWorkflowSandboxData,
|
|
36
|
+
});
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../index";
|
|
5
|
+
import * as Vellum from "../../api/index";
|
|
6
|
+
import * as core from "../../core";
|
|
7
|
+
import { EntityStatus } from "./EntityStatus";
|
|
8
|
+
export declare const FolderEntityWorkflowSandboxData: core.serialization.ObjectSchema<serializers.FolderEntityWorkflowSandboxData.Raw, Vellum.FolderEntityWorkflowSandboxData>;
|
|
9
|
+
export declare namespace FolderEntityWorkflowSandboxData {
|
|
10
|
+
interface Raw {
|
|
11
|
+
id: string;
|
|
12
|
+
label: string;
|
|
13
|
+
created: string;
|
|
14
|
+
modified: string;
|
|
15
|
+
status: EntityStatus.Raw;
|
|
16
|
+
last_deployed_on?: string | null;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
4
|
+
*/
|
|
5
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
+
}
|
|
11
|
+
Object.defineProperty(o, k2, desc);
|
|
12
|
+
}) : (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
o[k2] = m[k];
|
|
15
|
+
}));
|
|
16
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
+
}) : function(o, v) {
|
|
19
|
+
o["default"] = v;
|
|
20
|
+
});
|
|
21
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
22
|
+
if (mod && mod.__esModule) return mod;
|
|
23
|
+
var result = {};
|
|
24
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
25
|
+
__setModuleDefault(result, mod);
|
|
26
|
+
return result;
|
|
27
|
+
};
|
|
28
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
+
exports.FolderEntityWorkflowSandboxData = void 0;
|
|
30
|
+
const core = __importStar(require("../../core"));
|
|
31
|
+
const EntityStatus_1 = require("./EntityStatus");
|
|
32
|
+
exports.FolderEntityWorkflowSandboxData = core.serialization.object({
|
|
33
|
+
id: core.serialization.string(),
|
|
34
|
+
label: core.serialization.string(),
|
|
35
|
+
created: core.serialization.date(),
|
|
36
|
+
modified: core.serialization.date(),
|
|
37
|
+
status: EntityStatus_1.EntityStatus,
|
|
38
|
+
lastDeployedOn: core.serialization.property("last_deployed_on", core.serialization.date().optional()),
|
|
39
|
+
});
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../index";
|
|
5
|
+
import * as Vellum from "../../api/index";
|
|
6
|
+
import * as core from "../../core";
|
|
7
|
+
import { FolderEntity } from "./FolderEntity";
|
|
8
|
+
export declare const PaginatedFolderEntityList: core.serialization.ObjectSchema<serializers.PaginatedFolderEntityList.Raw, Vellum.PaginatedFolderEntityList>;
|
|
9
|
+
export declare namespace PaginatedFolderEntityList {
|
|
10
|
+
interface Raw {
|
|
11
|
+
count?: number | null;
|
|
12
|
+
next?: string | null;
|
|
13
|
+
previous?: string | null;
|
|
14
|
+
results?: FolderEntity.Raw[] | null;
|
|
15
|
+
}
|
|
16
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
4
|
+
*/
|
|
5
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
+
}
|
|
11
|
+
Object.defineProperty(o, k2, desc);
|
|
12
|
+
}) : (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
o[k2] = m[k];
|
|
15
|
+
}));
|
|
16
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
+
}) : function(o, v) {
|
|
19
|
+
o["default"] = v;
|
|
20
|
+
});
|
|
21
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
22
|
+
if (mod && mod.__esModule) return mod;
|
|
23
|
+
var result = {};
|
|
24
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
25
|
+
__setModuleDefault(result, mod);
|
|
26
|
+
return result;
|
|
27
|
+
};
|
|
28
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
+
exports.PaginatedFolderEntityList = void 0;
|
|
30
|
+
const core = __importStar(require("../../core"));
|
|
31
|
+
const FolderEntity_1 = require("./FolderEntity");
|
|
32
|
+
exports.PaginatedFolderEntityList = core.serialization.object({
|
|
33
|
+
count: core.serialization.number().optional(),
|
|
34
|
+
next: core.serialization.string().optional(),
|
|
35
|
+
previous: core.serialization.string().optional(),
|
|
36
|
+
results: core.serialization.list(FolderEntity_1.FolderEntity).optional(),
|
|
37
|
+
});
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../index";
|
|
5
|
+
import * as Vellum from "../../api/index";
|
|
6
|
+
import * as core from "../../core";
|
|
7
|
+
export declare const PromptSettingsRequest: core.serialization.ObjectSchema<serializers.PromptSettingsRequest.Raw, Vellum.PromptSettingsRequest>;
|
|
8
|
+
export declare namespace PromptSettingsRequest {
|
|
9
|
+
interface Raw {
|
|
10
|
+
timeout?: number | null;
|
|
11
|
+
}
|
|
12
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
4
|
+
*/
|
|
5
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
+
}
|
|
11
|
+
Object.defineProperty(o, k2, desc);
|
|
12
|
+
}) : (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
o[k2] = m[k];
|
|
15
|
+
}));
|
|
16
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
+
}) : function(o, v) {
|
|
19
|
+
o["default"] = v;
|
|
20
|
+
});
|
|
21
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
22
|
+
if (mod && mod.__esModule) return mod;
|
|
23
|
+
var result = {};
|
|
24
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
25
|
+
__setModuleDefault(result, mod);
|
|
26
|
+
return result;
|
|
27
|
+
};
|
|
28
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
+
exports.PromptSettingsRequest = void 0;
|
|
30
|
+
const core = __importStar(require("../../core"));
|
|
31
|
+
exports.PromptSettingsRequest = core.serialization.object({
|
|
32
|
+
timeout: core.serialization.number().optional(),
|
|
33
|
+
});
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../index";
|
|
5
|
+
import * as Vellum from "../../api/index";
|
|
6
|
+
import * as core from "../../core";
|
|
7
|
+
export declare const SecretTypeEnum: core.serialization.Schema<serializers.SecretTypeEnum.Raw, Vellum.SecretTypeEnum>;
|
|
8
|
+
export declare namespace SecretTypeEnum {
|
|
9
|
+
type Raw = "USER_DEFINED" | "HMAC" | "INTERNAL_API_KEY";
|
|
10
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
4
|
+
*/
|
|
5
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
+
}
|
|
11
|
+
Object.defineProperty(o, k2, desc);
|
|
12
|
+
}) : (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
o[k2] = m[k];
|
|
15
|
+
}));
|
|
16
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
+
}) : function(o, v) {
|
|
19
|
+
o["default"] = v;
|
|
20
|
+
});
|
|
21
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
22
|
+
if (mod && mod.__esModule) return mod;
|
|
23
|
+
var result = {};
|
|
24
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
25
|
+
__setModuleDefault(result, mod);
|
|
26
|
+
return result;
|
|
27
|
+
};
|
|
28
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
+
exports.SecretTypeEnum = void 0;
|
|
30
|
+
const core = __importStar(require("../../core"));
|
|
31
|
+
exports.SecretTypeEnum = core.serialization.enum_(["USER_DEFINED", "HMAC", "INTERNAL_API_KEY"]);
|
|
@@ -6,5 +6,5 @@ import * as Vellum from "../../api/index";
|
|
|
6
6
|
import * as core from "../../core";
|
|
7
7
|
export declare const VellumErrorCodeEnum: core.serialization.Schema<serializers.VellumErrorCodeEnum.Raw, Vellum.VellumErrorCodeEnum>;
|
|
8
8
|
export declare namespace VellumErrorCodeEnum {
|
|
9
|
-
type Raw = "INVALID_REQUEST" | "PROVIDER_ERROR" | "INTERNAL_SERVER_ERROR" | "USER_DEFINED_ERROR";
|
|
9
|
+
type Raw = "INVALID_REQUEST" | "PROVIDER_ERROR" | "REQUEST_TIMEOUT" | "INTERNAL_SERVER_ERROR" | "USER_DEFINED_ERROR";
|
|
10
10
|
}
|
|
@@ -28,4 +28,10 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
28
28
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
29
|
exports.VellumErrorCodeEnum = void 0;
|
|
30
30
|
const core = __importStar(require("../../core"));
|
|
31
|
-
exports.VellumErrorCodeEnum = core.serialization.enum_([
|
|
31
|
+
exports.VellumErrorCodeEnum = core.serialization.enum_([
|
|
32
|
+
"INVALID_REQUEST",
|
|
33
|
+
"PROVIDER_ERROR",
|
|
34
|
+
"REQUEST_TIMEOUT",
|
|
35
|
+
"INTERNAL_SERVER_ERROR",
|
|
36
|
+
"USER_DEFINED_ERROR",
|
|
37
|
+
]);
|