@smartspace/api-client 0.1.0-pr.723.2f63312 → 0.1.0-pr.725.25889f6
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/dist/generated/config/models/createModel.d.ts +2 -0
- package/dist/generated/config/models/enumsModelPublisher.d.ts +22 -0
- package/dist/generated/config/models/enumsModelPublisher.js +25 -0
- package/dist/generated/config/models/index.d.ts +1 -0
- package/dist/generated/config/models/index.js +1 -0
- package/dist/generated/config/zod.d.ts +30 -0
- package/dist/generated/config/zod.js +4 -2
- package/package.json +1 -1
|
@@ -5,9 +5,11 @@
|
|
|
5
5
|
* OpenAPI spec version: v1
|
|
6
6
|
*/
|
|
7
7
|
import type { CreateModelDeployment } from './createModelDeployment';
|
|
8
|
+
import type { EnumsModelPublisher } from './enumsModelPublisher';
|
|
8
9
|
export interface CreateModel {
|
|
9
10
|
deployment?: CreateModelDeployment;
|
|
10
11
|
/** @nullable */
|
|
11
12
|
displayName?: string | null;
|
|
12
13
|
name: string;
|
|
14
|
+
publisher?: EnumsModelPublisher;
|
|
13
15
|
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by orval v7.13.2 🍺
|
|
3
|
+
* Do not edit manually.
|
|
4
|
+
* SmartSpace Admin API
|
|
5
|
+
* OpenAPI spec version: v1
|
|
6
|
+
*/
|
|
7
|
+
export type EnumsModelPublisher = typeof EnumsModelPublisher[keyof typeof EnumsModelPublisher];
|
|
8
|
+
export declare const EnumsModelPublisher: {
|
|
9
|
+
readonly OpenAi: "OpenAi";
|
|
10
|
+
readonly Anthropic: "Anthropic";
|
|
11
|
+
readonly Google: "Google";
|
|
12
|
+
readonly Meta: "Meta";
|
|
13
|
+
readonly Mistral: "Mistral";
|
|
14
|
+
readonly Microsoft: "Microsoft";
|
|
15
|
+
readonly DeepSeek: "DeepSeek";
|
|
16
|
+
readonly Cohere: "Cohere";
|
|
17
|
+
readonly XAi: "XAi";
|
|
18
|
+
readonly HuggingFace: "HuggingFace";
|
|
19
|
+
readonly Amazon: "Amazon";
|
|
20
|
+
readonly Qwen: "Qwen";
|
|
21
|
+
readonly Other: "Other";
|
|
22
|
+
};
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Generated by orval v7.13.2 🍺
|
|
4
|
+
* Do not edit manually.
|
|
5
|
+
* SmartSpace Admin API
|
|
6
|
+
* OpenAPI spec version: v1
|
|
7
|
+
*/
|
|
8
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
|
+
exports.EnumsModelPublisher = void 0;
|
|
10
|
+
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
11
|
+
exports.EnumsModelPublisher = {
|
|
12
|
+
OpenAi: 'OpenAi',
|
|
13
|
+
Anthropic: 'Anthropic',
|
|
14
|
+
Google: 'Google',
|
|
15
|
+
Meta: 'Meta',
|
|
16
|
+
Mistral: 'Mistral',
|
|
17
|
+
Microsoft: 'Microsoft',
|
|
18
|
+
DeepSeek: 'DeepSeek',
|
|
19
|
+
Cohere: 'Cohere',
|
|
20
|
+
XAi: 'XAi',
|
|
21
|
+
HuggingFace: 'HuggingFace',
|
|
22
|
+
Amazon: 'Amazon',
|
|
23
|
+
Qwen: 'Qwen',
|
|
24
|
+
Other: 'Other',
|
|
25
|
+
};
|
|
@@ -94,6 +94,7 @@ export * from './enumsModelDeploymentProviderType';
|
|
|
94
94
|
export * from './enumsModelDeploymentStatus';
|
|
95
95
|
export * from './enumsModelDeploymentStepName';
|
|
96
96
|
export * from './enumsModelPropertyType';
|
|
97
|
+
export * from './enumsModelPublisher';
|
|
97
98
|
export * from './enumsModelRole';
|
|
98
99
|
export * from './enumsNotificationType';
|
|
99
100
|
export * from './enumsPermissions';
|
|
@@ -110,6 +110,7 @@ __exportStar(require("./enumsModelDeploymentProviderType"), exports);
|
|
|
110
110
|
__exportStar(require("./enumsModelDeploymentStatus"), exports);
|
|
111
111
|
__exportStar(require("./enumsModelDeploymentStepName"), exports);
|
|
112
112
|
__exportStar(require("./enumsModelPropertyType"), exports);
|
|
113
|
+
__exportStar(require("./enumsModelPublisher"), exports);
|
|
113
114
|
__exportStar(require("./enumsModelRole"), exports);
|
|
114
115
|
__exportStar(require("./enumsNotificationType"), exports);
|
|
115
116
|
__exportStar(require("./enumsPermissions"), exports);
|
|
@@ -1978,6 +1978,21 @@ export declare const modelsCreateModelBody: zod.ZodObject<{
|
|
|
1978
1978
|
}, zod.core.$strict>>;
|
|
1979
1979
|
displayName: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
1980
1980
|
name: zod.ZodString;
|
|
1981
|
+
publisher: zod.ZodOptional<zod.ZodEnum<{
|
|
1982
|
+
OpenAi: "OpenAi";
|
|
1983
|
+
HuggingFace: "HuggingFace";
|
|
1984
|
+
Cohere: "Cohere";
|
|
1985
|
+
Anthropic: "Anthropic";
|
|
1986
|
+
Google: "Google";
|
|
1987
|
+
Meta: "Meta";
|
|
1988
|
+
Mistral: "Mistral";
|
|
1989
|
+
Microsoft: "Microsoft";
|
|
1990
|
+
DeepSeek: "DeepSeek";
|
|
1991
|
+
XAi: "XAi";
|
|
1992
|
+
Amazon: "Amazon";
|
|
1993
|
+
Qwen: "Qwen";
|
|
1994
|
+
Other: "Other";
|
|
1995
|
+
}>>;
|
|
1981
1996
|
}, zod.core.$strict>;
|
|
1982
1997
|
/**
|
|
1983
1998
|
* @summary Deletes a model with the specified ID.
|
|
@@ -2102,6 +2117,21 @@ export declare const modelsUpsertModelBody: zod.ZodObject<{
|
|
|
2102
2117
|
}, zod.core.$strict>>;
|
|
2103
2118
|
displayName: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
2104
2119
|
name: zod.ZodString;
|
|
2120
|
+
publisher: zod.ZodOptional<zod.ZodEnum<{
|
|
2121
|
+
OpenAi: "OpenAi";
|
|
2122
|
+
HuggingFace: "HuggingFace";
|
|
2123
|
+
Cohere: "Cohere";
|
|
2124
|
+
Anthropic: "Anthropic";
|
|
2125
|
+
Google: "Google";
|
|
2126
|
+
Meta: "Meta";
|
|
2127
|
+
Mistral: "Mistral";
|
|
2128
|
+
Microsoft: "Microsoft";
|
|
2129
|
+
DeepSeek: "DeepSeek";
|
|
2130
|
+
XAi: "XAi";
|
|
2131
|
+
Amazon: "Amazon";
|
|
2132
|
+
Qwen: "Qwen";
|
|
2133
|
+
Other: "Other";
|
|
2134
|
+
}>>;
|
|
2105
2135
|
}, zod.core.$strict>;
|
|
2106
2136
|
/**
|
|
2107
2137
|
* @summary Retrieves the Docker logs for a specific deployment of a model.
|
|
@@ -1592,7 +1592,8 @@ exports.modelsCreateModelBody = zod_1.default.strictObject({
|
|
|
1592
1592
|
"vmSize": zod_1.default.string().nullish()
|
|
1593
1593
|
}).optional(),
|
|
1594
1594
|
"displayName": zod_1.default.string().nullish(),
|
|
1595
|
-
"name": zod_1.default.string()
|
|
1595
|
+
"name": zod_1.default.string(),
|
|
1596
|
+
"publisher": zod_1.default.enum(['OpenAi', 'Anthropic', 'Google', 'Meta', 'Mistral', 'Microsoft', 'DeepSeek', 'Cohere', 'XAi', 'HuggingFace', 'Amazon', 'Qwen', 'Other']).optional()
|
|
1596
1597
|
});
|
|
1597
1598
|
/**
|
|
1598
1599
|
* @summary Deletes a model with the specified ID.
|
|
@@ -1679,7 +1680,8 @@ exports.modelsUpsertModelBody = zod_1.default.strictObject({
|
|
|
1679
1680
|
"vmSize": zod_1.default.string().nullish()
|
|
1680
1681
|
}).optional(),
|
|
1681
1682
|
"displayName": zod_1.default.string().nullish(),
|
|
1682
|
-
"name": zod_1.default.string()
|
|
1683
|
+
"name": zod_1.default.string(),
|
|
1684
|
+
"publisher": zod_1.default.enum(['OpenAi', 'Anthropic', 'Google', 'Meta', 'Mistral', 'Microsoft', 'DeepSeek', 'Cohere', 'XAi', 'HuggingFace', 'Amazon', 'Qwen', 'Other']).optional()
|
|
1683
1685
|
});
|
|
1684
1686
|
/**
|
|
1685
1687
|
* @summary Retrieves the Docker logs for a specific deployment of a model.
|