@replit/connectors 0.15.0 → 0.16.1
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 +23 -0
- package/LICENSE +1 -1
- package/README.md +31 -0
- package/package.json +1 -1
- package/resources/top-level.d.mts +52 -9
- package/resources/top-level.d.mts.map +1 -1
- package/resources/top-level.d.ts +52 -9
- package/resources/top-level.d.ts.map +1 -1
- package/src/resources/top-level.ts +71 -9
- 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
|
@@ -5319,6 +5319,11 @@ export namespace CreateConnectionResponse {
|
|
|
5319
5319
|
}
|
|
5320
5320
|
|
|
5321
5321
|
export interface PublicSettings {
|
|
5322
|
+
/**
|
|
5323
|
+
* Icon URL for the connection
|
|
5324
|
+
*/
|
|
5325
|
+
icon_url?: string;
|
|
5326
|
+
|
|
5322
5327
|
/**
|
|
5323
5328
|
* MCP transport type detected during connection
|
|
5324
5329
|
*/
|
|
@@ -17402,6 +17407,11 @@ export namespace GetConnectionResponse {
|
|
|
17402
17407
|
}
|
|
17403
17408
|
|
|
17404
17409
|
export interface PublicSettings {
|
|
17410
|
+
/**
|
|
17411
|
+
* Icon URL for the connection
|
|
17412
|
+
*/
|
|
17413
|
+
icon_url?: string;
|
|
17414
|
+
|
|
17405
17415
|
/**
|
|
17406
17416
|
* MCP transport type detected during connection
|
|
17407
17417
|
*/
|
|
@@ -23743,6 +23753,11 @@ export namespace ListConnectionsResponse {
|
|
|
23743
23753
|
}
|
|
23744
23754
|
|
|
23745
23755
|
export interface PublicSettings {
|
|
23756
|
+
/**
|
|
23757
|
+
* Icon URL for the connection
|
|
23758
|
+
*/
|
|
23759
|
+
icon_url?: string;
|
|
23760
|
+
|
|
23746
23761
|
/**
|
|
23747
23762
|
* MCP transport type detected during connection
|
|
23748
23763
|
*/
|
|
@@ -31041,7 +31056,8 @@ export type ListEventsResponse =
|
|
|
31041
31056
|
| ListEventsResponse.UnionMember17
|
|
31042
31057
|
| ListEventsResponse.UnionMember18
|
|
31043
31058
|
| ListEventsResponse.UnionMember19
|
|
31044
|
-
| ListEventsResponse.UnionMember20
|
|
31059
|
+
| ListEventsResponse.UnionMember20
|
|
31060
|
+
| ListEventsResponse.UnionMember21;
|
|
31045
31061
|
|
|
31046
31062
|
export namespace ListEventsResponse {
|
|
31047
31063
|
export interface UnionMember0 {
|
|
@@ -31594,7 +31610,7 @@ export namespace ListEventsResponse {
|
|
|
31594
31610
|
export interface UnionMember16 {
|
|
31595
31611
|
data: UnionMember16.Data;
|
|
31596
31612
|
|
|
31597
|
-
name: 'connect.connection-
|
|
31613
|
+
name: 'connect.connection-revoked';
|
|
31598
31614
|
|
|
31599
31615
|
id?: string;
|
|
31600
31616
|
|
|
@@ -31620,6 +31636,47 @@ export namespace ListEventsResponse {
|
|
|
31620
31636
|
}
|
|
31621
31637
|
|
|
31622
31638
|
export namespace UnionMember16 {
|
|
31639
|
+
export interface Data {
|
|
31640
|
+
/**
|
|
31641
|
+
* Must start with 'conn\_'
|
|
31642
|
+
*/
|
|
31643
|
+
connection_id: string;
|
|
31644
|
+
|
|
31645
|
+
connector_name: string;
|
|
31646
|
+
|
|
31647
|
+
customer_id: string;
|
|
31648
|
+
}
|
|
31649
|
+
}
|
|
31650
|
+
|
|
31651
|
+
export interface UnionMember17 {
|
|
31652
|
+
data: UnionMember17.Data;
|
|
31653
|
+
|
|
31654
|
+
name: 'connect.connection-checked';
|
|
31655
|
+
|
|
31656
|
+
id?: string;
|
|
31657
|
+
|
|
31658
|
+
connection_id?: string | null;
|
|
31659
|
+
|
|
31660
|
+
connector_name?: string | null;
|
|
31661
|
+
|
|
31662
|
+
customer_id?: string | null;
|
|
31663
|
+
|
|
31664
|
+
org_id?: string | null;
|
|
31665
|
+
|
|
31666
|
+
prompt?: string | null;
|
|
31667
|
+
|
|
31668
|
+
timestamp?: string;
|
|
31669
|
+
|
|
31670
|
+
user?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
31671
|
+
|
|
31672
|
+
user_id?: string | null;
|
|
31673
|
+
|
|
31674
|
+
v?: string | null;
|
|
31675
|
+
|
|
31676
|
+
webhook_name?: string | null;
|
|
31677
|
+
}
|
|
31678
|
+
|
|
31679
|
+
export namespace UnionMember17 {
|
|
31623
31680
|
export interface Data {
|
|
31624
31681
|
/**
|
|
31625
31682
|
* Must start with 'conn\_'
|
|
@@ -31634,7 +31691,7 @@ export namespace ListEventsResponse {
|
|
|
31634
31691
|
}
|
|
31635
31692
|
}
|
|
31636
31693
|
|
|
31637
|
-
export interface
|
|
31694
|
+
export interface UnionMember18 {
|
|
31638
31695
|
data: unknown;
|
|
31639
31696
|
|
|
31640
31697
|
name: 'api.token-copied';
|
|
@@ -31662,7 +31719,7 @@ export namespace ListEventsResponse {
|
|
|
31662
31719
|
webhook_name?: string | null;
|
|
31663
31720
|
}
|
|
31664
31721
|
|
|
31665
|
-
export interface
|
|
31722
|
+
export interface UnionMember19 {
|
|
31666
31723
|
data: unknown;
|
|
31667
31724
|
|
|
31668
31725
|
name: 'api.graphql-request';
|
|
@@ -31690,7 +31747,7 @@ export namespace ListEventsResponse {
|
|
|
31690
31747
|
webhook_name?: string | null;
|
|
31691
31748
|
}
|
|
31692
31749
|
|
|
31693
|
-
export interface
|
|
31750
|
+
export interface UnionMember20 {
|
|
31694
31751
|
data: unknown;
|
|
31695
31752
|
|
|
31696
31753
|
name: 'api.rest-request';
|
|
@@ -31718,8 +31775,8 @@ export namespace ListEventsResponse {
|
|
|
31718
31775
|
webhook_name?: string | null;
|
|
31719
31776
|
}
|
|
31720
31777
|
|
|
31721
|
-
export interface
|
|
31722
|
-
data:
|
|
31778
|
+
export interface UnionMember21 {
|
|
31779
|
+
data: UnionMember21.Data;
|
|
31723
31780
|
|
|
31724
31781
|
name: 'pageview';
|
|
31725
31782
|
|
|
@@ -31746,7 +31803,7 @@ export namespace ListEventsResponse {
|
|
|
31746
31803
|
webhook_name?: string | null;
|
|
31747
31804
|
}
|
|
31748
31805
|
|
|
31749
|
-
export namespace
|
|
31806
|
+
export namespace UnionMember21 {
|
|
31750
31807
|
export interface Data {
|
|
31751
31808
|
current_url: string;
|
|
31752
31809
|
|
|
@@ -36690,6 +36747,11 @@ export namespace PostConnectResponse {
|
|
|
36690
36747
|
}
|
|
36691
36748
|
|
|
36692
36749
|
export interface PublicSettings {
|
|
36750
|
+
/**
|
|
36751
|
+
* Icon URL for the connection
|
|
36752
|
+
*/
|
|
36753
|
+
icon_url?: string;
|
|
36754
|
+
|
|
36693
36755
|
/**
|
|
36694
36756
|
* MCP transport type detected during connection
|
|
36695
36757
|
*/
|
|
@@ -41698,7 +41760,7 @@ export interface ConnectorRpcParams {
|
|
|
41698
41760
|
connector_config_id: string;
|
|
41699
41761
|
|
|
41700
41762
|
/**
|
|
41701
|
-
* Body param
|
|
41763
|
+
* Body param
|
|
41702
41764
|
*/
|
|
41703
41765
|
input: { [key: string]: unknown };
|
|
41704
41766
|
}
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.16.1'; // 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.16.1";
|
|
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.16.1";
|
|
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.16.1'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|