vellum-ai 0.8.23 → 0.8.25

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.
Files changed (199) hide show
  1. package/.mock/definition/__package__.yml +141 -0
  2. package/.mock/definition/folderEntities.yml +91 -2
  3. package/.mock/openapi/openapi.yml +300 -2
  4. package/Client.d.ts +3 -3
  5. package/Client.js +11 -11
  6. package/api/resources/adHoc/client/Client.d.ts +3 -3
  7. package/api/resources/adHoc/client/Client.js +2 -2
  8. package/api/resources/deployments/client/Client.d.ts +3 -3
  9. package/api/resources/deployments/client/Client.js +6 -6
  10. package/api/resources/documentIndexes/client/Client.d.ts +3 -3
  11. package/api/resources/documentIndexes/client/Client.js +9 -9
  12. package/api/resources/documents/client/Client.d.ts +3 -3
  13. package/api/resources/documents/client/Client.js +6 -6
  14. package/api/resources/folderEntities/client/Client.d.ts +22 -4
  15. package/api/resources/folderEntities/client/Client.js +80 -4
  16. package/api/resources/folderEntities/client/requests/FolderEntitiesListRequest.d.ts +43 -0
  17. package/api/resources/folderEntities/client/requests/FolderEntitiesListRequest.js +5 -0
  18. package/api/resources/folderEntities/client/requests/index.d.ts +1 -0
  19. package/api/resources/folderEntities/index.d.ts +1 -0
  20. package/api/resources/folderEntities/index.js +1 -0
  21. package/api/resources/folderEntities/types/FolderEntitiesListRequestEntityStatus.d.ts +8 -0
  22. package/api/resources/folderEntities/types/FolderEntitiesListRequestEntityStatus.js +10 -0
  23. package/api/resources/folderEntities/types/index.d.ts +1 -0
  24. package/api/resources/folderEntities/types/index.js +17 -0
  25. package/api/resources/index.d.ts +2 -1
  26. package/api/resources/index.js +3 -2
  27. package/api/resources/metricDefinitions/client/Client.d.ts +3 -3
  28. package/api/resources/metricDefinitions/client/Client.js +2 -2
  29. package/api/resources/sandboxes/client/Client.d.ts +3 -3
  30. package/api/resources/sandboxes/client/Client.js +4 -4
  31. package/api/resources/testSuiteRuns/client/Client.d.ts +3 -3
  32. package/api/resources/testSuiteRuns/client/Client.js +4 -4
  33. package/api/resources/testSuites/client/Client.d.ts +3 -3
  34. package/api/resources/testSuites/client/Client.js +5 -5
  35. package/api/resources/workflowDeployments/client/Client.d.ts +3 -3
  36. package/api/resources/workflowDeployments/client/Client.js +5 -5
  37. package/api/resources/workflowSandboxes/client/Client.d.ts +3 -3
  38. package/api/resources/workflowSandboxes/client/Client.js +2 -2
  39. package/api/types/FolderEntity.d.ts +5 -0
  40. package/api/types/FolderEntity.js +5 -0
  41. package/api/types/FolderEntityDocumentIndex.d.ts +12 -0
  42. package/api/types/FolderEntityDocumentIndex.js +5 -0
  43. package/api/types/FolderEntityDocumentIndexData.d.ts +11 -0
  44. package/api/types/FolderEntityDocumentIndexData.js +5 -0
  45. package/api/types/FolderEntityFolder.d.ts +12 -0
  46. package/api/types/FolderEntityFolder.js +5 -0
  47. package/api/types/FolderEntityFolderData.d.ts +10 -0
  48. package/api/types/FolderEntityFolderData.js +5 -0
  49. package/api/types/FolderEntityPromptSandbox.d.ts +12 -0
  50. package/api/types/FolderEntityPromptSandbox.js +5 -0
  51. package/api/types/FolderEntityPromptSandboxData.d.ts +12 -0
  52. package/api/types/FolderEntityPromptSandboxData.js +5 -0
  53. package/api/types/FolderEntityTestSuite.d.ts +12 -0
  54. package/api/types/FolderEntityTestSuite.js +5 -0
  55. package/api/types/FolderEntityTestSuiteData.d.ts +11 -0
  56. package/api/types/FolderEntityTestSuiteData.js +5 -0
  57. package/api/types/FolderEntityWorkflowSandbox.d.ts +12 -0
  58. package/api/types/FolderEntityWorkflowSandbox.js +5 -0
  59. package/api/types/FolderEntityWorkflowSandboxData.d.ts +12 -0
  60. package/api/types/FolderEntityWorkflowSandboxData.js +5 -0
  61. package/api/types/PaginatedFolderEntityList.d.ts +10 -0
  62. package/api/types/PaginatedFolderEntityList.js +5 -0
  63. package/api/types/index.d.ts +12 -0
  64. package/api/types/index.js +12 -0
  65. package/dist/Client.d.ts +3 -3
  66. package/dist/Client.js +11 -11
  67. package/dist/api/resources/adHoc/client/Client.d.ts +3 -3
  68. package/dist/api/resources/adHoc/client/Client.js +2 -2
  69. package/dist/api/resources/deployments/client/Client.d.ts +3 -3
  70. package/dist/api/resources/deployments/client/Client.js +6 -6
  71. package/dist/api/resources/documentIndexes/client/Client.d.ts +3 -3
  72. package/dist/api/resources/documentIndexes/client/Client.js +9 -9
  73. package/dist/api/resources/documents/client/Client.d.ts +3 -3
  74. package/dist/api/resources/documents/client/Client.js +6 -6
  75. package/dist/api/resources/folderEntities/client/Client.d.ts +22 -4
  76. package/dist/api/resources/folderEntities/client/Client.js +80 -4
  77. package/dist/api/resources/folderEntities/client/requests/FolderEntitiesListRequest.d.ts +43 -0
  78. package/dist/api/resources/folderEntities/client/requests/FolderEntitiesListRequest.js +5 -0
  79. package/dist/api/resources/folderEntities/client/requests/index.d.ts +1 -0
  80. package/dist/api/resources/folderEntities/index.d.ts +1 -0
  81. package/dist/api/resources/folderEntities/index.js +1 -0
  82. package/dist/api/resources/folderEntities/types/FolderEntitiesListRequestEntityStatus.d.ts +8 -0
  83. package/dist/api/resources/folderEntities/types/FolderEntitiesListRequestEntityStatus.js +10 -0
  84. package/dist/api/resources/folderEntities/types/index.d.ts +1 -0
  85. package/dist/api/resources/folderEntities/types/index.js +17 -0
  86. package/dist/api/resources/index.d.ts +2 -1
  87. package/dist/api/resources/index.js +3 -2
  88. package/dist/api/resources/metricDefinitions/client/Client.d.ts +3 -3
  89. package/dist/api/resources/metricDefinitions/client/Client.js +2 -2
  90. package/dist/api/resources/sandboxes/client/Client.d.ts +3 -3
  91. package/dist/api/resources/sandboxes/client/Client.js +4 -4
  92. package/dist/api/resources/testSuiteRuns/client/Client.d.ts +3 -3
  93. package/dist/api/resources/testSuiteRuns/client/Client.js +4 -4
  94. package/dist/api/resources/testSuites/client/Client.d.ts +3 -3
  95. package/dist/api/resources/testSuites/client/Client.js +5 -5
  96. package/dist/api/resources/workflowDeployments/client/Client.d.ts +3 -3
  97. package/dist/api/resources/workflowDeployments/client/Client.js +5 -5
  98. package/dist/api/resources/workflowSandboxes/client/Client.d.ts +3 -3
  99. package/dist/api/resources/workflowSandboxes/client/Client.js +2 -2
  100. package/dist/api/types/FolderEntity.d.ts +5 -0
  101. package/dist/api/types/FolderEntity.js +5 -0
  102. package/dist/api/types/FolderEntityDocumentIndex.d.ts +12 -0
  103. package/dist/api/types/FolderEntityDocumentIndex.js +5 -0
  104. package/dist/api/types/FolderEntityDocumentIndexData.d.ts +11 -0
  105. package/dist/api/types/FolderEntityDocumentIndexData.js +5 -0
  106. package/dist/api/types/FolderEntityFolder.d.ts +12 -0
  107. package/dist/api/types/FolderEntityFolder.js +5 -0
  108. package/dist/api/types/FolderEntityFolderData.d.ts +10 -0
  109. package/dist/api/types/FolderEntityFolderData.js +5 -0
  110. package/dist/api/types/FolderEntityPromptSandbox.d.ts +12 -0
  111. package/dist/api/types/FolderEntityPromptSandbox.js +5 -0
  112. package/dist/api/types/FolderEntityPromptSandboxData.d.ts +12 -0
  113. package/dist/api/types/FolderEntityPromptSandboxData.js +5 -0
  114. package/dist/api/types/FolderEntityTestSuite.d.ts +12 -0
  115. package/dist/api/types/FolderEntityTestSuite.js +5 -0
  116. package/dist/api/types/FolderEntityTestSuiteData.d.ts +11 -0
  117. package/dist/api/types/FolderEntityTestSuiteData.js +5 -0
  118. package/dist/api/types/FolderEntityWorkflowSandbox.d.ts +12 -0
  119. package/dist/api/types/FolderEntityWorkflowSandbox.js +5 -0
  120. package/dist/api/types/FolderEntityWorkflowSandboxData.d.ts +12 -0
  121. package/dist/api/types/FolderEntityWorkflowSandboxData.js +5 -0
  122. package/dist/api/types/PaginatedFolderEntityList.d.ts +10 -0
  123. package/dist/api/types/PaginatedFolderEntityList.js +5 -0
  124. package/dist/api/types/index.d.ts +12 -0
  125. package/dist/api/types/index.js +12 -0
  126. package/dist/serialization/resources/folderEntities/index.d.ts +1 -0
  127. package/dist/serialization/resources/folderEntities/index.js +1 -0
  128. package/dist/serialization/resources/folderEntities/types/FolderEntitiesListRequestEntityStatus.d.ts +10 -0
  129. package/dist/serialization/resources/folderEntities/types/FolderEntitiesListRequestEntityStatus.js +31 -0
  130. package/dist/serialization/resources/folderEntities/types/index.d.ts +1 -0
  131. package/dist/serialization/resources/folderEntities/types/index.js +17 -0
  132. package/dist/serialization/resources/index.d.ts +2 -1
  133. package/dist/serialization/resources/index.js +3 -2
  134. package/dist/serialization/types/FolderEntity.d.ts +15 -0
  135. package/dist/serialization/types/FolderEntity.js +42 -0
  136. package/dist/serialization/types/FolderEntityDocumentIndex.d.ts +15 -0
  137. package/dist/serialization/types/FolderEntityDocumentIndex.js +36 -0
  138. package/dist/serialization/types/FolderEntityDocumentIndexData.d.ts +17 -0
  139. package/dist/serialization/types/FolderEntityDocumentIndexData.js +38 -0
  140. package/dist/serialization/types/FolderEntityFolder.d.ts +15 -0
  141. package/dist/serialization/types/FolderEntityFolder.js +36 -0
  142. package/dist/serialization/types/FolderEntityFolderData.d.ts +16 -0
  143. package/dist/serialization/types/FolderEntityFolderData.js +37 -0
  144. package/dist/serialization/types/FolderEntityPromptSandbox.d.ts +15 -0
  145. package/dist/serialization/types/FolderEntityPromptSandbox.js +36 -0
  146. package/dist/serialization/types/FolderEntityPromptSandboxData.d.ts +18 -0
  147. package/dist/serialization/types/FolderEntityPromptSandboxData.js +39 -0
  148. package/dist/serialization/types/FolderEntityTestSuite.d.ts +15 -0
  149. package/dist/serialization/types/FolderEntityTestSuite.js +36 -0
  150. package/dist/serialization/types/FolderEntityTestSuiteData.d.ts +17 -0
  151. package/dist/serialization/types/FolderEntityTestSuiteData.js +38 -0
  152. package/dist/serialization/types/FolderEntityWorkflowSandbox.d.ts +15 -0
  153. package/dist/serialization/types/FolderEntityWorkflowSandbox.js +36 -0
  154. package/dist/serialization/types/FolderEntityWorkflowSandboxData.d.ts +18 -0
  155. package/dist/serialization/types/FolderEntityWorkflowSandboxData.js +39 -0
  156. package/dist/serialization/types/PaginatedFolderEntityList.d.ts +16 -0
  157. package/dist/serialization/types/PaginatedFolderEntityList.js +37 -0
  158. package/dist/serialization/types/index.d.ts +12 -0
  159. package/dist/serialization/types/index.js +12 -0
  160. package/dist/version.d.ts +1 -1
  161. package/dist/version.js +1 -1
  162. package/package.json +1 -1
  163. package/reference.md +74 -1
  164. package/serialization/resources/folderEntities/index.d.ts +1 -0
  165. package/serialization/resources/folderEntities/index.js +1 -0
  166. package/serialization/resources/folderEntities/types/FolderEntitiesListRequestEntityStatus.d.ts +10 -0
  167. package/serialization/resources/folderEntities/types/FolderEntitiesListRequestEntityStatus.js +31 -0
  168. package/serialization/resources/folderEntities/types/index.d.ts +1 -0
  169. package/serialization/resources/folderEntities/types/index.js +17 -0
  170. package/serialization/resources/index.d.ts +2 -1
  171. package/serialization/resources/index.js +3 -2
  172. package/serialization/types/FolderEntity.d.ts +15 -0
  173. package/serialization/types/FolderEntity.js +42 -0
  174. package/serialization/types/FolderEntityDocumentIndex.d.ts +15 -0
  175. package/serialization/types/FolderEntityDocumentIndex.js +36 -0
  176. package/serialization/types/FolderEntityDocumentIndexData.d.ts +17 -0
  177. package/serialization/types/FolderEntityDocumentIndexData.js +38 -0
  178. package/serialization/types/FolderEntityFolder.d.ts +15 -0
  179. package/serialization/types/FolderEntityFolder.js +36 -0
  180. package/serialization/types/FolderEntityFolderData.d.ts +16 -0
  181. package/serialization/types/FolderEntityFolderData.js +37 -0
  182. package/serialization/types/FolderEntityPromptSandbox.d.ts +15 -0
  183. package/serialization/types/FolderEntityPromptSandbox.js +36 -0
  184. package/serialization/types/FolderEntityPromptSandboxData.d.ts +18 -0
  185. package/serialization/types/FolderEntityPromptSandboxData.js +39 -0
  186. package/serialization/types/FolderEntityTestSuite.d.ts +15 -0
  187. package/serialization/types/FolderEntityTestSuite.js +36 -0
  188. package/serialization/types/FolderEntityTestSuiteData.d.ts +17 -0
  189. package/serialization/types/FolderEntityTestSuiteData.js +38 -0
  190. package/serialization/types/FolderEntityWorkflowSandbox.d.ts +15 -0
  191. package/serialization/types/FolderEntityWorkflowSandbox.js +36 -0
  192. package/serialization/types/FolderEntityWorkflowSandboxData.d.ts +18 -0
  193. package/serialization/types/FolderEntityWorkflowSandboxData.js +39 -0
  194. package/serialization/types/PaginatedFolderEntityList.d.ts +16 -0
  195. package/serialization/types/PaginatedFolderEntityList.js +37 -0
  196. package/serialization/types/index.d.ts +12 -0
  197. package/serialization/types/index.js +12 -0
  198. package/version.d.ts +1 -1
  199. package/version.js +1 -1
@@ -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.FolderEntityDocumentIndex = void 0;
30
+ const core = __importStar(require("../../core"));
31
+ const FolderEntityDocumentIndexData_1 = require("./FolderEntityDocumentIndexData");
32
+ exports.FolderEntityDocumentIndex = core.serialization.object({
33
+ id: core.serialization.string(),
34
+ type: core.serialization.stringLiteral("DOCUMENT_INDEX"),
35
+ data: FolderEntityDocumentIndexData_1.FolderEntityDocumentIndexData,
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 FolderEntityDocumentIndexData: core.serialization.ObjectSchema<serializers.FolderEntityDocumentIndexData.Raw, Vellum.FolderEntityDocumentIndexData>;
9
+ export declare namespace FolderEntityDocumentIndexData {
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.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
+ });
@@ -94,6 +94,17 @@ export * from "./ExecutionVellumValue";
94
94
  export * from "./ExternalTestCaseExecution";
95
95
  export * from "./ExternalTestCaseExecutionRequest";
96
96
  export * from "./FinishReasonEnum";
97
+ export * from "./FolderEntity";
98
+ export * from "./FolderEntityDocumentIndex";
99
+ export * from "./FolderEntityDocumentIndexData";
100
+ export * from "./FolderEntityFolder";
101
+ export * from "./FolderEntityFolderData";
102
+ export * from "./FolderEntityPromptSandbox";
103
+ export * from "./FolderEntityPromptSandboxData";
104
+ export * from "./FolderEntityTestSuite";
105
+ export * from "./FolderEntityTestSuiteData";
106
+ export * from "./FolderEntityWorkflowSandbox";
107
+ export * from "./FolderEntityWorkflowSandboxData";
97
108
  export * from "./FulfilledAdHocExecutePromptEvent";
98
109
  export * from "./FulfilledEnum";
99
110
  export * from "./FulfilledExecutePromptEvent";
@@ -220,6 +231,7 @@ export * from "./OpenAiVectorizerTextEmbedding3SmallRequest";
220
231
  export * from "./OpenAiVectorizerTextEmbeddingAda002";
221
232
  export * from "./OpenAiVectorizerTextEmbeddingAda002Request";
222
233
  export * from "./PaginatedDocumentIndexReadList";
234
+ export * from "./PaginatedFolderEntityList";
223
235
  export * from "./PaginatedSlimDeploymentReadList";
224
236
  export * from "./PaginatedSlimDocumentList";
225
237
  export * from "./PaginatedSlimWorkflowDeploymentList";
@@ -110,6 +110,17 @@ __exportStar(require("./ExecutionVellumValue"), exports);
110
110
  __exportStar(require("./ExternalTestCaseExecution"), exports);
111
111
  __exportStar(require("./ExternalTestCaseExecutionRequest"), exports);
112
112
  __exportStar(require("./FinishReasonEnum"), exports);
113
+ __exportStar(require("./FolderEntity"), exports);
114
+ __exportStar(require("./FolderEntityDocumentIndex"), exports);
115
+ __exportStar(require("./FolderEntityDocumentIndexData"), exports);
116
+ __exportStar(require("./FolderEntityFolder"), exports);
117
+ __exportStar(require("./FolderEntityFolderData"), exports);
118
+ __exportStar(require("./FolderEntityPromptSandbox"), exports);
119
+ __exportStar(require("./FolderEntityPromptSandboxData"), exports);
120
+ __exportStar(require("./FolderEntityTestSuite"), exports);
121
+ __exportStar(require("./FolderEntityTestSuiteData"), exports);
122
+ __exportStar(require("./FolderEntityWorkflowSandbox"), exports);
123
+ __exportStar(require("./FolderEntityWorkflowSandboxData"), exports);
113
124
  __exportStar(require("./FulfilledAdHocExecutePromptEvent"), exports);
114
125
  __exportStar(require("./FulfilledEnum"), exports);
115
126
  __exportStar(require("./FulfilledExecutePromptEvent"), exports);
@@ -236,6 +247,7 @@ __exportStar(require("./OpenAiVectorizerTextEmbedding3SmallRequest"), exports);
236
247
  __exportStar(require("./OpenAiVectorizerTextEmbeddingAda002"), exports);
237
248
  __exportStar(require("./OpenAiVectorizerTextEmbeddingAda002Request"), exports);
238
249
  __exportStar(require("./PaginatedDocumentIndexReadList"), exports);
250
+ __exportStar(require("./PaginatedFolderEntityList"), exports);
239
251
  __exportStar(require("./PaginatedSlimDeploymentReadList"), exports);
240
252
  __exportStar(require("./PaginatedSlimDocumentList"), exports);
241
253
  __exportStar(require("./PaginatedSlimWorkflowDeploymentList"), exports);
package/dist/version.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const SDK_VERSION = "0.8.23";
1
+ export declare const SDK_VERSION = "0.8.25";