@smithery/api 0.46.0 → 0.47.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/CHANGELOG.md +9 -0
- package/README.md +5 -10
- package/client.d.mts +2 -2
- package/client.d.mts.map +1 -1
- package/client.d.ts +2 -2
- package/client.d.ts.map +1 -1
- package/client.js.map +1 -1
- package/client.mjs.map +1 -1
- package/package.json +1 -1
- package/resources/index.d.mts +1 -1
- package/resources/index.d.mts.map +1 -1
- package/resources/index.d.ts +1 -1
- package/resources/index.d.ts.map +1 -1
- package/resources/index.js.map +1 -1
- package/resources/index.mjs.map +1 -1
- package/resources/servers/deployments.d.mts +61 -309
- package/resources/servers/deployments.d.mts.map +1 -1
- package/resources/servers/deployments.d.ts +61 -309
- package/resources/servers/deployments.d.ts.map +1 -1
- package/resources/servers/deployments.js +25 -112
- package/resources/servers/deployments.js.map +1 -1
- package/resources/servers/deployments.mjs +25 -112
- package/resources/servers/deployments.mjs.map +1 -1
- package/resources/servers/domains.d.mts +176 -0
- package/resources/servers/domains.d.mts.map +1 -0
- package/resources/servers/domains.d.ts +176 -0
- package/resources/servers/domains.d.ts.map +1 -0
- package/resources/servers/domains.js +67 -0
- package/resources/servers/domains.js.map +1 -0
- package/resources/servers/domains.mjs +63 -0
- package/resources/servers/domains.mjs.map +1 -0
- package/resources/servers/index.d.mts +6 -5
- package/resources/servers/index.d.mts.map +1 -1
- package/resources/servers/index.d.ts +6 -5
- package/resources/servers/index.d.ts.map +1 -1
- package/resources/servers/index.js +3 -1
- package/resources/servers/index.js.map +1 -1
- package/resources/servers/index.mjs +2 -1
- package/resources/servers/index.mjs.map +1 -1
- package/resources/servers/logs.d.mts +5 -79
- package/resources/servers/logs.d.mts.map +1 -1
- package/resources/servers/logs.d.ts +5 -79
- package/resources/servers/logs.d.ts.map +1 -1
- package/resources/servers/logs.js +5 -21
- package/resources/servers/logs.js.map +1 -1
- package/resources/servers/logs.mjs +5 -21
- package/resources/servers/logs.mjs.map +1 -1
- package/resources/servers/repo.d.mts +13 -103
- package/resources/servers/repo.d.mts.map +1 -1
- package/resources/servers/repo.d.ts +13 -103
- package/resources/servers/repo.d.ts.map +1 -1
- package/resources/servers/repo.js +15 -61
- package/resources/servers/repo.js.map +1 -1
- package/resources/servers/repo.mjs +15 -61
- package/resources/servers/repo.mjs.map +1 -1
- package/resources/servers/secrets.d.mts +14 -85
- package/resources/servers/secrets.d.mts.map +1 -1
- package/resources/servers/secrets.d.ts +14 -85
- package/resources/servers/secrets.d.ts.map +1 -1
- package/resources/servers/secrets.js +13 -63
- package/resources/servers/secrets.js.map +1 -1
- package/resources/servers/secrets.mjs +13 -63
- package/resources/servers/secrets.mjs.map +1 -1
- package/resources/servers/servers.d.mts +30 -182
- package/resources/servers/servers.d.mts.map +1 -1
- package/resources/servers/servers.d.ts +30 -182
- package/resources/servers/servers.d.ts.map +1 -1
- package/resources/servers/servers.js +26 -79
- package/resources/servers/servers.js.map +1 -1
- package/resources/servers/servers.mjs +28 -81
- package/resources/servers/servers.mjs.map +1 -1
- package/src/client.ts +0 -16
- package/src/resources/index.ts +0 -8
- package/src/resources/servers/deployments.ts +69 -425
- package/src/resources/servers/domains.ts +270 -0
- package/src/resources/servers/index.ts +10 -36
- package/src/resources/servers/logs.ts +9 -118
- package/src/resources/servers/repo.ts +15 -150
- package/src/resources/servers/secrets.ts +17 -126
- package/src/resources/servers/servers.ts +51 -319
- package/src/version.ts +1 -1
- package/version.d.mts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
|
@@ -4,23 +4,13 @@ import { APIResource } from '../../core/resource';
|
|
|
4
4
|
import * as DeploymentsAPI from './deployments';
|
|
5
5
|
import {
|
|
6
6
|
DeployPayload,
|
|
7
|
-
DeploymentDeployByNamespaceParams,
|
|
8
|
-
DeploymentDeployByNamespaceResponse,
|
|
9
7
|
DeploymentDeployParams,
|
|
10
8
|
DeploymentDeployResponse,
|
|
11
|
-
DeploymentGetByNamespaceParams,
|
|
12
|
-
DeploymentGetByNamespaceResponse,
|
|
13
9
|
DeploymentGetParams,
|
|
14
10
|
DeploymentGetResponse,
|
|
15
|
-
DeploymentListByNamespaceResponse,
|
|
16
|
-
DeploymentListParams,
|
|
17
11
|
DeploymentListResponse,
|
|
18
|
-
DeploymentResumeByNamespaceParams,
|
|
19
|
-
DeploymentResumeByNamespaceResponse,
|
|
20
12
|
DeploymentResumeParams,
|
|
21
13
|
DeploymentResumeResponse,
|
|
22
|
-
DeploymentStreamByNamespaceParams,
|
|
23
|
-
DeploymentStreamByNamespaceResponse,
|
|
24
14
|
DeploymentStreamParams,
|
|
25
15
|
DeploymentStreamResponse,
|
|
26
16
|
Deployments,
|
|
@@ -29,39 +19,26 @@ import {
|
|
|
29
19
|
ServerCard,
|
|
30
20
|
StdioDeployPayload,
|
|
31
21
|
} from './deployments';
|
|
32
|
-
import * as
|
|
22
|
+
import * as DomainsAPI from './domains';
|
|
33
23
|
import {
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
24
|
+
DomainCreateParams,
|
|
25
|
+
DomainCreateResponse,
|
|
26
|
+
DomainDeleteParams,
|
|
27
|
+
DomainDeleteResponse,
|
|
28
|
+
DomainListResponse,
|
|
29
|
+
DomainUpdateParams,
|
|
30
|
+
DomainUpdateResponse,
|
|
31
|
+
Domains,
|
|
32
|
+
} from './domains';
|
|
33
|
+
import * as LogsAPI from './logs';
|
|
34
|
+
import { LogListParams, LogListResponse, Logs } from './logs';
|
|
40
35
|
import * as RepoAPI from './repo';
|
|
41
|
-
import {
|
|
42
|
-
Repo,
|
|
43
|
-
RepoDeleteByNamespaceResponse,
|
|
44
|
-
RepoDeleteParams,
|
|
45
|
-
RepoDeleteResponse,
|
|
46
|
-
RepoGetByNamespaceResponse,
|
|
47
|
-
RepoGetParams,
|
|
48
|
-
RepoGetResponse,
|
|
49
|
-
RepoSetByNamespaceParams,
|
|
50
|
-
RepoSetByNamespaceResponse,
|
|
51
|
-
RepoSetParams,
|
|
52
|
-
RepoSetResponse,
|
|
53
|
-
} from './repo';
|
|
36
|
+
import { Repo, RepoDeleteResponse, RepoGetResponse, RepoSetParams, RepoSetResponse } from './repo';
|
|
54
37
|
import * as SecretsAPI from './secrets';
|
|
55
38
|
import {
|
|
56
|
-
SecretDeleteByNamespaceParams,
|
|
57
|
-
SecretDeleteByNamespaceResponse,
|
|
58
39
|
SecretDeleteParams,
|
|
59
40
|
SecretDeleteResponse,
|
|
60
|
-
SecretListByNamespaceResponse,
|
|
61
|
-
SecretListParams,
|
|
62
41
|
SecretListResponse,
|
|
63
|
-
SecretSetByNamespaceParams,
|
|
64
|
-
SecretSetByNamespaceResponse,
|
|
65
42
|
SecretSetParams,
|
|
66
43
|
SecretSetResponse,
|
|
67
44
|
Secrets,
|
|
@@ -77,44 +54,39 @@ export class Servers extends APIResource {
|
|
|
77
54
|
logs: LogsAPI.Logs = new LogsAPI.Logs(this._client);
|
|
78
55
|
secrets: SecretsAPI.Secrets = new SecretsAPI.Secrets(this._client);
|
|
79
56
|
repo: RepoAPI.Repo = new RepoAPI.Repo(this._client);
|
|
57
|
+
domains: DomainsAPI.Domains = new DomainsAPI.Domains(this._client);
|
|
80
58
|
|
|
81
59
|
/**
|
|
82
|
-
* Create a new server
|
|
83
|
-
*
|
|
60
|
+
* Create a new server. Idempotent — returns success if the server already exists
|
|
61
|
+
* and is owned by the caller.
|
|
84
62
|
*
|
|
85
63
|
* @example
|
|
86
64
|
* ```ts
|
|
87
|
-
* const server = await client.servers.create('
|
|
88
|
-
* namespace: 'namespace',
|
|
89
|
-
* });
|
|
65
|
+
* const server = await client.servers.create('qualifiedName');
|
|
90
66
|
* ```
|
|
91
67
|
*/
|
|
92
68
|
create(
|
|
93
|
-
|
|
94
|
-
|
|
69
|
+
qualifiedName: string,
|
|
70
|
+
body: ServerCreateParams | null | undefined = {},
|
|
95
71
|
options?: RequestOptions,
|
|
96
72
|
): APIPromise<ServerCreateResponse> {
|
|
97
|
-
|
|
98
|
-
return this._client.put(path`/servers/${namespace}/${server}`, { body, ...options });
|
|
73
|
+
return this._client.put(path`/servers/${qualifiedName}`, { body, ...options });
|
|
99
74
|
}
|
|
100
75
|
|
|
101
76
|
/**
|
|
102
|
-
* Update metadata
|
|
77
|
+
* Update server metadata such as display name, description, icon, or visibility.
|
|
103
78
|
*
|
|
104
79
|
* @example
|
|
105
80
|
* ```ts
|
|
106
|
-
* const server = await client.servers.update('
|
|
107
|
-
* namespace: 'namespace',
|
|
108
|
-
* });
|
|
81
|
+
* const server = await client.servers.update('qualifiedName');
|
|
109
82
|
* ```
|
|
110
83
|
*/
|
|
111
84
|
update(
|
|
112
|
-
|
|
113
|
-
|
|
85
|
+
qualifiedName: string,
|
|
86
|
+
body: ServerUpdateParams | null | undefined = {},
|
|
114
87
|
options?: RequestOptions,
|
|
115
88
|
): APIPromise<ServerUpdateResponse> {
|
|
116
|
-
|
|
117
|
-
return this._client.patch(path`/servers/${namespace}/${server}`, { body, ...options });
|
|
89
|
+
return this._client.patch(path`/servers/${qualifiedName}`, { body, ...options });
|
|
118
90
|
}
|
|
119
91
|
|
|
120
92
|
/**
|
|
@@ -138,60 +110,32 @@ export class Servers extends APIResource {
|
|
|
138
110
|
}
|
|
139
111
|
|
|
140
112
|
/**
|
|
141
|
-
*
|
|
113
|
+
* Permanently delete a server, its releases, and associated resources.
|
|
142
114
|
*
|
|
143
115
|
* @example
|
|
144
116
|
* ```ts
|
|
145
|
-
* const server = await client.servers.delete('
|
|
146
|
-
* namespace: 'namespace',
|
|
147
|
-
* });
|
|
117
|
+
* const server = await client.servers.delete('qualifiedName');
|
|
148
118
|
* ```
|
|
149
119
|
*/
|
|
150
|
-
delete(
|
|
151
|
-
|
|
152
|
-
params: ServerDeleteParams,
|
|
153
|
-
options?: RequestOptions,
|
|
154
|
-
): APIPromise<ServerDeleteResponse> {
|
|
155
|
-
const { namespace } = params;
|
|
156
|
-
return this._client.delete(path`/servers/${namespace}/${server}`, options);
|
|
120
|
+
delete(qualifiedName: string, options?: RequestOptions): APIPromise<ServerDeleteResponse> {
|
|
121
|
+
return this._client.delete(path`/servers/${qualifiedName}`, options);
|
|
157
122
|
}
|
|
158
123
|
|
|
159
124
|
/**
|
|
160
|
-
*
|
|
161
|
-
* identifier. This endpoint is idempotent - if the server already exists and is
|
|
162
|
-
* owned by the user, returns success.
|
|
125
|
+
* Download the MCPB bundle for the latest successful stdio release.
|
|
163
126
|
*
|
|
164
127
|
* @example
|
|
165
128
|
* ```ts
|
|
166
|
-
* const response = await client.servers.
|
|
167
|
-
* '
|
|
129
|
+
* const response = await client.servers.download(
|
|
130
|
+
* 'qualifiedName',
|
|
168
131
|
* );
|
|
169
|
-
* ```
|
|
170
|
-
*/
|
|
171
|
-
createByNamespace(
|
|
172
|
-
namespace: string,
|
|
173
|
-
body: ServerCreateByNamespaceParams | null | undefined = {},
|
|
174
|
-
options?: RequestOptions,
|
|
175
|
-
): APIPromise<ServerCreateByNamespaceResponse> {
|
|
176
|
-
return this._client.put(path`/servers/${namespace}`, { body, ...options });
|
|
177
|
-
}
|
|
178
|
-
|
|
179
|
-
/**
|
|
180
|
-
* Download the MCPB bundle for the latest successful stdio deployment
|
|
181
|
-
*
|
|
182
|
-
* @example
|
|
183
|
-
* ```ts
|
|
184
|
-
* const response = await client.servers.download('server', {
|
|
185
|
-
* namespace: 'namespace',
|
|
186
|
-
* });
|
|
187
132
|
*
|
|
188
133
|
* const content = await response.blob();
|
|
189
134
|
* console.log(content);
|
|
190
135
|
* ```
|
|
191
136
|
*/
|
|
192
|
-
download(
|
|
193
|
-
|
|
194
|
-
return this._client.get(path`/servers/${namespace}/${server}/download`, {
|
|
137
|
+
download(qualifiedName: string, options?: RequestOptions): APIPromise<Response> {
|
|
138
|
+
return this._client.get(path`/servers/${qualifiedName}/download`, {
|
|
195
139
|
...options,
|
|
196
140
|
headers: buildHeaders([{ Accept: 'application/zip' }, options?.headers]),
|
|
197
141
|
__binaryResponse: true,
|
|
@@ -199,53 +143,15 @@ export class Servers extends APIResource {
|
|
|
199
143
|
}
|
|
200
144
|
|
|
201
145
|
/**
|
|
202
|
-
*
|
|
146
|
+
* Retrieve server details including connections, tools, and security status.
|
|
203
147
|
*
|
|
204
148
|
* @example
|
|
205
149
|
* ```ts
|
|
206
|
-
* const server = await client.servers.get('
|
|
207
|
-
* namespace: 'namespace',
|
|
208
|
-
* });
|
|
150
|
+
* const server = await client.servers.get('qualifiedName');
|
|
209
151
|
* ```
|
|
210
152
|
*/
|
|
211
|
-
get(
|
|
212
|
-
|
|
213
|
-
return this._client.get(path`/servers/${namespace}/${server}`, options);
|
|
214
|
-
}
|
|
215
|
-
|
|
216
|
-
/**
|
|
217
|
-
* Get a server by namespace name. Used for namespace-only servers where the
|
|
218
|
-
* namespace name is also the server name. Also handles deprecated encoded
|
|
219
|
-
* patterns.
|
|
220
|
-
*
|
|
221
|
-
* @example
|
|
222
|
-
* ```ts
|
|
223
|
-
* const response = await client.servers.getByNamespace(
|
|
224
|
-
* 'namespace',
|
|
225
|
-
* );
|
|
226
|
-
* ```
|
|
227
|
-
*/
|
|
228
|
-
getByNamespace(namespace: string, options?: RequestOptions): APIPromise<ServerGetByNamespaceResponse> {
|
|
229
|
-
return this._client.get(path`/servers/${namespace}`, options);
|
|
230
|
-
}
|
|
231
|
-
|
|
232
|
-
/**
|
|
233
|
-
* Update metadata for a namespace-only server where the namespace is also the
|
|
234
|
-
* server identifier.
|
|
235
|
-
*
|
|
236
|
-
* @example
|
|
237
|
-
* ```ts
|
|
238
|
-
* const response = await client.servers.updateByNamespace(
|
|
239
|
-
* 'namespace',
|
|
240
|
-
* );
|
|
241
|
-
* ```
|
|
242
|
-
*/
|
|
243
|
-
updateByNamespace(
|
|
244
|
-
namespace: string,
|
|
245
|
-
body: ServerUpdateByNamespaceParams | null | undefined = {},
|
|
246
|
-
options?: RequestOptions,
|
|
247
|
-
): APIPromise<ServerUpdateByNamespaceResponse> {
|
|
248
|
-
return this._client.patch(path`/servers/${namespace}`, { body, ...options });
|
|
153
|
+
get(qualifiedName: string, options?: RequestOptions): APIPromise<ServerGetResponse> {
|
|
154
|
+
return this._client.get(path`/servers/${qualifiedName}`, options);
|
|
249
155
|
}
|
|
250
156
|
}
|
|
251
157
|
|
|
@@ -402,18 +308,6 @@ export interface ServerDeleteResponse {
|
|
|
402
308
|
success: boolean;
|
|
403
309
|
}
|
|
404
310
|
|
|
405
|
-
export interface ServerCreateByNamespaceResponse {
|
|
406
|
-
createdAt: string;
|
|
407
|
-
|
|
408
|
-
description: string;
|
|
409
|
-
|
|
410
|
-
displayName: string;
|
|
411
|
-
|
|
412
|
-
namespace: string;
|
|
413
|
-
|
|
414
|
-
server: string;
|
|
415
|
-
}
|
|
416
|
-
|
|
417
311
|
export interface ServerGetResponse {
|
|
418
312
|
connections: Array<ServerGetResponse.StdioConnection | ServerGetResponse.HTTPConnection>;
|
|
419
313
|
|
|
@@ -476,129 +370,23 @@ export namespace ServerGetResponse {
|
|
|
476
370
|
}
|
|
477
371
|
}
|
|
478
372
|
|
|
479
|
-
export interface ServerGetByNamespaceResponse {
|
|
480
|
-
connections: Array<
|
|
481
|
-
ServerGetByNamespaceResponse.StdioConnection | ServerGetByNamespaceResponse.HTTPConnection
|
|
482
|
-
>;
|
|
483
|
-
|
|
484
|
-
deploymentUrl: string | null;
|
|
485
|
-
|
|
486
|
-
description: string;
|
|
487
|
-
|
|
488
|
-
displayName: string;
|
|
489
|
-
|
|
490
|
-
iconUrl: string | null;
|
|
491
|
-
|
|
492
|
-
qualifiedName: string;
|
|
493
|
-
|
|
494
|
-
remote: boolean;
|
|
495
|
-
|
|
496
|
-
security: ServerGetByNamespaceResponse.Security | null;
|
|
497
|
-
|
|
498
|
-
tools: Array<ServerGetByNamespaceResponse.Tool> | null;
|
|
499
|
-
}
|
|
500
|
-
|
|
501
|
-
export namespace ServerGetByNamespaceResponse {
|
|
502
|
-
export interface StdioConnection {
|
|
503
|
-
configSchema: { [key: string]: unknown };
|
|
504
|
-
|
|
505
|
-
type: 'stdio';
|
|
506
|
-
|
|
507
|
-
bundleUrl?: string;
|
|
508
|
-
|
|
509
|
-
runtime?: string;
|
|
510
|
-
|
|
511
|
-
stdioFunction?: string;
|
|
512
|
-
}
|
|
513
|
-
|
|
514
|
-
export interface HTTPConnection {
|
|
515
|
-
configSchema: { [key: string]: unknown };
|
|
516
|
-
|
|
517
|
-
deploymentUrl: string;
|
|
518
|
-
|
|
519
|
-
type: 'http';
|
|
520
|
-
}
|
|
521
|
-
|
|
522
|
-
export interface Security {
|
|
523
|
-
scanPassed: boolean;
|
|
524
|
-
}
|
|
525
|
-
|
|
526
|
-
export interface Tool {
|
|
527
|
-
description: string | null;
|
|
528
|
-
|
|
529
|
-
inputSchema: Tool.InputSchema;
|
|
530
|
-
|
|
531
|
-
name: string;
|
|
532
|
-
}
|
|
533
|
-
|
|
534
|
-
export namespace Tool {
|
|
535
|
-
export interface InputSchema {
|
|
536
|
-
type: 'object';
|
|
537
|
-
|
|
538
|
-
properties?: { [key: string]: unknown };
|
|
539
|
-
}
|
|
540
|
-
}
|
|
541
|
-
}
|
|
542
|
-
|
|
543
|
-
export interface ServerUpdateByNamespaceResponse {
|
|
544
|
-
namespace: string;
|
|
545
|
-
|
|
546
|
-
server: string;
|
|
547
|
-
|
|
548
|
-
success: boolean;
|
|
549
|
-
}
|
|
550
|
-
|
|
551
373
|
export interface ServerCreateParams {
|
|
552
|
-
/**
|
|
553
|
-
* Path param
|
|
554
|
-
*/
|
|
555
|
-
namespace: string;
|
|
556
|
-
|
|
557
|
-
/**
|
|
558
|
-
* Body param
|
|
559
|
-
*/
|
|
560
374
|
description?: string;
|
|
561
375
|
|
|
562
|
-
/**
|
|
563
|
-
* Body param
|
|
564
|
-
*/
|
|
565
376
|
displayName?: string;
|
|
566
377
|
}
|
|
567
378
|
|
|
568
379
|
export interface ServerUpdateParams {
|
|
569
|
-
/**
|
|
570
|
-
* Path param
|
|
571
|
-
*/
|
|
572
|
-
namespace: string;
|
|
573
|
-
|
|
574
|
-
/**
|
|
575
|
-
* Body param
|
|
576
|
-
*/
|
|
577
380
|
description?: string;
|
|
578
381
|
|
|
579
|
-
/**
|
|
580
|
-
* Body param
|
|
581
|
-
*/
|
|
582
382
|
displayName?: string;
|
|
583
383
|
|
|
584
|
-
/**
|
|
585
|
-
* Body param
|
|
586
|
-
*/
|
|
587
384
|
homepage?: string | null;
|
|
588
385
|
|
|
589
|
-
/**
|
|
590
|
-
* Body param
|
|
591
|
-
*/
|
|
592
386
|
iconUrl?: string | null;
|
|
593
387
|
|
|
594
|
-
/**
|
|
595
|
-
* Body param
|
|
596
|
-
*/
|
|
597
388
|
license?: string | null;
|
|
598
389
|
|
|
599
|
-
/**
|
|
600
|
-
* Body param
|
|
601
|
-
*/
|
|
602
390
|
unlisted?: boolean;
|
|
603
391
|
}
|
|
604
392
|
|
|
@@ -669,42 +457,11 @@ export interface ServerListParams extends SmitheryPageParams {
|
|
|
669
457
|
verified?: '0' | '1' | 'true' | 'false';
|
|
670
458
|
}
|
|
671
459
|
|
|
672
|
-
export interface ServerDeleteParams {
|
|
673
|
-
namespace: string;
|
|
674
|
-
}
|
|
675
|
-
|
|
676
|
-
export interface ServerCreateByNamespaceParams {
|
|
677
|
-
description?: string;
|
|
678
|
-
|
|
679
|
-
displayName?: string;
|
|
680
|
-
}
|
|
681
|
-
|
|
682
|
-
export interface ServerDownloadParams {
|
|
683
|
-
namespace: string;
|
|
684
|
-
}
|
|
685
|
-
|
|
686
|
-
export interface ServerGetParams {
|
|
687
|
-
namespace: string;
|
|
688
|
-
}
|
|
689
|
-
|
|
690
|
-
export interface ServerUpdateByNamespaceParams {
|
|
691
|
-
description?: string;
|
|
692
|
-
|
|
693
|
-
displayName?: string;
|
|
694
|
-
|
|
695
|
-
homepage?: string | null;
|
|
696
|
-
|
|
697
|
-
iconUrl?: string | null;
|
|
698
|
-
|
|
699
|
-
license?: string | null;
|
|
700
|
-
|
|
701
|
-
unlisted?: boolean;
|
|
702
|
-
}
|
|
703
|
-
|
|
704
460
|
Servers.Deployments = Deployments;
|
|
705
461
|
Servers.Logs = Logs;
|
|
706
462
|
Servers.Secrets = Secrets;
|
|
707
463
|
Servers.Repo = Repo;
|
|
464
|
+
Servers.Domains = Domains;
|
|
708
465
|
|
|
709
466
|
export declare namespace Servers {
|
|
710
467
|
export {
|
|
@@ -715,19 +472,11 @@ export declare namespace Servers {
|
|
|
715
472
|
type ServerUpdateResponse as ServerUpdateResponse,
|
|
716
473
|
type ServerListResponse as ServerListResponse,
|
|
717
474
|
type ServerDeleteResponse as ServerDeleteResponse,
|
|
718
|
-
type ServerCreateByNamespaceResponse as ServerCreateByNamespaceResponse,
|
|
719
475
|
type ServerGetResponse as ServerGetResponse,
|
|
720
|
-
type ServerGetByNamespaceResponse as ServerGetByNamespaceResponse,
|
|
721
|
-
type ServerUpdateByNamespaceResponse as ServerUpdateByNamespaceResponse,
|
|
722
476
|
type ServerListResponsesSmitheryPage as ServerListResponsesSmitheryPage,
|
|
723
477
|
type ServerCreateParams as ServerCreateParams,
|
|
724
478
|
type ServerUpdateParams as ServerUpdateParams,
|
|
725
479
|
type ServerListParams as ServerListParams,
|
|
726
|
-
type ServerDeleteParams as ServerDeleteParams,
|
|
727
|
-
type ServerCreateByNamespaceParams as ServerCreateByNamespaceParams,
|
|
728
|
-
type ServerDownloadParams as ServerDownloadParams,
|
|
729
|
-
type ServerGetParams as ServerGetParams,
|
|
730
|
-
type ServerUpdateByNamespaceParams as ServerUpdateByNamespaceParams,
|
|
731
480
|
};
|
|
732
481
|
|
|
733
482
|
export {
|
|
@@ -739,59 +488,42 @@ export declare namespace Servers {
|
|
|
739
488
|
type StdioDeployPayload as StdioDeployPayload,
|
|
740
489
|
type DeploymentListResponse as DeploymentListResponse,
|
|
741
490
|
type DeploymentDeployResponse as DeploymentDeployResponse,
|
|
742
|
-
type DeploymentDeployByNamespaceResponse as DeploymentDeployByNamespaceResponse,
|
|
743
491
|
type DeploymentGetResponse as DeploymentGetResponse,
|
|
744
|
-
type DeploymentGetByNamespaceResponse as DeploymentGetByNamespaceResponse,
|
|
745
|
-
type DeploymentListByNamespaceResponse as DeploymentListByNamespaceResponse,
|
|
746
492
|
type DeploymentResumeResponse as DeploymentResumeResponse,
|
|
747
|
-
type DeploymentResumeByNamespaceResponse as DeploymentResumeByNamespaceResponse,
|
|
748
493
|
type DeploymentStreamResponse as DeploymentStreamResponse,
|
|
749
|
-
type DeploymentStreamByNamespaceResponse as DeploymentStreamByNamespaceResponse,
|
|
750
|
-
type DeploymentListParams as DeploymentListParams,
|
|
751
494
|
type DeploymentDeployParams as DeploymentDeployParams,
|
|
752
|
-
type DeploymentDeployByNamespaceParams as DeploymentDeployByNamespaceParams,
|
|
753
495
|
type DeploymentGetParams as DeploymentGetParams,
|
|
754
|
-
type DeploymentGetByNamespaceParams as DeploymentGetByNamespaceParams,
|
|
755
496
|
type DeploymentResumeParams as DeploymentResumeParams,
|
|
756
|
-
type DeploymentResumeByNamespaceParams as DeploymentResumeByNamespaceParams,
|
|
757
497
|
type DeploymentStreamParams as DeploymentStreamParams,
|
|
758
|
-
type DeploymentStreamByNamespaceParams as DeploymentStreamByNamespaceParams,
|
|
759
498
|
};
|
|
760
499
|
|
|
761
|
-
export {
|
|
762
|
-
Logs as Logs,
|
|
763
|
-
type LogListResponse as LogListResponse,
|
|
764
|
-
type LogListByNamespaceResponse as LogListByNamespaceResponse,
|
|
765
|
-
type LogListParams as LogListParams,
|
|
766
|
-
type LogListByNamespaceParams as LogListByNamespaceParams,
|
|
767
|
-
};
|
|
500
|
+
export { Logs as Logs, type LogListResponse as LogListResponse, type LogListParams as LogListParams };
|
|
768
501
|
|
|
769
502
|
export {
|
|
770
503
|
Secrets as Secrets,
|
|
771
504
|
type SecretListResponse as SecretListResponse,
|
|
772
505
|
type SecretDeleteResponse as SecretDeleteResponse,
|
|
773
|
-
type SecretDeleteByNamespaceResponse as SecretDeleteByNamespaceResponse,
|
|
774
|
-
type SecretListByNamespaceResponse as SecretListByNamespaceResponse,
|
|
775
506
|
type SecretSetResponse as SecretSetResponse,
|
|
776
|
-
type SecretSetByNamespaceResponse as SecretSetByNamespaceResponse,
|
|
777
|
-
type SecretListParams as SecretListParams,
|
|
778
507
|
type SecretDeleteParams as SecretDeleteParams,
|
|
779
|
-
type SecretDeleteByNamespaceParams as SecretDeleteByNamespaceParams,
|
|
780
508
|
type SecretSetParams as SecretSetParams,
|
|
781
|
-
type SecretSetByNamespaceParams as SecretSetByNamespaceParams,
|
|
782
509
|
};
|
|
783
510
|
|
|
784
511
|
export {
|
|
785
512
|
Repo as Repo,
|
|
786
513
|
type RepoDeleteResponse as RepoDeleteResponse,
|
|
787
|
-
type RepoDeleteByNamespaceResponse as RepoDeleteByNamespaceResponse,
|
|
788
514
|
type RepoGetResponse as RepoGetResponse,
|
|
789
|
-
type RepoGetByNamespaceResponse as RepoGetByNamespaceResponse,
|
|
790
515
|
type RepoSetResponse as RepoSetResponse,
|
|
791
|
-
type RepoSetByNamespaceResponse as RepoSetByNamespaceResponse,
|
|
792
|
-
type RepoDeleteParams as RepoDeleteParams,
|
|
793
|
-
type RepoGetParams as RepoGetParams,
|
|
794
516
|
type RepoSetParams as RepoSetParams,
|
|
795
|
-
|
|
517
|
+
};
|
|
518
|
+
|
|
519
|
+
export {
|
|
520
|
+
Domains as Domains,
|
|
521
|
+
type DomainCreateResponse as DomainCreateResponse,
|
|
522
|
+
type DomainUpdateResponse as DomainUpdateResponse,
|
|
523
|
+
type DomainListResponse as DomainListResponse,
|
|
524
|
+
type DomainDeleteResponse as DomainDeleteResponse,
|
|
525
|
+
type DomainCreateParams as DomainCreateParams,
|
|
526
|
+
type DomainUpdateParams as DomainUpdateParams,
|
|
527
|
+
type DomainDeleteParams as DomainDeleteParams,
|
|
796
528
|
};
|
|
797
529
|
}
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.47.0'; // x-release-please-version
|
package/version.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.
|
|
1
|
+
export declare const VERSION = "0.47.0";
|
|
2
2
|
//# sourceMappingURL=version.d.mts.map
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.
|
|
1
|
+
export declare const VERSION = "0.47.0";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.47.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|