@replit/connectors 0.7.0 → 0.8.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 +8 -0
- package/package.json +1 -1
- package/resources/top-level.d.mts +4 -28
- package/resources/top-level.d.mts.map +1 -1
- package/resources/top-level.d.ts +4 -28
- package/resources/top-level.d.ts.map +1 -1
- package/src/resources/top-level.ts +5 -35
- 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
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.8.0 (2025-11-11)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.7.0...v0.8.0](https://github.com/replit/connectors-ts-sdk/compare/v0.7.0...v0.8.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **sdk:** release ([67570f3](https://github.com/replit/connectors-ts-sdk/commit/67570f36862f6c2e29abd867d86f4ee95856aa5b))
|
|
10
|
+
|
|
3
11
|
## 0.7.0 (2025-11-06)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v0.6.0...v0.7.0](https://github.com/replit/connectors-ts-sdk/compare/v0.6.0...v0.7.0)
|
package/package.json
CHANGED
|
@@ -3150,10 +3150,6 @@ export declare namespace CreateConnectionResponse {
|
|
|
3150
3150
|
* Base URL of the MCP server (e.g., https://mcp.example.com)
|
|
3151
3151
|
*/
|
|
3152
3152
|
base_url: string;
|
|
3153
|
-
/**
|
|
3154
|
-
* Display name for this MCP server (e.g., "My Custom MCP")
|
|
3155
|
-
*/
|
|
3156
|
-
display_name: string;
|
|
3157
3153
|
/**
|
|
3158
3154
|
* Custom headers to include with every request
|
|
3159
3155
|
*/
|
|
@@ -10943,10 +10939,6 @@ export declare namespace GetConnectionResponse {
|
|
|
10943
10939
|
* Base URL of the MCP server (e.g., https://mcp.example.com)
|
|
10944
10940
|
*/
|
|
10945
10941
|
base_url: string;
|
|
10946
|
-
/**
|
|
10947
|
-
* Display name for this MCP server (e.g., "My Custom MCP")
|
|
10948
|
-
*/
|
|
10949
|
-
display_name: string;
|
|
10950
10942
|
/**
|
|
10951
10943
|
* Custom headers to include with every request
|
|
10952
10944
|
*/
|
|
@@ -14618,10 +14610,6 @@ export declare namespace ListConnectionsResponse {
|
|
|
14618
14610
|
* Base URL of the MCP server (e.g., https://mcp.example.com)
|
|
14619
14611
|
*/
|
|
14620
14612
|
base_url: string;
|
|
14621
|
-
/**
|
|
14622
|
-
* Display name for this MCP server (e.g., "My Custom MCP")
|
|
14623
|
-
*/
|
|
14624
|
-
display_name: string;
|
|
14625
14613
|
/**
|
|
14626
14614
|
* Custom headers to include with every request
|
|
14627
14615
|
*/
|
|
@@ -23025,10 +23013,6 @@ export declare namespace PostConnectResponse {
|
|
|
23025
23013
|
* Base URL of the MCP server (e.g., https://mcp.example.com)
|
|
23026
23014
|
*/
|
|
23027
23015
|
base_url: string;
|
|
23028
|
-
/**
|
|
23029
|
-
* Display name for this MCP server (e.g., "My Custom MCP")
|
|
23030
|
-
*/
|
|
23031
|
-
display_name: string;
|
|
23032
23016
|
/**
|
|
23033
23017
|
* Custom headers to include with every request
|
|
23034
23018
|
*/
|
|
@@ -24245,10 +24229,6 @@ export declare namespace PreConnectResponse {
|
|
|
24245
24229
|
* Base URL of the MCP server (e.g., https://mcp.example.com)
|
|
24246
24230
|
*/
|
|
24247
24231
|
base_url: string;
|
|
24248
|
-
/**
|
|
24249
|
-
* Display name for this MCP server (e.g., "My Custom MCP")
|
|
24250
|
-
*/
|
|
24251
|
-
display_name: string;
|
|
24252
24232
|
/**
|
|
24253
24233
|
* Custom headers to include with every request
|
|
24254
24234
|
*/
|
|
@@ -26355,6 +26335,10 @@ export interface CreateConnectionParams {
|
|
|
26355
26335
|
* customer.
|
|
26356
26336
|
*/
|
|
26357
26337
|
customer_id?: string;
|
|
26338
|
+
/**
|
|
26339
|
+
* Custom display name for the connection
|
|
26340
|
+
*/
|
|
26341
|
+
display_name?: string;
|
|
26358
26342
|
/**
|
|
26359
26343
|
* Environment for the connection
|
|
26360
26344
|
*/
|
|
@@ -28310,10 +28294,6 @@ export declare namespace CreateConnectionParams {
|
|
|
28310
28294
|
* Base URL of the MCP server (e.g., https://mcp.example.com)
|
|
28311
28295
|
*/
|
|
28312
28296
|
base_url: string;
|
|
28313
|
-
/**
|
|
28314
|
-
* Display name for this MCP server (e.g., "My Custom MCP")
|
|
28315
|
-
*/
|
|
28316
|
-
display_name: string;
|
|
28317
28297
|
/**
|
|
28318
28298
|
* Custom headers to include with every request
|
|
28319
28299
|
*/
|
|
@@ -29945,10 +29925,6 @@ export declare namespace PostConnectParams {
|
|
|
29945
29925
|
* Base URL of the MCP server (e.g., https://mcp.example.com)
|
|
29946
29926
|
*/
|
|
29947
29927
|
base_url: string;
|
|
29948
|
-
/**
|
|
29949
|
-
* Display name for this MCP server (e.g., "My Custom MCP")
|
|
29950
|
-
*/
|
|
29951
|
-
display_name: string;
|
|
29952
29928
|
/**
|
|
29953
29929
|
* Custom headers to include with every request
|
|
29954
29930
|
*/
|