@replit/connectors 0.26.0 → 0.27.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.
@@ -41,6 +41,10 @@ export interface Connector {
41
41
  */
42
42
  links?: Connector.Links;
43
43
  logo_url?: string;
44
+ /**
45
+ * Optional extended, human-readable description of what this connector does
46
+ */
47
+ long_description?: string;
44
48
  /**
45
49
  * MCP server configuration, derived from connector metadata
46
50
  */
@@ -59,7 +63,7 @@ export interface Connector {
59
63
  * User-facing setup guidance for connector credential fields
60
64
  */
61
65
  setup_guide?: Connector.SetupGuide;
62
- stage?: 'disabled' | 'staff' | 'eap' | 'beta' | 'ga' | 'alpha' | 'hidden' | 'deprecated';
66
+ stage?: 'disabled' | 'staff' | 'eap' | 'beta' | 'ga' | 'deprecated';
63
67
  /**
64
68
  * Replit's level of trust in this connector's connection experience, e.g.
65
69
  * 'replit_verified'
@@ -206,7 +210,7 @@ export interface Integration {
206
210
  category?: string | null;
207
211
  logo_url?: string | null;
208
212
  platforms?: Array<'web' | 'mobile' | 'desktop'> | null;
209
- stage?: 'alpha' | 'beta' | 'ga' | null;
213
+ stage?: 'beta' | 'ga' | null;
210
214
  version?: string | null;
211
215
  }
212
216
  export interface AssignConnectionResponse {
@@ -172178,6 +172182,7 @@ export declare namespace ListEventsResponse {
172178
172182
  }
172179
172183
  namespace UnionMember29 {
172180
172184
  interface Data {
172185
+ billed: boolean;
172181
172186
  billing_type: 'per_request' | 'stream_metered' | 'client_disconnect' | 'no_charge';
172182
172187
  cents: number;
172183
172188
  connector_name: string;
@@ -172187,6 +172192,7 @@ export declare namespace ListEventsResponse {
172187
172192
  upstream_status: number;
172188
172193
  billable_item_id?: string;
172189
172194
  item_id?: string;
172195
+ unbillable_reason?: string;
172190
172196
  }
172191
172197
  }
172192
172198
  }