@smithery/api 0.42.0 → 0.43.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 +15 -0
- 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/core/streaming.js.map +1 -1
- package/core/streaming.mjs.map +1 -1
- package/package.json +1 -1
- package/resources/experimental/agents/agents.d.mts +2 -217
- package/resources/experimental/agents/agents.d.mts.map +1 -1
- package/resources/experimental/agents/agents.d.ts +2 -217
- package/resources/experimental/agents/agents.d.ts.map +1 -1
- package/resources/experimental/agents/agents.js.map +1 -1
- package/resources/experimental/agents/agents.mjs.map +1 -1
- package/resources/experimental/agents/index.d.mts +2 -2
- package/resources/experimental/agents/index.d.mts.map +1 -1
- package/resources/experimental/agents/index.d.ts +2 -2
- package/resources/experimental/agents/index.d.ts.map +1 -1
- package/resources/experimental/agents/index.js.map +1 -1
- package/resources/experimental/agents/index.mjs +1 -1
- package/resources/experimental/agents/index.mjs.map +1 -1
- package/resources/experimental/agents/responses.d.mts +0 -82
- package/resources/experimental/agents/responses.d.mts.map +1 -1
- package/resources/experimental/agents/responses.d.ts +0 -82
- package/resources/experimental/agents/responses.d.ts.map +1 -1
- package/resources/experimental/agents/responses.js +0 -29
- package/resources/experimental/agents/responses.js.map +1 -1
- package/resources/experimental/agents/responses.mjs +0 -29
- package/resources/experimental/agents/responses.mjs.map +1 -1
- package/resources/experimental/experimental.d.mts +2 -2
- package/resources/experimental/experimental.d.mts.map +1 -1
- package/resources/experimental/experimental.d.ts +2 -2
- package/resources/experimental/experimental.d.ts.map +1 -1
- package/resources/experimental/experimental.js.map +1 -1
- package/resources/experimental/experimental.mjs +1 -1
- package/resources/experimental/experimental.mjs.map +1 -1
- package/resources/experimental/index.d.mts +1 -1
- package/resources/experimental/index.d.mts.map +1 -1
- package/resources/experimental/index.d.ts +1 -1
- package/resources/experimental/index.d.ts.map +1 -1
- package/resources/experimental/index.js.map +1 -1
- package/resources/experimental/index.mjs +1 -1
- package/resources/experimental/index.mjs.map +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/index.d.mts +1 -1
- package/resources/servers/index.d.mts.map +1 -1
- package/resources/servers/index.d.ts +1 -1
- package/resources/servers/index.d.ts.map +1 -1
- package/resources/servers/index.js.map +1 -1
- package/resources/servers/index.mjs.map +1 -1
- package/resources/servers/servers.d.mts +74 -2
- package/resources/servers/servers.d.mts.map +1 -1
- package/resources/servers/servers.d.ts +74 -2
- package/resources/servers/servers.d.ts.map +1 -1
- package/resources/servers/servers.js +28 -0
- package/resources/servers/servers.js.map +1 -1
- package/resources/servers/servers.mjs +28 -0
- package/resources/servers/servers.mjs.map +1 -1
- package/src/client.ts +9 -1
- package/src/core/streaming.ts +2 -2
- package/src/resources/experimental/agents/agents.ts +2 -288
- package/src/resources/experimental/agents/index.ts +2 -18
- package/src/resources/experimental/agents/responses.ts +1 -101
- package/src/resources/experimental/experimental.ts +2 -34
- package/src/resources/experimental/index.ts +1 -17
- package/src/resources/index.ts +4 -0
- package/src/resources/servers/index.ts +4 -0
- package/src/resources/servers/servers.ts +112 -1
- 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
|
@@ -1,105 +1,5 @@
|
|
|
1
1
|
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
2
|
|
|
3
3
|
import { APIResource } from '../../../core/resource';
|
|
4
|
-
import * as AgentsAPI from './agents';
|
|
5
|
-
import { APIPromise } from '../../../core/api-promise';
|
|
6
|
-
import { RequestOptions } from '../../../internal/request-options';
|
|
7
|
-
import { path } from '../../../internal/utils/path';
|
|
8
4
|
|
|
9
|
-
export class Responses extends APIResource {
|
|
10
|
-
/**
|
|
11
|
-
* Create a new agent response. Supports synchronous, streaming, and background
|
|
12
|
-
* execution modes.
|
|
13
|
-
*
|
|
14
|
-
* @example
|
|
15
|
-
* ```ts
|
|
16
|
-
* const response =
|
|
17
|
-
* await client.experimental.agents.responses.create({
|
|
18
|
-
* namespace: 'namespace',
|
|
19
|
-
* });
|
|
20
|
-
* ```
|
|
21
|
-
*/
|
|
22
|
-
create(body: ResponseCreateParams, options?: RequestOptions): APIPromise<AgentsAPI.Response> {
|
|
23
|
-
return this._client.post('/agents/responses', { body, ...options });
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
/**
|
|
27
|
-
* Get the status and result of an agent response by ID. Used to poll background
|
|
28
|
-
* responses.
|
|
29
|
-
*
|
|
30
|
-
* @example
|
|
31
|
-
* ```ts
|
|
32
|
-
* const response =
|
|
33
|
-
* await client.experimental.agents.responses.get('id');
|
|
34
|
-
* ```
|
|
35
|
-
*/
|
|
36
|
-
get(id: string, options?: RequestOptions): APIPromise<AgentsAPI.Response> {
|
|
37
|
-
return this._client.get(path`/agents/responses/${id}`, options);
|
|
38
|
-
}
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
export interface ResponseCreateParams {
|
|
42
|
-
/**
|
|
43
|
-
* Smithery namespace for tool discovery
|
|
44
|
-
*/
|
|
45
|
-
namespace: string;
|
|
46
|
-
|
|
47
|
-
/**
|
|
48
|
-
* Run in background for long-running tasks
|
|
49
|
-
*/
|
|
50
|
-
background?: boolean;
|
|
51
|
-
|
|
52
|
-
/**
|
|
53
|
-
* Input text or array of messages
|
|
54
|
-
*/
|
|
55
|
-
input?: string | Array<AgentsAPI.InputItem> | null;
|
|
56
|
-
|
|
57
|
-
/**
|
|
58
|
-
* Additional system instructions
|
|
59
|
-
*/
|
|
60
|
-
instructions?: string | null;
|
|
61
|
-
|
|
62
|
-
/**
|
|
63
|
-
* Maximum output tokens
|
|
64
|
-
*/
|
|
65
|
-
max_output_tokens?: number | null;
|
|
66
|
-
|
|
67
|
-
/**
|
|
68
|
-
* Maximum tool calls before stopping
|
|
69
|
-
*/
|
|
70
|
-
max_tool_calls?: number | null;
|
|
71
|
-
|
|
72
|
-
/**
|
|
73
|
-
* Request metadata
|
|
74
|
-
*/
|
|
75
|
-
metadata?: { [key: string]: string } | null;
|
|
76
|
-
|
|
77
|
-
/**
|
|
78
|
-
* Model to use
|
|
79
|
-
*/
|
|
80
|
-
model?: string | null;
|
|
81
|
-
|
|
82
|
-
/**
|
|
83
|
-
* Previous response ID for multi-turn
|
|
84
|
-
*/
|
|
85
|
-
previous_response_id?: string | null;
|
|
86
|
-
|
|
87
|
-
/**
|
|
88
|
-
* Enable streaming response
|
|
89
|
-
*/
|
|
90
|
-
stream?: boolean;
|
|
91
|
-
|
|
92
|
-
/**
|
|
93
|
-
* Temperature for generation
|
|
94
|
-
*/
|
|
95
|
-
temperature?: number | null;
|
|
96
|
-
|
|
97
|
-
/**
|
|
98
|
-
* Top-p sampling
|
|
99
|
-
*/
|
|
100
|
-
top_p?: number | null;
|
|
101
|
-
}
|
|
102
|
-
|
|
103
|
-
export declare namespace Responses {
|
|
104
|
-
export { type ResponseCreateParams as ResponseCreateParams };
|
|
105
|
-
}
|
|
5
|
+
export class Responses extends APIResource {}
|
|
@@ -2,23 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
import { APIResource } from '../../core/resource';
|
|
4
4
|
import * as AgentsAPI from './agents/agents';
|
|
5
|
-
import {
|
|
6
|
-
Agents,
|
|
7
|
-
AssistantMessage,
|
|
8
|
-
CreateResponseRequest,
|
|
9
|
-
ErrorResponse,
|
|
10
|
-
FunctionCall,
|
|
11
|
-
InputItem,
|
|
12
|
-
InputTextContent,
|
|
13
|
-
OutputItem,
|
|
14
|
-
OutputTextContent,
|
|
15
|
-
Response,
|
|
16
|
-
ResponseStatus,
|
|
17
|
-
StringContent,
|
|
18
|
-
SystemMessage,
|
|
19
|
-
Usage,
|
|
20
|
-
UserMessage,
|
|
21
|
-
} from './agents/agents';
|
|
5
|
+
import { Agents } from './agents/agents';
|
|
22
6
|
import * as ConnectAPI from './connect/connect';
|
|
23
7
|
import { Connect } from './connect/connect';
|
|
24
8
|
|
|
@@ -31,23 +15,7 @@ Experimental.Agents = Agents;
|
|
|
31
15
|
Experimental.Connect = Connect;
|
|
32
16
|
|
|
33
17
|
export declare namespace Experimental {
|
|
34
|
-
export {
|
|
35
|
-
Agents as Agents,
|
|
36
|
-
type AssistantMessage as AssistantMessage,
|
|
37
|
-
type CreateResponseRequest as CreateResponseRequest,
|
|
38
|
-
type ErrorResponse as ErrorResponse,
|
|
39
|
-
type FunctionCall as FunctionCall,
|
|
40
|
-
type InputItem as InputItem,
|
|
41
|
-
type InputTextContent as InputTextContent,
|
|
42
|
-
type OutputItem as OutputItem,
|
|
43
|
-
type OutputTextContent as OutputTextContent,
|
|
44
|
-
type Response as Response,
|
|
45
|
-
type ResponseStatus as ResponseStatus,
|
|
46
|
-
type StringContent as StringContent,
|
|
47
|
-
type SystemMessage as SystemMessage,
|
|
48
|
-
type Usage as Usage,
|
|
49
|
-
type UserMessage as UserMessage,
|
|
50
|
-
};
|
|
18
|
+
export { Agents as Agents };
|
|
51
19
|
|
|
52
20
|
export { Connect as Connect };
|
|
53
21
|
}
|
|
@@ -1,21 +1,5 @@
|
|
|
1
1
|
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
2
|
|
|
3
|
-
export {
|
|
4
|
-
Agents,
|
|
5
|
-
type AssistantMessage,
|
|
6
|
-
type CreateResponseRequest,
|
|
7
|
-
type ErrorResponse,
|
|
8
|
-
type FunctionCall,
|
|
9
|
-
type InputItem,
|
|
10
|
-
type InputTextContent,
|
|
11
|
-
type OutputItem,
|
|
12
|
-
type OutputTextContent,
|
|
13
|
-
type Response,
|
|
14
|
-
type ResponseStatus,
|
|
15
|
-
type StringContent,
|
|
16
|
-
type SystemMessage,
|
|
17
|
-
type Usage,
|
|
18
|
-
type UserMessage,
|
|
19
|
-
} from './agents/index';
|
|
3
|
+
export { Agents } from './agents/index';
|
|
20
4
|
export { Connect } from './connect/index';
|
|
21
5
|
export { Experimental } from './experimental';
|
package/src/resources/index.ts
CHANGED
|
@@ -16,17 +16,21 @@ export {
|
|
|
16
16
|
type DeploymentTarget,
|
|
17
17
|
type ProjectConfig,
|
|
18
18
|
type ServerCreateResponse,
|
|
19
|
+
type ServerUpdateResponse,
|
|
19
20
|
type ServerListResponse,
|
|
20
21
|
type ServerDeleteResponse,
|
|
21
22
|
type ServerCreateByNamespaceResponse,
|
|
22
23
|
type ServerGetResponse,
|
|
23
24
|
type ServerGetByNamespaceResponse,
|
|
25
|
+
type ServerUpdateByNamespaceResponse,
|
|
24
26
|
type ServerCreateParams,
|
|
27
|
+
type ServerUpdateParams,
|
|
25
28
|
type ServerListParams,
|
|
26
29
|
type ServerDeleteParams,
|
|
27
30
|
type ServerCreateByNamespaceParams,
|
|
28
31
|
type ServerDownloadParams,
|
|
29
32
|
type ServerGetParams,
|
|
33
|
+
type ServerUpdateByNamespaceParams,
|
|
30
34
|
type ServerListResponsesSmitheryPage,
|
|
31
35
|
} from './servers/servers';
|
|
32
36
|
export {
|
|
@@ -67,16 +67,20 @@ export {
|
|
|
67
67
|
type DeploymentTarget,
|
|
68
68
|
type ProjectConfig,
|
|
69
69
|
type ServerCreateResponse,
|
|
70
|
+
type ServerUpdateResponse,
|
|
70
71
|
type ServerListResponse,
|
|
71
72
|
type ServerDeleteResponse,
|
|
72
73
|
type ServerCreateByNamespaceResponse,
|
|
73
74
|
type ServerGetResponse,
|
|
74
75
|
type ServerGetByNamespaceResponse,
|
|
76
|
+
type ServerUpdateByNamespaceResponse,
|
|
75
77
|
type ServerCreateParams,
|
|
78
|
+
type ServerUpdateParams,
|
|
76
79
|
type ServerListParams,
|
|
77
80
|
type ServerDeleteParams,
|
|
78
81
|
type ServerCreateByNamespaceParams,
|
|
79
82
|
type ServerDownloadParams,
|
|
80
83
|
type ServerGetParams,
|
|
84
|
+
type ServerUpdateByNamespaceParams,
|
|
81
85
|
type ServerListResponsesSmitheryPage,
|
|
82
86
|
} from './servers';
|
|
@@ -98,6 +98,25 @@ export class Servers extends APIResource {
|
|
|
98
98
|
return this._client.put(path`/servers/${namespace}/${server}`, { body, ...options });
|
|
99
99
|
}
|
|
100
100
|
|
|
101
|
+
/**
|
|
102
|
+
* Update metadata for a server by namespace and server name.
|
|
103
|
+
*
|
|
104
|
+
* @example
|
|
105
|
+
* ```ts
|
|
106
|
+
* const server = await client.servers.update('server', {
|
|
107
|
+
* namespace: 'namespace',
|
|
108
|
+
* });
|
|
109
|
+
* ```
|
|
110
|
+
*/
|
|
111
|
+
update(
|
|
112
|
+
server: string,
|
|
113
|
+
params: ServerUpdateParams,
|
|
114
|
+
options?: RequestOptions,
|
|
115
|
+
): APIPromise<ServerUpdateResponse> {
|
|
116
|
+
const { namespace, ...body } = params;
|
|
117
|
+
return this._client.patch(path`/servers/${namespace}/${server}`, { body, ...options });
|
|
118
|
+
}
|
|
119
|
+
|
|
101
120
|
/**
|
|
102
121
|
* Search and browse public MCP servers in the Smithery registry. Supports
|
|
103
122
|
* full-text and semantic search via the `q` parameter, and filtering by deployment
|
|
@@ -209,6 +228,25 @@ export class Servers extends APIResource {
|
|
|
209
228
|
getByNamespace(namespace: string, options?: RequestOptions): APIPromise<ServerGetByNamespaceResponse> {
|
|
210
229
|
return this._client.get(path`/servers/${namespace}`, options);
|
|
211
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 });
|
|
249
|
+
}
|
|
212
250
|
}
|
|
213
251
|
|
|
214
252
|
export type ServerListResponsesSmitheryPage = SmitheryPage<ServerListResponse>;
|
|
@@ -282,6 +320,14 @@ export interface ServerCreateResponse {
|
|
|
282
320
|
server: string;
|
|
283
321
|
}
|
|
284
322
|
|
|
323
|
+
export interface ServerUpdateResponse {
|
|
324
|
+
namespace: string;
|
|
325
|
+
|
|
326
|
+
server: string;
|
|
327
|
+
|
|
328
|
+
success: boolean;
|
|
329
|
+
}
|
|
330
|
+
|
|
285
331
|
export interface ServerListResponse {
|
|
286
332
|
id: string;
|
|
287
333
|
|
|
@@ -349,7 +395,9 @@ export interface ServerListResponse {
|
|
|
349
395
|
}
|
|
350
396
|
|
|
351
397
|
export interface ServerDeleteResponse {
|
|
352
|
-
|
|
398
|
+
namespace: string;
|
|
399
|
+
|
|
400
|
+
server: string;
|
|
353
401
|
|
|
354
402
|
success: boolean;
|
|
355
403
|
}
|
|
@@ -492,6 +540,14 @@ export namespace ServerGetByNamespaceResponse {
|
|
|
492
540
|
}
|
|
493
541
|
}
|
|
494
542
|
|
|
543
|
+
export interface ServerUpdateByNamespaceResponse {
|
|
544
|
+
namespace: string;
|
|
545
|
+
|
|
546
|
+
server: string;
|
|
547
|
+
|
|
548
|
+
success: boolean;
|
|
549
|
+
}
|
|
550
|
+
|
|
495
551
|
export interface ServerCreateParams {
|
|
496
552
|
/**
|
|
497
553
|
* Path param
|
|
@@ -509,6 +565,43 @@ export interface ServerCreateParams {
|
|
|
509
565
|
displayName?: string;
|
|
510
566
|
}
|
|
511
567
|
|
|
568
|
+
export interface ServerUpdateParams {
|
|
569
|
+
/**
|
|
570
|
+
* Path param
|
|
571
|
+
*/
|
|
572
|
+
namespace: string;
|
|
573
|
+
|
|
574
|
+
/**
|
|
575
|
+
* Body param
|
|
576
|
+
*/
|
|
577
|
+
description?: string;
|
|
578
|
+
|
|
579
|
+
/**
|
|
580
|
+
* Body param
|
|
581
|
+
*/
|
|
582
|
+
displayName?: string;
|
|
583
|
+
|
|
584
|
+
/**
|
|
585
|
+
* Body param
|
|
586
|
+
*/
|
|
587
|
+
homepage?: string | null;
|
|
588
|
+
|
|
589
|
+
/**
|
|
590
|
+
* Body param
|
|
591
|
+
*/
|
|
592
|
+
iconUrl?: string | null;
|
|
593
|
+
|
|
594
|
+
/**
|
|
595
|
+
* Body param
|
|
596
|
+
*/
|
|
597
|
+
license?: string | null;
|
|
598
|
+
|
|
599
|
+
/**
|
|
600
|
+
* Body param
|
|
601
|
+
*/
|
|
602
|
+
unlisted?: boolean;
|
|
603
|
+
}
|
|
604
|
+
|
|
512
605
|
export interface ServerListParams extends SmitheryPageParams {
|
|
513
606
|
/**
|
|
514
607
|
* Comma-separated list of fields to include in response
|
|
@@ -594,6 +687,20 @@ export interface ServerGetParams {
|
|
|
594
687
|
namespace: string;
|
|
595
688
|
}
|
|
596
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
|
+
|
|
597
704
|
Servers.Deployments = Deployments;
|
|
598
705
|
Servers.Logs = Logs;
|
|
599
706
|
Servers.Secrets = Secrets;
|
|
@@ -605,18 +712,22 @@ export declare namespace Servers {
|
|
|
605
712
|
type DeploymentTarget as DeploymentTarget,
|
|
606
713
|
type ProjectConfig as ProjectConfig,
|
|
607
714
|
type ServerCreateResponse as ServerCreateResponse,
|
|
715
|
+
type ServerUpdateResponse as ServerUpdateResponse,
|
|
608
716
|
type ServerListResponse as ServerListResponse,
|
|
609
717
|
type ServerDeleteResponse as ServerDeleteResponse,
|
|
610
718
|
type ServerCreateByNamespaceResponse as ServerCreateByNamespaceResponse,
|
|
611
719
|
type ServerGetResponse as ServerGetResponse,
|
|
612
720
|
type ServerGetByNamespaceResponse as ServerGetByNamespaceResponse,
|
|
721
|
+
type ServerUpdateByNamespaceResponse as ServerUpdateByNamespaceResponse,
|
|
613
722
|
type ServerListResponsesSmitheryPage as ServerListResponsesSmitheryPage,
|
|
614
723
|
type ServerCreateParams as ServerCreateParams,
|
|
724
|
+
type ServerUpdateParams as ServerUpdateParams,
|
|
615
725
|
type ServerListParams as ServerListParams,
|
|
616
726
|
type ServerDeleteParams as ServerDeleteParams,
|
|
617
727
|
type ServerCreateByNamespaceParams as ServerCreateByNamespaceParams,
|
|
618
728
|
type ServerDownloadParams as ServerDownloadParams,
|
|
619
729
|
type ServerGetParams as ServerGetParams,
|
|
730
|
+
type ServerUpdateByNamespaceParams as ServerUpdateByNamespaceParams,
|
|
620
731
|
};
|
|
621
732
|
|
|
622
733
|
export {
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.43.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.43.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.43.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.43.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|