vellum-ai 0.14.50 → 0.14.52

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 (55) hide show
  1. package/Client.js +23 -23
  2. package/api/resources/adHoc/client/Client.js +5 -5
  3. package/api/resources/containerImages/client/Client.js +12 -12
  4. package/api/resources/deployments/client/Client.js +21 -21
  5. package/api/resources/documentIndexes/client/Client.js +22 -22
  6. package/api/resources/documents/client/Client.js +13 -13
  7. package/api/resources/folderEntities/client/Client.js +6 -6
  8. package/api/resources/metricDefinitions/client/Client.js +5 -5
  9. package/api/resources/mlModels/client/Client.js +3 -3
  10. package/api/resources/organizations/client/Client.js +3 -3
  11. package/api/resources/prompts/client/Client.js +6 -6
  12. package/api/resources/releaseReviews/client/Client.js +6 -6
  13. package/api/resources/sandboxes/client/Client.js +9 -9
  14. package/api/resources/testSuiteRuns/client/Client.js +9 -9
  15. package/api/resources/testSuites/client/Client.js +12 -12
  16. package/api/resources/workflowDeployments/client/Client.js +24 -24
  17. package/api/resources/workflowSandboxes/client/Client.js +6 -6
  18. package/api/resources/workflows/client/Client.js +6 -6
  19. package/api/resources/workspaceSecrets/client/Client.js +6 -6
  20. package/api/resources/workspaces/client/Client.js +3 -3
  21. package/api/types/MlModelUsageWrapper.d.ts +1 -1
  22. package/dist/Client.js +23 -23
  23. package/dist/api/resources/adHoc/client/Client.js +5 -5
  24. package/dist/api/resources/containerImages/client/Client.js +12 -12
  25. package/dist/api/resources/deployments/client/Client.js +21 -21
  26. package/dist/api/resources/documentIndexes/client/Client.js +22 -22
  27. package/dist/api/resources/documents/client/Client.js +13 -13
  28. package/dist/api/resources/folderEntities/client/Client.js +6 -6
  29. package/dist/api/resources/metricDefinitions/client/Client.js +5 -5
  30. package/dist/api/resources/mlModels/client/Client.js +3 -3
  31. package/dist/api/resources/organizations/client/Client.js +3 -3
  32. package/dist/api/resources/prompts/client/Client.js +6 -6
  33. package/dist/api/resources/releaseReviews/client/Client.js +6 -6
  34. package/dist/api/resources/sandboxes/client/Client.js +9 -9
  35. package/dist/api/resources/testSuiteRuns/client/Client.js +9 -9
  36. package/dist/api/resources/testSuites/client/Client.js +12 -12
  37. package/dist/api/resources/workflowDeployments/client/Client.js +24 -24
  38. package/dist/api/resources/workflowSandboxes/client/Client.js +6 -6
  39. package/dist/api/resources/workflows/client/Client.js +6 -6
  40. package/dist/api/resources/workspaceSecrets/client/Client.js +6 -6
  41. package/dist/api/resources/workspaces/client/Client.js +3 -3
  42. package/dist/api/types/MlModelUsageWrapper.d.ts +1 -1
  43. package/dist/environments.d.ts +4 -4
  44. package/dist/environments.js +2 -2
  45. package/dist/serialization/types/MlModelUsageWrapper.d.ts +1 -1
  46. package/dist/serialization/types/MlModelUsageWrapper.js +1 -1
  47. package/dist/version.d.ts +1 -1
  48. package/dist/version.js +1 -1
  49. package/environments.d.ts +4 -4
  50. package/environments.js +2 -2
  51. package/package.json +1 -1
  52. package/serialization/types/MlModelUsageWrapper.d.ts +1 -1
  53. package/serialization/types/MlModelUsageWrapper.js +1 -1
  54. package/version.d.ts +1 -1
  55. package/version.js +1 -1
@@ -2,15 +2,15 @@
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
4
  export interface VellumEnvironmentUrls {
5
- default: string;
5
+ base: string;
6
6
  predict: string;
7
7
  documents: string;
8
8
  }
9
9
  export declare const VellumEnvironment: {
10
- readonly Production: {
11
- readonly default: "https://api.vellum.ai";
10
+ readonly Default: {
11
+ readonly base: "https://api.vellum.ai";
12
12
  readonly predict: "https://predict.vellum.ai";
13
13
  readonly documents: "https://documents.vellum.ai";
14
14
  };
15
15
  };
16
- export type VellumEnvironment = typeof VellumEnvironment.Production;
16
+ export type VellumEnvironment = typeof VellumEnvironment.Default;
@@ -5,8 +5,8 @@
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
6
  exports.VellumEnvironment = void 0;
7
7
  exports.VellumEnvironment = {
8
- Production: {
9
- default: "https://api.vellum.ai",
8
+ Default: {
9
+ base: "https://api.vellum.ai",
10
10
  predict: "https://predict.vellum.ai",
11
11
  documents: "https://documents.vellum.ai",
12
12
  },
@@ -8,7 +8,7 @@ import { MlModelUsage } from "./MlModelUsage";
8
8
  export declare const MlModelUsageWrapper: core.serialization.ObjectSchema<serializers.MlModelUsageWrapper.Raw, Vellum.MlModelUsageWrapper>;
9
9
  export declare namespace MlModelUsageWrapper {
10
10
  interface Raw {
11
- ml_model_usage: MlModelUsage.Raw;
12
11
  ml_model_name: string;
12
+ ml_model_usage: MlModelUsage.Raw;
13
13
  }
14
14
  }
@@ -40,6 +40,6 @@ exports.MlModelUsageWrapper = void 0;
40
40
  const core = __importStar(require("../../core"));
41
41
  const MlModelUsage_1 = require("./MlModelUsage");
42
42
  exports.MlModelUsageWrapper = core.serialization.object({
43
- mlModelUsage: core.serialization.property("ml_model_usage", MlModelUsage_1.MlModelUsage),
44
43
  mlModelName: core.serialization.property("ml_model_name", core.serialization.string()),
44
+ mlModelUsage: core.serialization.property("ml_model_usage", MlModelUsage_1.MlModelUsage),
45
45
  });
package/dist/version.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const SDK_VERSION = "0.14.50";
1
+ export declare const SDK_VERSION = "0.14.52";
package/dist/version.js CHANGED
@@ -1,4 +1,4 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.SDK_VERSION = void 0;
4
- exports.SDK_VERSION = "0.14.50";
4
+ exports.SDK_VERSION = "0.14.52";
package/environments.d.ts CHANGED
@@ -2,15 +2,15 @@
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
4
  export interface VellumEnvironmentUrls {
5
- default: string;
5
+ base: string;
6
6
  predict: string;
7
7
  documents: string;
8
8
  }
9
9
  export declare const VellumEnvironment: {
10
- readonly Production: {
11
- readonly default: "https://api.vellum.ai";
10
+ readonly Default: {
11
+ readonly base: "https://api.vellum.ai";
12
12
  readonly predict: "https://predict.vellum.ai";
13
13
  readonly documents: "https://documents.vellum.ai";
14
14
  };
15
15
  };
16
- export type VellumEnvironment = typeof VellumEnvironment.Production;
16
+ export type VellumEnvironment = typeof VellumEnvironment.Default;
package/environments.js CHANGED
@@ -5,8 +5,8 @@
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
6
  exports.VellumEnvironment = void 0;
7
7
  exports.VellumEnvironment = {
8
- Production: {
9
- default: "https://api.vellum.ai",
8
+ Default: {
9
+ base: "https://api.vellum.ai",
10
10
  predict: "https://predict.vellum.ai",
11
11
  documents: "https://documents.vellum.ai",
12
12
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vellum-ai",
3
- "version": "0.14.50",
3
+ "version": "0.14.52",
4
4
  "private": false,
5
5
  "repository": "https://github.com/vellum-ai/vellum-client-node",
6
6
  "license": "MIT",
@@ -8,7 +8,7 @@ import { MlModelUsage } from "./MlModelUsage";
8
8
  export declare const MlModelUsageWrapper: core.serialization.ObjectSchema<serializers.MlModelUsageWrapper.Raw, Vellum.MlModelUsageWrapper>;
9
9
  export declare namespace MlModelUsageWrapper {
10
10
  interface Raw {
11
- ml_model_usage: MlModelUsage.Raw;
12
11
  ml_model_name: string;
12
+ ml_model_usage: MlModelUsage.Raw;
13
13
  }
14
14
  }
@@ -40,6 +40,6 @@ exports.MlModelUsageWrapper = void 0;
40
40
  const core = __importStar(require("../../core"));
41
41
  const MlModelUsage_1 = require("./MlModelUsage");
42
42
  exports.MlModelUsageWrapper = core.serialization.object({
43
- mlModelUsage: core.serialization.property("ml_model_usage", MlModelUsage_1.MlModelUsage),
44
43
  mlModelName: core.serialization.property("ml_model_name", core.serialization.string()),
44
+ mlModelUsage: core.serialization.property("ml_model_usage", MlModelUsage_1.MlModelUsage),
45
45
  });
package/version.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const SDK_VERSION = "0.14.50";
1
+ export declare const SDK_VERSION = "0.14.52";
package/version.js CHANGED
@@ -1,4 +1,4 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.SDK_VERSION = void 0;
4
- exports.SDK_VERSION = "0.14.50";
4
+ exports.SDK_VERSION = "0.14.52";