kb-cloud-client-typescript 2.3.0-alpha.154 → 2.3.0-alpha.155

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (59) hide show
  1. package/dist/adminapi/apis/cluster-api.d.ts +73 -0
  2. package/dist/adminapi/apis/cluster-api.d.ts.map +1 -1
  3. package/dist/adminapi/apis/cluster-api.js +80 -0
  4. package/dist/adminapi/apis/cluster-api.js.map +1 -1
  5. package/dist/adminapi/apis/inspection-api.d.ts +4 -5
  6. package/dist/adminapi/apis/inspection-api.d.ts.map +1 -1
  7. package/dist/adminapi/apis/inspection-api.js.map +1 -1
  8. package/dist/adminapi/apis/shared-api.d.ts +72 -0
  9. package/dist/adminapi/apis/shared-api.d.ts.map +1 -1
  10. package/dist/adminapi/apis/shared-api.js +80 -0
  11. package/dist/adminapi/apis/shared-api.js.map +1 -1
  12. package/dist/adminapi/models/cluster-mode-transition.d.ts +32 -0
  13. package/dist/adminapi/models/cluster-mode-transition.d.ts.map +1 -0
  14. package/dist/adminapi/models/cluster-mode-transition.js +16 -0
  15. package/dist/adminapi/models/cluster-mode-transition.js.map +1 -0
  16. package/dist/adminapi/models/index.d.ts +1 -0
  17. package/dist/adminapi/models/index.d.ts.map +1 -1
  18. package/dist/adminapi/models/index.js +1 -0
  19. package/dist/adminapi/models/index.js.map +1 -1
  20. package/dist/openapi/apis/llm-api.d.ts +0 -411
  21. package/dist/openapi/apis/llm-api.d.ts.map +1 -1
  22. package/dist/openapi/apis/llm-api.js +0 -471
  23. package/dist/openapi/apis/llm-api.js.map +1 -1
  24. package/dist/openapi/models/index.d.ts +0 -4
  25. package/dist/openapi/models/index.d.ts.map +1 -1
  26. package/dist/openapi/models/index.js +0 -4
  27. package/dist/openapi/models/index.js.map +1 -1
  28. package/package.json +1 -1
  29. package/src/adminapi/.openapi-generator/FILES +1 -0
  30. package/src/adminapi/apis/cluster-api.ts +130 -0
  31. package/src/adminapi/apis/inspection-api.ts +3 -5
  32. package/src/adminapi/apis/shared-api.ts +128 -0
  33. package/src/adminapi/models/cluster-mode-transition.ts +39 -0
  34. package/src/adminapi/models/index.ts +1 -0
  35. package/src/adminapi.yaml +136 -84
  36. package/src/openapi/.openapi-generator/FILES +0 -4
  37. package/src/openapi/apis/llm-api.ts +0 -714
  38. package/src/openapi/models/index.ts +0 -4
  39. package/src/openapi.yaml +0 -262
  40. package/dist/openapi/models/access-level.d.ts +0 -22
  41. package/dist/openapi/models/access-level.d.ts.map +0 -1
  42. package/dist/openapi/models/access-level.js +0 -26
  43. package/dist/openapi/models/access-level.js.map +0 -1
  44. package/dist/openapi/models/check-apikey.d.ts +0 -31
  45. package/dist/openapi/models/check-apikey.d.ts.map +0 -1
  46. package/dist/openapi/models/check-apikey.js +0 -16
  47. package/dist/openapi/models/check-apikey.js.map +0 -1
  48. package/dist/openapi/models/llm-list.d.ts +0 -26
  49. package/dist/openapi/models/llm-list.d.ts.map +0 -1
  50. package/dist/openapi/models/llm-list.js +0 -16
  51. package/dist/openapi/models/llm-list.js.map +0 -1
  52. package/dist/openapi/models/llm.d.ts +0 -64
  53. package/dist/openapi/models/llm.d.ts.map +0 -1
  54. package/dist/openapi/models/llm.js +0 -16
  55. package/dist/openapi/models/llm.js.map +0 -1
  56. package/src/openapi/models/access-level.ts +0 -31
  57. package/src/openapi/models/check-apikey.ts +0 -36
  58. package/src/openapi/models/llm-list.ts +0 -33
  59. package/src/openapi/models/llm.ts +0 -71
@@ -12,54 +12,11 @@
12
12
  import type { Configuration } from '../configuration';
13
13
  import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
14
14
  import { type RequestArgs, BaseAPI } from '../base';
15
- import type { CheckAPIKey } from '../models';
16
- import type { Llm } from '../models';
17
- import type { LlmList } from '../models';
18
15
  /**
19
16
  * LlmApi - axios parameter creator
20
17
  * @export
21
18
  */
22
19
  export declare const LlmApiAxiosParamCreator: (configuration?: Configuration) => {
23
- /**
24
- * add LLM for org
25
- * @summary add LLM for org
26
- * @param {string} orgName
27
- * @param {Llm} llm
28
- * @param {*} [options] Override http request option.
29
- * @deprecated
30
- * @throws {RequiredError}
31
- */
32
- addLLMForOrg: (orgName: string, llm: Llm, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
33
- /**
34
- * check apikey available for org
35
- * @summary check apikey available for org
36
- * @param {string} orgName
37
- * @param {CheckAPIKey} checkAPIKey
38
- * @param {*} [options] Override http request option.
39
- * @deprecated
40
- * @throws {RequiredError}
41
- */
42
- checkAPIKeyForOrg: (orgName: string, checkAPIKey: CheckAPIKey, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
43
- /**
44
- *
45
- * @summary Delete LLM
46
- * @param {string} orgName
47
- * @param {string} id ID of the LLM
48
- * @param {*} [options] Override http request option.
49
- * @deprecated
50
- * @throws {RequiredError}
51
- */
52
- deleteLLM: (orgName: string, id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
53
- /**
54
- *
55
- * @summary Get LLM by ID in org
56
- * @param {string} orgName
57
- * @param {string} id ID of the LLM
58
- * @param {*} [options] Override http request option.
59
- * @deprecated
60
- * @throws {RequiredError}
61
- */
62
- getLLMByIDInOrg: (orgName: string, id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
63
20
  /**
64
21
  *
65
22
  * @summary List available model in org
@@ -68,72 +25,12 @@ export declare const LlmApiAxiosParamCreator: (configuration?: Configuration) =>
68
25
  * @throws {RequiredError}
69
26
  */
70
27
  listAvailableModelInOrg: (orgName: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
71
- /**
72
- * available
73
- * @summary List available LLM for org
74
- * @param {string} orgName
75
- * @param {*} [options] Override http request option.
76
- * @deprecated
77
- * @throws {RequiredError}
78
- */
79
- listLLMForOrg: (orgName: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
80
- /**
81
- *
82
- * @summary Update LLM
83
- * @param {string} orgName
84
- * @param {string} id ID of the LLM
85
- * @param {Llm} body
86
- * @param {*} [options] Override http request option.
87
- * @deprecated
88
- * @throws {RequiredError}
89
- */
90
- updateLLM: (orgName: string, id: string, body: Llm, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
91
28
  };
92
29
  /**
93
30
  * LlmApi - functional programming interface
94
31
  * @export
95
32
  */
96
33
  export declare const LlmApiFp: (configuration?: Configuration) => {
97
- /**
98
- * add LLM for org
99
- * @summary add LLM for org
100
- * @param {string} orgName
101
- * @param {Llm} llm
102
- * @param {*} [options] Override http request option.
103
- * @deprecated
104
- * @throws {RequiredError}
105
- */
106
- addLLMForOrg(orgName: string, llm: Llm, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
107
- /**
108
- * check apikey available for org
109
- * @summary check apikey available for org
110
- * @param {string} orgName
111
- * @param {CheckAPIKey} checkAPIKey
112
- * @param {*} [options] Override http request option.
113
- * @deprecated
114
- * @throws {RequiredError}
115
- */
116
- checkAPIKeyForOrg(orgName: string, checkAPIKey: CheckAPIKey, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
117
- /**
118
- *
119
- * @summary Delete LLM
120
- * @param {string} orgName
121
- * @param {string} id ID of the LLM
122
- * @param {*} [options] Override http request option.
123
- * @deprecated
124
- * @throws {RequiredError}
125
- */
126
- deleteLLM(orgName: string, id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
127
- /**
128
- *
129
- * @summary Get LLM by ID in org
130
- * @param {string} orgName
131
- * @param {string} id ID of the LLM
132
- * @param {*} [options] Override http request option.
133
- * @deprecated
134
- * @throws {RequiredError}
135
- */
136
- getLLMByIDInOrg(orgName: string, id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Llm>>;
137
34
  /**
138
35
  *
139
36
  * @summary List available model in org
@@ -142,68 +39,12 @@ export declare const LlmApiFp: (configuration?: Configuration) => {
142
39
  * @throws {RequiredError}
143
40
  */
144
41
  listAvailableModelInOrg(orgName: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<string>>>;
145
- /**
146
- * available
147
- * @summary List available LLM for org
148
- * @param {string} orgName
149
- * @param {*} [options] Override http request option.
150
- * @deprecated
151
- * @throws {RequiredError}
152
- */
153
- listLLMForOrg(orgName: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LlmList>>;
154
- /**
155
- *
156
- * @summary Update LLM
157
- * @param {string} orgName
158
- * @param {string} id ID of the LLM
159
- * @param {Llm} body
160
- * @param {*} [options] Override http request option.
161
- * @deprecated
162
- * @throws {RequiredError}
163
- */
164
- updateLLM(orgName: string, id: string, body: Llm, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Llm>>;
165
42
  };
166
43
  /**
167
44
  * LlmApi - factory interface
168
45
  * @export
169
46
  */
170
47
  export declare const LlmApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
171
- /**
172
- * add LLM for org
173
- * @summary add LLM for org
174
- * @param {LlmApiAddLLMForOrgRequest} requestParameters Request parameters.
175
- * @param {*} [options] Override http request option.
176
- * @deprecated
177
- * @throws {RequiredError}
178
- */
179
- addLLMForOrg(requestParameters: LlmApiAddLLMForOrgRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
180
- /**
181
- * check apikey available for org
182
- * @summary check apikey available for org
183
- * @param {LlmApiCheckAPIKeyForOrgRequest} requestParameters Request parameters.
184
- * @param {*} [options] Override http request option.
185
- * @deprecated
186
- * @throws {RequiredError}
187
- */
188
- checkAPIKeyForOrg(requestParameters: LlmApiCheckAPIKeyForOrgRequest, options?: RawAxiosRequestConfig): AxiosPromise<boolean>;
189
- /**
190
- *
191
- * @summary Delete LLM
192
- * @param {LlmApiDeleteLLMRequest} requestParameters Request parameters.
193
- * @param {*} [options] Override http request option.
194
- * @deprecated
195
- * @throws {RequiredError}
196
- */
197
- deleteLLM(requestParameters: LlmApiDeleteLLMRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
198
- /**
199
- *
200
- * @summary Get LLM by ID in org
201
- * @param {LlmApiGetLLMByIDInOrgRequest} requestParameters Request parameters.
202
- * @param {*} [options] Override http request option.
203
- * @deprecated
204
- * @throws {RequiredError}
205
- */
206
- getLLMByIDInOrg(requestParameters: LlmApiGetLLMByIDInOrgRequest, options?: RawAxiosRequestConfig): AxiosPromise<Llm>;
207
48
  /**
208
49
  *
209
50
  * @summary List available model in org
@@ -212,24 +53,6 @@ export declare const LlmApiFactory: (configuration?: Configuration, basePath?: s
212
53
  * @throws {RequiredError}
213
54
  */
214
55
  listAvailableModelInOrg(requestParameters: LlmApiListAvailableModelInOrgRequest, options?: RawAxiosRequestConfig): AxiosPromise<Array<string>>;
215
- /**
216
- * available
217
- * @summary List available LLM for org
218
- * @param {LlmApiListLLMForOrgRequest} requestParameters Request parameters.
219
- * @param {*} [options] Override http request option.
220
- * @deprecated
221
- * @throws {RequiredError}
222
- */
223
- listLLMForOrg(requestParameters: LlmApiListLLMForOrgRequest, options?: RawAxiosRequestConfig): AxiosPromise<LlmList>;
224
- /**
225
- *
226
- * @summary Update LLM
227
- * @param {LlmApiUpdateLLMRequest} requestParameters Request parameters.
228
- * @param {*} [options] Override http request option.
229
- * @deprecated
230
- * @throws {RequiredError}
231
- */
232
- updateLLM(requestParameters: LlmApiUpdateLLMRequest, options?: RawAxiosRequestConfig): AxiosPromise<Llm>;
233
56
  };
234
57
  /**
235
58
  * LlmApi - interface
@@ -237,46 +60,6 @@ export declare const LlmApiFactory: (configuration?: Configuration, basePath?: s
237
60
  * @interface LlmApi
238
61
  */
239
62
  export interface LlmApiInterface {
240
- /**
241
- * add LLM for org
242
- * @summary add LLM for org
243
- * @param {LlmApiAddLLMForOrgRequest} requestParameters Request parameters.
244
- * @param {*} [options] Override http request option.
245
- * @deprecated
246
- * @throws {RequiredError}
247
- * @memberof LlmApiInterface
248
- */
249
- addLLMForOrg(requestParameters: LlmApiAddLLMForOrgRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
250
- /**
251
- * check apikey available for org
252
- * @summary check apikey available for org
253
- * @param {LlmApiCheckAPIKeyForOrgRequest} requestParameters Request parameters.
254
- * @param {*} [options] Override http request option.
255
- * @deprecated
256
- * @throws {RequiredError}
257
- * @memberof LlmApiInterface
258
- */
259
- checkAPIKeyForOrg(requestParameters: LlmApiCheckAPIKeyForOrgRequest, options?: RawAxiosRequestConfig): AxiosPromise<boolean>;
260
- /**
261
- *
262
- * @summary Delete LLM
263
- * @param {LlmApiDeleteLLMRequest} requestParameters Request parameters.
264
- * @param {*} [options] Override http request option.
265
- * @deprecated
266
- * @throws {RequiredError}
267
- * @memberof LlmApiInterface
268
- */
269
- deleteLLM(requestParameters: LlmApiDeleteLLMRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
270
- /**
271
- *
272
- * @summary Get LLM by ID in org
273
- * @param {LlmApiGetLLMByIDInOrgRequest} requestParameters Request parameters.
274
- * @param {*} [options] Override http request option.
275
- * @deprecated
276
- * @throws {RequiredError}
277
- * @memberof LlmApiInterface
278
- */
279
- getLLMByIDInOrg(requestParameters: LlmApiGetLLMByIDInOrgRequest, options?: RawAxiosRequestConfig): AxiosPromise<Llm>;
280
63
  /**
281
64
  *
282
65
  * @summary List available model in org
@@ -286,102 +69,6 @@ export interface LlmApiInterface {
286
69
  * @memberof LlmApiInterface
287
70
  */
288
71
  listAvailableModelInOrg(requestParameters: LlmApiListAvailableModelInOrgRequest, options?: RawAxiosRequestConfig): AxiosPromise<Array<string>>;
289
- /**
290
- * available
291
- * @summary List available LLM for org
292
- * @param {LlmApiListLLMForOrgRequest} requestParameters Request parameters.
293
- * @param {*} [options] Override http request option.
294
- * @deprecated
295
- * @throws {RequiredError}
296
- * @memberof LlmApiInterface
297
- */
298
- listLLMForOrg(requestParameters: LlmApiListLLMForOrgRequest, options?: RawAxiosRequestConfig): AxiosPromise<LlmList>;
299
- /**
300
- *
301
- * @summary Update LLM
302
- * @param {LlmApiUpdateLLMRequest} requestParameters Request parameters.
303
- * @param {*} [options] Override http request option.
304
- * @deprecated
305
- * @throws {RequiredError}
306
- * @memberof LlmApiInterface
307
- */
308
- updateLLM(requestParameters: LlmApiUpdateLLMRequest, options?: RawAxiosRequestConfig): AxiosPromise<Llm>;
309
- }
310
- /**
311
- * Request parameters for addLLMForOrg operation in LlmApi.
312
- * @export
313
- * @interface LlmApiAddLLMForOrgRequest
314
- */
315
- export interface LlmApiAddLLMForOrgRequest {
316
- /**
317
- *
318
- * @type {string}
319
- * @memberof LlmApiAddLLMForOrg
320
- */
321
- readonly orgName: string;
322
- /**
323
- *
324
- * @type {Llm}
325
- * @memberof LlmApiAddLLMForOrg
326
- */
327
- readonly llm: Llm;
328
- }
329
- /**
330
- * Request parameters for checkAPIKeyForOrg operation in LlmApi.
331
- * @export
332
- * @interface LlmApiCheckAPIKeyForOrgRequest
333
- */
334
- export interface LlmApiCheckAPIKeyForOrgRequest {
335
- /**
336
- *
337
- * @type {string}
338
- * @memberof LlmApiCheckAPIKeyForOrg
339
- */
340
- readonly orgName: string;
341
- /**
342
- *
343
- * @type {CheckAPIKey}
344
- * @memberof LlmApiCheckAPIKeyForOrg
345
- */
346
- readonly checkAPIKey: CheckAPIKey;
347
- }
348
- /**
349
- * Request parameters for deleteLLM operation in LlmApi.
350
- * @export
351
- * @interface LlmApiDeleteLLMRequest
352
- */
353
- export interface LlmApiDeleteLLMRequest {
354
- /**
355
- *
356
- * @type {string}
357
- * @memberof LlmApiDeleteLLM
358
- */
359
- readonly orgName: string;
360
- /**
361
- * ID of the LLM
362
- * @type {string}
363
- * @memberof LlmApiDeleteLLM
364
- */
365
- readonly id: string;
366
- }
367
- /**
368
- * Request parameters for getLLMByIDInOrg operation in LlmApi.
369
- * @export
370
- * @interface LlmApiGetLLMByIDInOrgRequest
371
- */
372
- export interface LlmApiGetLLMByIDInOrgRequest {
373
- /**
374
- *
375
- * @type {string}
376
- * @memberof LlmApiGetLLMByIDInOrg
377
- */
378
- readonly orgName: string;
379
- /**
380
- * ID of the LLM
381
- * @type {string}
382
- * @memberof LlmApiGetLLMByIDInOrg
383
- */
384
- readonly id: string;
385
72
  }
386
73
  /**
387
74
  * Request parameters for listAvailableModelInOrg operation in LlmApi.
@@ -396,44 +83,6 @@ export interface LlmApiListAvailableModelInOrgRequest {
396
83
  */
397
84
  readonly orgName: string;
398
85
  }
399
- /**
400
- * Request parameters for listLLMForOrg operation in LlmApi.
401
- * @export
402
- * @interface LlmApiListLLMForOrgRequest
403
- */
404
- export interface LlmApiListLLMForOrgRequest {
405
- /**
406
- *
407
- * @type {string}
408
- * @memberof LlmApiListLLMForOrg
409
- */
410
- readonly orgName: string;
411
- }
412
- /**
413
- * Request parameters for updateLLM operation in LlmApi.
414
- * @export
415
- * @interface LlmApiUpdateLLMRequest
416
- */
417
- export interface LlmApiUpdateLLMRequest {
418
- /**
419
- *
420
- * @type {string}
421
- * @memberof LlmApiUpdateLLM
422
- */
423
- readonly orgName: string;
424
- /**
425
- * ID of the LLM
426
- * @type {string}
427
- * @memberof LlmApiUpdateLLM
428
- */
429
- readonly id: string;
430
- /**
431
- *
432
- * @type {Llm}
433
- * @memberof LlmApiUpdateLLM
434
- */
435
- readonly body: Llm;
436
- }
437
86
  /**
438
87
  * LlmApi - object-oriented interface
439
88
  * @export
@@ -441,46 +90,6 @@ export interface LlmApiUpdateLLMRequest {
441
90
  * @extends {BaseAPI}
442
91
  */
443
92
  export declare class LlmApi extends BaseAPI implements LlmApiInterface {
444
- /**
445
- * add LLM for org
446
- * @summary add LLM for org
447
- * @param {LlmApiAddLLMForOrgRequest} requestParameters Request parameters.
448
- * @param {*} [options] Override http request option.
449
- * @deprecated
450
- * @throws {RequiredError}
451
- * @memberof LlmApi
452
- */
453
- addLLMForOrg(requestParameters: LlmApiAddLLMForOrgRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
454
- /**
455
- * check apikey available for org
456
- * @summary check apikey available for org
457
- * @param {LlmApiCheckAPIKeyForOrgRequest} requestParameters Request parameters.
458
- * @param {*} [options] Override http request option.
459
- * @deprecated
460
- * @throws {RequiredError}
461
- * @memberof LlmApi
462
- */
463
- checkAPIKeyForOrg(requestParameters: LlmApiCheckAPIKeyForOrgRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any, {}>>;
464
- /**
465
- *
466
- * @summary Delete LLM
467
- * @param {LlmApiDeleteLLMRequest} requestParameters Request parameters.
468
- * @param {*} [options] Override http request option.
469
- * @deprecated
470
- * @throws {RequiredError}
471
- * @memberof LlmApi
472
- */
473
- deleteLLM(requestParameters: LlmApiDeleteLLMRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
474
- /**
475
- *
476
- * @summary Get LLM by ID in org
477
- * @param {LlmApiGetLLMByIDInOrgRequest} requestParameters Request parameters.
478
- * @param {*} [options] Override http request option.
479
- * @deprecated
480
- * @throws {RequiredError}
481
- * @memberof LlmApi
482
- */
483
- getLLMByIDInOrg(requestParameters: LlmApiGetLLMByIDInOrgRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Llm, any, {}>>;
484
93
  /**
485
94
  *
486
95
  * @summary List available model in org
@@ -490,25 +99,5 @@ export declare class LlmApi extends BaseAPI implements LlmApiInterface {
490
99
  * @memberof LlmApi
491
100
  */
492
101
  listAvailableModelInOrg(requestParameters: LlmApiListAvailableModelInOrgRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string[], any, {}>>;
493
- /**
494
- * available
495
- * @summary List available LLM for org
496
- * @param {LlmApiListLLMForOrgRequest} requestParameters Request parameters.
497
- * @param {*} [options] Override http request option.
498
- * @deprecated
499
- * @throws {RequiredError}
500
- * @memberof LlmApi
501
- */
502
- listLLMForOrg(requestParameters: LlmApiListLLMForOrgRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LlmList, any, {}>>;
503
- /**
504
- *
505
- * @summary Update LLM
506
- * @param {LlmApiUpdateLLMRequest} requestParameters Request parameters.
507
- * @param {*} [options] Override http request option.
508
- * @deprecated
509
- * @throws {RequiredError}
510
- * @memberof LlmApi
511
- */
512
- updateLLM(requestParameters: LlmApiUpdateLLMRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Llm, any, {}>>;
513
102
  }
514
103
  //# sourceMappingURL=llm-api.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"llm-api.d.ts","sourceRoot":"","sources":["../../../src/openapi/apis/llm-api.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"llm-api.d.ts","sourceRoot":"","sources":["../../../src/openapi/apis/llm-api.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AACtD,OAAO,KAAK,EAAE,YAAY,EAAE,aAAa,EAAE,qBAAqB,EAAE,MAAM,OAAO,CAAC;AAMhF,OAAO,EAAiC,KAAK,WAAW,EAAE,OAAO,EAAqC,MAAM,SAAS,CAAC;AAGtH;;;GAGG;AACH,eAAO,MAAM,uBAAuB,GAAa,gBAAgB,aAAa;IAEtE;;;;;;OAMG;uCACsC,MAAM,YAAW,qBAAqB,KAAQ,OAAO,CAAC,WAAW,CAAC;CAmClH,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,QAAQ,GAAY,gBAAgB,aAAa;IAGtD;;;;;;OAMG;qCACoC,MAAM,YAAY,qBAAqB,GAAG,OAAO,CAAC,CAAC,KAAK,CAAC,EAAE,aAAa,EAAE,QAAQ,CAAC,EAAE,MAAM,KAAK,YAAY,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC;CAO1K,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,aAAa,GAAa,gBAAgB,aAAa,EAAE,WAAW,MAAM,EAAE,QAAQ,aAAa;IAGtG;;;;;;OAMG;+CACwC,oCAAoC,YAAY,qBAAqB,GAAG,YAAY,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;CAIrJ,CAAC;AAEF;;;;GAIG;AACH,MAAM,WAAW,eAAe;IAC5B;;;;;;;OAOG;IACH,uBAAuB,CAAC,iBAAiB,EAAE,oCAAoC,EAAE,OAAO,CAAC,EAAE,qBAAqB,GAAG,YAAY,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC;CAElJ;AAED;;;;GAIG;AACH,MAAM,WAAW,oCAAoC;IACjD;;;;OAIG;IACH,QAAQ,CAAC,OAAO,EAAE,MAAM,CAAA;CAC3B;AAED;;;;;GAKG;AACH,qBAAa,MAAO,SAAQ,OAAQ,YAAW,eAAe;IAC1D;;;;;;;OAOG;IACI,uBAAuB,CAAC,iBAAiB,EAAE,oCAAoC,EAAE,OAAO,CAAC,EAAE,qBAAqB;CAG1H"}