@relevanceai/sdk 1.149.0 → 2.0.1
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/README.md +27 -49
- package/dist-cjs/generated/{DiscoveryApi.js → VecDBApi.js} +329 -25
- package/dist-cjs/generated/index.js +1 -1
- package/dist-cjs/index.js +1 -1
- package/dist-cjs/services/index.js +16 -1
- package/dist-cjs/services/vecdb/Dataset.js +137 -0
- package/dist-cjs/services/vecdb/index.js +137 -0
- package/dist-cjs/shared/serviceConfigs.js +4 -4
- package/dist-es/generated/{DiscoveryApi.js → VecDBApi.js} +651 -195
- package/dist-es/generated/index.js +1 -1
- package/dist-es/index.js +1 -1
- package/dist-es/services/index.js +1 -2
- package/dist-es/services/vecdb/Dataset.js +356 -0
- package/dist-es/services/vecdb/index.js +184 -0
- package/dist-es/shared/serviceConfigs.js +4 -4
- package/dist-types/generated/{DiscoveryApi.d.ts → VecDBApi.d.ts} +137 -23
- package/dist-types/generated/{_DiscoveryApiSchemaTypes.d.ts → _VecDBApiSchemaTypes.d.ts} +6841 -4543
- package/dist-types/generated/index.d.ts +1 -1
- package/dist-types/index.d.ts +1 -0
- package/dist-types/services/index.d.ts +1 -0
- package/dist-types/services/vecdb/Dataset.d.ts +52 -0
- package/dist-types/services/vecdb/index.d.ts +44 -0
- package/package.json +3 -2
- /package/dist-cjs/generated/{_DiscoveryApiSchemaTypes.js → _VecDBApiSchemaTypes.js} +0 -0
- /package/dist-es/generated/{_DiscoveryApiSchemaTypes.js → _VecDBApiSchemaTypes.js} +0 -0
|
@@ -61,12 +61,12 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
61
61
|
}
|
|
62
62
|
};
|
|
63
63
|
import { _GenericClient } from '../shared/BaseClient';
|
|
64
|
-
var
|
|
65
|
-
__extends(
|
|
66
|
-
function
|
|
67
|
-
return _super.call(this, __assign(__assign({}, config), { service_name: '
|
|
64
|
+
var VecDBApiClient = /** @class */ (function (_super) {
|
|
65
|
+
__extends(VecDBApiClient, _super);
|
|
66
|
+
function VecDBApiClient(config) {
|
|
67
|
+
return _super.call(this, __assign(__assign({}, config), { service_name: 'VecDBApi' })) || this;
|
|
68
68
|
}
|
|
69
|
-
|
|
69
|
+
VecDBApiClient.prototype.CreateDeployable = function (input, options) {
|
|
70
70
|
return __awaiter(this, void 0, void 0, function () {
|
|
71
71
|
return __generator(this, function (_a) {
|
|
72
72
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -78,7 +78,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
78
78
|
});
|
|
79
79
|
});
|
|
80
80
|
};
|
|
81
|
-
|
|
81
|
+
VecDBApiClient.prototype.GetDeployable = function (input, options) {
|
|
82
82
|
return __awaiter(this, void 0, void 0, function () {
|
|
83
83
|
return __generator(this, function (_a) {
|
|
84
84
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -90,7 +90,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
90
90
|
});
|
|
91
91
|
});
|
|
92
92
|
};
|
|
93
|
-
|
|
93
|
+
VecDBApiClient.prototype.UpdateDeployable = function (input, options) {
|
|
94
94
|
return __awaiter(this, void 0, void 0, function () {
|
|
95
95
|
return __generator(this, function (_a) {
|
|
96
96
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -102,7 +102,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
102
102
|
});
|
|
103
103
|
});
|
|
104
104
|
};
|
|
105
|
-
|
|
105
|
+
VecDBApiClient.prototype.DeleteDeployable = function (input, options) {
|
|
106
106
|
return __awaiter(this, void 0, void 0, function () {
|
|
107
107
|
return __generator(this, function (_a) {
|
|
108
108
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -114,7 +114,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
114
114
|
});
|
|
115
115
|
});
|
|
116
116
|
};
|
|
117
|
-
|
|
117
|
+
VecDBApiClient.prototype.CreateDeployableKey = function (input, options) {
|
|
118
118
|
return __awaiter(this, void 0, void 0, function () {
|
|
119
119
|
return __generator(this, function (_a) {
|
|
120
120
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -126,7 +126,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
126
126
|
});
|
|
127
127
|
});
|
|
128
128
|
};
|
|
129
|
-
|
|
129
|
+
VecDBApiClient.prototype.CreateDeployableInvite = function (input, options) {
|
|
130
130
|
return __awaiter(this, void 0, void 0, function () {
|
|
131
131
|
return __generator(this, function (_a) {
|
|
132
132
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -138,7 +138,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
138
138
|
});
|
|
139
139
|
});
|
|
140
140
|
};
|
|
141
|
-
|
|
141
|
+
VecDBApiClient.prototype.UpdateUsersDeployablePermissions = function (input, options) {
|
|
142
142
|
return __awaiter(this, void 0, void 0, function () {
|
|
143
143
|
return __generator(this, function (_a) {
|
|
144
144
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -150,7 +150,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
150
150
|
});
|
|
151
151
|
});
|
|
152
152
|
};
|
|
153
|
-
|
|
153
|
+
VecDBApiClient.prototype.DeleteDeployableKey = function (input, options) {
|
|
154
154
|
return __awaiter(this, void 0, void 0, function () {
|
|
155
155
|
return __generator(this, function (_a) {
|
|
156
156
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -162,7 +162,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
162
162
|
});
|
|
163
163
|
});
|
|
164
164
|
};
|
|
165
|
-
|
|
165
|
+
VecDBApiClient.prototype.ListDeployables = function (input, options) {
|
|
166
166
|
return __awaiter(this, void 0, void 0, function () {
|
|
167
167
|
return __generator(this, function (_a) {
|
|
168
168
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -174,7 +174,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
174
174
|
});
|
|
175
175
|
});
|
|
176
176
|
};
|
|
177
|
-
|
|
177
|
+
VecDBApiClient.prototype.DeleteDeployableGroup = function (input, options) {
|
|
178
178
|
return __awaiter(this, void 0, void 0, function () {
|
|
179
179
|
return __generator(this, function (_a) {
|
|
180
180
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -186,7 +186,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
186
186
|
});
|
|
187
187
|
});
|
|
188
188
|
};
|
|
189
|
-
|
|
189
|
+
VecDBApiClient.prototype.ListDeployableGroups = function (input, options) {
|
|
190
190
|
return __awaiter(this, void 0, void 0, function () {
|
|
191
191
|
return __generator(this, function (_a) {
|
|
192
192
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -198,7 +198,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
198
198
|
});
|
|
199
199
|
});
|
|
200
200
|
};
|
|
201
|
-
|
|
201
|
+
VecDBApiClient.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({
|
|
@@ -210,7 +210,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
210
210
|
});
|
|
211
211
|
});
|
|
212
212
|
};
|
|
213
|
-
|
|
213
|
+
VecDBApiClient.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({
|
|
@@ -222,7 +222,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
222
222
|
});
|
|
223
223
|
});
|
|
224
224
|
};
|
|
225
|
-
|
|
225
|
+
VecDBApiClient.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({
|
|
@@ -234,7 +234,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
234
234
|
});
|
|
235
235
|
});
|
|
236
236
|
};
|
|
237
|
-
|
|
237
|
+
VecDBApiClient.prototype.CreateDeployableGroupKey = function (input, options) {
|
|
238
238
|
return __awaiter(this, void 0, void 0, function () {
|
|
239
239
|
return __generator(this, function (_a) {
|
|
240
240
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -246,7 +246,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
246
246
|
});
|
|
247
247
|
});
|
|
248
248
|
};
|
|
249
|
-
|
|
249
|
+
VecDBApiClient.prototype.DeleteDeployableGroupKey = function (input, options) {
|
|
250
250
|
return __awaiter(this, void 0, void 0, function () {
|
|
251
251
|
return __generator(this, function (_a) {
|
|
252
252
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -258,7 +258,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
258
258
|
});
|
|
259
259
|
});
|
|
260
260
|
};
|
|
261
|
-
|
|
261
|
+
VecDBApiClient.prototype.CreateProject = function (input, options) {
|
|
262
262
|
return __awaiter(this, void 0, void 0, function () {
|
|
263
263
|
return __generator(this, function (_a) {
|
|
264
264
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -270,7 +270,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
270
270
|
});
|
|
271
271
|
});
|
|
272
272
|
};
|
|
273
|
-
|
|
273
|
+
VecDBApiClient.prototype.UpdateProject = function (input, options) {
|
|
274
274
|
return __awaiter(this, void 0, void 0, function () {
|
|
275
275
|
return __generator(this, function (_a) {
|
|
276
276
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -282,7 +282,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
282
282
|
});
|
|
283
283
|
});
|
|
284
284
|
};
|
|
285
|
-
|
|
285
|
+
VecDBApiClient.prototype.TransferProjectToOrganization = function (input, options) {
|
|
286
286
|
return __awaiter(this, void 0, void 0, function () {
|
|
287
287
|
return __generator(this, function (_a) {
|
|
288
288
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -294,7 +294,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
294
294
|
});
|
|
295
295
|
});
|
|
296
296
|
};
|
|
297
|
-
|
|
297
|
+
VecDBApiClient.prototype.ListProjects = function (input, options) {
|
|
298
298
|
return __awaiter(this, void 0, void 0, function () {
|
|
299
299
|
return __generator(this, function (_a) {
|
|
300
300
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -306,7 +306,67 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
306
306
|
});
|
|
307
307
|
});
|
|
308
308
|
};
|
|
309
|
-
|
|
309
|
+
VecDBApiClient.prototype.GetProjectsOrgInfo = function (input, options) {
|
|
310
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
311
|
+
return __generator(this, function (_a) {
|
|
312
|
+
return [2 /*return*/, this.SendRequest({
|
|
313
|
+
input: input,
|
|
314
|
+
method: 'get',
|
|
315
|
+
path: '/projects/organization_info',
|
|
316
|
+
options: options
|
|
317
|
+
})];
|
|
318
|
+
});
|
|
319
|
+
});
|
|
320
|
+
};
|
|
321
|
+
VecDBApiClient.prototype.ListProjectKeys = function (input, options) {
|
|
322
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
323
|
+
return __generator(this, function (_a) {
|
|
324
|
+
return [2 /*return*/, this.SendRequest({
|
|
325
|
+
input: input,
|
|
326
|
+
method: 'get',
|
|
327
|
+
path: '/projects/keys/list',
|
|
328
|
+
options: options
|
|
329
|
+
})];
|
|
330
|
+
});
|
|
331
|
+
});
|
|
332
|
+
};
|
|
333
|
+
VecDBApiClient.prototype.GetProjectKey = function (input, options) {
|
|
334
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
335
|
+
return __generator(this, function (_a) {
|
|
336
|
+
return [2 /*return*/, this.SendRequest({
|
|
337
|
+
input: input,
|
|
338
|
+
method: 'post',
|
|
339
|
+
path: '/projects/keys/get',
|
|
340
|
+
options: options
|
|
341
|
+
})];
|
|
342
|
+
});
|
|
343
|
+
});
|
|
344
|
+
};
|
|
345
|
+
VecDBApiClient.prototype.SetProjectKey = function (input, options) {
|
|
346
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
347
|
+
return __generator(this, function (_a) {
|
|
348
|
+
return [2 /*return*/, this.SendRequest({
|
|
349
|
+
input: input,
|
|
350
|
+
method: 'post',
|
|
351
|
+
path: '/projects/keys/set',
|
|
352
|
+
options: options
|
|
353
|
+
})];
|
|
354
|
+
});
|
|
355
|
+
});
|
|
356
|
+
};
|
|
357
|
+
VecDBApiClient.prototype.DeleteProjectKey = function (input, options) {
|
|
358
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
359
|
+
return __generator(this, function (_a) {
|
|
360
|
+
return [2 /*return*/, this.SendRequest({
|
|
361
|
+
input: input,
|
|
362
|
+
method: 'post',
|
|
363
|
+
path: '/projects/keys/delete',
|
|
364
|
+
options: options
|
|
365
|
+
})];
|
|
366
|
+
});
|
|
367
|
+
});
|
|
368
|
+
};
|
|
369
|
+
VecDBApiClient.prototype.CreateUser = function (input, options) {
|
|
310
370
|
return __awaiter(this, void 0, void 0, function () {
|
|
311
371
|
return __generator(this, function (_a) {
|
|
312
372
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -318,7 +378,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
318
378
|
});
|
|
319
379
|
});
|
|
320
380
|
};
|
|
321
|
-
|
|
381
|
+
VecDBApiClient.prototype.ListUsers = function (input, options) {
|
|
322
382
|
return __awaiter(this, void 0, void 0, function () {
|
|
323
383
|
return __generator(this, function (_a) {
|
|
324
384
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -330,7 +390,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
330
390
|
});
|
|
331
391
|
});
|
|
332
392
|
};
|
|
333
|
-
|
|
393
|
+
VecDBApiClient.prototype.IsUserAuthorized = function (input, options) {
|
|
334
394
|
return __awaiter(this, void 0, void 0, function () {
|
|
335
395
|
return __generator(this, function (_a) {
|
|
336
396
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -342,7 +402,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
342
402
|
});
|
|
343
403
|
});
|
|
344
404
|
};
|
|
345
|
-
|
|
405
|
+
VecDBApiClient.prototype.GetAuthHeaderInfo = function (input, options) {
|
|
346
406
|
return __awaiter(this, void 0, void 0, function () {
|
|
347
407
|
return __generator(this, function (_a) {
|
|
348
408
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -354,7 +414,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
354
414
|
});
|
|
355
415
|
});
|
|
356
416
|
};
|
|
357
|
-
|
|
417
|
+
VecDBApiClient.prototype.CreateProjectInvite = function (input, options) {
|
|
358
418
|
return __awaiter(this, void 0, void 0, function () {
|
|
359
419
|
return __generator(this, function (_a) {
|
|
360
420
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -366,7 +426,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
366
426
|
});
|
|
367
427
|
});
|
|
368
428
|
};
|
|
369
|
-
|
|
429
|
+
VecDBApiClient.prototype.ListProjectInvites = function (input, options) {
|
|
370
430
|
return __awaiter(this, void 0, void 0, function () {
|
|
371
431
|
return __generator(this, function (_a) {
|
|
372
432
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -378,7 +438,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
378
438
|
});
|
|
379
439
|
});
|
|
380
440
|
};
|
|
381
|
-
|
|
441
|
+
VecDBApiClient.prototype.AcceptProjectInvite = function (input, options) {
|
|
382
442
|
return __awaiter(this, void 0, void 0, function () {
|
|
383
443
|
return __generator(this, function (_a) {
|
|
384
444
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -390,7 +450,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
390
450
|
});
|
|
391
451
|
});
|
|
392
452
|
};
|
|
393
|
-
|
|
453
|
+
VecDBApiClient.prototype.DeleteProjectInvite = function (input, options) {
|
|
394
454
|
return __awaiter(this, void 0, void 0, function () {
|
|
395
455
|
return __generator(this, function (_a) {
|
|
396
456
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -402,7 +462,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
402
462
|
});
|
|
403
463
|
});
|
|
404
464
|
};
|
|
405
|
-
|
|
465
|
+
VecDBApiClient.prototype.ResendProjectInvite = function (input, options) {
|
|
406
466
|
return __awaiter(this, void 0, void 0, function () {
|
|
407
467
|
return __generator(this, function (_a) {
|
|
408
468
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -414,7 +474,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
414
474
|
});
|
|
415
475
|
});
|
|
416
476
|
};
|
|
417
|
-
|
|
477
|
+
VecDBApiClient.prototype.GetUser = function (input, options) {
|
|
418
478
|
return __awaiter(this, void 0, void 0, function () {
|
|
419
479
|
return __generator(this, function (_a) {
|
|
420
480
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -426,7 +486,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
426
486
|
});
|
|
427
487
|
});
|
|
428
488
|
};
|
|
429
|
-
|
|
489
|
+
VecDBApiClient.prototype.UpdateUser = function (input, options) {
|
|
430
490
|
return __awaiter(this, void 0, void 0, function () {
|
|
431
491
|
return __generator(this, function (_a) {
|
|
432
492
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -438,7 +498,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
438
498
|
});
|
|
439
499
|
});
|
|
440
500
|
};
|
|
441
|
-
|
|
501
|
+
VecDBApiClient.prototype.DeleteUser = function (input, options) {
|
|
442
502
|
return __awaiter(this, void 0, void 0, function () {
|
|
443
503
|
return __generator(this, function (_a) {
|
|
444
504
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -450,7 +510,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
450
510
|
});
|
|
451
511
|
});
|
|
452
512
|
};
|
|
453
|
-
|
|
513
|
+
VecDBApiClient.prototype.CreateUserKey = function (input, options) {
|
|
454
514
|
return __awaiter(this, void 0, void 0, function () {
|
|
455
515
|
return __generator(this, function (_a) {
|
|
456
516
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -462,7 +522,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
462
522
|
});
|
|
463
523
|
});
|
|
464
524
|
};
|
|
465
|
-
|
|
525
|
+
VecDBApiClient.prototype.ListUserKeys = function (input, options) {
|
|
466
526
|
return __awaiter(this, void 0, void 0, function () {
|
|
467
527
|
return __generator(this, function (_a) {
|
|
468
528
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -474,7 +534,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
474
534
|
});
|
|
475
535
|
});
|
|
476
536
|
};
|
|
477
|
-
|
|
537
|
+
VecDBApiClient.prototype.DeleteUserKey = function (input, options) {
|
|
478
538
|
return __awaiter(this, void 0, void 0, function () {
|
|
479
539
|
return __generator(this, function (_a) {
|
|
480
540
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -486,7 +546,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
486
546
|
});
|
|
487
547
|
});
|
|
488
548
|
};
|
|
489
|
-
|
|
549
|
+
VecDBApiClient.prototype.InsertClusterCentroids = function (input, options) {
|
|
490
550
|
return __awaiter(this, void 0, void 0, function () {
|
|
491
551
|
return __generator(this, function (_a) {
|
|
492
552
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -498,7 +558,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
498
558
|
});
|
|
499
559
|
});
|
|
500
560
|
};
|
|
501
|
-
|
|
561
|
+
VecDBApiClient.prototype.UpdateClusterCentroids = function (input, options) {
|
|
502
562
|
return __awaiter(this, void 0, void 0, function () {
|
|
503
563
|
return __generator(this, function (_a) {
|
|
504
564
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -510,7 +570,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
510
570
|
});
|
|
511
571
|
});
|
|
512
572
|
};
|
|
513
|
-
|
|
573
|
+
VecDBApiClient.prototype.CompareClusterCentroids = function (input, options) {
|
|
514
574
|
return __awaiter(this, void 0, void 0, function () {
|
|
515
575
|
return __generator(this, function (_a) {
|
|
516
576
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -522,7 +582,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
522
582
|
});
|
|
523
583
|
});
|
|
524
584
|
};
|
|
525
|
-
|
|
585
|
+
VecDBApiClient.prototype.Aggregate = function (input, options) {
|
|
526
586
|
return __awaiter(this, void 0, void 0, function () {
|
|
527
587
|
return __generator(this, function (_a) {
|
|
528
588
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -534,7 +594,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
534
594
|
});
|
|
535
595
|
});
|
|
536
596
|
};
|
|
537
|
-
|
|
597
|
+
VecDBApiClient.prototype.AggregateClusters = function (input, options) {
|
|
538
598
|
return __awaiter(this, void 0, void 0, function () {
|
|
539
599
|
return __generator(this, function (_a) {
|
|
540
600
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -546,7 +606,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
546
606
|
});
|
|
547
607
|
});
|
|
548
608
|
};
|
|
549
|
-
|
|
609
|
+
VecDBApiClient.prototype.ListClusterFacets = function (input, options) {
|
|
550
610
|
return __awaiter(this, void 0, void 0, function () {
|
|
551
611
|
return __generator(this, function (_a) {
|
|
552
612
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -558,7 +618,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
558
618
|
});
|
|
559
619
|
});
|
|
560
620
|
};
|
|
561
|
-
|
|
621
|
+
VecDBApiClient.prototype.ListClosestToCentroids = function (input, options) {
|
|
562
622
|
return __awaiter(this, void 0, void 0, function () {
|
|
563
623
|
return __generator(this, function (_a) {
|
|
564
624
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -570,7 +630,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
570
630
|
});
|
|
571
631
|
});
|
|
572
632
|
};
|
|
573
|
-
|
|
633
|
+
VecDBApiClient.prototype.ListFurthestFromCentroids = function (input, options) {
|
|
574
634
|
return __awaiter(this, void 0, void 0, function () {
|
|
575
635
|
return __generator(this, function (_a) {
|
|
576
636
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -582,7 +642,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
582
642
|
});
|
|
583
643
|
});
|
|
584
644
|
};
|
|
585
|
-
|
|
645
|
+
VecDBApiClient.prototype.ListCentroids = function (input, options) {
|
|
586
646
|
return __awaiter(this, void 0, void 0, function () {
|
|
587
647
|
return __generator(this, function (_a) {
|
|
588
648
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -594,7 +654,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
594
654
|
});
|
|
595
655
|
});
|
|
596
656
|
};
|
|
597
|
-
|
|
657
|
+
VecDBApiClient.prototype.ListCentroidConfigs = function (input, options) {
|
|
598
658
|
return __awaiter(this, void 0, void 0, function () {
|
|
599
659
|
return __generator(this, function (_a) {
|
|
600
660
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -606,7 +666,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
606
666
|
});
|
|
607
667
|
});
|
|
608
668
|
};
|
|
609
|
-
|
|
669
|
+
VecDBApiClient.prototype.DeleteCentroid = function (input, options) {
|
|
610
670
|
return __awaiter(this, void 0, void 0, function () {
|
|
611
671
|
return __generator(this, function (_a) {
|
|
612
672
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -618,7 +678,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
618
678
|
});
|
|
619
679
|
});
|
|
620
680
|
};
|
|
621
|
-
|
|
681
|
+
VecDBApiClient.prototype.RealtimeClustering = function (input, options) {
|
|
622
682
|
return __awaiter(this, void 0, void 0, function () {
|
|
623
683
|
return __generator(this, function (_a) {
|
|
624
684
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -630,7 +690,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
630
690
|
});
|
|
631
691
|
});
|
|
632
692
|
};
|
|
633
|
-
|
|
693
|
+
VecDBApiClient.prototype.MergeClusters = function (input, options) {
|
|
634
694
|
return __awaiter(this, void 0, void 0, function () {
|
|
635
695
|
return __generator(this, function (_a) {
|
|
636
696
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -642,7 +702,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
642
702
|
});
|
|
643
703
|
});
|
|
644
704
|
};
|
|
645
|
-
|
|
705
|
+
VecDBApiClient.prototype.CreateClusterSummaries = function (input, options) {
|
|
646
706
|
return __awaiter(this, void 0, void 0, function () {
|
|
647
707
|
return __generator(this, function (_a) {
|
|
648
708
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -654,7 +714,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
654
714
|
});
|
|
655
715
|
});
|
|
656
716
|
};
|
|
657
|
-
|
|
717
|
+
VecDBApiClient.prototype.CreateClusterLabels = function (input, options) {
|
|
658
718
|
return __awaiter(this, void 0, void 0, function () {
|
|
659
719
|
return __generator(this, function (_a) {
|
|
660
720
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -666,7 +726,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
666
726
|
});
|
|
667
727
|
});
|
|
668
728
|
};
|
|
669
|
-
|
|
729
|
+
VecDBApiClient.prototype.ListClusterSummaries = function (input, options) {
|
|
670
730
|
return __awaiter(this, void 0, void 0, function () {
|
|
671
731
|
return __generator(this, function (_a) {
|
|
672
732
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -678,7 +738,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
678
738
|
});
|
|
679
739
|
});
|
|
680
740
|
};
|
|
681
|
-
|
|
741
|
+
VecDBApiClient.prototype.CreateHierarchicalClusters = function (input, options) {
|
|
682
742
|
return __awaiter(this, void 0, void 0, function () {
|
|
683
743
|
return __generator(this, function (_a) {
|
|
684
744
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -690,7 +750,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
690
750
|
});
|
|
691
751
|
});
|
|
692
752
|
};
|
|
693
|
-
|
|
753
|
+
VecDBApiClient.prototype.DeleteClusterSummaries = function (input, options) {
|
|
694
754
|
return __awaiter(this, void 0, void 0, function () {
|
|
695
755
|
return __generator(this, function (_a) {
|
|
696
756
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -702,7 +762,31 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
702
762
|
});
|
|
703
763
|
});
|
|
704
764
|
};
|
|
705
|
-
|
|
765
|
+
VecDBApiClient.prototype.EditOneToManyClusters = function (input, options) {
|
|
766
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
767
|
+
return __generator(this, function (_a) {
|
|
768
|
+
return [2 /*return*/, this.SendRequest({
|
|
769
|
+
input: input,
|
|
770
|
+
method: 'post',
|
|
771
|
+
path: '/datasets/{dataset_id}/cluster/one_to_many/edit',
|
|
772
|
+
options: options
|
|
773
|
+
})];
|
|
774
|
+
});
|
|
775
|
+
});
|
|
776
|
+
};
|
|
777
|
+
VecDBApiClient.prototype.EditListInDocuments = function (input, options) {
|
|
778
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
779
|
+
return __generator(this, function (_a) {
|
|
780
|
+
return [2 /*return*/, this.SendRequest({
|
|
781
|
+
input: input,
|
|
782
|
+
method: 'post',
|
|
783
|
+
path: '/datasets/{dataset_id}/documents/edit_list',
|
|
784
|
+
options: options
|
|
785
|
+
})];
|
|
786
|
+
});
|
|
787
|
+
});
|
|
788
|
+
};
|
|
789
|
+
VecDBApiClient.prototype.CreateOrganization = function (input, options) {
|
|
706
790
|
return __awaiter(this, void 0, void 0, function () {
|
|
707
791
|
return __generator(this, function (_a) {
|
|
708
792
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -714,7 +798,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
714
798
|
});
|
|
715
799
|
});
|
|
716
800
|
};
|
|
717
|
-
|
|
801
|
+
VecDBApiClient.prototype.UpdateOrganization = function (input, options) {
|
|
718
802
|
return __awaiter(this, void 0, void 0, function () {
|
|
719
803
|
return __generator(this, function (_a) {
|
|
720
804
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -726,7 +810,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
726
810
|
});
|
|
727
811
|
});
|
|
728
812
|
};
|
|
729
|
-
|
|
813
|
+
VecDBApiClient.prototype.UpdateOrganizationAdmin = function (input, options) {
|
|
730
814
|
return __awaiter(this, void 0, void 0, function () {
|
|
731
815
|
return __generator(this, function (_a) {
|
|
732
816
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -738,7 +822,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
738
822
|
});
|
|
739
823
|
});
|
|
740
824
|
};
|
|
741
|
-
|
|
825
|
+
VecDBApiClient.prototype.ListOrganizations = function (input, options) {
|
|
742
826
|
return __awaiter(this, void 0, void 0, function () {
|
|
743
827
|
return __generator(this, function (_a) {
|
|
744
828
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -750,7 +834,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
750
834
|
});
|
|
751
835
|
});
|
|
752
836
|
};
|
|
753
|
-
|
|
837
|
+
VecDBApiClient.prototype.DeleteOrganization = function (input, options) {
|
|
754
838
|
return __awaiter(this, void 0, void 0, function () {
|
|
755
839
|
return __generator(this, function (_a) {
|
|
756
840
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -762,7 +846,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
762
846
|
});
|
|
763
847
|
});
|
|
764
848
|
};
|
|
765
|
-
|
|
849
|
+
VecDBApiClient.prototype.GetOrganization = function (input, options) {
|
|
766
850
|
return __awaiter(this, void 0, void 0, function () {
|
|
767
851
|
return __generator(this, function (_a) {
|
|
768
852
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -774,7 +858,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
774
858
|
});
|
|
775
859
|
});
|
|
776
860
|
};
|
|
777
|
-
|
|
861
|
+
VecDBApiClient.prototype.GetOrganizationUsage = function (input, options) {
|
|
778
862
|
return __awaiter(this, void 0, void 0, function () {
|
|
779
863
|
return __generator(this, function (_a) {
|
|
780
864
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -786,7 +870,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
786
870
|
});
|
|
787
871
|
});
|
|
788
872
|
};
|
|
789
|
-
|
|
873
|
+
VecDBApiClient.prototype.ListUsersInOrganization = function (input, options) {
|
|
790
874
|
return __awaiter(this, void 0, void 0, function () {
|
|
791
875
|
return __generator(this, function (_a) {
|
|
792
876
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -798,7 +882,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
798
882
|
});
|
|
799
883
|
});
|
|
800
884
|
};
|
|
801
|
-
|
|
885
|
+
VecDBApiClient.prototype.ListProjectsInOrganization = function (input, options) {
|
|
802
886
|
return __awaiter(this, void 0, void 0, function () {
|
|
803
887
|
return __generator(this, function (_a) {
|
|
804
888
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -810,7 +894,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
810
894
|
});
|
|
811
895
|
});
|
|
812
896
|
};
|
|
813
|
-
|
|
897
|
+
VecDBApiClient.prototype.AggregateOrganizationMetrics = function (input, options) {
|
|
814
898
|
return __awaiter(this, void 0, void 0, function () {
|
|
815
899
|
return __generator(this, function (_a) {
|
|
816
900
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -822,7 +906,55 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
822
906
|
});
|
|
823
907
|
});
|
|
824
908
|
};
|
|
825
|
-
|
|
909
|
+
VecDBApiClient.prototype.ListBillingEvents = function (input, options) {
|
|
910
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
911
|
+
return __generator(this, function (_a) {
|
|
912
|
+
return [2 /*return*/, this.SendRequest({
|
|
913
|
+
input: input,
|
|
914
|
+
method: 'post',
|
|
915
|
+
path: '/organizations/{organization_id}/billing/events/list',
|
|
916
|
+
options: options
|
|
917
|
+
})];
|
|
918
|
+
});
|
|
919
|
+
});
|
|
920
|
+
};
|
|
921
|
+
VecDBApiClient.prototype.CreateBillingEventAdmin = function (input, options) {
|
|
922
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
923
|
+
return __generator(this, function (_a) {
|
|
924
|
+
return [2 /*return*/, this.SendRequest({
|
|
925
|
+
input: input,
|
|
926
|
+
method: 'post',
|
|
927
|
+
path: '/admin/organizations/{organization_id}/billing/events/create',
|
|
928
|
+
options: options
|
|
929
|
+
})];
|
|
930
|
+
});
|
|
931
|
+
});
|
|
932
|
+
};
|
|
933
|
+
VecDBApiClient.prototype.GetBillingFrontendLink = function (input, options) {
|
|
934
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
935
|
+
return __generator(this, function (_a) {
|
|
936
|
+
return [2 /*return*/, this.SendRequest({
|
|
937
|
+
input: input,
|
|
938
|
+
method: 'get',
|
|
939
|
+
path: '/organizations/{organization_id}/billing/get_billing_frontend_link',
|
|
940
|
+
options: options
|
|
941
|
+
})];
|
|
942
|
+
});
|
|
943
|
+
});
|
|
944
|
+
};
|
|
945
|
+
VecDBApiClient.prototype.UpdateOrganizationBilling = function (input, options) {
|
|
946
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
947
|
+
return __generator(this, function (_a) {
|
|
948
|
+
return [2 /*return*/, this.SendRequest({
|
|
949
|
+
input: input,
|
|
950
|
+
method: 'post',
|
|
951
|
+
path: '/organizations/{organization_id}/billing/update',
|
|
952
|
+
options: options
|
|
953
|
+
})];
|
|
954
|
+
});
|
|
955
|
+
});
|
|
956
|
+
};
|
|
957
|
+
VecDBApiClient.prototype.CreateConnector = function (input, options) {
|
|
826
958
|
return __awaiter(this, void 0, void 0, function () {
|
|
827
959
|
return __generator(this, function (_a) {
|
|
828
960
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -834,7 +966,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
834
966
|
});
|
|
835
967
|
});
|
|
836
968
|
};
|
|
837
|
-
|
|
969
|
+
VecDBApiClient.prototype.CheckConnection = function (input, options) {
|
|
838
970
|
return __awaiter(this, void 0, void 0, function () {
|
|
839
971
|
return __generator(this, function (_a) {
|
|
840
972
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -846,7 +978,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
846
978
|
});
|
|
847
979
|
});
|
|
848
980
|
};
|
|
849
|
-
|
|
981
|
+
VecDBApiClient.prototype.GetConnector = function (input, options) {
|
|
850
982
|
return __awaiter(this, void 0, void 0, function () {
|
|
851
983
|
return __generator(this, function (_a) {
|
|
852
984
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -858,7 +990,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
858
990
|
});
|
|
859
991
|
});
|
|
860
992
|
};
|
|
861
|
-
|
|
993
|
+
VecDBApiClient.prototype.UpdateConnector = function (input, options) {
|
|
862
994
|
return __awaiter(this, void 0, void 0, function () {
|
|
863
995
|
return __generator(this, function (_a) {
|
|
864
996
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -870,7 +1002,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
870
1002
|
});
|
|
871
1003
|
});
|
|
872
1004
|
};
|
|
873
|
-
|
|
1005
|
+
VecDBApiClient.prototype.TriggerConnector = function (input, options) {
|
|
874
1006
|
return __awaiter(this, void 0, void 0, function () {
|
|
875
1007
|
return __generator(this, function (_a) {
|
|
876
1008
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -882,7 +1014,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
882
1014
|
});
|
|
883
1015
|
});
|
|
884
1016
|
};
|
|
885
|
-
|
|
1017
|
+
VecDBApiClient.prototype.DeleteConnector = function (input, options) {
|
|
886
1018
|
return __awaiter(this, void 0, void 0, function () {
|
|
887
1019
|
return __generator(this, function (_a) {
|
|
888
1020
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -894,7 +1026,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
894
1026
|
});
|
|
895
1027
|
});
|
|
896
1028
|
};
|
|
897
|
-
|
|
1029
|
+
VecDBApiClient.prototype.ListConnectors = function (input, options) {
|
|
898
1030
|
return __awaiter(this, void 0, void 0, function () {
|
|
899
1031
|
return __generator(this, function (_a) {
|
|
900
1032
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -906,7 +1038,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
906
1038
|
});
|
|
907
1039
|
});
|
|
908
1040
|
};
|
|
909
|
-
|
|
1041
|
+
VecDBApiClient.prototype.ListConnectorTypes = function (input, options) {
|
|
910
1042
|
return __awaiter(this, void 0, void 0, function () {
|
|
911
1043
|
return __generator(this, function (_a) {
|
|
912
1044
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -918,7 +1050,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
918
1050
|
});
|
|
919
1051
|
});
|
|
920
1052
|
};
|
|
921
|
-
|
|
1053
|
+
VecDBApiClient.prototype.GetConnectorType = function (input, options) {
|
|
922
1054
|
return __awaiter(this, void 0, void 0, function () {
|
|
923
1055
|
return __generator(this, function (_a) {
|
|
924
1056
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -930,7 +1062,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
930
1062
|
});
|
|
931
1063
|
});
|
|
932
1064
|
};
|
|
933
|
-
|
|
1065
|
+
VecDBApiClient.prototype.ListConnectorJobs = function (input, options) {
|
|
934
1066
|
return __awaiter(this, void 0, void 0, function () {
|
|
935
1067
|
return __generator(this, function (_a) {
|
|
936
1068
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -942,7 +1074,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
942
1074
|
});
|
|
943
1075
|
});
|
|
944
1076
|
};
|
|
945
|
-
|
|
1077
|
+
VecDBApiClient.prototype.GetConnectorJob = function (input, options) {
|
|
946
1078
|
return __awaiter(this, void 0, void 0, function () {
|
|
947
1079
|
return __generator(this, function (_a) {
|
|
948
1080
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -954,7 +1086,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
954
1086
|
});
|
|
955
1087
|
});
|
|
956
1088
|
};
|
|
957
|
-
|
|
1089
|
+
VecDBApiClient.prototype.TriggerWorkflow = function (input, options) {
|
|
958
1090
|
return __awaiter(this, void 0, void 0, function () {
|
|
959
1091
|
return __generator(this, function (_a) {
|
|
960
1092
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -966,7 +1098,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
966
1098
|
});
|
|
967
1099
|
});
|
|
968
1100
|
};
|
|
969
|
-
|
|
1101
|
+
VecDBApiClient.prototype.ListWorkflows = function (input, options) {
|
|
970
1102
|
return __awaiter(this, void 0, void 0, function () {
|
|
971
1103
|
return __generator(this, function (_a) {
|
|
972
1104
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -978,7 +1110,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
978
1110
|
});
|
|
979
1111
|
});
|
|
980
1112
|
};
|
|
981
|
-
|
|
1113
|
+
VecDBApiClient.prototype.GetWorkflowStatus = function (input, options) {
|
|
982
1114
|
return __awaiter(this, void 0, void 0, function () {
|
|
983
1115
|
return __generator(this, function (_a) {
|
|
984
1116
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -990,7 +1122,19 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
990
1122
|
});
|
|
991
1123
|
});
|
|
992
1124
|
};
|
|
993
|
-
|
|
1125
|
+
VecDBApiClient.prototype.GetWorkflowConfig = function (input, options) {
|
|
1126
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
1127
|
+
return __generator(this, function (_a) {
|
|
1128
|
+
return [2 /*return*/, this.SendRequest({
|
|
1129
|
+
input: input,
|
|
1130
|
+
method: 'post',
|
|
1131
|
+
path: '/workflows/{workflow_id}/config',
|
|
1132
|
+
options: options
|
|
1133
|
+
})];
|
|
1134
|
+
});
|
|
1135
|
+
});
|
|
1136
|
+
};
|
|
1137
|
+
VecDBApiClient.prototype.DeleteWorkflowStatus = function (input, options) {
|
|
994
1138
|
return __awaiter(this, void 0, void 0, function () {
|
|
995
1139
|
return __generator(this, function (_a) {
|
|
996
1140
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -1002,7 +1146,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
1002
1146
|
});
|
|
1003
1147
|
});
|
|
1004
1148
|
};
|
|
1005
|
-
|
|
1149
|
+
VecDBApiClient.prototype.TerminateWorkflow = function (input, options) {
|
|
1006
1150
|
return __awaiter(this, void 0, void 0, function () {
|
|
1007
1151
|
return __generator(this, function (_a) {
|
|
1008
1152
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -1014,7 +1158,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
1014
1158
|
});
|
|
1015
1159
|
});
|
|
1016
1160
|
};
|
|
1017
|
-
|
|
1161
|
+
VecDBApiClient.prototype.UpsertWorkflowMetadata = function (input, options) {
|
|
1018
1162
|
return __awaiter(this, void 0, void 0, function () {
|
|
1019
1163
|
return __generator(this, function (_a) {
|
|
1020
1164
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -1026,7 +1170,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
1026
1170
|
});
|
|
1027
1171
|
});
|
|
1028
1172
|
};
|
|
1029
|
-
|
|
1173
|
+
VecDBApiClient.prototype.UpsertWorkflowProgress = function (input, options) {
|
|
1030
1174
|
return __awaiter(this, void 0, void 0, function () {
|
|
1031
1175
|
return __generator(this, function (_a) {
|
|
1032
1176
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -1038,7 +1182,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
1038
1182
|
});
|
|
1039
1183
|
});
|
|
1040
1184
|
};
|
|
1041
|
-
|
|
1185
|
+
VecDBApiClient.prototype.UpsertWorkflowStatus = function (input, options) {
|
|
1042
1186
|
return __awaiter(this, void 0, void 0, function () {
|
|
1043
1187
|
return __generator(this, function (_a) {
|
|
1044
1188
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -1050,7 +1194,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
1050
1194
|
});
|
|
1051
1195
|
});
|
|
1052
1196
|
};
|
|
1053
|
-
|
|
1197
|
+
VecDBApiClient.prototype.ListWorkflowTypes = function (input, options) {
|
|
1054
1198
|
return __awaiter(this, void 0, void 0, function () {
|
|
1055
1199
|
return __generator(this, function (_a) {
|
|
1056
1200
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -1062,7 +1206,79 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
1062
1206
|
});
|
|
1063
1207
|
});
|
|
1064
1208
|
};
|
|
1065
|
-
|
|
1209
|
+
VecDBApiClient.prototype.SearchWorkflowTypes = function (input, options) {
|
|
1210
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
1211
|
+
return __generator(this, function (_a) {
|
|
1212
|
+
return [2 /*return*/, this.SendRequest({
|
|
1213
|
+
input: input,
|
|
1214
|
+
method: 'post',
|
|
1215
|
+
path: '/workflows/types/search',
|
|
1216
|
+
options: options
|
|
1217
|
+
})];
|
|
1218
|
+
});
|
|
1219
|
+
});
|
|
1220
|
+
};
|
|
1221
|
+
VecDBApiClient.prototype.GetWorkflowTypesAsOpenAPI = function (input, options) {
|
|
1222
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
1223
|
+
return __generator(this, function (_a) {
|
|
1224
|
+
return [2 /*return*/, this.SendRequest({
|
|
1225
|
+
input: input,
|
|
1226
|
+
method: 'get',
|
|
1227
|
+
path: '/workflows/types/openapi',
|
|
1228
|
+
options: options
|
|
1229
|
+
})];
|
|
1230
|
+
});
|
|
1231
|
+
});
|
|
1232
|
+
};
|
|
1233
|
+
VecDBApiClient.prototype.AggregateWorkflowTypes = function (input, options) {
|
|
1234
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
1235
|
+
return __generator(this, function (_a) {
|
|
1236
|
+
return [2 /*return*/, this.SendRequest({
|
|
1237
|
+
input: input,
|
|
1238
|
+
method: 'post',
|
|
1239
|
+
path: '/workflows/types/aggregate',
|
|
1240
|
+
options: options
|
|
1241
|
+
})];
|
|
1242
|
+
});
|
|
1243
|
+
});
|
|
1244
|
+
};
|
|
1245
|
+
VecDBApiClient.prototype.BulkUpdateWorkflowTypesAdmin = function (input, options) {
|
|
1246
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
1247
|
+
return __generator(this, function (_a) {
|
|
1248
|
+
return [2 /*return*/, this.SendRequest({
|
|
1249
|
+
input: input,
|
|
1250
|
+
method: 'post',
|
|
1251
|
+
path: '/workflows/types/bulk_update',
|
|
1252
|
+
options: options
|
|
1253
|
+
})];
|
|
1254
|
+
});
|
|
1255
|
+
});
|
|
1256
|
+
};
|
|
1257
|
+
VecDBApiClient.prototype.UpdateWorkflowTypesVersionAliasesAdmin = function (input, options) {
|
|
1258
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
1259
|
+
return __generator(this, function (_a) {
|
|
1260
|
+
return [2 /*return*/, this.SendRequest({
|
|
1261
|
+
input: input,
|
|
1262
|
+
method: 'post',
|
|
1263
|
+
path: '/workflows/types/version_aliases/update',
|
|
1264
|
+
options: options
|
|
1265
|
+
})];
|
|
1266
|
+
});
|
|
1267
|
+
});
|
|
1268
|
+
};
|
|
1269
|
+
VecDBApiClient.prototype.GetWorkflowTypesVersionAliases = function (input, options) {
|
|
1270
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
1271
|
+
return __generator(this, function (_a) {
|
|
1272
|
+
return [2 /*return*/, this.SendRequest({
|
|
1273
|
+
input: input,
|
|
1274
|
+
method: 'post',
|
|
1275
|
+
path: '/workflows/types/version_aliases/get',
|
|
1276
|
+
options: options
|
|
1277
|
+
})];
|
|
1278
|
+
});
|
|
1279
|
+
});
|
|
1280
|
+
};
|
|
1281
|
+
VecDBApiClient.prototype.GetWorkflowType = function (input, options) {
|
|
1066
1282
|
return __awaiter(this, void 0, void 0, function () {
|
|
1067
1283
|
return __generator(this, function (_a) {
|
|
1068
1284
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -1074,7 +1290,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
1074
1290
|
});
|
|
1075
1291
|
});
|
|
1076
1292
|
};
|
|
1077
|
-
|
|
1293
|
+
VecDBApiClient.prototype.ValidateWorkflowParams = function (input, options) {
|
|
1078
1294
|
return __awaiter(this, void 0, void 0, function () {
|
|
1079
1295
|
return __generator(this, function (_a) {
|
|
1080
1296
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -1086,7 +1302,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
1086
1302
|
});
|
|
1087
1303
|
});
|
|
1088
1304
|
};
|
|
1089
|
-
|
|
1305
|
+
VecDBApiClient.prototype.Insert = function (input, options) {
|
|
1090
1306
|
return __awaiter(this, void 0, void 0, function () {
|
|
1091
1307
|
return __generator(this, function (_a) {
|
|
1092
1308
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -1098,7 +1314,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
1098
1314
|
});
|
|
1099
1315
|
});
|
|
1100
1316
|
};
|
|
1101
|
-
|
|
1317
|
+
VecDBApiClient.prototype.BulkInsert = function (input, options) {
|
|
1102
1318
|
return __awaiter(this, void 0, void 0, function () {
|
|
1103
1319
|
return __generator(this, function (_a) {
|
|
1104
1320
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -1110,7 +1326,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
1110
1326
|
});
|
|
1111
1327
|
});
|
|
1112
1328
|
};
|
|
1113
|
-
|
|
1329
|
+
VecDBApiClient.prototype.GetFileUploadUrlsForDataset = function (input, options) {
|
|
1114
1330
|
return __awaiter(this, void 0, void 0, function () {
|
|
1115
1331
|
return __generator(this, function (_a) {
|
|
1116
1332
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -1122,7 +1338,19 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
1122
1338
|
});
|
|
1123
1339
|
});
|
|
1124
1340
|
};
|
|
1125
|
-
|
|
1341
|
+
VecDBApiClient.prototype.GetTemporaryFileUploadUrl = function (input, options) {
|
|
1342
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
1343
|
+
return __generator(this, function (_a) {
|
|
1344
|
+
return [2 /*return*/, this.SendRequest({
|
|
1345
|
+
input: input,
|
|
1346
|
+
method: 'post',
|
|
1347
|
+
path: '/services/get_temporary_file_upload_url',
|
|
1348
|
+
options: options
|
|
1349
|
+
})];
|
|
1350
|
+
});
|
|
1351
|
+
});
|
|
1352
|
+
};
|
|
1353
|
+
VecDBApiClient.prototype.ListFileUploadsForDataset = function (input, options) {
|
|
1126
1354
|
return __awaiter(this, void 0, void 0, function () {
|
|
1127
1355
|
return __generator(this, function (_a) {
|
|
1128
1356
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -1134,7 +1362,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
1134
1362
|
});
|
|
1135
1363
|
});
|
|
1136
1364
|
};
|
|
1137
|
-
|
|
1365
|
+
VecDBApiClient.prototype.ParseBlob = function (input, options) {
|
|
1138
1366
|
return __awaiter(this, void 0, void 0, function () {
|
|
1139
1367
|
return __generator(this, function (_a) {
|
|
1140
1368
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -1146,7 +1374,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
1146
1374
|
});
|
|
1147
1375
|
});
|
|
1148
1376
|
};
|
|
1149
|
-
|
|
1377
|
+
VecDBApiClient.prototype.CopyForeignDataset = function (input, options) {
|
|
1150
1378
|
return __awaiter(this, void 0, void 0, function () {
|
|
1151
1379
|
return __generator(this, function (_a) {
|
|
1152
1380
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -1158,7 +1386,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
1158
1386
|
});
|
|
1159
1387
|
});
|
|
1160
1388
|
};
|
|
1161
|
-
|
|
1389
|
+
VecDBApiClient.prototype.CreateProjectReadKey = function (input, options) {
|
|
1162
1390
|
return __awaiter(this, void 0, void 0, function () {
|
|
1163
1391
|
return __generator(this, function (_a) {
|
|
1164
1392
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -1170,7 +1398,19 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
1170
1398
|
});
|
|
1171
1399
|
});
|
|
1172
1400
|
};
|
|
1173
|
-
|
|
1401
|
+
VecDBApiClient.prototype.GenerateOnboarding = function (input, options) {
|
|
1402
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
1403
|
+
return __generator(this, function (_a) {
|
|
1404
|
+
return [2 /*return*/, this.SendRequest({
|
|
1405
|
+
input: input,
|
|
1406
|
+
method: 'post',
|
|
1407
|
+
path: '/onboard/generate',
|
|
1408
|
+
options: options
|
|
1409
|
+
})];
|
|
1410
|
+
});
|
|
1411
|
+
});
|
|
1412
|
+
};
|
|
1413
|
+
VecDBApiClient.prototype.DeleteDataset = function (input, options) {
|
|
1174
1414
|
return __awaiter(this, void 0, void 0, function () {
|
|
1175
1415
|
return __generator(this, function (_a) {
|
|
1176
1416
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -1182,7 +1422,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
1182
1422
|
});
|
|
1183
1423
|
});
|
|
1184
1424
|
};
|
|
1185
|
-
|
|
1425
|
+
VecDBApiClient.prototype.CreateDataset = function (input, options) {
|
|
1186
1426
|
return __awaiter(this, void 0, void 0, function () {
|
|
1187
1427
|
return __generator(this, function (_a) {
|
|
1188
1428
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -1194,7 +1434,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
1194
1434
|
});
|
|
1195
1435
|
});
|
|
1196
1436
|
};
|
|
1197
|
-
|
|
1437
|
+
VecDBApiClient.prototype.GetSchema = function (input, options) {
|
|
1198
1438
|
return __awaiter(this, void 0, void 0, function () {
|
|
1199
1439
|
return __generator(this, function (_a) {
|
|
1200
1440
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -1206,7 +1446,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
1206
1446
|
});
|
|
1207
1447
|
});
|
|
1208
1448
|
};
|
|
1209
|
-
|
|
1449
|
+
VecDBApiClient.prototype.ListDatasets = function (input, options) {
|
|
1210
1450
|
return __awaiter(this, void 0, void 0, function () {
|
|
1211
1451
|
return __generator(this, function (_a) {
|
|
1212
1452
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -1218,7 +1458,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
1218
1458
|
});
|
|
1219
1459
|
});
|
|
1220
1460
|
};
|
|
1221
|
-
|
|
1461
|
+
VecDBApiClient.prototype.CombineDatasets = function (input, options) {
|
|
1222
1462
|
return __awaiter(this, void 0, void 0, function () {
|
|
1223
1463
|
return __generator(this, function (_a) {
|
|
1224
1464
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -1230,7 +1470,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
1230
1470
|
});
|
|
1231
1471
|
});
|
|
1232
1472
|
};
|
|
1233
|
-
|
|
1473
|
+
VecDBApiClient.prototype.GetCombineJobStatus = function (input, options) {
|
|
1234
1474
|
return __awaiter(this, void 0, void 0, function () {
|
|
1235
1475
|
return __generator(this, function (_a) {
|
|
1236
1476
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -1242,7 +1482,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
1242
1482
|
});
|
|
1243
1483
|
});
|
|
1244
1484
|
};
|
|
1245
|
-
|
|
1485
|
+
VecDBApiClient.prototype.SearchDatasets = function (input, options) {
|
|
1246
1486
|
return __awaiter(this, void 0, void 0, function () {
|
|
1247
1487
|
return __generator(this, function (_a) {
|
|
1248
1488
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -1254,7 +1494,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
1254
1494
|
});
|
|
1255
1495
|
});
|
|
1256
1496
|
};
|
|
1257
|
-
|
|
1497
|
+
VecDBApiClient.prototype.GetFieldHealth = function (input, options) {
|
|
1258
1498
|
return __awaiter(this, void 0, void 0, function () {
|
|
1259
1499
|
return __generator(this, function (_a) {
|
|
1260
1500
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -1266,7 +1506,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
1266
1506
|
});
|
|
1267
1507
|
});
|
|
1268
1508
|
};
|
|
1269
|
-
|
|
1509
|
+
VecDBApiClient.prototype.GetDatasetStats = function (input, options) {
|
|
1270
1510
|
return __awaiter(this, void 0, void 0, function () {
|
|
1271
1511
|
return __generator(this, function (_a) {
|
|
1272
1512
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -1278,19 +1518,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
1278
1518
|
});
|
|
1279
1519
|
});
|
|
1280
1520
|
};
|
|
1281
|
-
|
|
1282
|
-
return __awaiter(this, void 0, void 0, function () {
|
|
1283
|
-
return __generator(this, function (_a) {
|
|
1284
|
-
return [2 /*return*/, this.SendRequest({
|
|
1285
|
-
input: input,
|
|
1286
|
-
method: 'post',
|
|
1287
|
-
path: '/datasets/{dataset_id}/monitor/usage',
|
|
1288
|
-
options: options
|
|
1289
|
-
})];
|
|
1290
|
-
});
|
|
1291
|
-
});
|
|
1292
|
-
};
|
|
1293
|
-
DiscoveryApiClient.prototype.GetVectorMappings = function (input, options) {
|
|
1521
|
+
VecDBApiClient.prototype.GetVectorMappings = function (input, options) {
|
|
1294
1522
|
return __awaiter(this, void 0, void 0, function () {
|
|
1295
1523
|
return __generator(this, function (_a) {
|
|
1296
1524
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -1302,7 +1530,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
1302
1530
|
});
|
|
1303
1531
|
});
|
|
1304
1532
|
};
|
|
1305
|
-
|
|
1533
|
+
VecDBApiClient.prototype.GetDatasetDetails = function (input, options) {
|
|
1306
1534
|
return __awaiter(this, void 0, void 0, function () {
|
|
1307
1535
|
return __generator(this, function (_a) {
|
|
1308
1536
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -1314,7 +1542,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
1314
1542
|
});
|
|
1315
1543
|
});
|
|
1316
1544
|
};
|
|
1317
|
-
|
|
1545
|
+
VecDBApiClient.prototype.GetDocument = function (input, options) {
|
|
1318
1546
|
return __awaiter(this, void 0, void 0, function () {
|
|
1319
1547
|
return __generator(this, function (_a) {
|
|
1320
1548
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -1326,7 +1554,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
1326
1554
|
});
|
|
1327
1555
|
});
|
|
1328
1556
|
};
|
|
1329
|
-
|
|
1557
|
+
VecDBApiClient.prototype.DeleteDocument = function (input, options) {
|
|
1330
1558
|
return __awaiter(this, void 0, void 0, function () {
|
|
1331
1559
|
return __generator(this, function (_a) {
|
|
1332
1560
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -1338,7 +1566,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
1338
1566
|
});
|
|
1339
1567
|
});
|
|
1340
1568
|
};
|
|
1341
|
-
|
|
1569
|
+
VecDBApiClient.prototype.UpsertDatasetSettings = function (input, options) {
|
|
1342
1570
|
return __awaiter(this, void 0, void 0, function () {
|
|
1343
1571
|
return __generator(this, function (_a) {
|
|
1344
1572
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -1350,7 +1578,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
1350
1578
|
});
|
|
1351
1579
|
});
|
|
1352
1580
|
};
|
|
1353
|
-
|
|
1581
|
+
VecDBApiClient.prototype.GetDatasetSettings = function (input, options) {
|
|
1354
1582
|
return __awaiter(this, void 0, void 0, function () {
|
|
1355
1583
|
return __generator(this, function (_a) {
|
|
1356
1584
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -1362,7 +1590,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
1362
1590
|
});
|
|
1363
1591
|
});
|
|
1364
1592
|
};
|
|
1365
|
-
|
|
1593
|
+
VecDBApiClient.prototype.UpsertDatasetMetadata = function (input, options) {
|
|
1366
1594
|
return __awaiter(this, void 0, void 0, function () {
|
|
1367
1595
|
return __generator(this, function (_a) {
|
|
1368
1596
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -1374,7 +1602,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
1374
1602
|
});
|
|
1375
1603
|
});
|
|
1376
1604
|
};
|
|
1377
|
-
|
|
1605
|
+
VecDBApiClient.prototype.GetDatasetMetadata = function (input, options) {
|
|
1378
1606
|
return __awaiter(this, void 0, void 0, function () {
|
|
1379
1607
|
return __generator(this, function (_a) {
|
|
1380
1608
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -1386,7 +1614,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
1386
1614
|
});
|
|
1387
1615
|
});
|
|
1388
1616
|
};
|
|
1389
|
-
|
|
1617
|
+
VecDBApiClient.prototype.Update = function (input, options) {
|
|
1390
1618
|
return __awaiter(this, void 0, void 0, function () {
|
|
1391
1619
|
return __generator(this, function (_a) {
|
|
1392
1620
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -1398,7 +1626,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
1398
1626
|
});
|
|
1399
1627
|
});
|
|
1400
1628
|
};
|
|
1401
|
-
|
|
1629
|
+
VecDBApiClient.prototype.DeleteDocumentFields = function (input, options) {
|
|
1402
1630
|
return __awaiter(this, void 0, void 0, function () {
|
|
1403
1631
|
return __generator(this, function (_a) {
|
|
1404
1632
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -1410,7 +1638,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
1410
1638
|
});
|
|
1411
1639
|
});
|
|
1412
1640
|
};
|
|
1413
|
-
|
|
1641
|
+
VecDBApiClient.prototype.BulkUpdate = function (input, options) {
|
|
1414
1642
|
return __awaiter(this, void 0, void 0, function () {
|
|
1415
1643
|
return __generator(this, function (_a) {
|
|
1416
1644
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -1422,7 +1650,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
1422
1650
|
});
|
|
1423
1651
|
});
|
|
1424
1652
|
};
|
|
1425
|
-
|
|
1653
|
+
VecDBApiClient.prototype.UpdateWhere = function (input, options) {
|
|
1426
1654
|
return __awaiter(this, void 0, void 0, function () {
|
|
1427
1655
|
return __generator(this, function (_a) {
|
|
1428
1656
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -1434,7 +1662,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
1434
1662
|
});
|
|
1435
1663
|
});
|
|
1436
1664
|
};
|
|
1437
|
-
|
|
1665
|
+
VecDBApiClient.prototype.AppendTags = function (input, options) {
|
|
1438
1666
|
return __awaiter(this, void 0, void 0, function () {
|
|
1439
1667
|
return __generator(this, function (_a) {
|
|
1440
1668
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -1446,7 +1674,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
1446
1674
|
});
|
|
1447
1675
|
});
|
|
1448
1676
|
};
|
|
1449
|
-
|
|
1677
|
+
VecDBApiClient.prototype.DeleteTags = function (input, options) {
|
|
1450
1678
|
return __awaiter(this, void 0, void 0, function () {
|
|
1451
1679
|
return __generator(this, function (_a) {
|
|
1452
1680
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -1458,7 +1686,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
1458
1686
|
});
|
|
1459
1687
|
});
|
|
1460
1688
|
};
|
|
1461
|
-
|
|
1689
|
+
VecDBApiClient.prototype.MergeTags = function (input, options) {
|
|
1462
1690
|
return __awaiter(this, void 0, void 0, function () {
|
|
1463
1691
|
return __generator(this, function (_a) {
|
|
1464
1692
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -1470,7 +1698,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
1470
1698
|
});
|
|
1471
1699
|
});
|
|
1472
1700
|
};
|
|
1473
|
-
|
|
1701
|
+
VecDBApiClient.prototype.EditTags = function (input, options) {
|
|
1474
1702
|
return __awaiter(this, void 0, void 0, function () {
|
|
1475
1703
|
return __generator(this, function (_a) {
|
|
1476
1704
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -1482,7 +1710,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
1482
1710
|
});
|
|
1483
1711
|
});
|
|
1484
1712
|
};
|
|
1485
|
-
|
|
1713
|
+
VecDBApiClient.prototype.ListFacets = function (input, options) {
|
|
1486
1714
|
return __awaiter(this, void 0, void 0, function () {
|
|
1487
1715
|
return __generator(this, function (_a) {
|
|
1488
1716
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -1494,7 +1722,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
1494
1722
|
});
|
|
1495
1723
|
});
|
|
1496
1724
|
};
|
|
1497
|
-
|
|
1725
|
+
VecDBApiClient.prototype.GetWhere = function (input, options) {
|
|
1498
1726
|
return __awaiter(this, void 0, void 0, function () {
|
|
1499
1727
|
return __generator(this, function (_a) {
|
|
1500
1728
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -1506,7 +1734,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
1506
1734
|
});
|
|
1507
1735
|
});
|
|
1508
1736
|
};
|
|
1509
|
-
|
|
1737
|
+
VecDBApiClient.prototype.PaginateDocuments = function (input, options) {
|
|
1510
1738
|
return __awaiter(this, void 0, void 0, function () {
|
|
1511
1739
|
return __generator(this, function (_a) {
|
|
1512
1740
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -1518,7 +1746,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
1518
1746
|
});
|
|
1519
1747
|
});
|
|
1520
1748
|
};
|
|
1521
|
-
|
|
1749
|
+
VecDBApiClient.prototype.CreateDatasetSummary = function (input, options) {
|
|
1522
1750
|
return __awaiter(this, void 0, void 0, function () {
|
|
1523
1751
|
return __generator(this, function (_a) {
|
|
1524
1752
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -1530,7 +1758,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
1530
1758
|
});
|
|
1531
1759
|
});
|
|
1532
1760
|
};
|
|
1533
|
-
|
|
1761
|
+
VecDBApiClient.prototype.ListDatasetSummaryHistory = function (input, options) {
|
|
1534
1762
|
return __awaiter(this, void 0, void 0, function () {
|
|
1535
1763
|
return __generator(this, function (_a) {
|
|
1536
1764
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -1542,7 +1770,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
1542
1770
|
});
|
|
1543
1771
|
});
|
|
1544
1772
|
};
|
|
1545
|
-
|
|
1773
|
+
VecDBApiClient.prototype.BulkGetDocuments = function (input, options) {
|
|
1546
1774
|
return __awaiter(this, void 0, void 0, function () {
|
|
1547
1775
|
return __generator(this, function (_a) {
|
|
1548
1776
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -1554,7 +1782,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
1554
1782
|
});
|
|
1555
1783
|
});
|
|
1556
1784
|
};
|
|
1557
|
-
|
|
1785
|
+
VecDBApiClient.prototype.BulkDeleteDocuments = function (input, options) {
|
|
1558
1786
|
return __awaiter(this, void 0, void 0, function () {
|
|
1559
1787
|
return __generator(this, function (_a) {
|
|
1560
1788
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -1566,7 +1794,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
1566
1794
|
});
|
|
1567
1795
|
});
|
|
1568
1796
|
};
|
|
1569
|
-
|
|
1797
|
+
VecDBApiClient.prototype.ListDocuments = function (input, options) {
|
|
1570
1798
|
return __awaiter(this, void 0, void 0, function () {
|
|
1571
1799
|
return __generator(this, function (_a) {
|
|
1572
1800
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -1578,7 +1806,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
1578
1806
|
});
|
|
1579
1807
|
});
|
|
1580
1808
|
};
|
|
1581
|
-
|
|
1809
|
+
VecDBApiClient.prototype.DeleteWhere = function (input, options) {
|
|
1582
1810
|
return __awaiter(this, void 0, void 0, function () {
|
|
1583
1811
|
return __generator(this, function (_a) {
|
|
1584
1812
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -1590,7 +1818,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
1590
1818
|
});
|
|
1591
1819
|
});
|
|
1592
1820
|
};
|
|
1593
|
-
|
|
1821
|
+
VecDBApiClient.prototype.SimpleSearchPost = function (input, options) {
|
|
1594
1822
|
return __awaiter(this, void 0, void 0, function () {
|
|
1595
1823
|
return __generator(this, function (_a) {
|
|
1596
1824
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -1602,7 +1830,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
1602
1830
|
});
|
|
1603
1831
|
});
|
|
1604
1832
|
};
|
|
1605
|
-
|
|
1833
|
+
VecDBApiClient.prototype.Search = function (input, options) {
|
|
1606
1834
|
return __awaiter(this, void 0, void 0, function () {
|
|
1607
1835
|
return __generator(this, function (_a) {
|
|
1608
1836
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -1614,7 +1842,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
1614
1842
|
});
|
|
1615
1843
|
});
|
|
1616
1844
|
};
|
|
1617
|
-
|
|
1845
|
+
VecDBApiClient.prototype.Recommend = function (input, options) {
|
|
1618
1846
|
return __awaiter(this, void 0, void 0, function () {
|
|
1619
1847
|
return __generator(this, function (_a) {
|
|
1620
1848
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -1626,7 +1854,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
1626
1854
|
});
|
|
1627
1855
|
});
|
|
1628
1856
|
};
|
|
1629
|
-
|
|
1857
|
+
VecDBApiClient.prototype.CloneDataset = function (input, options) {
|
|
1630
1858
|
return __awaiter(this, void 0, void 0, function () {
|
|
1631
1859
|
return __generator(this, function (_a) {
|
|
1632
1860
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -1638,7 +1866,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
1638
1866
|
});
|
|
1639
1867
|
});
|
|
1640
1868
|
};
|
|
1641
|
-
|
|
1869
|
+
VecDBApiClient.prototype.PredictKNNRegression = function (input, options) {
|
|
1642
1870
|
return __awaiter(this, void 0, void 0, function () {
|
|
1643
1871
|
return __generator(this, function (_a) {
|
|
1644
1872
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -1650,7 +1878,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
1650
1878
|
});
|
|
1651
1879
|
});
|
|
1652
1880
|
};
|
|
1653
|
-
|
|
1881
|
+
VecDBApiClient.prototype.PredictKNNFromResults = function (input, options) {
|
|
1654
1882
|
return __awaiter(this, void 0, void 0, function () {
|
|
1655
1883
|
return __generator(this, function (_a) {
|
|
1656
1884
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -1662,7 +1890,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
1662
1890
|
});
|
|
1663
1891
|
});
|
|
1664
1892
|
};
|
|
1665
|
-
|
|
1893
|
+
VecDBApiClient.prototype.BiasEvaluation = function (input, options) {
|
|
1666
1894
|
return __awaiter(this, void 0, void 0, function () {
|
|
1667
1895
|
return __generator(this, function (_a) {
|
|
1668
1896
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -1674,7 +1902,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
1674
1902
|
});
|
|
1675
1903
|
});
|
|
1676
1904
|
};
|
|
1677
|
-
|
|
1905
|
+
VecDBApiClient.prototype.Vectorize = function (input, options) {
|
|
1678
1906
|
return __awaiter(this, void 0, void 0, function () {
|
|
1679
1907
|
return __generator(this, function (_a) {
|
|
1680
1908
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -1686,7 +1914,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
1686
1914
|
});
|
|
1687
1915
|
});
|
|
1688
1916
|
};
|
|
1689
|
-
|
|
1917
|
+
VecDBApiClient.prototype.VectorizeAndInsert = function (input, options) {
|
|
1690
1918
|
return __awaiter(this, void 0, void 0, function () {
|
|
1691
1919
|
return __generator(this, function (_a) {
|
|
1692
1920
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -1698,7 +1926,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
1698
1926
|
});
|
|
1699
1927
|
});
|
|
1700
1928
|
};
|
|
1701
|
-
|
|
1929
|
+
VecDBApiClient.prototype.VectorizeField = function (input, options) {
|
|
1702
1930
|
return __awaiter(this, void 0, void 0, function () {
|
|
1703
1931
|
return __generator(this, function (_a) {
|
|
1704
1932
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -1710,19 +1938,31 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
1710
1938
|
});
|
|
1711
1939
|
});
|
|
1712
1940
|
};
|
|
1713
|
-
|
|
1941
|
+
VecDBApiClient.prototype.ListDatasetWorkflowsByFields = function (input, options) {
|
|
1714
1942
|
return __awaiter(this, void 0, void 0, function () {
|
|
1715
1943
|
return __generator(this, function (_a) {
|
|
1716
1944
|
return [2 /*return*/, this.SendRequest({
|
|
1717
1945
|
input: input,
|
|
1718
|
-
method: '
|
|
1719
|
-
path: '/
|
|
1946
|
+
method: 'get',
|
|
1947
|
+
path: '/datasets/{dataset_id}/workflows_by_fields',
|
|
1948
|
+
options: options
|
|
1949
|
+
})];
|
|
1950
|
+
});
|
|
1951
|
+
});
|
|
1952
|
+
};
|
|
1953
|
+
VecDBApiClient.prototype.GetAPIHealth = function (input, options) {
|
|
1954
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
1955
|
+
return __generator(this, function (_a) {
|
|
1956
|
+
return [2 /*return*/, this.SendRequest({
|
|
1957
|
+
input: input,
|
|
1958
|
+
method: 'get',
|
|
1959
|
+
path: '/health',
|
|
1720
1960
|
options: options
|
|
1721
1961
|
})];
|
|
1722
1962
|
});
|
|
1723
1963
|
});
|
|
1724
1964
|
};
|
|
1725
|
-
|
|
1965
|
+
VecDBApiClient.prototype.DeleteFieldChildren = function (input, options) {
|
|
1726
1966
|
return __awaiter(this, void 0, void 0, function () {
|
|
1727
1967
|
return __generator(this, function (_a) {
|
|
1728
1968
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -1734,7 +1974,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
1734
1974
|
});
|
|
1735
1975
|
});
|
|
1736
1976
|
};
|
|
1737
|
-
|
|
1977
|
+
VecDBApiClient.prototype.ListFieldChildrens = function (input, options) {
|
|
1738
1978
|
return __awaiter(this, void 0, void 0, function () {
|
|
1739
1979
|
return __generator(this, function (_a) {
|
|
1740
1980
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -1746,7 +1986,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
1746
1986
|
});
|
|
1747
1987
|
});
|
|
1748
1988
|
};
|
|
1749
|
-
|
|
1989
|
+
VecDBApiClient.prototype.UpdateFieldChildren = function (input, options) {
|
|
1750
1990
|
return __awaiter(this, void 0, void 0, function () {
|
|
1751
1991
|
return __generator(this, function (_a) {
|
|
1752
1992
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -1758,7 +1998,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
1758
1998
|
});
|
|
1759
1999
|
});
|
|
1760
2000
|
};
|
|
1761
|
-
|
|
2001
|
+
VecDBApiClient.prototype.DeleteFavouriteWorkflow = function (input, options) {
|
|
1762
2002
|
return __awaiter(this, void 0, void 0, function () {
|
|
1763
2003
|
return __generator(this, function (_a) {
|
|
1764
2004
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -1770,7 +2010,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
1770
2010
|
});
|
|
1771
2011
|
});
|
|
1772
2012
|
};
|
|
1773
|
-
|
|
2013
|
+
VecDBApiClient.prototype.ListFavouriteWorkflows = function (input, options) {
|
|
1774
2014
|
return __awaiter(this, void 0, void 0, function () {
|
|
1775
2015
|
return __generator(this, function (_a) {
|
|
1776
2016
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -1782,7 +2022,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
1782
2022
|
});
|
|
1783
2023
|
});
|
|
1784
2024
|
};
|
|
1785
|
-
|
|
2025
|
+
VecDBApiClient.prototype.UpdateFavouriteWorkflow = function (input, options) {
|
|
1786
2026
|
return __awaiter(this, void 0, void 0, function () {
|
|
1787
2027
|
return __generator(this, function (_a) {
|
|
1788
2028
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -1794,7 +2034,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
1794
2034
|
});
|
|
1795
2035
|
});
|
|
1796
2036
|
};
|
|
1797
|
-
|
|
2037
|
+
VecDBApiClient.prototype.DeleteSavedFilter = function (input, options) {
|
|
1798
2038
|
return __awaiter(this, void 0, void 0, function () {
|
|
1799
2039
|
return __generator(this, function (_a) {
|
|
1800
2040
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -1806,7 +2046,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
1806
2046
|
});
|
|
1807
2047
|
});
|
|
1808
2048
|
};
|
|
1809
|
-
|
|
2049
|
+
VecDBApiClient.prototype.ListSavedFilters = function (input, options) {
|
|
1810
2050
|
return __awaiter(this, void 0, void 0, function () {
|
|
1811
2051
|
return __generator(this, function (_a) {
|
|
1812
2052
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -1818,7 +2058,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
1818
2058
|
});
|
|
1819
2059
|
});
|
|
1820
2060
|
};
|
|
1821
|
-
|
|
2061
|
+
VecDBApiClient.prototype.UpdateSavedFilter = function (input, options) {
|
|
1822
2062
|
return __awaiter(this, void 0, void 0, function () {
|
|
1823
2063
|
return __generator(this, function (_a) {
|
|
1824
2064
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -1830,7 +2070,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
1830
2070
|
});
|
|
1831
2071
|
});
|
|
1832
2072
|
};
|
|
1833
|
-
|
|
2073
|
+
VecDBApiClient.prototype.GetSavedFilter = function (input, options) {
|
|
1834
2074
|
return __awaiter(this, void 0, void 0, function () {
|
|
1835
2075
|
return __generator(this, function (_a) {
|
|
1836
2076
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -1842,7 +2082,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
1842
2082
|
});
|
|
1843
2083
|
});
|
|
1844
2084
|
};
|
|
1845
|
-
|
|
2085
|
+
VecDBApiClient.prototype.CreateSavedFilter = function (input, options) {
|
|
1846
2086
|
return __awaiter(this, void 0, void 0, function () {
|
|
1847
2087
|
return __generator(this, function (_a) {
|
|
1848
2088
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -1854,7 +2094,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
1854
2094
|
});
|
|
1855
2095
|
});
|
|
1856
2096
|
};
|
|
1857
|
-
|
|
2097
|
+
VecDBApiClient.prototype.DeleteComponent = function (input, options) {
|
|
1858
2098
|
return __awaiter(this, void 0, void 0, function () {
|
|
1859
2099
|
return __generator(this, function (_a) {
|
|
1860
2100
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -1866,7 +2106,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
1866
2106
|
});
|
|
1867
2107
|
});
|
|
1868
2108
|
};
|
|
1869
|
-
|
|
2109
|
+
VecDBApiClient.prototype.ListComponents = function (input, options) {
|
|
1870
2110
|
return __awaiter(this, void 0, void 0, function () {
|
|
1871
2111
|
return __generator(this, function (_a) {
|
|
1872
2112
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -1878,7 +2118,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
1878
2118
|
});
|
|
1879
2119
|
});
|
|
1880
2120
|
};
|
|
1881
|
-
|
|
2121
|
+
VecDBApiClient.prototype.UpdateComponent = function (input, options) {
|
|
1882
2122
|
return __awaiter(this, void 0, void 0, function () {
|
|
1883
2123
|
return __generator(this, function (_a) {
|
|
1884
2124
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -1890,7 +2130,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
1890
2130
|
});
|
|
1891
2131
|
});
|
|
1892
2132
|
};
|
|
1893
|
-
|
|
2133
|
+
VecDBApiClient.prototype.GetComponent = function (input, options) {
|
|
1894
2134
|
return __awaiter(this, void 0, void 0, function () {
|
|
1895
2135
|
return __generator(this, function (_a) {
|
|
1896
2136
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -1902,7 +2142,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
1902
2142
|
});
|
|
1903
2143
|
});
|
|
1904
2144
|
};
|
|
1905
|
-
|
|
2145
|
+
VecDBApiClient.prototype.CreateComponent = function (input, options) {
|
|
1906
2146
|
return __awaiter(this, void 0, void 0, function () {
|
|
1907
2147
|
return __generator(this, function (_a) {
|
|
1908
2148
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -1914,7 +2154,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
1914
2154
|
});
|
|
1915
2155
|
});
|
|
1916
2156
|
};
|
|
1917
|
-
|
|
2157
|
+
VecDBApiClient.prototype.ListDatasetEditorHistorys = function (input, options) {
|
|
1918
2158
|
return __awaiter(this, void 0, void 0, function () {
|
|
1919
2159
|
return __generator(this, function (_a) {
|
|
1920
2160
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -1926,7 +2166,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
1926
2166
|
});
|
|
1927
2167
|
});
|
|
1928
2168
|
};
|
|
1929
|
-
|
|
2169
|
+
VecDBApiClient.prototype.CreateDatasetEditorHistory = function (input, options) {
|
|
1930
2170
|
return __awaiter(this, void 0, void 0, function () {
|
|
1931
2171
|
return __generator(this, function (_a) {
|
|
1932
2172
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -1938,67 +2178,67 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
1938
2178
|
});
|
|
1939
2179
|
});
|
|
1940
2180
|
};
|
|
1941
|
-
|
|
2181
|
+
VecDBApiClient.prototype.ListEditorConfigurations = function (input, options) {
|
|
1942
2182
|
return __awaiter(this, void 0, void 0, function () {
|
|
1943
2183
|
return __generator(this, function (_a) {
|
|
1944
2184
|
return [2 /*return*/, this.SendRequest({
|
|
1945
2185
|
input: input,
|
|
1946
2186
|
method: 'post',
|
|
1947
|
-
path: '/
|
|
2187
|
+
path: '/editor/configuration/list',
|
|
1948
2188
|
options: options
|
|
1949
2189
|
})];
|
|
1950
2190
|
});
|
|
1951
2191
|
});
|
|
1952
2192
|
};
|
|
1953
|
-
|
|
2193
|
+
VecDBApiClient.prototype.CreateEditorConfiguration = function (input, options) {
|
|
1954
2194
|
return __awaiter(this, void 0, void 0, function () {
|
|
1955
2195
|
return __generator(this, function (_a) {
|
|
1956
2196
|
return [2 /*return*/, this.SendRequest({
|
|
1957
2197
|
input: input,
|
|
1958
2198
|
method: 'post',
|
|
1959
|
-
path: '/
|
|
2199
|
+
path: '/editor/configuration/create',
|
|
1960
2200
|
options: options
|
|
1961
2201
|
})];
|
|
1962
2202
|
});
|
|
1963
2203
|
});
|
|
1964
2204
|
};
|
|
1965
|
-
|
|
2205
|
+
VecDBApiClient.prototype.UpdateEditorConfiguration = function (input, options) {
|
|
1966
2206
|
return __awaiter(this, void 0, void 0, function () {
|
|
1967
2207
|
return __generator(this, function (_a) {
|
|
1968
2208
|
return [2 /*return*/, this.SendRequest({
|
|
1969
2209
|
input: input,
|
|
1970
2210
|
method: 'post',
|
|
1971
|
-
path: '/
|
|
2211
|
+
path: '/editor/configuration/{editorconfiguration_id}/update',
|
|
1972
2212
|
options: options
|
|
1973
2213
|
})];
|
|
1974
2214
|
});
|
|
1975
2215
|
});
|
|
1976
2216
|
};
|
|
1977
|
-
|
|
2217
|
+
VecDBApiClient.prototype.DeleteEditorConfiguration = function (input, options) {
|
|
1978
2218
|
return __awaiter(this, void 0, void 0, function () {
|
|
1979
2219
|
return __generator(this, function (_a) {
|
|
1980
2220
|
return [2 /*return*/, this.SendRequest({
|
|
1981
2221
|
input: input,
|
|
1982
2222
|
method: 'post',
|
|
1983
|
-
path: '/
|
|
2223
|
+
path: '/editor/configuration/{editorconfiguration_id}/delete',
|
|
1984
2224
|
options: options
|
|
1985
2225
|
})];
|
|
1986
2226
|
});
|
|
1987
2227
|
});
|
|
1988
2228
|
};
|
|
1989
|
-
|
|
2229
|
+
VecDBApiClient.prototype.GetEditorConfiguration = function (input, options) {
|
|
1990
2230
|
return __awaiter(this, void 0, void 0, function () {
|
|
1991
2231
|
return __generator(this, function (_a) {
|
|
1992
2232
|
return [2 /*return*/, this.SendRequest({
|
|
1993
2233
|
input: input,
|
|
1994
2234
|
method: 'get',
|
|
1995
|
-
path: '/
|
|
2235
|
+
path: '/editor/configuration/{editorconfiguration_id}/get',
|
|
1996
2236
|
options: options
|
|
1997
2237
|
})];
|
|
1998
2238
|
});
|
|
1999
2239
|
});
|
|
2000
2240
|
};
|
|
2001
|
-
|
|
2241
|
+
VecDBApiClient.prototype.ListKeyphrases = function (input, options) {
|
|
2002
2242
|
return __awaiter(this, void 0, void 0, function () {
|
|
2003
2243
|
return __generator(this, function (_a) {
|
|
2004
2244
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -2010,7 +2250,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
2010
2250
|
});
|
|
2011
2251
|
});
|
|
2012
2252
|
};
|
|
2013
|
-
|
|
2253
|
+
VecDBApiClient.prototype.UpdateKeyphrase = function (input, options) {
|
|
2014
2254
|
return __awaiter(this, void 0, void 0, function () {
|
|
2015
2255
|
return __generator(this, function (_a) {
|
|
2016
2256
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -2022,7 +2262,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
2022
2262
|
});
|
|
2023
2263
|
});
|
|
2024
2264
|
};
|
|
2025
|
-
|
|
2265
|
+
VecDBApiClient.prototype.DeleteKeyphrase = function (input, options) {
|
|
2026
2266
|
return __awaiter(this, void 0, void 0, function () {
|
|
2027
2267
|
return __generator(this, function (_a) {
|
|
2028
2268
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -2034,7 +2274,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
2034
2274
|
});
|
|
2035
2275
|
});
|
|
2036
2276
|
};
|
|
2037
|
-
|
|
2277
|
+
VecDBApiClient.prototype.GetKeyphrase = function (input, options) {
|
|
2038
2278
|
return __awaiter(this, void 0, void 0, function () {
|
|
2039
2279
|
return __generator(this, function (_a) {
|
|
2040
2280
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -2046,7 +2286,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
2046
2286
|
});
|
|
2047
2287
|
});
|
|
2048
2288
|
};
|
|
2049
|
-
|
|
2289
|
+
VecDBApiClient.prototype.BulkUpdateKeyphrases = function (input, options) {
|
|
2050
2290
|
return __awaiter(this, void 0, void 0, function () {
|
|
2051
2291
|
return __generator(this, function (_a) {
|
|
2052
2292
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -2058,7 +2298,19 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
2058
2298
|
});
|
|
2059
2299
|
});
|
|
2060
2300
|
};
|
|
2061
|
-
|
|
2301
|
+
VecDBApiClient.prototype.BulkDeleteKeyphrases = function (input, options) {
|
|
2302
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
2303
|
+
return __generator(this, function (_a) {
|
|
2304
|
+
return [2 /*return*/, this.SendRequest({
|
|
2305
|
+
input: input,
|
|
2306
|
+
method: 'post',
|
|
2307
|
+
path: '/datasets/{dataset_id}/fields/{field}/keyphrase/bulk_delete',
|
|
2308
|
+
options: options
|
|
2309
|
+
})];
|
|
2310
|
+
});
|
|
2311
|
+
});
|
|
2312
|
+
};
|
|
2313
|
+
VecDBApiClient.prototype.ListTaxonomys = function (input, options) {
|
|
2062
2314
|
return __awaiter(this, void 0, void 0, function () {
|
|
2063
2315
|
return __generator(this, function (_a) {
|
|
2064
2316
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -2070,7 +2322,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
2070
2322
|
});
|
|
2071
2323
|
});
|
|
2072
2324
|
};
|
|
2073
|
-
|
|
2325
|
+
VecDBApiClient.prototype.UpdateTaxonomy = function (input, options) {
|
|
2074
2326
|
return __awaiter(this, void 0, void 0, function () {
|
|
2075
2327
|
return __generator(this, function (_a) {
|
|
2076
2328
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -2082,7 +2334,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
2082
2334
|
});
|
|
2083
2335
|
});
|
|
2084
2336
|
};
|
|
2085
|
-
|
|
2337
|
+
VecDBApiClient.prototype.DeleteTaxonomy = function (input, options) {
|
|
2086
2338
|
return __awaiter(this, void 0, void 0, function () {
|
|
2087
2339
|
return __generator(this, function (_a) {
|
|
2088
2340
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -2094,7 +2346,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
2094
2346
|
});
|
|
2095
2347
|
});
|
|
2096
2348
|
};
|
|
2097
|
-
|
|
2349
|
+
VecDBApiClient.prototype.GetTaxonomy = function (input, options) {
|
|
2098
2350
|
return __awaiter(this, void 0, void 0, function () {
|
|
2099
2351
|
return __generator(this, function (_a) {
|
|
2100
2352
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -2106,7 +2358,7 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
2106
2358
|
});
|
|
2107
2359
|
});
|
|
2108
2360
|
};
|
|
2109
|
-
|
|
2361
|
+
VecDBApiClient.prototype.CreateTaxonomy = function (input, options) {
|
|
2110
2362
|
return __awaiter(this, void 0, void 0, function () {
|
|
2111
2363
|
return __generator(this, function (_a) {
|
|
2112
2364
|
return [2 /*return*/, this.SendRequest({
|
|
@@ -2118,6 +2370,210 @@ var DiscoveryApiClient = /** @class */ (function (_super) {
|
|
|
2118
2370
|
});
|
|
2119
2371
|
});
|
|
2120
2372
|
};
|
|
2121
|
-
|
|
2373
|
+
VecDBApiClient.prototype.DeleteFavouriteDataset = function (input, options) {
|
|
2374
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
2375
|
+
return __generator(this, function (_a) {
|
|
2376
|
+
return [2 /*return*/, this.SendRequest({
|
|
2377
|
+
input: input,
|
|
2378
|
+
method: 'post',
|
|
2379
|
+
path: '/datasets/favourites/{favouritedataset_id}/delete',
|
|
2380
|
+
options: options
|
|
2381
|
+
})];
|
|
2382
|
+
});
|
|
2383
|
+
});
|
|
2384
|
+
};
|
|
2385
|
+
VecDBApiClient.prototype.ListFavouriteDatasets = function (input, options) {
|
|
2386
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
2387
|
+
return __generator(this, function (_a) {
|
|
2388
|
+
return [2 /*return*/, this.SendRequest({
|
|
2389
|
+
input: input,
|
|
2390
|
+
method: 'post',
|
|
2391
|
+
path: '/datasets/favourites/list',
|
|
2392
|
+
options: options
|
|
2393
|
+
})];
|
|
2394
|
+
});
|
|
2395
|
+
});
|
|
2396
|
+
};
|
|
2397
|
+
VecDBApiClient.prototype.UpdateFavouriteDataset = function (input, options) {
|
|
2398
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
2399
|
+
return __generator(this, function (_a) {
|
|
2400
|
+
return [2 /*return*/, this.SendRequest({
|
|
2401
|
+
input: input,
|
|
2402
|
+
method: 'post',
|
|
2403
|
+
path: '/datasets/favourites/{favouritedataset_id}/update',
|
|
2404
|
+
options: options
|
|
2405
|
+
})];
|
|
2406
|
+
});
|
|
2407
|
+
});
|
|
2408
|
+
};
|
|
2409
|
+
VecDBApiClient.prototype.DeleteFavouriteDeployable = function (input, options) {
|
|
2410
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
2411
|
+
return __generator(this, function (_a) {
|
|
2412
|
+
return [2 /*return*/, this.SendRequest({
|
|
2413
|
+
input: input,
|
|
2414
|
+
method: 'post',
|
|
2415
|
+
path: '/deployable/favourites/{favouritedeployable_id}/delete',
|
|
2416
|
+
options: options
|
|
2417
|
+
})];
|
|
2418
|
+
});
|
|
2419
|
+
});
|
|
2420
|
+
};
|
|
2421
|
+
VecDBApiClient.prototype.ListFavouriteDeployables = function (input, options) {
|
|
2422
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
2423
|
+
return __generator(this, function (_a) {
|
|
2424
|
+
return [2 /*return*/, this.SendRequest({
|
|
2425
|
+
input: input,
|
|
2426
|
+
method: 'post',
|
|
2427
|
+
path: '/deployable/favourites/list',
|
|
2428
|
+
options: options
|
|
2429
|
+
})];
|
|
2430
|
+
});
|
|
2431
|
+
});
|
|
2432
|
+
};
|
|
2433
|
+
VecDBApiClient.prototype.UpdateFavouriteDeployable = function (input, options) {
|
|
2434
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
2435
|
+
return __generator(this, function (_a) {
|
|
2436
|
+
return [2 /*return*/, this.SendRequest({
|
|
2437
|
+
input: input,
|
|
2438
|
+
method: 'post',
|
|
2439
|
+
path: '/deployable/favourites/{favouritedeployable_id}/update',
|
|
2440
|
+
options: options
|
|
2441
|
+
})];
|
|
2442
|
+
});
|
|
2443
|
+
});
|
|
2444
|
+
};
|
|
2445
|
+
VecDBApiClient.prototype.DeleteUserOnboardingFlag = function (input, options) {
|
|
2446
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
2447
|
+
return __generator(this, function (_a) {
|
|
2448
|
+
return [2 /*return*/, this.SendRequest({
|
|
2449
|
+
input: input,
|
|
2450
|
+
method: 'post',
|
|
2451
|
+
path: '/useronboardingflags/{useronboardingflag_id}/delete',
|
|
2452
|
+
options: options
|
|
2453
|
+
})];
|
|
2454
|
+
});
|
|
2455
|
+
});
|
|
2456
|
+
};
|
|
2457
|
+
VecDBApiClient.prototype.ListUserOnboardingFlags = function (input, options) {
|
|
2458
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
2459
|
+
return __generator(this, function (_a) {
|
|
2460
|
+
return [2 /*return*/, this.SendRequest({
|
|
2461
|
+
input: input,
|
|
2462
|
+
method: 'post',
|
|
2463
|
+
path: '/useronboardingflags/list',
|
|
2464
|
+
options: options
|
|
2465
|
+
})];
|
|
2466
|
+
});
|
|
2467
|
+
});
|
|
2468
|
+
};
|
|
2469
|
+
VecDBApiClient.prototype.UpdateUserOnboardingFlag = function (input, options) {
|
|
2470
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
2471
|
+
return __generator(this, function (_a) {
|
|
2472
|
+
return [2 /*return*/, this.SendRequest({
|
|
2473
|
+
input: input,
|
|
2474
|
+
method: 'post',
|
|
2475
|
+
path: '/useronboardingflags/{useronboardingflag_id}/update',
|
|
2476
|
+
options: options
|
|
2477
|
+
})];
|
|
2478
|
+
});
|
|
2479
|
+
});
|
|
2480
|
+
};
|
|
2481
|
+
VecDBApiClient.prototype.GetTranscriptTagList = function (input, options) {
|
|
2482
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
2483
|
+
return __generator(this, function (_a) {
|
|
2484
|
+
return [2 /*return*/, this.SendRequest({
|
|
2485
|
+
input: input,
|
|
2486
|
+
method: 'get',
|
|
2487
|
+
path: '/datasets/{dataset_id}/fields/{field}/transcript_tags/{transcripttaglist_id}/get',
|
|
2488
|
+
options: options
|
|
2489
|
+
})];
|
|
2490
|
+
});
|
|
2491
|
+
});
|
|
2492
|
+
};
|
|
2493
|
+
VecDBApiClient.prototype.UpdateTranscriptTagList = function (input, options) {
|
|
2494
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
2495
|
+
return __generator(this, function (_a) {
|
|
2496
|
+
return [2 /*return*/, this.SendRequest({
|
|
2497
|
+
input: input,
|
|
2498
|
+
method: 'post',
|
|
2499
|
+
path: '/datasets/{dataset_id}/fields/{field}/transcript_tags/{transcripttaglist_id}/update',
|
|
2500
|
+
options: options
|
|
2501
|
+
})];
|
|
2502
|
+
});
|
|
2503
|
+
});
|
|
2504
|
+
};
|
|
2505
|
+
VecDBApiClient.prototype.ListTranscriptTagLists = function (input, options) {
|
|
2506
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
2507
|
+
return __generator(this, function (_a) {
|
|
2508
|
+
return [2 /*return*/, this.SendRequest({
|
|
2509
|
+
input: input,
|
|
2510
|
+
method: 'post',
|
|
2511
|
+
path: '/datasets/{dataset_id}/fields/{field}/transcript_tags/list',
|
|
2512
|
+
options: options
|
|
2513
|
+
})];
|
|
2514
|
+
});
|
|
2515
|
+
});
|
|
2516
|
+
};
|
|
2517
|
+
VecDBApiClient.prototype.ListTags = function (input, options) {
|
|
2518
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
2519
|
+
return __generator(this, function (_a) {
|
|
2520
|
+
return [2 /*return*/, this.SendRequest({
|
|
2521
|
+
input: input,
|
|
2522
|
+
method: 'post',
|
|
2523
|
+
path: '/datasets/{dataset_id}/field/{tag_field}/tags/list',
|
|
2524
|
+
options: options
|
|
2525
|
+
})];
|
|
2526
|
+
});
|
|
2527
|
+
});
|
|
2528
|
+
};
|
|
2529
|
+
VecDBApiClient.prototype.DeleteTag = function (input, options) {
|
|
2530
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
2531
|
+
return __generator(this, function (_a) {
|
|
2532
|
+
return [2 /*return*/, this.SendRequest({
|
|
2533
|
+
input: input,
|
|
2534
|
+
method: 'post',
|
|
2535
|
+
path: '/datasets/{dataset_id}/field/{tag_field}/tags/{tag_id}/delete',
|
|
2536
|
+
options: options
|
|
2537
|
+
})];
|
|
2538
|
+
});
|
|
2539
|
+
});
|
|
2540
|
+
};
|
|
2541
|
+
VecDBApiClient.prototype.GetTag = function (input, options) {
|
|
2542
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
2543
|
+
return __generator(this, function (_a) {
|
|
2544
|
+
return [2 /*return*/, this.SendRequest({
|
|
2545
|
+
input: input,
|
|
2546
|
+
method: 'get',
|
|
2547
|
+
path: '/datasets/{dataset_id}/field/{tag_field}/tags/{tag_id}/get',
|
|
2548
|
+
options: options
|
|
2549
|
+
})];
|
|
2550
|
+
});
|
|
2551
|
+
});
|
|
2552
|
+
};
|
|
2553
|
+
VecDBApiClient.prototype.BulkDeleteTags = function (input, options) {
|
|
2554
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
2555
|
+
return __generator(this, function (_a) {
|
|
2556
|
+
return [2 /*return*/, this.SendRequest({
|
|
2557
|
+
input: input,
|
|
2558
|
+
method: 'post',
|
|
2559
|
+
path: '/datasets/{dataset_id}/field/{tag_field}/tags/bulk_delete',
|
|
2560
|
+
options: options
|
|
2561
|
+
})];
|
|
2562
|
+
});
|
|
2563
|
+
});
|
|
2564
|
+
};
|
|
2565
|
+
VecDBApiClient.prototype.BulkUpdateTags = function (input, options) {
|
|
2566
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
2567
|
+
return __generator(this, function (_a) {
|
|
2568
|
+
return [2 /*return*/, this.SendRequest({
|
|
2569
|
+
input: input,
|
|
2570
|
+
method: 'post',
|
|
2571
|
+
path: '/datasets/{dataset_id}/field/{tag_field}/tags/bulk_update',
|
|
2572
|
+
options: options
|
|
2573
|
+
})];
|
|
2574
|
+
});
|
|
2575
|
+
});
|
|
2576
|
+
};
|
|
2577
|
+
return VecDBApiClient;
|
|
2122
2578
|
}(_GenericClient));
|
|
2123
|
-
export {
|
|
2579
|
+
export { VecDBApiClient };
|