@relevanceai/sdk 1.67.0 → 1.68.0
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.
|
@@ -94,14 +94,6 @@ class DiscoveryApiClient extends BaseClient_1._GenericClient {
|
|
|
94
94
|
options
|
|
95
95
|
});
|
|
96
96
|
}
|
|
97
|
-
async UpdateDeployableGroup(input, options) {
|
|
98
|
-
return this.SendRequest({
|
|
99
|
-
input,
|
|
100
|
-
method: 'post',
|
|
101
|
-
path: '/deployablegroups/{deployablegroup_id}/update',
|
|
102
|
-
options
|
|
103
|
-
});
|
|
104
|
-
}
|
|
105
97
|
async CreateDeployableGroup(input, options) {
|
|
106
98
|
return this.SendRequest({
|
|
107
99
|
input,
|
|
@@ -118,6 +110,14 @@ class DiscoveryApiClient extends BaseClient_1._GenericClient {
|
|
|
118
110
|
options
|
|
119
111
|
});
|
|
120
112
|
}
|
|
113
|
+
async UpdateDeployableGroup(input, options) {
|
|
114
|
+
return this.SendRequest({
|
|
115
|
+
input,
|
|
116
|
+
method: 'post',
|
|
117
|
+
path: '/deployablegroups/{deployablegroup_id}/update',
|
|
118
|
+
options
|
|
119
|
+
});
|
|
120
|
+
}
|
|
121
121
|
async CreateDeployableGroupKey(input, options) {
|
|
122
122
|
return this.SendRequest({
|
|
123
123
|
input,
|
|
@@ -198,37 +198,37 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
198
198
|
});
|
|
199
199
|
});
|
|
200
200
|
};
|
|
201
|
-
DiscoveryApiClient.prototype.
|
|
201
|
+
DiscoveryApiClient.prototype.CreateDeployableGroup = function (input, options) {
|
|
202
202
|
return __awaiter(this, void 0, void 0, function () {
|
|
203
203
|
return __generator(this, function (_a) {
|
|
204
204
|
return [2 /*return*/, this.SendRequest({
|
|
205
205
|
input: input,
|
|
206
206
|
method: 'post',
|
|
207
|
-
path: '/deployablegroups/
|
|
207
|
+
path: '/deployablegroups/create',
|
|
208
208
|
options: options
|
|
209
209
|
})];
|
|
210
210
|
});
|
|
211
211
|
});
|
|
212
212
|
};
|
|
213
|
-
DiscoveryApiClient.prototype.
|
|
213
|
+
DiscoveryApiClient.prototype.GetDeployableGroup = function (input, options) {
|
|
214
214
|
return __awaiter(this, void 0, void 0, function () {
|
|
215
215
|
return __generator(this, function (_a) {
|
|
216
216
|
return [2 /*return*/, this.SendRequest({
|
|
217
217
|
input: input,
|
|
218
|
-
method: '
|
|
219
|
-
path: '/deployablegroups/
|
|
218
|
+
method: 'get',
|
|
219
|
+
path: '/deployablegroups/{deployablegroup_id}/get',
|
|
220
220
|
options: options
|
|
221
221
|
})];
|
|
222
222
|
});
|
|
223
223
|
});
|
|
224
224
|
};
|
|
225
|
-
DiscoveryApiClient.prototype.
|
|
225
|
+
DiscoveryApiClient.prototype.UpdateDeployableGroup = function (input, options) {
|
|
226
226
|
return __awaiter(this, void 0, void 0, function () {
|
|
227
227
|
return __generator(this, function (_a) {
|
|
228
228
|
return [2 /*return*/, this.SendRequest({
|
|
229
229
|
input: input,
|
|
230
|
-
method: '
|
|
231
|
-
path: '/deployablegroups/{deployablegroup_id}/
|
|
230
|
+
method: 'post',
|
|
231
|
+
path: '/deployablegroups/{deployablegroup_id}/update',
|
|
232
232
|
options: options
|
|
233
233
|
})];
|
|
234
234
|
});
|
|
@@ -22,12 +22,12 @@ export declare type DeleteDeployableGroupInput = operations['DeleteDeployableGro
|
|
|
22
22
|
export declare type DeleteDeployableGroupOutput = operations['DeleteDeployableGroup']['responses']['200']['content']['application/json'];
|
|
23
23
|
export declare type ListDeployableGroupsInput = operations['ListDeployableGroups']['requestBody']['content']['application/json'];
|
|
24
24
|
export declare type ListDeployableGroupsOutput = operations['ListDeployableGroups']['responses']['200']['content']['application/json'];
|
|
25
|
-
export declare type UpdateDeployableGroupInput = operations['UpdateDeployableGroup']['requestBody']['content']['application/json'];
|
|
26
|
-
export declare type UpdateDeployableGroupOutput = operations['UpdateDeployableGroup']['responses']['200']['content']['application/json'];
|
|
27
25
|
export declare type CreateDeployableGroupInput = operations['CreateDeployableGroup']['requestBody']['content']['application/json'];
|
|
28
26
|
export declare type CreateDeployableGroupOutput = operations['CreateDeployableGroup']['responses']['200']['content']['application/json'];
|
|
29
27
|
export declare type GetDeployableGroupInput = {};
|
|
30
28
|
export declare type GetDeployableGroupOutput = operations['GetDeployableGroup']['responses']['200']['content']['application/json'];
|
|
29
|
+
export declare type UpdateDeployableGroupInput = operations['UpdateDeployableGroup']['requestBody']['content']['application/json'];
|
|
30
|
+
export declare type UpdateDeployableGroupOutput = operations['UpdateDeployableGroup']['responses']['200']['content']['application/json'];
|
|
31
31
|
export declare type CreateDeployableGroupKeyInput = operations['CreateDeployableGroupKey']['requestBody']['content']['application/json'];
|
|
32
32
|
export declare type CreateDeployableGroupKeyOutput = operations['CreateDeployableGroupKey']['responses']['200']['content']['application/json'];
|
|
33
33
|
export declare type DeleteDeployableGroupKeyInput = operations['DeleteDeployableGroupKey']['requestBody']['content']['application/json'];
|
|
@@ -259,9 +259,9 @@ export declare class DiscoveryApiClient extends _GenericClient {
|
|
|
259
259
|
ListDeployables(input: CommandInput<ListDeployablesInput>, options?: _GenericMethodOptions): Promise<CommandOutput<ListDeployablesOutput>>;
|
|
260
260
|
DeleteDeployableGroup(input: CommandInput<DeleteDeployableGroupInput>, options?: _GenericMethodOptions): Promise<CommandOutput<DeleteDeployableGroupOutput>>;
|
|
261
261
|
ListDeployableGroups(input: CommandInput<ListDeployableGroupsInput>, options?: _GenericMethodOptions): Promise<CommandOutput<ListDeployableGroupsOutput>>;
|
|
262
|
-
UpdateDeployableGroup(input: CommandInput<UpdateDeployableGroupInput>, options?: _GenericMethodOptions): Promise<CommandOutput<UpdateDeployableGroupOutput>>;
|
|
263
262
|
CreateDeployableGroup(input: CommandInput<CreateDeployableGroupInput>, options?: _GenericMethodOptions): Promise<CommandOutput<CreateDeployableGroupOutput>>;
|
|
264
263
|
GetDeployableGroup(input: CommandInput<GetDeployableGroupInput>, options?: _GenericMethodOptions): Promise<CommandOutput<GetDeployableGroupOutput>>;
|
|
264
|
+
UpdateDeployableGroup(input: CommandInput<UpdateDeployableGroupInput>, options?: _GenericMethodOptions): Promise<CommandOutput<UpdateDeployableGroupOutput>>;
|
|
265
265
|
CreateDeployableGroupKey(input: CommandInput<CreateDeployableGroupKeyInput>, options?: _GenericMethodOptions): Promise<CommandOutput<CreateDeployableGroupKeyOutput>>;
|
|
266
266
|
DeleteDeployableGroupKey(input: CommandInput<DeleteDeployableGroupKeyInput>, options?: _GenericMethodOptions): Promise<CommandOutput<DeleteDeployableGroupKeyOutput>>;
|
|
267
267
|
CreateProject(input: CommandInput<CreateProjectInput>, options?: _GenericMethodOptions): Promise<CommandOutput<CreateProjectOutput>>;
|