@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.
Files changed (85) hide show
  1. package/CHANGELOG.md +9 -0
  2. package/README.md +5 -10
  3. package/client.d.mts +2 -2
  4. package/client.d.mts.map +1 -1
  5. package/client.d.ts +2 -2
  6. package/client.d.ts.map +1 -1
  7. package/client.js.map +1 -1
  8. package/client.mjs.map +1 -1
  9. package/package.json +1 -1
  10. package/resources/index.d.mts +1 -1
  11. package/resources/index.d.mts.map +1 -1
  12. package/resources/index.d.ts +1 -1
  13. package/resources/index.d.ts.map +1 -1
  14. package/resources/index.js.map +1 -1
  15. package/resources/index.mjs.map +1 -1
  16. package/resources/servers/deployments.d.mts +61 -309
  17. package/resources/servers/deployments.d.mts.map +1 -1
  18. package/resources/servers/deployments.d.ts +61 -309
  19. package/resources/servers/deployments.d.ts.map +1 -1
  20. package/resources/servers/deployments.js +25 -112
  21. package/resources/servers/deployments.js.map +1 -1
  22. package/resources/servers/deployments.mjs +25 -112
  23. package/resources/servers/deployments.mjs.map +1 -1
  24. package/resources/servers/domains.d.mts +176 -0
  25. package/resources/servers/domains.d.mts.map +1 -0
  26. package/resources/servers/domains.d.ts +176 -0
  27. package/resources/servers/domains.d.ts.map +1 -0
  28. package/resources/servers/domains.js +67 -0
  29. package/resources/servers/domains.js.map +1 -0
  30. package/resources/servers/domains.mjs +63 -0
  31. package/resources/servers/domains.mjs.map +1 -0
  32. package/resources/servers/index.d.mts +6 -5
  33. package/resources/servers/index.d.mts.map +1 -1
  34. package/resources/servers/index.d.ts +6 -5
  35. package/resources/servers/index.d.ts.map +1 -1
  36. package/resources/servers/index.js +3 -1
  37. package/resources/servers/index.js.map +1 -1
  38. package/resources/servers/index.mjs +2 -1
  39. package/resources/servers/index.mjs.map +1 -1
  40. package/resources/servers/logs.d.mts +5 -79
  41. package/resources/servers/logs.d.mts.map +1 -1
  42. package/resources/servers/logs.d.ts +5 -79
  43. package/resources/servers/logs.d.ts.map +1 -1
  44. package/resources/servers/logs.js +5 -21
  45. package/resources/servers/logs.js.map +1 -1
  46. package/resources/servers/logs.mjs +5 -21
  47. package/resources/servers/logs.mjs.map +1 -1
  48. package/resources/servers/repo.d.mts +13 -103
  49. package/resources/servers/repo.d.mts.map +1 -1
  50. package/resources/servers/repo.d.ts +13 -103
  51. package/resources/servers/repo.d.ts.map +1 -1
  52. package/resources/servers/repo.js +15 -61
  53. package/resources/servers/repo.js.map +1 -1
  54. package/resources/servers/repo.mjs +15 -61
  55. package/resources/servers/repo.mjs.map +1 -1
  56. package/resources/servers/secrets.d.mts +14 -85
  57. package/resources/servers/secrets.d.mts.map +1 -1
  58. package/resources/servers/secrets.d.ts +14 -85
  59. package/resources/servers/secrets.d.ts.map +1 -1
  60. package/resources/servers/secrets.js +13 -63
  61. package/resources/servers/secrets.js.map +1 -1
  62. package/resources/servers/secrets.mjs +13 -63
  63. package/resources/servers/secrets.mjs.map +1 -1
  64. package/resources/servers/servers.d.mts +30 -182
  65. package/resources/servers/servers.d.mts.map +1 -1
  66. package/resources/servers/servers.d.ts +30 -182
  67. package/resources/servers/servers.d.ts.map +1 -1
  68. package/resources/servers/servers.js +26 -79
  69. package/resources/servers/servers.js.map +1 -1
  70. package/resources/servers/servers.mjs +28 -81
  71. package/resources/servers/servers.mjs.map +1 -1
  72. package/src/client.ts +0 -16
  73. package/src/resources/index.ts +0 -8
  74. package/src/resources/servers/deployments.ts +69 -425
  75. package/src/resources/servers/domains.ts +270 -0
  76. package/src/resources/servers/index.ts +10 -36
  77. package/src/resources/servers/logs.ts +9 -118
  78. package/src/resources/servers/repo.ts +15 -150
  79. package/src/resources/servers/secrets.ts +17 -126
  80. package/src/resources/servers/servers.ts +51 -319
  81. package/src/version.ts +1 -1
  82. package/version.d.mts +1 -1
  83. package/version.d.ts +1 -1
  84. package/version.js +1 -1
  85. package/version.mjs +1 -1
@@ -5,136 +5,68 @@ import { type Uploadable } from "../../core/uploads.js";
5
5
  import { RequestOptions } from "../../internal/request-options.js";
6
6
  export declare class Deployments extends APIResource {
7
7
  /**
8
- * List all deployments for a server, ordered by most recent first. Does not
9
- * include deployment logs — fetch a specific deployment to see logs.
8
+ * List releases ordered by most recent first. Logs are omitted — fetch a specific
9
+ * release to see logs.
10
10
  *
11
11
  * @example
12
12
  * ```ts
13
13
  * const deployments = await client.servers.deployments.list(
14
- * 'server',
15
- * { namespace: 'namespace' },
14
+ * 'qualifiedName',
16
15
  * );
17
16
  * ```
18
17
  */
19
- list(server: string, params: DeploymentListParams, options?: RequestOptions): APIPromise<DeploymentListResponse>;
18
+ list(qualifiedName: string, options?: RequestOptions): APIPromise<DeploymentListResponse>;
20
19
  /**
21
- * Deploy an MCP server via multipart form. Supports hosted deployments (upload a
22
- * JS module), external deployments (register a URL), stdio deployments (upload an
23
- * MCPB bundle), and repo deployments (build from a connected GitHub repository).
20
+ * Submit a release via multipart form. Supports hosted (JS module upload),
21
+ * external (URL), stdio (MCPB bundle), and repo (GitHub build) release types.
24
22
  *
25
23
  * @example
26
24
  * ```ts
27
25
  * const response = await client.servers.deployments.deploy(
28
- * 'server',
29
- * { namespace: 'namespace', payload: 'payload' },
26
+ * 'qualifiedName',
27
+ * { payload: 'payload' },
30
28
  * );
31
29
  * ```
32
30
  */
33
- deploy(server: string, params: DeploymentDeployParams, options?: RequestOptions): APIPromise<DeploymentDeployResponse>;
31
+ deploy(qualifiedName: string, body: DeploymentDeployParams, options?: RequestOptions): APIPromise<DeploymentDeployResponse>;
34
32
  /**
35
- * Deploy an MCP server via multipart form. Supports hosted deployments (upload a
36
- * JS module), external deployments (register a URL), stdio deployments (upload an
37
- * MCPB bundle), and repo deployments (build from a connected GitHub repository).
38
- *
39
- * @example
40
- * ```ts
41
- * const response =
42
- * await client.servers.deployments.deployByNamespace(
43
- * 'namespace',
44
- * { payload: 'payload' },
45
- * );
46
- * ```
47
- */
48
- deployByNamespace(namespace: string, body: DeploymentDeployByNamespaceParams, options?: RequestOptions): APIPromise<DeploymentDeployByNamespaceResponse>;
49
- /**
50
- * Get full details for a specific deployment, including status, type, git
51
- * metadata, pipeline logs, and MCP endpoint URL.
33
+ * Retrieve release details including status, git metadata, pipeline logs, and MCP
34
+ * endpoint URL.
52
35
  *
53
36
  * @example
54
37
  * ```ts
55
38
  * const deployment = await client.servers.deployments.get(
56
39
  * 'id',
57
- * { namespace: 'namespace', server: 'server' },
40
+ * { qualifiedName: 'qualifiedName' },
58
41
  * );
59
42
  * ```
60
43
  */
61
44
  get(id: string, params: DeploymentGetParams, options?: RequestOptions): APIPromise<DeploymentGetResponse>;
62
45
  /**
63
- * Get full details for a specific deployment, including status, type, git
64
- * metadata, pipeline logs, and MCP endpoint URL.
65
- *
66
- * @example
67
- * ```ts
68
- * const response =
69
- * await client.servers.deployments.getByNamespace('id', {
70
- * namespace: 'namespace',
71
- * });
72
- * ```
73
- */
74
- getByNamespace(id: string, params: DeploymentGetByNamespaceParams, options?: RequestOptions): APIPromise<DeploymentGetByNamespaceResponse>;
75
- /**
76
- * List all deployments for a server, ordered by most recent first. Does not
77
- * include deployment logs — fetch a specific deployment to see logs.
78
- *
79
- * @example
80
- * ```ts
81
- * const response =
82
- * await client.servers.deployments.listByNamespace(
83
- * 'namespace',
84
- * );
85
- * ```
86
- */
87
- listByNamespace(namespace: string, options?: RequestOptions): APIPromise<DeploymentListByNamespaceResponse>;
88
- /**
89
- * Use id='latest' to resume the most recent deployment
46
+ * Resume a paused release (e.g. after OAuth authorization). Use id='latest' to
47
+ * resume the most recent one.
90
48
  *
91
49
  * @example
92
50
  * ```ts
93
51
  * const response = await client.servers.deployments.resume(
94
52
  * 'id',
95
- * { namespace: 'namespace', server: 'server' },
53
+ * { qualifiedName: 'qualifiedName' },
96
54
  * );
97
55
  * ```
98
56
  */
99
57
  resume(id: string, params: DeploymentResumeParams, options?: RequestOptions): APIPromise<DeploymentResumeResponse>;
100
58
  /**
101
- * Use id='latest' to resume the most recent deployment
102
- *
103
- * @example
104
- * ```ts
105
- * const response =
106
- * await client.servers.deployments.resumeByNamespace('id', {
107
- * namespace: 'namespace',
108
- * });
109
- * ```
110
- */
111
- resumeByNamespace(id: string, params: DeploymentResumeByNamespaceParams, options?: RequestOptions): APIPromise<DeploymentResumeByNamespaceResponse>;
112
- /**
113
- * Returns a real-time SSE stream of deployment logs and status updates. Connect to
114
- * this endpoint to receive live updates as the deployment progresses.
59
+ * Real-time SSE stream of release logs and status updates.
115
60
  *
116
61
  * @example
117
62
  * ```ts
118
63
  * const response = await client.servers.deployments.stream(
119
64
  * 'id',
120
- * { namespace: 'namespace', server: 'server' },
65
+ * { qualifiedName: 'qualifiedName' },
121
66
  * );
122
67
  * ```
123
68
  */
124
69
  stream(id: string, params: DeploymentStreamParams, options?: RequestOptions): APIPromise<Stream<DeploymentStreamResponse>>;
125
- /**
126
- * Returns a real-time SSE stream of deployment logs and status updates. Connect to
127
- * this endpoint to receive live updates as the deployment progresses.
128
- *
129
- * @example
130
- * ```ts
131
- * const response =
132
- * await client.servers.deployments.streamByNamespace('id', {
133
- * namespace: 'namespace',
134
- * });
135
- * ```
136
- */
137
- streamByNamespace(id: string, params: DeploymentStreamByNamespaceParams, options?: RequestOptions): APIPromise<Stream<DeploymentStreamByNamespaceResponse>>;
138
70
  }
139
71
  export type DeployPayload = HostedDeployPayload | ExternalDeployPayload | StdioDeployPayload | DeployPayload.RepoDeployPayload;
140
72
  export declare namespace DeployPayload {
@@ -318,17 +250,17 @@ export declare namespace DeploymentListResponse {
318
250
  interface DeploymentListResponseItem {
319
251
  id: string;
320
252
  /**
321
- * ISO 8601 timestamp of when the deployment was created.
253
+ * ISO 8601 timestamp of when the release was created.
322
254
  */
323
255
  createdAt: string;
324
256
  /**
325
- * Current deployment status: QUEUED, WORKING, SUCCESS, FAILURE, FAILURE_SCAN,
326
- * AUTH_REQUIRED, CANCELLED, or INTERNAL_ERROR.
257
+ * Current status: QUEUED, WORKING, SUCCESS, FAILURE, FAILURE_SCAN, AUTH_REQUIRED,
258
+ * CANCELLED, or INTERNAL_ERROR.
327
259
  */
328
260
  status: string;
329
261
  /**
330
- * Deployment type: hosted_shttp (Smithery-hosted), external_shttp (external URL),
331
- * or stdio (local binary).
262
+ * Release type: hosted_shttp (Smithery-hosted), external_shttp (external URL), or
263
+ * stdio (local binary).
332
264
  */
333
265
  type: string;
334
266
  /**
@@ -336,16 +268,15 @@ export declare namespace DeploymentListResponse {
336
268
  */
337
269
  updatedAt: string;
338
270
  /**
339
- * Git branch this deployment was built from.
271
+ * Git branch this release was built from.
340
272
  */
341
273
  branch?: string | null;
342
274
  /**
343
- * Git commit SHA that triggered this deployment. Present for repo and
344
- * source-tracked deployments.
275
+ * Git commit SHA that triggered this release.
345
276
  */
346
277
  commit?: string | null;
347
278
  /**
348
- * Git commit message associated with this deployment.
279
+ * Git commit message associated with this release.
349
280
  */
350
281
  commitMessage?: string | null;
351
282
  /**
@@ -353,61 +284,43 @@ export declare namespace DeploymentListResponse {
353
284
  */
354
285
  mcpUrl?: string;
355
286
  /**
356
- * Upstream MCP server URL. Present only for external deployments.
287
+ * Upstream MCP server URL. Present only for external releases.
357
288
  */
358
289
  upstreamUrl?: string | null;
359
290
  }
360
291
  }
361
292
  export interface DeploymentDeployResponse {
362
293
  /**
363
- * Unique identifier for this deployment.
364
- */
365
- deploymentId: string;
366
- /**
367
- * The MCP endpoint URL for connecting to this server once deployed.
368
- */
369
- mcpUrl: string;
370
- /**
371
- * Initial deployment status. Will be WORKING while the deployment is in progress.
372
- */
373
- status: string;
374
- /**
375
- * Non-fatal warnings encountered during deployment submission.
376
- */
377
- warnings?: Array<string>;
378
- }
379
- export interface DeploymentDeployByNamespaceResponse {
380
- /**
381
- * Unique identifier for this deployment.
294
+ * Unique identifier for this release.
382
295
  */
383
296
  deploymentId: string;
384
297
  /**
385
- * The MCP endpoint URL for connecting to this server once deployed.
298
+ * The MCP endpoint URL for connecting to this server once published.
386
299
  */
387
300
  mcpUrl: string;
388
301
  /**
389
- * Initial deployment status. Will be WORKING while the deployment is in progress.
302
+ * Initial status. Will be WORKING while the release is in progress.
390
303
  */
391
304
  status: string;
392
305
  /**
393
- * Non-fatal warnings encountered during deployment submission.
306
+ * Non-fatal warnings encountered during submission.
394
307
  */
395
308
  warnings?: Array<string>;
396
309
  }
397
310
  export interface DeploymentGetResponse {
398
311
  id: string;
399
312
  /**
400
- * ISO 8601 timestamp of when the deployment was created.
313
+ * ISO 8601 timestamp of when the release was created.
401
314
  */
402
315
  createdAt: string;
403
316
  /**
404
- * Current deployment status: QUEUED, WORKING, SUCCESS, FAILURE, FAILURE_SCAN,
405
- * AUTH_REQUIRED, CANCELLED, or INTERNAL_ERROR.
317
+ * Current status: QUEUED, WORKING, SUCCESS, FAILURE, FAILURE_SCAN, AUTH_REQUIRED,
318
+ * CANCELLED, or INTERNAL_ERROR.
406
319
  */
407
320
  status: string;
408
321
  /**
409
- * Deployment type: hosted_shttp (Smithery-hosted), external_shttp (external URL),
410
- * or stdio (local binary).
322
+ * Release type: hosted_shttp (Smithery-hosted), external_shttp (external URL), or
323
+ * stdio (local binary).
411
324
  */
412
325
  type: string;
413
326
  /**
@@ -415,21 +328,19 @@ export interface DeploymentGetResponse {
415
328
  */
416
329
  updatedAt: string;
417
330
  /**
418
- * Git branch this deployment was built from.
331
+ * Git branch this release was built from.
419
332
  */
420
333
  branch?: string | null;
421
334
  /**
422
- * Git commit SHA that triggered this deployment. Present for repo and
423
- * source-tracked deployments.
335
+ * Git commit SHA that triggered this release.
424
336
  */
425
337
  commit?: string | null;
426
338
  /**
427
- * Git commit message associated with this deployment.
339
+ * Git commit message associated with this release.
428
340
  */
429
341
  commitMessage?: string | null;
430
342
  /**
431
- * Deployment pipeline log entries. Only included when fetching a single
432
- * deployment.
343
+ * Pipeline log entries. Only included when fetching a single release.
433
344
  */
434
345
  logs?: Array<DeploymentGetResponse.Log>;
435
346
  /**
@@ -437,7 +348,7 @@ export interface DeploymentGetResponse {
437
348
  */
438
349
  mcpUrl?: string;
439
350
  /**
440
- * Upstream MCP server URL. Present only for external deployments.
351
+ * Upstream MCP server URL. Present only for external releases.
441
352
  */
442
353
  upstreamUrl?: string | null;
443
354
  }
@@ -452,8 +363,8 @@ export declare namespace DeploymentGetResponse {
452
363
  */
453
364
  message: string;
454
365
  /**
455
- * Deployment pipeline stage: deploy (bundle upload), scan (security/OAuth check),
456
- * metadata (tool discovery), publish (making the server live).
366
+ * Pipeline stage: deploy (bundle upload), scan (security/OAuth check), metadata
367
+ * (tool discovery), publish (making the server live).
457
368
  */
458
369
  stage: 'deploy' | 'scan' | 'metadata' | 'publish';
459
370
  /**
@@ -474,213 +385,54 @@ export declare namespace DeploymentGetResponse {
474
385
  }
475
386
  }
476
387
  }
477
- export interface DeploymentGetByNamespaceResponse {
478
- id: string;
479
- /**
480
- * ISO 8601 timestamp of when the deployment was created.
481
- */
482
- createdAt: string;
483
- /**
484
- * Current deployment status: QUEUED, WORKING, SUCCESS, FAILURE, FAILURE_SCAN,
485
- * AUTH_REQUIRED, CANCELLED, or INTERNAL_ERROR.
486
- */
487
- status: string;
488
- /**
489
- * Deployment type: hosted_shttp (Smithery-hosted), external_shttp (external URL),
490
- * or stdio (local binary).
491
- */
492
- type: string;
493
- /**
494
- * ISO 8601 timestamp of the last status change.
495
- */
496
- updatedAt: string;
497
- /**
498
- * Git branch this deployment was built from.
499
- */
500
- branch?: string | null;
501
- /**
502
- * Git commit SHA that triggered this deployment. Present for repo and
503
- * source-tracked deployments.
504
- */
505
- commit?: string | null;
506
- /**
507
- * Git commit message associated with this deployment.
508
- */
509
- commitMessage?: string | null;
510
- /**
511
- * Deployment pipeline log entries. Only included when fetching a single
512
- * deployment.
513
- */
514
- logs?: Array<DeploymentGetByNamespaceResponse.Log>;
515
- /**
516
- * The MCP endpoint URL for connecting to this server.
517
- */
518
- mcpUrl?: string;
519
- /**
520
- * Upstream MCP server URL. Present only for external deployments.
521
- */
522
- upstreamUrl?: string | null;
523
- }
524
- export declare namespace DeploymentGetByNamespaceResponse {
525
- interface Log {
526
- /**
527
- * Log level: 'start', 'end', 'info', 'success', or 'failure'.
528
- */
529
- level: string;
530
- /**
531
- * Human-readable log message.
532
- */
533
- message: string;
534
- /**
535
- * Deployment pipeline stage: deploy (bundle upload), scan (security/OAuth check),
536
- * metadata (tool discovery), publish (making the server live).
537
- */
538
- stage: 'deploy' | 'scan' | 'metadata' | 'publish';
539
- /**
540
- * ISO 8601 timestamp of the log entry.
541
- */
542
- timestamp: string;
543
- /**
544
- * Error details, present only when the stage failed.
545
- */
546
- error?: Log.Error;
547
- }
548
- namespace Log {
549
- /**
550
- * Error details, present only when the stage failed.
551
- */
552
- interface Error {
553
- message?: string;
554
- }
555
- }
556
- }
557
- export type DeploymentListByNamespaceResponse = Array<DeploymentListByNamespaceResponse.DeploymentListByNamespaceResponseItem>;
558
- export declare namespace DeploymentListByNamespaceResponse {
559
- interface DeploymentListByNamespaceResponseItem {
560
- id: string;
561
- /**
562
- * ISO 8601 timestamp of when the deployment was created.
563
- */
564
- createdAt: string;
565
- /**
566
- * Current deployment status: QUEUED, WORKING, SUCCESS, FAILURE, FAILURE_SCAN,
567
- * AUTH_REQUIRED, CANCELLED, or INTERNAL_ERROR.
568
- */
569
- status: string;
570
- /**
571
- * Deployment type: hosted_shttp (Smithery-hosted), external_shttp (external URL),
572
- * or stdio (local binary).
573
- */
574
- type: string;
575
- /**
576
- * ISO 8601 timestamp of the last status change.
577
- */
578
- updatedAt: string;
579
- /**
580
- * Git branch this deployment was built from.
581
- */
582
- branch?: string | null;
583
- /**
584
- * Git commit SHA that triggered this deployment. Present for repo and
585
- * source-tracked deployments.
586
- */
587
- commit?: string | null;
588
- /**
589
- * Git commit message associated with this deployment.
590
- */
591
- commitMessage?: string | null;
592
- /**
593
- * The MCP endpoint URL for connecting to this server.
594
- */
595
- mcpUrl?: string;
596
- /**
597
- * Upstream MCP server URL. Present only for external deployments.
598
- */
599
- upstreamUrl?: string | null;
600
- }
601
- }
602
388
  export interface DeploymentResumeResponse {
603
389
  deploymentId: string;
604
390
  status: string;
605
391
  }
606
- export interface DeploymentResumeByNamespaceResponse {
607
- deploymentId: string;
608
- status: string;
609
- }
610
392
  /**
611
393
  * SSE events: init (with buffered logs), log, status, complete
612
394
  */
613
395
  export type DeploymentStreamResponse = string;
614
- /**
615
- * SSE events: init (with buffered logs), log, status, complete
616
- */
617
- export type DeploymentStreamByNamespaceResponse = string;
618
- export interface DeploymentListParams {
619
- namespace: string;
620
- }
621
396
  export interface DeploymentDeployParams {
622
397
  /**
623
- * Path param
624
- */
625
- namespace: string;
626
- /**
627
- * Body param: JSON-encoded deployment payload. See DeployPayload schema for
628
- * structure.
398
+ * JSON-encoded release payload. See DeployPayload schema for structure.
629
399
  */
630
400
  payload: string;
631
401
  /**
632
- * Body param: MCPB bundle file (for stdio deployments)
402
+ * MCPB bundle file (for stdio releases)
633
403
  */
634
404
  bundle?: Uploadable;
635
405
  /**
636
- * Body param: JavaScript module file (for hosted deployments)
406
+ * JavaScript module file (for hosted releases)
637
407
  */
638
408
  module?: Uploadable;
639
409
  /**
640
- * Body param: Source map file (for hosted deployments)
410
+ * Source map file (for hosted releases)
641
411
  */
642
412
  sourcemap?: Uploadable;
643
413
  }
644
- export interface DeploymentDeployByNamespaceParams {
645
- /**
646
- * JSON-encoded deployment payload. See DeployPayload schema for structure.
647
- */
648
- payload: string;
649
- /**
650
- * MCPB bundle file (for stdio deployments)
651
- */
652
- bundle?: Uploadable;
653
- /**
654
- * JavaScript module file (for hosted deployments)
655
- */
656
- module?: Uploadable;
414
+ export interface DeploymentGetParams {
657
415
  /**
658
- * Source map file (for hosted deployments)
416
+ * The server's qualified name (e.g. 'namespace/server' or 'namespace' for
417
+ * namespace-only servers). Use %2F to encode the slash.
659
418
  */
660
- sourcemap?: Uploadable;
661
- }
662
- export interface DeploymentGetParams {
663
- namespace: string;
664
- server: string;
665
- }
666
- export interface DeploymentGetByNamespaceParams {
667
- namespace: string;
419
+ qualifiedName: string;
668
420
  }
669
421
  export interface DeploymentResumeParams {
670
- namespace: string;
671
- server: string;
672
- }
673
- export interface DeploymentResumeByNamespaceParams {
674
- namespace: string;
422
+ /**
423
+ * The server's qualified name (e.g. 'namespace/server' or 'namespace' for
424
+ * namespace-only servers). Use %2F to encode the slash.
425
+ */
426
+ qualifiedName: string;
675
427
  }
676
428
  export interface DeploymentStreamParams {
677
- namespace: string;
678
- server: string;
679
- }
680
- export interface DeploymentStreamByNamespaceParams {
681
- namespace: string;
429
+ /**
430
+ * The server's qualified name (e.g. 'namespace/server' or 'namespace' for
431
+ * namespace-only servers). Use %2F to encode the slash.
432
+ */
433
+ qualifiedName: string;
682
434
  }
683
435
  export declare namespace Deployments {
684
- export { type DeployPayload as DeployPayload, type ExternalDeployPayload as ExternalDeployPayload, type HostedDeployPayload as HostedDeployPayload, type ServerCard as ServerCard, type StdioDeployPayload as StdioDeployPayload, type DeploymentListResponse as DeploymentListResponse, type DeploymentDeployResponse as DeploymentDeployResponse, type DeploymentDeployByNamespaceResponse as DeploymentDeployByNamespaceResponse, type DeploymentGetResponse as DeploymentGetResponse, type DeploymentGetByNamespaceResponse as DeploymentGetByNamespaceResponse, type DeploymentListByNamespaceResponse as DeploymentListByNamespaceResponse, type DeploymentResumeResponse as DeploymentResumeResponse, type DeploymentResumeByNamespaceResponse as DeploymentResumeByNamespaceResponse, type DeploymentStreamResponse as DeploymentStreamResponse, type DeploymentStreamByNamespaceResponse as DeploymentStreamByNamespaceResponse, type DeploymentListParams as DeploymentListParams, type DeploymentDeployParams as DeploymentDeployParams, type DeploymentDeployByNamespaceParams as DeploymentDeployByNamespaceParams, type DeploymentGetParams as DeploymentGetParams, type DeploymentGetByNamespaceParams as DeploymentGetByNamespaceParams, type DeploymentResumeParams as DeploymentResumeParams, type DeploymentResumeByNamespaceParams as DeploymentResumeByNamespaceParams, type DeploymentStreamParams as DeploymentStreamParams, type DeploymentStreamByNamespaceParams as DeploymentStreamByNamespaceParams, };
436
+ export { type DeployPayload as DeployPayload, type ExternalDeployPayload as ExternalDeployPayload, type HostedDeployPayload as HostedDeployPayload, type ServerCard as ServerCard, type StdioDeployPayload as StdioDeployPayload, type DeploymentListResponse as DeploymentListResponse, type DeploymentDeployResponse as DeploymentDeployResponse, type DeploymentGetResponse as DeploymentGetResponse, type DeploymentResumeResponse as DeploymentResumeResponse, type DeploymentStreamResponse as DeploymentStreamResponse, type DeploymentDeployParams as DeploymentDeployParams, type DeploymentGetParams as DeploymentGetParams, type DeploymentResumeParams as DeploymentResumeParams, type DeploymentStreamParams as DeploymentStreamParams, };
685
437
  }
686
438
  //# sourceMappingURL=deployments.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"deployments.d.ts","sourceRoot":"","sources":["../../src/resources/servers/deployments.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"deployments.d.ts","sourceRoot":"","sources":["../../src/resources/servers/deployments.ts"],"names":[],"mappings":"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"}