@mittwald/api-client 4.280.0 → 4.282.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/esm/generated/v2/client-react.js +19 -6
- package/dist/esm/generated/v2/client.js +29 -10
- package/dist/esm/generated/v2/descriptors.js +78 -30
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +98 -36
- package/dist/types/generated/v2/client.d.ts +866 -359
- package/dist/types/generated/v2/descriptors.d.ts +26 -10
- package/dist/types/generated/v2/types.d.ts +1047 -465
- package/dist/types/version.d.ts +1 -1
- package/package.json +4 -4
|
@@ -1,5 +1,816 @@
|
|
|
1
1
|
import { ApiClientBase } from "@mittwald/api-client-commons";
|
|
2
2
|
export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
3
|
+
/** The AI hosting provides access to multiple large language and embedding models – GDPR compliant and hosted in Germany. */
|
|
4
|
+
readonly aiHosting: {
|
|
5
|
+
/** Get a list of already created keys. */
|
|
6
|
+
customerGetKeys: (request: {
|
|
7
|
+
customerId: string;
|
|
8
|
+
headers?: {
|
|
9
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
10
|
+
} | undefined;
|
|
11
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
12
|
+
headers?: Partial<{
|
|
13
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
14
|
+
}>;
|
|
15
|
+
} & {
|
|
16
|
+
pathParameters: {
|
|
17
|
+
customerId: string;
|
|
18
|
+
};
|
|
19
|
+
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingKey[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
20
|
+
[x: string]: unknown;
|
|
21
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
22
|
+
[x: string]: unknown;
|
|
23
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
24
|
+
[x: string]: unknown;
|
|
25
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
26
|
+
[x: string]: unknown;
|
|
27
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
28
|
+
headers?: Partial<{
|
|
29
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
30
|
+
}>;
|
|
31
|
+
} & {
|
|
32
|
+
pathParameters: {
|
|
33
|
+
customerId: string;
|
|
34
|
+
};
|
|
35
|
+
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingKey[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
36
|
+
[x: string]: unknown;
|
|
37
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
38
|
+
[x: string]: unknown;
|
|
39
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
40
|
+
[x: string]: unknown;
|
|
41
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
42
|
+
[x: string]: unknown;
|
|
43
|
+
}, 429, "application/json">>>;
|
|
44
|
+
/** Creates a new key. */
|
|
45
|
+
customerCreateKey: (request: {
|
|
46
|
+
data: {
|
|
47
|
+
name: string;
|
|
48
|
+
createWebuiContainer?: boolean | undefined;
|
|
49
|
+
projectId?: string | undefined;
|
|
50
|
+
};
|
|
51
|
+
customerId: string;
|
|
52
|
+
headers?: {
|
|
53
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
54
|
+
} | undefined;
|
|
55
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
56
|
+
data: {
|
|
57
|
+
createWebuiContainer?: boolean | undefined;
|
|
58
|
+
name: string;
|
|
59
|
+
projectId?: string | undefined;
|
|
60
|
+
};
|
|
61
|
+
} & {
|
|
62
|
+
pathParameters: {
|
|
63
|
+
customerId: string;
|
|
64
|
+
};
|
|
65
|
+
} & {
|
|
66
|
+
headers?: Partial<{
|
|
67
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
68
|
+
}>;
|
|
69
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
70
|
+
containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingContainerMeta | undefined;
|
|
71
|
+
customerId?: string | undefined;
|
|
72
|
+
isBlocked: boolean;
|
|
73
|
+
key: string;
|
|
74
|
+
keyId: string;
|
|
75
|
+
models: string[];
|
|
76
|
+
name: string;
|
|
77
|
+
projectId?: string | undefined;
|
|
78
|
+
rateLimit: import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingRateLimit;
|
|
79
|
+
tokenUsage: import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingTokenUsage;
|
|
80
|
+
}, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
81
|
+
[x: string]: unknown;
|
|
82
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
83
|
+
[x: string]: unknown;
|
|
84
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
85
|
+
[x: string]: unknown;
|
|
86
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
87
|
+
[x: string]: unknown;
|
|
88
|
+
}, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
89
|
+
[x: string]: unknown;
|
|
90
|
+
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
91
|
+
[x: string]: unknown;
|
|
92
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
93
|
+
data: {
|
|
94
|
+
createWebuiContainer?: boolean | undefined;
|
|
95
|
+
name: string;
|
|
96
|
+
projectId?: string | undefined;
|
|
97
|
+
};
|
|
98
|
+
} & {
|
|
99
|
+
pathParameters: {
|
|
100
|
+
customerId: string;
|
|
101
|
+
};
|
|
102
|
+
} & {
|
|
103
|
+
headers?: Partial<{
|
|
104
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
105
|
+
}>;
|
|
106
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
107
|
+
containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingContainerMeta | undefined;
|
|
108
|
+
customerId?: string | undefined;
|
|
109
|
+
isBlocked: boolean;
|
|
110
|
+
key: string;
|
|
111
|
+
keyId: string;
|
|
112
|
+
models: string[];
|
|
113
|
+
name: string;
|
|
114
|
+
projectId?: string | undefined;
|
|
115
|
+
rateLimit: import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingRateLimit;
|
|
116
|
+
tokenUsage: import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingTokenUsage;
|
|
117
|
+
}, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
118
|
+
[x: string]: unknown;
|
|
119
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
120
|
+
[x: string]: unknown;
|
|
121
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
122
|
+
[x: string]: unknown;
|
|
123
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
124
|
+
[x: string]: unknown;
|
|
125
|
+
}, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
126
|
+
[x: string]: unknown;
|
|
127
|
+
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
128
|
+
[x: string]: unknown;
|
|
129
|
+
}, 429, "application/json">>>;
|
|
130
|
+
/** Get a key of a customer. */
|
|
131
|
+
customerGetKey: (request: {
|
|
132
|
+
customerId: string;
|
|
133
|
+
keyId: string;
|
|
134
|
+
headers?: {
|
|
135
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
136
|
+
} | undefined;
|
|
137
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
138
|
+
headers?: Partial<{
|
|
139
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
140
|
+
}>;
|
|
141
|
+
} & {
|
|
142
|
+
pathParameters: {
|
|
143
|
+
customerId: string;
|
|
144
|
+
keyId: string;
|
|
145
|
+
};
|
|
146
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
147
|
+
containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingContainerMeta | undefined;
|
|
148
|
+
customerId?: string | undefined;
|
|
149
|
+
isBlocked: boolean;
|
|
150
|
+
key: string;
|
|
151
|
+
keyId: string;
|
|
152
|
+
models: string[];
|
|
153
|
+
name: string;
|
|
154
|
+
projectId?: string | undefined;
|
|
155
|
+
rateLimit: import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingRateLimit;
|
|
156
|
+
tokenUsage: import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingTokenUsage;
|
|
157
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
158
|
+
[x: string]: unknown;
|
|
159
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
160
|
+
[x: string]: unknown;
|
|
161
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
162
|
+
[x: string]: unknown;
|
|
163
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
164
|
+
[x: string]: unknown;
|
|
165
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
166
|
+
headers?: Partial<{
|
|
167
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
168
|
+
}>;
|
|
169
|
+
} & {
|
|
170
|
+
pathParameters: {
|
|
171
|
+
customerId: string;
|
|
172
|
+
keyId: string;
|
|
173
|
+
};
|
|
174
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
175
|
+
containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingContainerMeta | undefined;
|
|
176
|
+
customerId?: string | undefined;
|
|
177
|
+
isBlocked: boolean;
|
|
178
|
+
key: string;
|
|
179
|
+
keyId: string;
|
|
180
|
+
models: string[];
|
|
181
|
+
name: string;
|
|
182
|
+
projectId?: string | undefined;
|
|
183
|
+
rateLimit: import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingRateLimit;
|
|
184
|
+
tokenUsage: import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingTokenUsage;
|
|
185
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
186
|
+
[x: string]: unknown;
|
|
187
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
188
|
+
[x: string]: unknown;
|
|
189
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
190
|
+
[x: string]: unknown;
|
|
191
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
192
|
+
[x: string]: unknown;
|
|
193
|
+
}, 429, "application/json">>>;
|
|
194
|
+
/** Update a key for a customer. */
|
|
195
|
+
customerUpdateKey: (request: {
|
|
196
|
+
customerId: string;
|
|
197
|
+
keyId: string;
|
|
198
|
+
data?: {
|
|
199
|
+
createWebuiContainer?: boolean | undefined;
|
|
200
|
+
name?: string | undefined;
|
|
201
|
+
projectId?: string | undefined;
|
|
202
|
+
} | undefined;
|
|
203
|
+
headers?: {
|
|
204
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
205
|
+
} | undefined;
|
|
206
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
207
|
+
data: {
|
|
208
|
+
createWebuiContainer?: boolean | undefined;
|
|
209
|
+
name?: string | undefined;
|
|
210
|
+
projectId?: string | undefined;
|
|
211
|
+
};
|
|
212
|
+
} & {
|
|
213
|
+
pathParameters: {
|
|
214
|
+
customerId: string;
|
|
215
|
+
keyId: string;
|
|
216
|
+
};
|
|
217
|
+
} & {
|
|
218
|
+
headers?: Partial<{
|
|
219
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
220
|
+
}>;
|
|
221
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
222
|
+
containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingContainerMeta | undefined;
|
|
223
|
+
customerId?: string | undefined;
|
|
224
|
+
isBlocked: boolean;
|
|
225
|
+
key: string;
|
|
226
|
+
keyId: string;
|
|
227
|
+
models: string[];
|
|
228
|
+
name: string;
|
|
229
|
+
projectId?: string | undefined;
|
|
230
|
+
rateLimit: import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingRateLimit;
|
|
231
|
+
tokenUsage: import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingTokenUsage;
|
|
232
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
233
|
+
[x: string]: unknown;
|
|
234
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
235
|
+
[x: string]: unknown;
|
|
236
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
237
|
+
[x: string]: unknown;
|
|
238
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
239
|
+
[x: string]: unknown;
|
|
240
|
+
}, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
241
|
+
[x: string]: unknown;
|
|
242
|
+
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
243
|
+
[x: string]: unknown;
|
|
244
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
245
|
+
data: {
|
|
246
|
+
createWebuiContainer?: boolean | undefined;
|
|
247
|
+
name?: string | undefined;
|
|
248
|
+
projectId?: string | undefined;
|
|
249
|
+
};
|
|
250
|
+
} & {
|
|
251
|
+
pathParameters: {
|
|
252
|
+
customerId: string;
|
|
253
|
+
keyId: string;
|
|
254
|
+
};
|
|
255
|
+
} & {
|
|
256
|
+
headers?: Partial<{
|
|
257
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
258
|
+
}>;
|
|
259
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
260
|
+
containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingContainerMeta | undefined;
|
|
261
|
+
customerId?: string | undefined;
|
|
262
|
+
isBlocked: boolean;
|
|
263
|
+
key: string;
|
|
264
|
+
keyId: string;
|
|
265
|
+
models: string[];
|
|
266
|
+
name: string;
|
|
267
|
+
projectId?: string | undefined;
|
|
268
|
+
rateLimit: import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingRateLimit;
|
|
269
|
+
tokenUsage: import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingTokenUsage;
|
|
270
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
271
|
+
[x: string]: unknown;
|
|
272
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
273
|
+
[x: string]: unknown;
|
|
274
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
275
|
+
[x: string]: unknown;
|
|
276
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
277
|
+
[x: string]: unknown;
|
|
278
|
+
}, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
279
|
+
[x: string]: unknown;
|
|
280
|
+
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
281
|
+
[x: string]: unknown;
|
|
282
|
+
}, 429, "application/json">>>;
|
|
283
|
+
/** Delete a key for a customer. */
|
|
284
|
+
customerDeleteKey: (request: {
|
|
285
|
+
customerId: string;
|
|
286
|
+
keyId: string;
|
|
287
|
+
headers?: {
|
|
288
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
289
|
+
} | undefined;
|
|
290
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
291
|
+
headers?: Partial<{
|
|
292
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
293
|
+
}>;
|
|
294
|
+
} & {
|
|
295
|
+
pathParameters: {
|
|
296
|
+
customerId: string;
|
|
297
|
+
keyId: string;
|
|
298
|
+
};
|
|
299
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
300
|
+
[x: string]: unknown;
|
|
301
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
302
|
+
[x: string]: unknown;
|
|
303
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
304
|
+
[x: string]: unknown;
|
|
305
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
306
|
+
[x: string]: unknown;
|
|
307
|
+
}, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
308
|
+
[x: string]: unknown;
|
|
309
|
+
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
310
|
+
[x: string]: unknown;
|
|
311
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
312
|
+
headers?: Partial<{
|
|
313
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
314
|
+
}>;
|
|
315
|
+
} & {
|
|
316
|
+
pathParameters: {
|
|
317
|
+
customerId: string;
|
|
318
|
+
keyId: string;
|
|
319
|
+
};
|
|
320
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
321
|
+
[x: string]: unknown;
|
|
322
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
323
|
+
[x: string]: unknown;
|
|
324
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
325
|
+
[x: string]: unknown;
|
|
326
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
327
|
+
[x: string]: unknown;
|
|
328
|
+
}, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
329
|
+
[x: string]: unknown;
|
|
330
|
+
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
331
|
+
[x: string]: unknown;
|
|
332
|
+
}, 429, "application/json">>>;
|
|
333
|
+
/** Get ai hosting plan and usages of a customer. */
|
|
334
|
+
customerGetUsage: (request: {
|
|
335
|
+
customerId: string;
|
|
336
|
+
headers?: {
|
|
337
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
338
|
+
} | undefined;
|
|
339
|
+
queryParameters?: {
|
|
340
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
341
|
+
topUsageCount?: number | undefined;
|
|
342
|
+
} | undefined;
|
|
343
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
344
|
+
headers?: Partial<{
|
|
345
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
346
|
+
}>;
|
|
347
|
+
} & {
|
|
348
|
+
pathParameters: {
|
|
349
|
+
customerId: string;
|
|
350
|
+
};
|
|
351
|
+
} & {
|
|
352
|
+
queryParameters: {
|
|
353
|
+
topUsageCount?: number | undefined;
|
|
354
|
+
} & Partial<{
|
|
355
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
356
|
+
}>;
|
|
357
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
358
|
+
customerId: string;
|
|
359
|
+
deletedAt?: string | undefined;
|
|
360
|
+
keys: import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingPlanUsage;
|
|
361
|
+
nextTokenReset: string;
|
|
362
|
+
rateLimit: import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingRateLimit;
|
|
363
|
+
tokens: import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingPlanUsageBig;
|
|
364
|
+
topUsages?: {
|
|
365
|
+
keyId?: string;
|
|
366
|
+
name: string;
|
|
367
|
+
projectId?: string;
|
|
368
|
+
tokenUsed: number;
|
|
369
|
+
}[] | undefined;
|
|
370
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
371
|
+
[x: string]: unknown;
|
|
372
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
373
|
+
[x: string]: unknown;
|
|
374
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
375
|
+
[x: string]: unknown;
|
|
376
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
377
|
+
[x: string]: unknown;
|
|
378
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
379
|
+
headers?: Partial<{
|
|
380
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
381
|
+
}>;
|
|
382
|
+
} & {
|
|
383
|
+
pathParameters: {
|
|
384
|
+
customerId: string;
|
|
385
|
+
};
|
|
386
|
+
} & {
|
|
387
|
+
queryParameters: {
|
|
388
|
+
topUsageCount?: number | undefined;
|
|
389
|
+
} & Partial<{
|
|
390
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
391
|
+
}>;
|
|
392
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
393
|
+
customerId: string;
|
|
394
|
+
deletedAt?: string | undefined;
|
|
395
|
+
keys: import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingPlanUsage;
|
|
396
|
+
nextTokenReset: string;
|
|
397
|
+
rateLimit: import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingRateLimit;
|
|
398
|
+
tokens: import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingPlanUsageBig;
|
|
399
|
+
topUsages?: {
|
|
400
|
+
keyId?: string;
|
|
401
|
+
name: string;
|
|
402
|
+
projectId?: string;
|
|
403
|
+
tokenUsed: number;
|
|
404
|
+
}[] | undefined;
|
|
405
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
406
|
+
[x: string]: unknown;
|
|
407
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
408
|
+
[x: string]: unknown;
|
|
409
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
410
|
+
[x: string]: unknown;
|
|
411
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
412
|
+
[x: string]: unknown;
|
|
413
|
+
}, 429, "application/json">>>;
|
|
414
|
+
/** Get a list of currently active models. */
|
|
415
|
+
getModels: (request?: {
|
|
416
|
+
headers?: {
|
|
417
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
418
|
+
} | undefined;
|
|
419
|
+
} | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
420
|
+
headers?: Partial<{
|
|
421
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
422
|
+
}>;
|
|
423
|
+
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingModel[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
424
|
+
[x: string]: unknown;
|
|
425
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
426
|
+
[x: string]: unknown;
|
|
427
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
428
|
+
[x: string]: unknown;
|
|
429
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
430
|
+
[x: string]: unknown;
|
|
431
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
432
|
+
headers?: Partial<{
|
|
433
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
434
|
+
}>;
|
|
435
|
+
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingModel[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
436
|
+
[x: string]: unknown;
|
|
437
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
438
|
+
[x: string]: unknown;
|
|
439
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
440
|
+
[x: string]: unknown;
|
|
441
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
442
|
+
[x: string]: unknown;
|
|
443
|
+
}, 429, "application/json">>>;
|
|
444
|
+
/** Get a list of keys of a project. */
|
|
445
|
+
projectGetKeys: (request: {
|
|
446
|
+
projectId: string;
|
|
447
|
+
headers?: {
|
|
448
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
449
|
+
} | undefined;
|
|
450
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
451
|
+
headers?: Partial<{
|
|
452
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
453
|
+
}>;
|
|
454
|
+
} & {
|
|
455
|
+
pathParameters: {
|
|
456
|
+
projectId: string;
|
|
457
|
+
};
|
|
458
|
+
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingKey[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
459
|
+
[x: string]: unknown;
|
|
460
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
461
|
+
[x: string]: unknown;
|
|
462
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
463
|
+
[x: string]: unknown;
|
|
464
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
465
|
+
[x: string]: unknown;
|
|
466
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
467
|
+
headers?: Partial<{
|
|
468
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
469
|
+
}>;
|
|
470
|
+
} & {
|
|
471
|
+
pathParameters: {
|
|
472
|
+
projectId: string;
|
|
473
|
+
};
|
|
474
|
+
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingKey[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
475
|
+
[x: string]: unknown;
|
|
476
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
477
|
+
[x: string]: unknown;
|
|
478
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
479
|
+
[x: string]: unknown;
|
|
480
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
481
|
+
[x: string]: unknown;
|
|
482
|
+
}, 429, "application/json">>>;
|
|
483
|
+
/** Creates a new key for a project. */
|
|
484
|
+
projectCreateKey: (request: {
|
|
485
|
+
data: {
|
|
486
|
+
name: string;
|
|
487
|
+
createWebuiContainer?: boolean | undefined;
|
|
488
|
+
};
|
|
489
|
+
projectId: string;
|
|
490
|
+
headers?: {
|
|
491
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
492
|
+
} | undefined;
|
|
493
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
494
|
+
data: {
|
|
495
|
+
createWebuiContainer?: boolean | undefined;
|
|
496
|
+
name: string;
|
|
497
|
+
};
|
|
498
|
+
} & {
|
|
499
|
+
pathParameters: {
|
|
500
|
+
projectId: string;
|
|
501
|
+
};
|
|
502
|
+
} & {
|
|
503
|
+
headers?: Partial<{
|
|
504
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
505
|
+
}>;
|
|
506
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
507
|
+
containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingContainerMeta | undefined;
|
|
508
|
+
customerId?: string | undefined;
|
|
509
|
+
isBlocked: boolean;
|
|
510
|
+
key: string;
|
|
511
|
+
keyId: string;
|
|
512
|
+
models: string[];
|
|
513
|
+
name: string;
|
|
514
|
+
projectId?: string | undefined;
|
|
515
|
+
rateLimit: import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingRateLimit;
|
|
516
|
+
tokenUsage: import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingTokenUsage;
|
|
517
|
+
}, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
518
|
+
[x: string]: unknown;
|
|
519
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
520
|
+
[x: string]: unknown;
|
|
521
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
522
|
+
[x: string]: unknown;
|
|
523
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
524
|
+
[x: string]: unknown;
|
|
525
|
+
}, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
526
|
+
[x: string]: unknown;
|
|
527
|
+
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
528
|
+
[x: string]: unknown;
|
|
529
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
530
|
+
data: {
|
|
531
|
+
createWebuiContainer?: boolean | undefined;
|
|
532
|
+
name: string;
|
|
533
|
+
};
|
|
534
|
+
} & {
|
|
535
|
+
pathParameters: {
|
|
536
|
+
projectId: string;
|
|
537
|
+
};
|
|
538
|
+
} & {
|
|
539
|
+
headers?: Partial<{
|
|
540
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
541
|
+
}>;
|
|
542
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
543
|
+
containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingContainerMeta | undefined;
|
|
544
|
+
customerId?: string | undefined;
|
|
545
|
+
isBlocked: boolean;
|
|
546
|
+
key: string;
|
|
547
|
+
keyId: string;
|
|
548
|
+
models: string[];
|
|
549
|
+
name: string;
|
|
550
|
+
projectId?: string | undefined;
|
|
551
|
+
rateLimit: import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingRateLimit;
|
|
552
|
+
tokenUsage: import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingTokenUsage;
|
|
553
|
+
}, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
554
|
+
[x: string]: unknown;
|
|
555
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
556
|
+
[x: string]: unknown;
|
|
557
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
558
|
+
[x: string]: unknown;
|
|
559
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
560
|
+
[x: string]: unknown;
|
|
561
|
+
}, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
562
|
+
[x: string]: unknown;
|
|
563
|
+
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
564
|
+
[x: string]: unknown;
|
|
565
|
+
}, 429, "application/json">>>;
|
|
566
|
+
/** Get a key of a project. */
|
|
567
|
+
projectGetKey: (request: {
|
|
568
|
+
projectId: string;
|
|
569
|
+
keyId: string;
|
|
570
|
+
headers?: {
|
|
571
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
572
|
+
} | undefined;
|
|
573
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
574
|
+
headers?: Partial<{
|
|
575
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
576
|
+
}>;
|
|
577
|
+
} & {
|
|
578
|
+
pathParameters: {
|
|
579
|
+
projectId: string;
|
|
580
|
+
keyId: string;
|
|
581
|
+
};
|
|
582
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
583
|
+
containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingContainerMeta | undefined;
|
|
584
|
+
customerId?: string | undefined;
|
|
585
|
+
isBlocked: boolean;
|
|
586
|
+
key: string;
|
|
587
|
+
keyId: string;
|
|
588
|
+
models: string[];
|
|
589
|
+
name: string;
|
|
590
|
+
projectId?: string | undefined;
|
|
591
|
+
rateLimit: import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingRateLimit;
|
|
592
|
+
tokenUsage: import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingTokenUsage;
|
|
593
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
594
|
+
[x: string]: unknown;
|
|
595
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
596
|
+
[x: string]: unknown;
|
|
597
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
598
|
+
[x: string]: unknown;
|
|
599
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
600
|
+
[x: string]: unknown;
|
|
601
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
602
|
+
headers?: Partial<{
|
|
603
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
604
|
+
}>;
|
|
605
|
+
} & {
|
|
606
|
+
pathParameters: {
|
|
607
|
+
projectId: string;
|
|
608
|
+
keyId: string;
|
|
609
|
+
};
|
|
610
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
611
|
+
containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingContainerMeta | undefined;
|
|
612
|
+
customerId?: string | undefined;
|
|
613
|
+
isBlocked: boolean;
|
|
614
|
+
key: string;
|
|
615
|
+
keyId: string;
|
|
616
|
+
models: string[];
|
|
617
|
+
name: string;
|
|
618
|
+
projectId?: string | undefined;
|
|
619
|
+
rateLimit: import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingRateLimit;
|
|
620
|
+
tokenUsage: import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingTokenUsage;
|
|
621
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
622
|
+
[x: string]: unknown;
|
|
623
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
624
|
+
[x: string]: unknown;
|
|
625
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
626
|
+
[x: string]: unknown;
|
|
627
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
628
|
+
[x: string]: unknown;
|
|
629
|
+
}, 429, "application/json">>>;
|
|
630
|
+
/** Update a key for a project. */
|
|
631
|
+
projectUpdateKey: (request: {
|
|
632
|
+
projectId: string;
|
|
633
|
+
keyId: string;
|
|
634
|
+
data?: {
|
|
635
|
+
createWebuiContainer?: boolean | undefined;
|
|
636
|
+
name?: string | undefined;
|
|
637
|
+
} | undefined;
|
|
638
|
+
headers?: {
|
|
639
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
640
|
+
} | undefined;
|
|
641
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
642
|
+
data: {
|
|
643
|
+
createWebuiContainer?: boolean | undefined;
|
|
644
|
+
name?: string | undefined;
|
|
645
|
+
};
|
|
646
|
+
} & {
|
|
647
|
+
pathParameters: {
|
|
648
|
+
projectId: string;
|
|
649
|
+
keyId: string;
|
|
650
|
+
};
|
|
651
|
+
} & {
|
|
652
|
+
headers?: Partial<{
|
|
653
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
654
|
+
}>;
|
|
655
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
656
|
+
containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingContainerMeta | undefined;
|
|
657
|
+
customerId?: string | undefined;
|
|
658
|
+
isBlocked: boolean;
|
|
659
|
+
key: string;
|
|
660
|
+
keyId: string;
|
|
661
|
+
models: string[];
|
|
662
|
+
name: string;
|
|
663
|
+
projectId?: string | undefined;
|
|
664
|
+
rateLimit: import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingRateLimit;
|
|
665
|
+
tokenUsage: import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingTokenUsage;
|
|
666
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
667
|
+
[x: string]: unknown;
|
|
668
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
669
|
+
[x: string]: unknown;
|
|
670
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
671
|
+
[x: string]: unknown;
|
|
672
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
673
|
+
[x: string]: unknown;
|
|
674
|
+
}, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
675
|
+
[x: string]: unknown;
|
|
676
|
+
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
677
|
+
[x: string]: unknown;
|
|
678
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
679
|
+
data: {
|
|
680
|
+
createWebuiContainer?: boolean | undefined;
|
|
681
|
+
name?: string | undefined;
|
|
682
|
+
};
|
|
683
|
+
} & {
|
|
684
|
+
pathParameters: {
|
|
685
|
+
projectId: string;
|
|
686
|
+
keyId: string;
|
|
687
|
+
};
|
|
688
|
+
} & {
|
|
689
|
+
headers?: Partial<{
|
|
690
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
691
|
+
}>;
|
|
692
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
693
|
+
containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingContainerMeta | undefined;
|
|
694
|
+
customerId?: string | undefined;
|
|
695
|
+
isBlocked: boolean;
|
|
696
|
+
key: string;
|
|
697
|
+
keyId: string;
|
|
698
|
+
models: string[];
|
|
699
|
+
name: string;
|
|
700
|
+
projectId?: string | undefined;
|
|
701
|
+
rateLimit: import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingRateLimit;
|
|
702
|
+
tokenUsage: import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingTokenUsage;
|
|
703
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
704
|
+
[x: string]: unknown;
|
|
705
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
706
|
+
[x: string]: unknown;
|
|
707
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
708
|
+
[x: string]: unknown;
|
|
709
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
710
|
+
[x: string]: unknown;
|
|
711
|
+
}, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
712
|
+
[x: string]: unknown;
|
|
713
|
+
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
714
|
+
[x: string]: unknown;
|
|
715
|
+
}, 429, "application/json">>>;
|
|
716
|
+
/** Delete a key for a project. */
|
|
717
|
+
projectDeleteKey: (request: {
|
|
718
|
+
projectId: string;
|
|
719
|
+
keyId: string;
|
|
720
|
+
headers?: {
|
|
721
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
722
|
+
} | undefined;
|
|
723
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
724
|
+
headers?: Partial<{
|
|
725
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
726
|
+
}>;
|
|
727
|
+
} & {
|
|
728
|
+
pathParameters: {
|
|
729
|
+
projectId: string;
|
|
730
|
+
keyId: string;
|
|
731
|
+
};
|
|
732
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
733
|
+
[x: string]: unknown;
|
|
734
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
735
|
+
[x: string]: unknown;
|
|
736
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
737
|
+
[x: string]: unknown;
|
|
738
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
739
|
+
[x: string]: unknown;
|
|
740
|
+
}, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
741
|
+
[x: string]: unknown;
|
|
742
|
+
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
743
|
+
[x: string]: unknown;
|
|
744
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
745
|
+
headers?: Partial<{
|
|
746
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
747
|
+
}>;
|
|
748
|
+
} & {
|
|
749
|
+
pathParameters: {
|
|
750
|
+
projectId: string;
|
|
751
|
+
keyId: string;
|
|
752
|
+
};
|
|
753
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
754
|
+
[x: string]: unknown;
|
|
755
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
756
|
+
[x: string]: unknown;
|
|
757
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
758
|
+
[x: string]: unknown;
|
|
759
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
760
|
+
[x: string]: unknown;
|
|
761
|
+
}, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
762
|
+
[x: string]: unknown;
|
|
763
|
+
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
764
|
+
[x: string]: unknown;
|
|
765
|
+
}, 429, "application/json">>>;
|
|
766
|
+
/** Get ai hosting plan and usages of a project. Same as the customer route, but less details. */
|
|
767
|
+
projectGetUsage: (request: {
|
|
768
|
+
projectId: string;
|
|
769
|
+
headers?: {
|
|
770
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
771
|
+
} | undefined;
|
|
772
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
773
|
+
headers?: Partial<{
|
|
774
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
775
|
+
}>;
|
|
776
|
+
} & {
|
|
777
|
+
pathParameters: {
|
|
778
|
+
projectId: string;
|
|
779
|
+
};
|
|
780
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
781
|
+
keys: import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingPlanUsage;
|
|
782
|
+
nextTokenReset?: string | undefined;
|
|
783
|
+
projectId: string;
|
|
784
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
785
|
+
[x: string]: unknown;
|
|
786
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
787
|
+
[x: string]: unknown;
|
|
788
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
789
|
+
[x: string]: unknown;
|
|
790
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
791
|
+
[x: string]: unknown;
|
|
792
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
793
|
+
headers?: Partial<{
|
|
794
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
795
|
+
}>;
|
|
796
|
+
} & {
|
|
797
|
+
pathParameters: {
|
|
798
|
+
projectId: string;
|
|
799
|
+
};
|
|
800
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
801
|
+
keys: import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingPlanUsage;
|
|
802
|
+
nextTokenReset?: string | undefined;
|
|
803
|
+
projectId: string;
|
|
804
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
805
|
+
[x: string]: unknown;
|
|
806
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
807
|
+
[x: string]: unknown;
|
|
808
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
809
|
+
[x: string]: unknown;
|
|
810
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
811
|
+
[x: string]: unknown;
|
|
812
|
+
}, 429, "application/json">>>;
|
|
813
|
+
};
|
|
3
814
|
/** The App API allows you to manage your apps within a project, and all the system softwares that are installed as dependencies. */
|
|
4
815
|
readonly app: {
|
|
5
816
|
/** Trigger a runtime action belonging to an AppInstallation. */
|
|
@@ -1454,7 +2265,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
1454
2265
|
} | undefined;
|
|
1455
2266
|
modifierArticles?: import("./types.js").MittwaldAPIV2.Components.Schemas.ArticleReadableModifierArticleOptions[] | undefined;
|
|
1456
2267
|
name: string;
|
|
1457
|
-
orderable: "
|
|
2268
|
+
orderable: "full" | "forbidden" | "internal" | "beta_testing" | "deprecated";
|
|
1458
2269
|
possibleArticleChanges?: import("./types.js").MittwaldAPIV2.Components.Schemas.ArticleReadableChangeArticleOptions[] | undefined;
|
|
1459
2270
|
price?: number | undefined;
|
|
1460
2271
|
tags?: import("./types.js").MittwaldAPIV2.Components.Schemas.ArticleArticleTag[] | undefined;
|
|
@@ -1494,7 +2305,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
1494
2305
|
} | undefined;
|
|
1495
2306
|
modifierArticles?: import("./types.js").MittwaldAPIV2.Components.Schemas.ArticleReadableModifierArticleOptions[] | undefined;
|
|
1496
2307
|
name: string;
|
|
1497
|
-
orderable: "
|
|
2308
|
+
orderable: "full" | "forbidden" | "internal" | "beta_testing" | "deprecated";
|
|
1498
2309
|
possibleArticleChanges?: import("./types.js").MittwaldAPIV2.Components.Schemas.ArticleReadableChangeArticleOptions[] | undefined;
|
|
1499
2310
|
price?: number | undefined;
|
|
1500
2311
|
tags?: import("./types.js").MittwaldAPIV2.Components.Schemas.ArticleArticleTag[] | undefined;
|
|
@@ -6010,8 +6821,13 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6010
6821
|
} | {
|
|
6011
6822
|
mailAddressId: string;
|
|
6012
6823
|
syncExistingMails?: boolean | undefined;
|
|
6824
|
+
} | {
|
|
6825
|
+
customerId: string;
|
|
6826
|
+
monthlyTokens: number;
|
|
6827
|
+
requestsPerMinute: number;
|
|
6828
|
+
useFreeTrial?: boolean | undefined;
|
|
6013
6829
|
} | undefined;
|
|
6014
|
-
orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr" | "mailArchive" | undefined;
|
|
6830
|
+
orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr" | "mailArchive" | "aiHosting" | undefined;
|
|
6015
6831
|
} | undefined;
|
|
6016
6832
|
headers?: {
|
|
6017
6833
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
@@ -6019,8 +6835,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6019
6835
|
} | undefined;
|
|
6020
6836
|
} | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
6021
6837
|
data: {
|
|
6022
|
-
orderData?: (import("./types.js").MittwaldAPIV2.Components.Schemas.OrderProjectHostingOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderServerOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderDomainOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderExternalCertificateOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderLeadFyndrOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderMailArchiveOrder) | undefined;
|
|
6023
|
-
orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr" | "mailArchive" | undefined;
|
|
6838
|
+
orderData?: (import("./types.js").MittwaldAPIV2.Components.Schemas.OrderProjectHostingOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderServerOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderDomainOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderExternalCertificateOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderLeadFyndrOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderMailArchiveOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderAIHostingOrder) | undefined;
|
|
6839
|
+
orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr" | "mailArchive" | "aiHosting" | undefined;
|
|
6024
6840
|
};
|
|
6025
6841
|
} & {
|
|
6026
6842
|
headers?: Partial<{
|
|
@@ -6042,8 +6858,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6042
6858
|
[x: string]: unknown;
|
|
6043
6859
|
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
6044
6860
|
data: {
|
|
6045
|
-
orderData?: (import("./types.js").MittwaldAPIV2.Components.Schemas.OrderProjectHostingOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderServerOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderDomainOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderExternalCertificateOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderLeadFyndrOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderMailArchiveOrder) | undefined;
|
|
6046
|
-
orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr" | "mailArchive" | undefined;
|
|
6861
|
+
orderData?: (import("./types.js").MittwaldAPIV2.Components.Schemas.OrderProjectHostingOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderServerOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderDomainOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderExternalCertificateOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderLeadFyndrOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderMailArchiveOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderAIHostingOrder) | undefined;
|
|
6862
|
+
orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr" | "mailArchive" | "aiHosting" | undefined;
|
|
6047
6863
|
};
|
|
6048
6864
|
} & {
|
|
6049
6865
|
headers?: Partial<{
|
|
@@ -6084,8 +6900,12 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6084
6900
|
contractId: string;
|
|
6085
6901
|
reservationLimit: number;
|
|
6086
6902
|
unlockLimit: number;
|
|
6903
|
+
} | {
|
|
6904
|
+
contractId: string;
|
|
6905
|
+
monthlyTokens: number;
|
|
6906
|
+
requestsPerMinute: number;
|
|
6087
6907
|
} | undefined;
|
|
6088
|
-
tariffChangeType?: "projectHosting" | "server" | "leadFyndr" | undefined;
|
|
6908
|
+
tariffChangeType?: "projectHosting" | "server" | "leadFyndr" | "aiHosting" | undefined;
|
|
6089
6909
|
} | undefined;
|
|
6090
6910
|
headers?: {
|
|
6091
6911
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
@@ -6093,8 +6913,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6093
6913
|
} | undefined;
|
|
6094
6914
|
} | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
6095
6915
|
data: {
|
|
6096
|
-
tariffChangeData?: (import("./types.js").MittwaldAPIV2.Components.Schemas.OrderProjectHostingTariffChange | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderServerTariffChange | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderLeadFyndrTariffChange) | undefined;
|
|
6097
|
-
tariffChangeType?: "projectHosting" | "server" | "leadFyndr" | undefined;
|
|
6916
|
+
tariffChangeData?: (import("./types.js").MittwaldAPIV2.Components.Schemas.OrderProjectHostingTariffChange | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderServerTariffChange | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderLeadFyndrTariffChange | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderAIHostingTariffChange) | undefined;
|
|
6917
|
+
tariffChangeType?: "projectHosting" | "server" | "leadFyndr" | "aiHosting" | undefined;
|
|
6098
6918
|
};
|
|
6099
6919
|
} & {
|
|
6100
6920
|
headers?: Partial<{
|
|
@@ -6114,8 +6934,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6114
6934
|
[x: string]: unknown;
|
|
6115
6935
|
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
6116
6936
|
data: {
|
|
6117
|
-
tariffChangeData?: (import("./types.js").MittwaldAPIV2.Components.Schemas.OrderProjectHostingTariffChange | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderServerTariffChange | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderLeadFyndrTariffChange) | undefined;
|
|
6118
|
-
tariffChangeType?: "projectHosting" | "server" | "leadFyndr" | undefined;
|
|
6937
|
+
tariffChangeData?: (import("./types.js").MittwaldAPIV2.Components.Schemas.OrderProjectHostingTariffChange | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderServerTariffChange | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderLeadFyndrTariffChange | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderAIHostingTariffChange) | undefined;
|
|
6938
|
+
tariffChangeType?: "projectHosting" | "server" | "leadFyndr" | "aiHosting" | undefined;
|
|
6119
6939
|
};
|
|
6120
6940
|
} & {
|
|
6121
6941
|
headers?: Partial<{
|
|
@@ -6375,16 +7195,19 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6375
7195
|
} | {
|
|
6376
7196
|
mailAddressId: string;
|
|
6377
7197
|
syncExistingMails?: boolean | undefined;
|
|
7198
|
+
} | {
|
|
7199
|
+
monthlyTokens: number;
|
|
7200
|
+
requestsPerMinute: number;
|
|
6378
7201
|
} | undefined;
|
|
6379
|
-
orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr" | "mailArchive" | undefined;
|
|
7202
|
+
orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr" | "mailArchive" | "aiHosting" | undefined;
|
|
6380
7203
|
} | undefined;
|
|
6381
7204
|
headers?: {
|
|
6382
7205
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
6383
7206
|
} | undefined;
|
|
6384
7207
|
} | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
6385
7208
|
data: {
|
|
6386
|
-
orderData?: (import("./types.js").MittwaldAPIV2.Components.Schemas.OrderProjectHostingOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderServerOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderDomainOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderExternalCertificateOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderLeadFyndrOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderMailArchiveOrderPreview) | undefined;
|
|
6387
|
-
orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr" | "mailArchive" | undefined;
|
|
7209
|
+
orderData?: (import("./types.js").MittwaldAPIV2.Components.Schemas.OrderProjectHostingOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderServerOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderDomainOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderExternalCertificateOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderLeadFyndrOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderMailArchiveOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderAIHostingOrderPreview) | undefined;
|
|
7210
|
+
orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr" | "mailArchive" | "aiHosting" | undefined;
|
|
6388
7211
|
};
|
|
6389
7212
|
} & {
|
|
6390
7213
|
headers?: Partial<{
|
|
@@ -6398,8 +7221,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6398
7221
|
[x: string]: unknown;
|
|
6399
7222
|
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
6400
7223
|
data: {
|
|
6401
|
-
orderData?: (import("./types.js").MittwaldAPIV2.Components.Schemas.OrderProjectHostingOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderServerOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderDomainOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderExternalCertificateOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderLeadFyndrOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderMailArchiveOrderPreview) | undefined;
|
|
6402
|
-
orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr" | "mailArchive" | undefined;
|
|
7224
|
+
orderData?: (import("./types.js").MittwaldAPIV2.Components.Schemas.OrderProjectHostingOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderServerOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderDomainOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderExternalCertificateOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderLeadFyndrOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderMailArchiveOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderAIHostingOrderPreview) | undefined;
|
|
7225
|
+
orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr" | "mailArchive" | "aiHosting" | undefined;
|
|
6403
7226
|
};
|
|
6404
7227
|
} & {
|
|
6405
7228
|
headers?: Partial<{
|
|
@@ -6432,8 +7255,12 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6432
7255
|
contractId: string;
|
|
6433
7256
|
reservationLimit: number;
|
|
6434
7257
|
unlockLimit: number;
|
|
7258
|
+
} | {
|
|
7259
|
+
contractId: string;
|
|
7260
|
+
monthlyTokens: number;
|
|
7261
|
+
requestsPerMinute: number;
|
|
6435
7262
|
} | undefined;
|
|
6436
|
-
tariffChangeType?: "projectHosting" | "server" | "leadFyndr" | undefined;
|
|
7263
|
+
tariffChangeType?: "projectHosting" | "server" | "leadFyndr" | "aiHosting" | undefined;
|
|
6437
7264
|
} | undefined;
|
|
6438
7265
|
headers?: {
|
|
6439
7266
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
@@ -6441,8 +7268,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6441
7268
|
} | undefined;
|
|
6442
7269
|
} | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
6443
7270
|
data: {
|
|
6444
|
-
tariffChangeData?: (import("./types.js").MittwaldAPIV2.Components.Schemas.OrderProjectHostingTariffChange | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderServerTariffChange | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderLeadFyndrTariffChange) | undefined;
|
|
6445
|
-
tariffChangeType?: "projectHosting" | "server" | "leadFyndr" | undefined;
|
|
7271
|
+
tariffChangeData?: (import("./types.js").MittwaldAPIV2.Components.Schemas.OrderProjectHostingTariffChange | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderServerTariffChange | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderLeadFyndrTariffChange | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderAIHostingTariffChange) | undefined;
|
|
7272
|
+
tariffChangeType?: "projectHosting" | "server" | "leadFyndr" | "aiHosting" | undefined;
|
|
6446
7273
|
};
|
|
6447
7274
|
} & {
|
|
6448
7275
|
headers?: Partial<{
|
|
@@ -6466,8 +7293,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6466
7293
|
[x: string]: unknown;
|
|
6467
7294
|
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
6468
7295
|
data: {
|
|
6469
|
-
tariffChangeData?: (import("./types.js").MittwaldAPIV2.Components.Schemas.OrderProjectHostingTariffChange | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderServerTariffChange | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderLeadFyndrTariffChange) | undefined;
|
|
6470
|
-
tariffChangeType?: "projectHosting" | "server" | "leadFyndr" | undefined;
|
|
7296
|
+
tariffChangeData?: (import("./types.js").MittwaldAPIV2.Components.Schemas.OrderProjectHostingTariffChange | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderServerTariffChange | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderLeadFyndrTariffChange | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderAIHostingTariffChange) | undefined;
|
|
7297
|
+
tariffChangeType?: "projectHosting" | "server" | "leadFyndr" | "aiHosting" | undefined;
|
|
6471
7298
|
};
|
|
6472
7299
|
} & {
|
|
6473
7300
|
headers?: Partial<{
|
|
@@ -24533,52 +25360,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
24533
25360
|
customerId: string;
|
|
24534
25361
|
};
|
|
24535
25362
|
}, import("@mittwald/api-client-commons").Response<{
|
|
24536
|
-
leadId: string;
|
|
24537
|
-
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
24538
|
-
[x: string]: unknown;
|
|
24539
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
24540
|
-
[x: string]: unknown;
|
|
24541
|
-
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
24542
|
-
[x: string]: unknown;
|
|
24543
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
24544
|
-
[x: string]: unknown;
|
|
24545
|
-
}, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
24546
|
-
[x: string]: unknown;
|
|
24547
|
-
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
24548
|
-
headers?: Partial<{
|
|
24549
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
24550
|
-
}>;
|
|
24551
|
-
} & {
|
|
24552
|
-
pathParameters: {
|
|
24553
|
-
leadId: string;
|
|
24554
|
-
customerId: string;
|
|
24555
|
-
};
|
|
24556
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
24557
|
-
leadId: string;
|
|
24558
|
-
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
24559
|
-
[x: string]: unknown;
|
|
24560
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
24561
|
-
[x: string]: unknown;
|
|
24562
|
-
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
24563
|
-
[x: string]: unknown;
|
|
24564
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
24565
|
-
[x: string]: unknown;
|
|
24566
|
-
}, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
24567
|
-
[x: string]: unknown;
|
|
24568
|
-
}, 429, "application/json">>>;
|
|
24569
|
-
};
|
|
24570
|
-
/** API endpoints that are not related to any specific API domain */
|
|
24571
|
-
readonly misc: {
|
|
24572
|
-
/** Get a list of currently active llm models. */
|
|
24573
|
-
getLlmModelsExperimental: (request?: {
|
|
24574
|
-
headers?: {
|
|
24575
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
24576
|
-
} | undefined;
|
|
24577
|
-
} | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
24578
|
-
headers?: Partial<{
|
|
24579
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
24580
|
-
}>;
|
|
24581
|
-
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingModel[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
25363
|
+
leadId: string;
|
|
25364
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
24582
25365
|
[x: string]: unknown;
|
|
24583
25366
|
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
24584
25367
|
[x: string]: unknown;
|
|
@@ -24586,11 +25369,20 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
24586
25369
|
[x: string]: unknown;
|
|
24587
25370
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
24588
25371
|
[x: string]: unknown;
|
|
25372
|
+
}, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
25373
|
+
[x: string]: unknown;
|
|
24589
25374
|
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
24590
25375
|
headers?: Partial<{
|
|
24591
25376
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
24592
25377
|
}>;
|
|
24593
|
-
}
|
|
25378
|
+
} & {
|
|
25379
|
+
pathParameters: {
|
|
25380
|
+
leadId: string;
|
|
25381
|
+
customerId: string;
|
|
25382
|
+
};
|
|
25383
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
25384
|
+
leadId: string;
|
|
25385
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
24594
25386
|
[x: string]: unknown;
|
|
24595
25387
|
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
24596
25388
|
[x: string]: unknown;
|
|
@@ -24598,7 +25390,12 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
24598
25390
|
[x: string]: unknown;
|
|
24599
25391
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
24600
25392
|
[x: string]: unknown;
|
|
25393
|
+
}, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
25394
|
+
[x: string]: unknown;
|
|
24601
25395
|
}, 429, "application/json">>>;
|
|
25396
|
+
};
|
|
25397
|
+
/** API endpoints that are not related to any specific API domain */
|
|
25398
|
+
readonly misc: {
|
|
24602
25399
|
/** List valid time zones. */
|
|
24603
25400
|
ellaneousListTimeZones: (request?: {
|
|
24604
25401
|
headers?: {
|
|
@@ -25196,134 +25993,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
25196
25993
|
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
25197
25994
|
[x: string]: unknown;
|
|
25198
25995
|
}, 429, "application/json">>>;
|
|
25199
|
-
/** Get a list of already created llm licences. */
|
|
25200
|
-
getLlmLicencesExperimental: (request: {
|
|
25201
|
-
projectId: string;
|
|
25202
|
-
headers?: {
|
|
25203
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
25204
|
-
} | undefined;
|
|
25205
|
-
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
25206
|
-
headers?: Partial<{
|
|
25207
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
25208
|
-
}>;
|
|
25209
|
-
} & {
|
|
25210
|
-
pathParameters: {
|
|
25211
|
-
projectId: string;
|
|
25212
|
-
};
|
|
25213
|
-
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingLicence[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
25214
|
-
[x: string]: unknown;
|
|
25215
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
25216
|
-
[x: string]: unknown;
|
|
25217
|
-
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
25218
|
-
[x: string]: unknown;
|
|
25219
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
25220
|
-
[x: string]: unknown;
|
|
25221
|
-
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
25222
|
-
headers?: Partial<{
|
|
25223
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
25224
|
-
}>;
|
|
25225
|
-
} & {
|
|
25226
|
-
pathParameters: {
|
|
25227
|
-
projectId: string;
|
|
25228
|
-
};
|
|
25229
|
-
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingLicence[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
25230
|
-
[x: string]: unknown;
|
|
25231
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
25232
|
-
[x: string]: unknown;
|
|
25233
|
-
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
25234
|
-
[x: string]: unknown;
|
|
25235
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
25236
|
-
[x: string]: unknown;
|
|
25237
|
-
}, 429, "application/json">>>;
|
|
25238
|
-
/** Creates a new llm beta Licence for a project. Will be purged on end of beta. */
|
|
25239
|
-
createLlmBetaLicenceExperimental: (request: {
|
|
25240
|
-
data: {
|
|
25241
|
-
name: string;
|
|
25242
|
-
createWebuiContainer?: boolean | undefined;
|
|
25243
|
-
};
|
|
25244
|
-
projectId: string;
|
|
25245
|
-
headers?: {
|
|
25246
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
25247
|
-
} | undefined;
|
|
25248
|
-
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
25249
|
-
data: {
|
|
25250
|
-
createWebuiContainer?: boolean | undefined;
|
|
25251
|
-
name: string;
|
|
25252
|
-
};
|
|
25253
|
-
} & {
|
|
25254
|
-
pathParameters: {
|
|
25255
|
-
projectId: string;
|
|
25256
|
-
};
|
|
25257
|
-
} & {
|
|
25258
|
-
headers?: Partial<{
|
|
25259
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
25260
|
-
}>;
|
|
25261
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
25262
|
-
containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingContainerMeta | undefined;
|
|
25263
|
-
customerId?: string | undefined;
|
|
25264
|
-
isBlocked: boolean;
|
|
25265
|
-
licenceId: string;
|
|
25266
|
-
licenceKey: string;
|
|
25267
|
-
limit: {
|
|
25268
|
-
allowedRequestsPerUnit: number;
|
|
25269
|
-
unit: "minute" | "hour";
|
|
25270
|
-
};
|
|
25271
|
-
models: string[];
|
|
25272
|
-
name: string;
|
|
25273
|
-
projectId?: string | undefined;
|
|
25274
|
-
rateLimit: number;
|
|
25275
|
-
}, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
25276
|
-
[x: string]: unknown;
|
|
25277
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
25278
|
-
[x: string]: unknown;
|
|
25279
|
-
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
25280
|
-
[x: string]: unknown;
|
|
25281
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
25282
|
-
[x: string]: unknown;
|
|
25283
|
-
}, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
25284
|
-
[x: string]: unknown;
|
|
25285
|
-
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
25286
|
-
[x: string]: unknown;
|
|
25287
|
-
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
25288
|
-
data: {
|
|
25289
|
-
createWebuiContainer?: boolean | undefined;
|
|
25290
|
-
name: string;
|
|
25291
|
-
};
|
|
25292
|
-
} & {
|
|
25293
|
-
pathParameters: {
|
|
25294
|
-
projectId: string;
|
|
25295
|
-
};
|
|
25296
|
-
} & {
|
|
25297
|
-
headers?: Partial<{
|
|
25298
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
25299
|
-
}>;
|
|
25300
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
25301
|
-
containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingContainerMeta | undefined;
|
|
25302
|
-
customerId?: string | undefined;
|
|
25303
|
-
isBlocked: boolean;
|
|
25304
|
-
licenceId: string;
|
|
25305
|
-
licenceKey: string;
|
|
25306
|
-
limit: {
|
|
25307
|
-
allowedRequestsPerUnit: number;
|
|
25308
|
-
unit: "minute" | "hour";
|
|
25309
|
-
};
|
|
25310
|
-
models: string[];
|
|
25311
|
-
name: string;
|
|
25312
|
-
projectId?: string | undefined;
|
|
25313
|
-
rateLimit: number;
|
|
25314
|
-
}, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
25315
|
-
[x: string]: unknown;
|
|
25316
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
25317
|
-
[x: string]: unknown;
|
|
25318
|
-
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
25319
|
-
[x: string]: unknown;
|
|
25320
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
25321
|
-
[x: string]: unknown;
|
|
25322
|
-
}, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
25323
|
-
[x: string]: unknown;
|
|
25324
|
-
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
25325
|
-
[x: string]: unknown;
|
|
25326
|
-
}, 429, "application/json">>>;
|
|
25327
25996
|
/** List Invites belonging to a Project. */
|
|
25328
25997
|
listInvitesForProject: (request: {
|
|
25329
25998
|
projectId: string;
|
|
@@ -26220,168 +26889,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
26220
26889
|
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
26221
26890
|
[x: string]: unknown;
|
|
26222
26891
|
}, 429, "application/json">>>;
|
|
26223
|
-
/** Get a licence of a project. */
|
|
26224
|
-
getLlmLicenceExperimental: (request: {
|
|
26225
|
-
projectId: string;
|
|
26226
|
-
licenceId: string;
|
|
26227
|
-
headers?: {
|
|
26228
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
26229
|
-
} | undefined;
|
|
26230
|
-
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
26231
|
-
headers?: Partial<{
|
|
26232
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
26233
|
-
}>;
|
|
26234
|
-
} & {
|
|
26235
|
-
pathParameters: {
|
|
26236
|
-
projectId: string;
|
|
26237
|
-
licenceId: string;
|
|
26238
|
-
};
|
|
26239
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
26240
|
-
containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingContainerMeta | undefined;
|
|
26241
|
-
customerId?: string | undefined;
|
|
26242
|
-
isBlocked: boolean;
|
|
26243
|
-
licenceId: string;
|
|
26244
|
-
licenceKey: string;
|
|
26245
|
-
limit: {
|
|
26246
|
-
allowedRequestsPerUnit: number;
|
|
26247
|
-
unit: "minute" | "hour";
|
|
26248
|
-
};
|
|
26249
|
-
models: string[];
|
|
26250
|
-
name: string;
|
|
26251
|
-
projectId?: string | undefined;
|
|
26252
|
-
rateLimit: number;
|
|
26253
|
-
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
26254
|
-
[x: string]: unknown;
|
|
26255
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
26256
|
-
[x: string]: unknown;
|
|
26257
|
-
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
26258
|
-
[x: string]: unknown;
|
|
26259
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
26260
|
-
[x: string]: unknown;
|
|
26261
|
-
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
26262
|
-
headers?: Partial<{
|
|
26263
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
26264
|
-
}>;
|
|
26265
|
-
} & {
|
|
26266
|
-
pathParameters: {
|
|
26267
|
-
projectId: string;
|
|
26268
|
-
licenceId: string;
|
|
26269
|
-
};
|
|
26270
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
26271
|
-
containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingContainerMeta | undefined;
|
|
26272
|
-
customerId?: string | undefined;
|
|
26273
|
-
isBlocked: boolean;
|
|
26274
|
-
licenceId: string;
|
|
26275
|
-
licenceKey: string;
|
|
26276
|
-
limit: {
|
|
26277
|
-
allowedRequestsPerUnit: number;
|
|
26278
|
-
unit: "minute" | "hour";
|
|
26279
|
-
};
|
|
26280
|
-
models: string[];
|
|
26281
|
-
name: string;
|
|
26282
|
-
projectId?: string | undefined;
|
|
26283
|
-
rateLimit: number;
|
|
26284
|
-
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
26285
|
-
[x: string]: unknown;
|
|
26286
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
26287
|
-
[x: string]: unknown;
|
|
26288
|
-
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
26289
|
-
[x: string]: unknown;
|
|
26290
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
26291
|
-
[x: string]: unknown;
|
|
26292
|
-
}, 429, "application/json">>>;
|
|
26293
|
-
/** Update a llm Licence for a project. */
|
|
26294
|
-
updateLlmLicenceExperimental: (request: {
|
|
26295
|
-
projectId: string;
|
|
26296
|
-
licenceId: string;
|
|
26297
|
-
data?: {
|
|
26298
|
-
createWebuiContainer?: boolean | undefined;
|
|
26299
|
-
name?: string | undefined;
|
|
26300
|
-
} | undefined;
|
|
26301
|
-
headers?: {
|
|
26302
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
26303
|
-
} | undefined;
|
|
26304
|
-
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
26305
|
-
data: {
|
|
26306
|
-
createWebuiContainer?: boolean | undefined;
|
|
26307
|
-
name?: string | undefined;
|
|
26308
|
-
};
|
|
26309
|
-
} & {
|
|
26310
|
-
pathParameters: {
|
|
26311
|
-
projectId: string;
|
|
26312
|
-
licenceId: string;
|
|
26313
|
-
};
|
|
26314
|
-
} & {
|
|
26315
|
-
headers?: Partial<{
|
|
26316
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
26317
|
-
}>;
|
|
26318
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
26319
|
-
containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingContainerMeta | undefined;
|
|
26320
|
-
customerId?: string | undefined;
|
|
26321
|
-
isBlocked: boolean;
|
|
26322
|
-
licenceId: string;
|
|
26323
|
-
licenceKey: string;
|
|
26324
|
-
limit: {
|
|
26325
|
-
allowedRequestsPerUnit: number;
|
|
26326
|
-
unit: "minute" | "hour";
|
|
26327
|
-
};
|
|
26328
|
-
models: string[];
|
|
26329
|
-
name: string;
|
|
26330
|
-
projectId?: string | undefined;
|
|
26331
|
-
rateLimit: number;
|
|
26332
|
-
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
26333
|
-
[x: string]: unknown;
|
|
26334
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
26335
|
-
[x: string]: unknown;
|
|
26336
|
-
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
26337
|
-
[x: string]: unknown;
|
|
26338
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
26339
|
-
[x: string]: unknown;
|
|
26340
|
-
}, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
26341
|
-
[x: string]: unknown;
|
|
26342
|
-
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
26343
|
-
[x: string]: unknown;
|
|
26344
|
-
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
26345
|
-
data: {
|
|
26346
|
-
createWebuiContainer?: boolean | undefined;
|
|
26347
|
-
name?: string | undefined;
|
|
26348
|
-
};
|
|
26349
|
-
} & {
|
|
26350
|
-
pathParameters: {
|
|
26351
|
-
projectId: string;
|
|
26352
|
-
licenceId: string;
|
|
26353
|
-
};
|
|
26354
|
-
} & {
|
|
26355
|
-
headers?: Partial<{
|
|
26356
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
26357
|
-
}>;
|
|
26358
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
26359
|
-
containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingContainerMeta | undefined;
|
|
26360
|
-
customerId?: string | undefined;
|
|
26361
|
-
isBlocked: boolean;
|
|
26362
|
-
licenceId: string;
|
|
26363
|
-
licenceKey: string;
|
|
26364
|
-
limit: {
|
|
26365
|
-
allowedRequestsPerUnit: number;
|
|
26366
|
-
unit: "minute" | "hour";
|
|
26367
|
-
};
|
|
26368
|
-
models: string[];
|
|
26369
|
-
name: string;
|
|
26370
|
-
projectId?: string | undefined;
|
|
26371
|
-
rateLimit: number;
|
|
26372
|
-
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
26373
|
-
[x: string]: unknown;
|
|
26374
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
26375
|
-
[x: string]: unknown;
|
|
26376
|
-
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
26377
|
-
[x: string]: unknown;
|
|
26378
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
26379
|
-
[x: string]: unknown;
|
|
26380
|
-
}, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
26381
|
-
[x: string]: unknown;
|
|
26382
|
-
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
26383
|
-
[x: string]: unknown;
|
|
26384
|
-
}, 429, "application/json">>>;
|
|
26385
26892
|
/** Get a ProjectInvite by token. */
|
|
26386
26893
|
getProjectTokenInvite: (request: {
|
|
26387
26894
|
headers: {
|