@nestbox-ai/instances 1.0.25
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/.openapi-generator/FILES +13 -0
- package/.openapi-generator/VERSION +1 -0
- package/.openapi-generator-ignore +23 -0
- package/README.md +46 -0
- package/api.ts +1049 -0
- package/base.ts +86 -0
- package/common.ts +150 -0
- package/configuration.ts +115 -0
- package/dist/api.d.ts +624 -0
- package/dist/api.js +793 -0
- package/dist/base.d.ts +66 -0
- package/dist/base.js +65 -0
- package/dist/common.d.ts +65 -0
- package/dist/common.js +161 -0
- package/dist/configuration.d.ts +91 -0
- package/dist/configuration.js +44 -0
- package/dist/esm/api.d.ts +624 -0
- package/dist/esm/api.js +774 -0
- package/dist/esm/base.d.ts +66 -0
- package/dist/esm/base.js +60 -0
- package/dist/esm/common.d.ts +65 -0
- package/dist/esm/common.js +149 -0
- package/dist/esm/configuration.d.ts +91 -0
- package/dist/esm/configuration.js +40 -0
- package/dist/esm/index.d.ts +13 -0
- package/dist/esm/index.js +15 -0
- package/dist/index.d.ts +13 -0
- package/dist/index.js +31 -0
- package/git_push.sh +57 -0
- package/index.ts +18 -0
- package/package.json +33 -0
- package/tsconfig.esm.json +7 -0
- package/tsconfig.json +18 -0
|
@@ -0,0 +1,624 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Nestbox API Agents API
|
|
3
|
+
* API for Nestbox Agents, control your agents
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import type { Configuration } from './configuration';
|
|
13
|
+
import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
|
|
14
|
+
import type { RequestArgs } from './base';
|
|
15
|
+
import { BaseAPI } from './base';
|
|
16
|
+
/**
|
|
17
|
+
*
|
|
18
|
+
* @export
|
|
19
|
+
* @interface AdditionalAgentParameterDto
|
|
20
|
+
*/
|
|
21
|
+
export interface AdditionalAgentParameterDto {
|
|
22
|
+
/**
|
|
23
|
+
*
|
|
24
|
+
* @type {string}
|
|
25
|
+
* @memberof AdditionalAgentParameterDto
|
|
26
|
+
*/
|
|
27
|
+
'name': string;
|
|
28
|
+
/**
|
|
29
|
+
*
|
|
30
|
+
* @type {string}
|
|
31
|
+
* @memberof AdditionalAgentParameterDto
|
|
32
|
+
*/
|
|
33
|
+
'description': string;
|
|
34
|
+
/**
|
|
35
|
+
*
|
|
36
|
+
* @type {string}
|
|
37
|
+
* @memberof AdditionalAgentParameterDto
|
|
38
|
+
*/
|
|
39
|
+
'default_value': string;
|
|
40
|
+
/**
|
|
41
|
+
* The ID of the machine model associated with this additional parameter
|
|
42
|
+
* @type {string}
|
|
43
|
+
* @memberof AdditionalAgentParameterDto
|
|
44
|
+
*/
|
|
45
|
+
'machineModelId': string;
|
|
46
|
+
}
|
|
47
|
+
/**
|
|
48
|
+
*
|
|
49
|
+
* @export
|
|
50
|
+
* @interface AgentParameterDto
|
|
51
|
+
*/
|
|
52
|
+
export interface AgentParameterDto {
|
|
53
|
+
/**
|
|
54
|
+
*
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof AgentParameterDto
|
|
57
|
+
*/
|
|
58
|
+
'name': string;
|
|
59
|
+
/**
|
|
60
|
+
*
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof AgentParameterDto
|
|
63
|
+
*/
|
|
64
|
+
'description': string;
|
|
65
|
+
/**
|
|
66
|
+
*
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof AgentParameterDto
|
|
69
|
+
*/
|
|
70
|
+
'default_value': string;
|
|
71
|
+
/**
|
|
72
|
+
* The ID of the machine model associated with this parameter
|
|
73
|
+
* @type {string}
|
|
74
|
+
* @memberof AgentParameterDto
|
|
75
|
+
*/
|
|
76
|
+
'machineModelId': string;
|
|
77
|
+
}
|
|
78
|
+
/**
|
|
79
|
+
*
|
|
80
|
+
* @export
|
|
81
|
+
* @interface CreateAdditionalParameterDto
|
|
82
|
+
*/
|
|
83
|
+
export interface CreateAdditionalParameterDto {
|
|
84
|
+
/**
|
|
85
|
+
* The name of the additional parameter
|
|
86
|
+
* @type {string}
|
|
87
|
+
* @memberof CreateAdditionalParameterDto
|
|
88
|
+
*/
|
|
89
|
+
'name': string;
|
|
90
|
+
/**
|
|
91
|
+
* The description of the additional parameter
|
|
92
|
+
* @type {string}
|
|
93
|
+
* @memberof CreateAdditionalParameterDto
|
|
94
|
+
*/
|
|
95
|
+
'description': string;
|
|
96
|
+
/**
|
|
97
|
+
* The default value of the additional parameter
|
|
98
|
+
* @type {string}
|
|
99
|
+
* @memberof CreateAdditionalParameterDto
|
|
100
|
+
*/
|
|
101
|
+
'default_value': string;
|
|
102
|
+
/**
|
|
103
|
+
* The ID of the machine model associated with this additional parameter
|
|
104
|
+
* @type {string}
|
|
105
|
+
* @memberof CreateAdditionalParameterDto
|
|
106
|
+
*/
|
|
107
|
+
'machineModelId': string;
|
|
108
|
+
}
|
|
109
|
+
/**
|
|
110
|
+
*
|
|
111
|
+
* @export
|
|
112
|
+
* @interface CreateExamplePromptDto
|
|
113
|
+
*/
|
|
114
|
+
export interface CreateExamplePromptDto {
|
|
115
|
+
/**
|
|
116
|
+
* The training prompt for the example
|
|
117
|
+
* @type {string}
|
|
118
|
+
* @memberof CreateExamplePromptDto
|
|
119
|
+
*/
|
|
120
|
+
'trainingPrompt': string;
|
|
121
|
+
/**
|
|
122
|
+
* The answer for the training prompt
|
|
123
|
+
* @type {string}
|
|
124
|
+
* @memberof CreateExamplePromptDto
|
|
125
|
+
*/
|
|
126
|
+
'promptAnswer': string;
|
|
127
|
+
/**
|
|
128
|
+
* The ID of the machine model associated with this example
|
|
129
|
+
* @type {string}
|
|
130
|
+
* @memberof CreateExamplePromptDto
|
|
131
|
+
*/
|
|
132
|
+
'machineModelId': string;
|
|
133
|
+
}
|
|
134
|
+
/**
|
|
135
|
+
*
|
|
136
|
+
* @export
|
|
137
|
+
* @interface CreateMachineAgentDto
|
|
138
|
+
*/
|
|
139
|
+
export interface CreateMachineAgentDto {
|
|
140
|
+
/**
|
|
141
|
+
*
|
|
142
|
+
* @type {string}
|
|
143
|
+
* @memberof CreateMachineAgentDto
|
|
144
|
+
*/
|
|
145
|
+
'name': string;
|
|
146
|
+
/**
|
|
147
|
+
*
|
|
148
|
+
* @type {string}
|
|
149
|
+
* @memberof CreateMachineAgentDto
|
|
150
|
+
*/
|
|
151
|
+
'description'?: string;
|
|
152
|
+
/**
|
|
153
|
+
*
|
|
154
|
+
* @type {Array<AgentParameterDto>}
|
|
155
|
+
* @memberof CreateMachineAgentDto
|
|
156
|
+
*/
|
|
157
|
+
'parameters'?: Array<AgentParameterDto>;
|
|
158
|
+
/**
|
|
159
|
+
*
|
|
160
|
+
* @type {Array<AdditionalAgentParameterDto>}
|
|
161
|
+
* @memberof CreateMachineAgentDto
|
|
162
|
+
*/
|
|
163
|
+
'additionalParameters'?: Array<AdditionalAgentParameterDto>;
|
|
164
|
+
}
|
|
165
|
+
/**
|
|
166
|
+
*
|
|
167
|
+
* @export
|
|
168
|
+
* @interface CreateMachineModelDto
|
|
169
|
+
*/
|
|
170
|
+
export interface CreateMachineModelDto {
|
|
171
|
+
/**
|
|
172
|
+
* The name of the machine model
|
|
173
|
+
* @type {string}
|
|
174
|
+
* @memberof CreateMachineModelDto
|
|
175
|
+
*/
|
|
176
|
+
'name': string;
|
|
177
|
+
/**
|
|
178
|
+
* The description of the machine model
|
|
179
|
+
* @type {string}
|
|
180
|
+
* @memberof CreateMachineModelDto
|
|
181
|
+
*/
|
|
182
|
+
'description': string;
|
|
183
|
+
/**
|
|
184
|
+
* The prompt associated with the machine model
|
|
185
|
+
* @type {string}
|
|
186
|
+
* @memberof CreateMachineModelDto
|
|
187
|
+
*/
|
|
188
|
+
'prompt': string;
|
|
189
|
+
/**
|
|
190
|
+
* Parameters associated with the machine model
|
|
191
|
+
* @type {Array<CreateParameterDto>}
|
|
192
|
+
* @memberof CreateMachineModelDto
|
|
193
|
+
*/
|
|
194
|
+
'parameters': Array<CreateParameterDto>;
|
|
195
|
+
/**
|
|
196
|
+
* Additional parameters for the machine model
|
|
197
|
+
* @type {Array<CreateAdditionalParameterDto>}
|
|
198
|
+
* @memberof CreateMachineModelDto
|
|
199
|
+
*/
|
|
200
|
+
'additionalParameters': Array<CreateAdditionalParameterDto>;
|
|
201
|
+
/**
|
|
202
|
+
* Training examples for the machine model
|
|
203
|
+
* @type {Array<CreateExamplePromptDto>}
|
|
204
|
+
* @memberof CreateMachineModelDto
|
|
205
|
+
*/
|
|
206
|
+
'trainingExamples': Array<CreateExamplePromptDto>;
|
|
207
|
+
}
|
|
208
|
+
/**
|
|
209
|
+
*
|
|
210
|
+
* @export
|
|
211
|
+
* @interface CreateParameterDto
|
|
212
|
+
*/
|
|
213
|
+
export interface CreateParameterDto {
|
|
214
|
+
/**
|
|
215
|
+
* The name of the parameter
|
|
216
|
+
* @type {string}
|
|
217
|
+
* @memberof CreateParameterDto
|
|
218
|
+
*/
|
|
219
|
+
'name': string;
|
|
220
|
+
/**
|
|
221
|
+
* The description of the parameter
|
|
222
|
+
* @type {string}
|
|
223
|
+
* @memberof CreateParameterDto
|
|
224
|
+
*/
|
|
225
|
+
'description': string;
|
|
226
|
+
/**
|
|
227
|
+
* The default value of the parameter
|
|
228
|
+
* @type {string}
|
|
229
|
+
* @memberof CreateParameterDto
|
|
230
|
+
*/
|
|
231
|
+
'default_value': string;
|
|
232
|
+
/**
|
|
233
|
+
* The ID of the machine model associated with this parameter
|
|
234
|
+
* @type {string}
|
|
235
|
+
* @memberof CreateParameterDto
|
|
236
|
+
*/
|
|
237
|
+
'machineModelId': string;
|
|
238
|
+
}
|
|
239
|
+
/**
|
|
240
|
+
* AgentsApi - axios parameter creator
|
|
241
|
+
* @export
|
|
242
|
+
*/
|
|
243
|
+
export declare const AgentsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
244
|
+
/**
|
|
245
|
+
*
|
|
246
|
+
* @param {CreateMachineAgentDto} createMachineAgentDto
|
|
247
|
+
* @param {*} [options] Override http request option.
|
|
248
|
+
* @throws {RequiredError}
|
|
249
|
+
*/
|
|
250
|
+
agentManagementControllerCreateNewAgent: (createMachineAgentDto: CreateMachineAgentDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
251
|
+
/**
|
|
252
|
+
*
|
|
253
|
+
* @param {string} id
|
|
254
|
+
* @param {*} [options] Override http request option.
|
|
255
|
+
* @throws {RequiredError}
|
|
256
|
+
*/
|
|
257
|
+
agentManagementControllerDeleteAgent: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
258
|
+
/**
|
|
259
|
+
*
|
|
260
|
+
* @param {*} [options] Override http request option.
|
|
261
|
+
* @throws {RequiredError}
|
|
262
|
+
*/
|
|
263
|
+
agentManagementControllerGetAllAgents: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
264
|
+
/**
|
|
265
|
+
*
|
|
266
|
+
* @param {string} id
|
|
267
|
+
* @param {object} body
|
|
268
|
+
* @param {*} [options] Override http request option.
|
|
269
|
+
* @throws {RequiredError}
|
|
270
|
+
*/
|
|
271
|
+
agentManagementControllerUpdateMachineAgent: (id: string, body: object, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
272
|
+
};
|
|
273
|
+
/**
|
|
274
|
+
* AgentsApi - functional programming interface
|
|
275
|
+
* @export
|
|
276
|
+
*/
|
|
277
|
+
export declare const AgentsApiFp: (configuration?: Configuration) => {
|
|
278
|
+
/**
|
|
279
|
+
*
|
|
280
|
+
* @param {CreateMachineAgentDto} createMachineAgentDto
|
|
281
|
+
* @param {*} [options] Override http request option.
|
|
282
|
+
* @throws {RequiredError}
|
|
283
|
+
*/
|
|
284
|
+
agentManagementControllerCreateNewAgent(createMachineAgentDto: CreateMachineAgentDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
285
|
+
/**
|
|
286
|
+
*
|
|
287
|
+
* @param {string} id
|
|
288
|
+
* @param {*} [options] Override http request option.
|
|
289
|
+
* @throws {RequiredError}
|
|
290
|
+
*/
|
|
291
|
+
agentManagementControllerDeleteAgent(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
292
|
+
/**
|
|
293
|
+
*
|
|
294
|
+
* @param {*} [options] Override http request option.
|
|
295
|
+
* @throws {RequiredError}
|
|
296
|
+
*/
|
|
297
|
+
agentManagementControllerGetAllAgents(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
298
|
+
/**
|
|
299
|
+
*
|
|
300
|
+
* @param {string} id
|
|
301
|
+
* @param {object} body
|
|
302
|
+
* @param {*} [options] Override http request option.
|
|
303
|
+
* @throws {RequiredError}
|
|
304
|
+
*/
|
|
305
|
+
agentManagementControllerUpdateMachineAgent(id: string, body: object, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
306
|
+
};
|
|
307
|
+
/**
|
|
308
|
+
* AgentsApi - factory interface
|
|
309
|
+
* @export
|
|
310
|
+
*/
|
|
311
|
+
export declare const AgentsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
312
|
+
/**
|
|
313
|
+
*
|
|
314
|
+
* @param {CreateMachineAgentDto} createMachineAgentDto
|
|
315
|
+
* @param {*} [options] Override http request option.
|
|
316
|
+
* @throws {RequiredError}
|
|
317
|
+
*/
|
|
318
|
+
agentManagementControllerCreateNewAgent(createMachineAgentDto: CreateMachineAgentDto, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
319
|
+
/**
|
|
320
|
+
*
|
|
321
|
+
* @param {string} id
|
|
322
|
+
* @param {*} [options] Override http request option.
|
|
323
|
+
* @throws {RequiredError}
|
|
324
|
+
*/
|
|
325
|
+
agentManagementControllerDeleteAgent(id: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
326
|
+
/**
|
|
327
|
+
*
|
|
328
|
+
* @param {*} [options] Override http request option.
|
|
329
|
+
* @throws {RequiredError}
|
|
330
|
+
*/
|
|
331
|
+
agentManagementControllerGetAllAgents(options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
332
|
+
/**
|
|
333
|
+
*
|
|
334
|
+
* @param {string} id
|
|
335
|
+
* @param {object} body
|
|
336
|
+
* @param {*} [options] Override http request option.
|
|
337
|
+
* @throws {RequiredError}
|
|
338
|
+
*/
|
|
339
|
+
agentManagementControllerUpdateMachineAgent(id: string, body: object, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
340
|
+
};
|
|
341
|
+
/**
|
|
342
|
+
* AgentsApi - object-oriented interface
|
|
343
|
+
* @export
|
|
344
|
+
* @class AgentsApi
|
|
345
|
+
* @extends {BaseAPI}
|
|
346
|
+
*/
|
|
347
|
+
export declare class AgentsApi extends BaseAPI {
|
|
348
|
+
/**
|
|
349
|
+
*
|
|
350
|
+
* @param {CreateMachineAgentDto} createMachineAgentDto
|
|
351
|
+
* @param {*} [options] Override http request option.
|
|
352
|
+
* @throws {RequiredError}
|
|
353
|
+
* @memberof AgentsApi
|
|
354
|
+
*/
|
|
355
|
+
agentManagementControllerCreateNewAgent(createMachineAgentDto: CreateMachineAgentDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
356
|
+
/**
|
|
357
|
+
*
|
|
358
|
+
* @param {string} id
|
|
359
|
+
* @param {*} [options] Override http request option.
|
|
360
|
+
* @throws {RequiredError}
|
|
361
|
+
* @memberof AgentsApi
|
|
362
|
+
*/
|
|
363
|
+
agentManagementControllerDeleteAgent(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
364
|
+
/**
|
|
365
|
+
*
|
|
366
|
+
* @param {*} [options] Override http request option.
|
|
367
|
+
* @throws {RequiredError}
|
|
368
|
+
* @memberof AgentsApi
|
|
369
|
+
*/
|
|
370
|
+
agentManagementControllerGetAllAgents(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
371
|
+
/**
|
|
372
|
+
*
|
|
373
|
+
* @param {string} id
|
|
374
|
+
* @param {object} body
|
|
375
|
+
* @param {*} [options] Override http request option.
|
|
376
|
+
* @throws {RequiredError}
|
|
377
|
+
* @memberof AgentsApi
|
|
378
|
+
*/
|
|
379
|
+
agentManagementControllerUpdateMachineAgent(id: string, body: object, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
380
|
+
}
|
|
381
|
+
/**
|
|
382
|
+
* ManifestApi - axios parameter creator
|
|
383
|
+
* @export
|
|
384
|
+
*/
|
|
385
|
+
export declare const ManifestApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
386
|
+
/**
|
|
387
|
+
*
|
|
388
|
+
* @param {*} [options] Override http request option.
|
|
389
|
+
* @throws {RequiredError}
|
|
390
|
+
*/
|
|
391
|
+
modelManagementManifestControllerGetManifest: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
392
|
+
};
|
|
393
|
+
/**
|
|
394
|
+
* ManifestApi - functional programming interface
|
|
395
|
+
* @export
|
|
396
|
+
*/
|
|
397
|
+
export declare const ManifestApiFp: (configuration?: Configuration) => {
|
|
398
|
+
/**
|
|
399
|
+
*
|
|
400
|
+
* @param {*} [options] Override http request option.
|
|
401
|
+
* @throws {RequiredError}
|
|
402
|
+
*/
|
|
403
|
+
modelManagementManifestControllerGetManifest(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
404
|
+
};
|
|
405
|
+
/**
|
|
406
|
+
* ManifestApi - factory interface
|
|
407
|
+
* @export
|
|
408
|
+
*/
|
|
409
|
+
export declare const ManifestApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
410
|
+
/**
|
|
411
|
+
*
|
|
412
|
+
* @param {*} [options] Override http request option.
|
|
413
|
+
* @throws {RequiredError}
|
|
414
|
+
*/
|
|
415
|
+
modelManagementManifestControllerGetManifest(options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
416
|
+
};
|
|
417
|
+
/**
|
|
418
|
+
* ManifestApi - object-oriented interface
|
|
419
|
+
* @export
|
|
420
|
+
* @class ManifestApi
|
|
421
|
+
* @extends {BaseAPI}
|
|
422
|
+
*/
|
|
423
|
+
export declare class ManifestApi extends BaseAPI {
|
|
424
|
+
/**
|
|
425
|
+
*
|
|
426
|
+
* @param {*} [options] Override http request option.
|
|
427
|
+
* @throws {RequiredError}
|
|
428
|
+
* @memberof ManifestApi
|
|
429
|
+
*/
|
|
430
|
+
modelManagementManifestControllerGetManifest(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
431
|
+
}
|
|
432
|
+
/**
|
|
433
|
+
* ModelsApi - axios parameter creator
|
|
434
|
+
* @export
|
|
435
|
+
*/
|
|
436
|
+
export declare const ModelsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
437
|
+
/**
|
|
438
|
+
*
|
|
439
|
+
* @param {CreateMachineModelDto} createMachineModelDto
|
|
440
|
+
* @param {*} [options] Override http request option.
|
|
441
|
+
* @throws {RequiredError}
|
|
442
|
+
*/
|
|
443
|
+
modelManagementControllerCreateNewModel: (createMachineModelDto: CreateMachineModelDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
444
|
+
/**
|
|
445
|
+
*
|
|
446
|
+
* @param {string} id
|
|
447
|
+
* @param {*} [options] Override http request option.
|
|
448
|
+
* @throws {RequiredError}
|
|
449
|
+
*/
|
|
450
|
+
modelManagementControllerDeleteModel: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
451
|
+
/**
|
|
452
|
+
*
|
|
453
|
+
* @param {*} [options] Override http request option.
|
|
454
|
+
* @throws {RequiredError}
|
|
455
|
+
*/
|
|
456
|
+
modelManagementControllerGetAllModels: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
457
|
+
/**
|
|
458
|
+
*
|
|
459
|
+
* @param {string} id
|
|
460
|
+
* @param {CreateMachineModelDto} createMachineModelDto
|
|
461
|
+
* @param {*} [options] Override http request option.
|
|
462
|
+
* @throws {RequiredError}
|
|
463
|
+
*/
|
|
464
|
+
modelManagementControllerUpdateMachineModel: (id: string, createMachineModelDto: CreateMachineModelDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
465
|
+
};
|
|
466
|
+
/**
|
|
467
|
+
* ModelsApi - functional programming interface
|
|
468
|
+
* @export
|
|
469
|
+
*/
|
|
470
|
+
export declare const ModelsApiFp: (configuration?: Configuration) => {
|
|
471
|
+
/**
|
|
472
|
+
*
|
|
473
|
+
* @param {CreateMachineModelDto} createMachineModelDto
|
|
474
|
+
* @param {*} [options] Override http request option.
|
|
475
|
+
* @throws {RequiredError}
|
|
476
|
+
*/
|
|
477
|
+
modelManagementControllerCreateNewModel(createMachineModelDto: CreateMachineModelDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
478
|
+
/**
|
|
479
|
+
*
|
|
480
|
+
* @param {string} id
|
|
481
|
+
* @param {*} [options] Override http request option.
|
|
482
|
+
* @throws {RequiredError}
|
|
483
|
+
*/
|
|
484
|
+
modelManagementControllerDeleteModel(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
485
|
+
/**
|
|
486
|
+
*
|
|
487
|
+
* @param {*} [options] Override http request option.
|
|
488
|
+
* @throws {RequiredError}
|
|
489
|
+
*/
|
|
490
|
+
modelManagementControllerGetAllModels(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
491
|
+
/**
|
|
492
|
+
*
|
|
493
|
+
* @param {string} id
|
|
494
|
+
* @param {CreateMachineModelDto} createMachineModelDto
|
|
495
|
+
* @param {*} [options] Override http request option.
|
|
496
|
+
* @throws {RequiredError}
|
|
497
|
+
*/
|
|
498
|
+
modelManagementControllerUpdateMachineModel(id: string, createMachineModelDto: CreateMachineModelDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
499
|
+
};
|
|
500
|
+
/**
|
|
501
|
+
* ModelsApi - factory interface
|
|
502
|
+
* @export
|
|
503
|
+
*/
|
|
504
|
+
export declare const ModelsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
505
|
+
/**
|
|
506
|
+
*
|
|
507
|
+
* @param {CreateMachineModelDto} createMachineModelDto
|
|
508
|
+
* @param {*} [options] Override http request option.
|
|
509
|
+
* @throws {RequiredError}
|
|
510
|
+
*/
|
|
511
|
+
modelManagementControllerCreateNewModel(createMachineModelDto: CreateMachineModelDto, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
512
|
+
/**
|
|
513
|
+
*
|
|
514
|
+
* @param {string} id
|
|
515
|
+
* @param {*} [options] Override http request option.
|
|
516
|
+
* @throws {RequiredError}
|
|
517
|
+
*/
|
|
518
|
+
modelManagementControllerDeleteModel(id: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
519
|
+
/**
|
|
520
|
+
*
|
|
521
|
+
* @param {*} [options] Override http request option.
|
|
522
|
+
* @throws {RequiredError}
|
|
523
|
+
*/
|
|
524
|
+
modelManagementControllerGetAllModels(options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
525
|
+
/**
|
|
526
|
+
*
|
|
527
|
+
* @param {string} id
|
|
528
|
+
* @param {CreateMachineModelDto} createMachineModelDto
|
|
529
|
+
* @param {*} [options] Override http request option.
|
|
530
|
+
* @throws {RequiredError}
|
|
531
|
+
*/
|
|
532
|
+
modelManagementControllerUpdateMachineModel(id: string, createMachineModelDto: CreateMachineModelDto, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
533
|
+
};
|
|
534
|
+
/**
|
|
535
|
+
* ModelsApi - object-oriented interface
|
|
536
|
+
* @export
|
|
537
|
+
* @class ModelsApi
|
|
538
|
+
* @extends {BaseAPI}
|
|
539
|
+
*/
|
|
540
|
+
export declare class ModelsApi extends BaseAPI {
|
|
541
|
+
/**
|
|
542
|
+
*
|
|
543
|
+
* @param {CreateMachineModelDto} createMachineModelDto
|
|
544
|
+
* @param {*} [options] Override http request option.
|
|
545
|
+
* @throws {RequiredError}
|
|
546
|
+
* @memberof ModelsApi
|
|
547
|
+
*/
|
|
548
|
+
modelManagementControllerCreateNewModel(createMachineModelDto: CreateMachineModelDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
549
|
+
/**
|
|
550
|
+
*
|
|
551
|
+
* @param {string} id
|
|
552
|
+
* @param {*} [options] Override http request option.
|
|
553
|
+
* @throws {RequiredError}
|
|
554
|
+
* @memberof ModelsApi
|
|
555
|
+
*/
|
|
556
|
+
modelManagementControllerDeleteModel(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
557
|
+
/**
|
|
558
|
+
*
|
|
559
|
+
* @param {*} [options] Override http request option.
|
|
560
|
+
* @throws {RequiredError}
|
|
561
|
+
* @memberof ModelsApi
|
|
562
|
+
*/
|
|
563
|
+
modelManagementControllerGetAllModels(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
564
|
+
/**
|
|
565
|
+
*
|
|
566
|
+
* @param {string} id
|
|
567
|
+
* @param {CreateMachineModelDto} createMachineModelDto
|
|
568
|
+
* @param {*} [options] Override http request option.
|
|
569
|
+
* @throws {RequiredError}
|
|
570
|
+
* @memberof ModelsApi
|
|
571
|
+
*/
|
|
572
|
+
modelManagementControllerUpdateMachineModel(id: string, createMachineModelDto: CreateMachineModelDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
573
|
+
}
|
|
574
|
+
/**
|
|
575
|
+
* ServerLiveStatusApi - axios parameter creator
|
|
576
|
+
* @export
|
|
577
|
+
*/
|
|
578
|
+
export declare const ServerLiveStatusApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
579
|
+
/**
|
|
580
|
+
*
|
|
581
|
+
* @param {*} [options] Override http request option.
|
|
582
|
+
* @throws {RequiredError}
|
|
583
|
+
*/
|
|
584
|
+
appControllerGetStatus: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
585
|
+
};
|
|
586
|
+
/**
|
|
587
|
+
* ServerLiveStatusApi - functional programming interface
|
|
588
|
+
* @export
|
|
589
|
+
*/
|
|
590
|
+
export declare const ServerLiveStatusApiFp: (configuration?: Configuration) => {
|
|
591
|
+
/**
|
|
592
|
+
*
|
|
593
|
+
* @param {*} [options] Override http request option.
|
|
594
|
+
* @throws {RequiredError}
|
|
595
|
+
*/
|
|
596
|
+
appControllerGetStatus(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
597
|
+
};
|
|
598
|
+
/**
|
|
599
|
+
* ServerLiveStatusApi - factory interface
|
|
600
|
+
* @export
|
|
601
|
+
*/
|
|
602
|
+
export declare const ServerLiveStatusApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
603
|
+
/**
|
|
604
|
+
*
|
|
605
|
+
* @param {*} [options] Override http request option.
|
|
606
|
+
* @throws {RequiredError}
|
|
607
|
+
*/
|
|
608
|
+
appControllerGetStatus(options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
609
|
+
};
|
|
610
|
+
/**
|
|
611
|
+
* ServerLiveStatusApi - object-oriented interface
|
|
612
|
+
* @export
|
|
613
|
+
* @class ServerLiveStatusApi
|
|
614
|
+
* @extends {BaseAPI}
|
|
615
|
+
*/
|
|
616
|
+
export declare class ServerLiveStatusApi extends BaseAPI {
|
|
617
|
+
/**
|
|
618
|
+
*
|
|
619
|
+
* @param {*} [options] Override http request option.
|
|
620
|
+
* @throws {RequiredError}
|
|
621
|
+
* @memberof ServerLiveStatusApi
|
|
622
|
+
*/
|
|
623
|
+
appControllerGetStatus(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
624
|
+
}
|