@bubblelab/bubble-core 0.1.66 → 0.1.68

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 (29) hide show
  1. package/dist/bubble-bundle.d.ts +45 -45
  2. package/dist/bubbles/service-bubble/ai-agent.d.ts +12 -0
  3. package/dist/bubbles/service-bubble/ai-agent.d.ts.map +1 -1
  4. package/dist/bubbles/service-bubble/ai-agent.js +18 -15
  5. package/dist/bubbles/service-bubble/ai-agent.js.map +1 -1
  6. package/dist/bubbles/service-bubble/apify/apify.d.ts +8 -8
  7. package/dist/bubbles/service-bubble/ashby/ashby.d.ts +40 -40
  8. package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +102 -102
  9. package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +2 -2
  10. package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +2 -2
  11. package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +74 -74
  12. package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +16 -16
  13. package/dist/bubbles/service-bubble/firecrawl.d.ts +108 -108
  14. package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +12 -12
  15. package/dist/bubbles/service-bubble/gmail.d.ts +84 -84
  16. package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +10 -10
  17. package/dist/bubbles/service-bubble/insforge-db.d.ts +8 -8
  18. package/dist/bubbles/service-bubble/postgresql.d.ts +8 -8
  19. package/dist/bubbles/service-bubble/slack/slack.d.ts +112 -112
  20. package/dist/bubbles/service-bubble/stripe/stripe.d.ts +9 -9
  21. package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts +4 -4
  22. package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.schema.d.ts +2 -2
  23. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +254 -254
  24. package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +4 -4
  25. package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +56 -56
  26. package/dist/bubbles/tool-bubble/twitter-tool.d.ts +80 -80
  27. package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +12 -12
  28. package/dist/bubbles.json +11 -3
  29. package/package.json +2 -2
@@ -43,16 +43,16 @@ export declare class GoogleSheetsBubble<T extends GoogleSheetsParamsInput = Goog
43
43
  credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
44
44
  }, "strip", import("zod").ZodTypeAny, {
45
45
  operation: "read_values";
46
- range: string;
47
46
  spreadsheet_id: string;
47
+ range: string;
48
48
  major_dimension: "ROWS" | "COLUMNS";
49
49
  value_render_option: "FORMATTED_VALUE" | "UNFORMATTED_VALUE" | "FORMULA";
50
50
  date_time_render_option: "SERIAL_NUMBER" | "FORMATTED_STRING";
51
51
  credentials?: Partial<Record<CredentialType, string>> | undefined;
52
52
  }, {
53
53
  operation: "read_values";
54
- range: string;
55
54
  spreadsheet_id: string;
55
+ range: string;
56
56
  credentials?: Partial<Record<CredentialType, string>> | undefined;
57
57
  major_dimension?: "ROWS" | "COLUMNS" | undefined;
58
58
  value_render_option?: "FORMATTED_VALUE" | "UNFORMATTED_VALUE" | "FORMULA" | undefined;
@@ -69,8 +69,8 @@ export declare class GoogleSheetsBubble<T extends GoogleSheetsParamsInput = Goog
69
69
  }, "strip", import("zod").ZodTypeAny, {
70
70
  values: (string | number | boolean)[][];
71
71
  operation: "write_values";
72
- range: string;
73
72
  spreadsheet_id: string;
73
+ range: string;
74
74
  major_dimension: "ROWS" | "COLUMNS";
75
75
  value_input_option: "RAW" | "USER_ENTERED";
76
76
  include_values_in_response: boolean;
@@ -78,8 +78,8 @@ export declare class GoogleSheetsBubble<T extends GoogleSheetsParamsInput = Goog
78
78
  }, {
79
79
  values: unknown[][];
80
80
  operation: "write_values";
81
- range: string;
82
81
  spreadsheet_id: string;
82
+ range: string;
83
83
  credentials?: Partial<Record<CredentialType, string>> | undefined;
84
84
  major_dimension?: "ROWS" | "COLUMNS" | undefined;
85
85
  value_input_option?: "RAW" | "USER_ENTERED" | undefined;
@@ -96,8 +96,8 @@ export declare class GoogleSheetsBubble<T extends GoogleSheetsParamsInput = Goog
96
96
  }, "strip", import("zod").ZodTypeAny, {
97
97
  values: (string | number | boolean)[][];
98
98
  operation: "update_values";
99
- range: string;
100
99
  spreadsheet_id: string;
100
+ range: string;
101
101
  major_dimension: "ROWS" | "COLUMNS";
102
102
  value_input_option: "RAW" | "USER_ENTERED";
103
103
  include_values_in_response: boolean;
@@ -105,8 +105,8 @@ export declare class GoogleSheetsBubble<T extends GoogleSheetsParamsInput = Goog
105
105
  }, {
106
106
  values: unknown[][];
107
107
  operation: "update_values";
108
- range: string;
109
108
  spreadsheet_id: string;
109
+ range: string;
110
110
  credentials?: Partial<Record<CredentialType, string>> | undefined;
111
111
  major_dimension?: "ROWS" | "COLUMNS" | undefined;
112
112
  value_input_option?: "RAW" | "USER_ENTERED" | undefined;
@@ -124,8 +124,8 @@ export declare class GoogleSheetsBubble<T extends GoogleSheetsParamsInput = Goog
124
124
  }, "strip", import("zod").ZodTypeAny, {
125
125
  values: (string | number | boolean)[][];
126
126
  operation: "append_values";
127
- range: string;
128
127
  spreadsheet_id: string;
128
+ range: string;
129
129
  major_dimension: "ROWS" | "COLUMNS";
130
130
  value_input_option: "RAW" | "USER_ENTERED";
131
131
  include_values_in_response: boolean;
@@ -134,8 +134,8 @@ export declare class GoogleSheetsBubble<T extends GoogleSheetsParamsInput = Goog
134
134
  }, {
135
135
  values: unknown[][];
136
136
  operation: "append_values";
137
- range: string;
138
137
  spreadsheet_id: string;
138
+ range: string;
139
139
  credentials?: Partial<Record<CredentialType, string>> | undefined;
140
140
  major_dimension?: "ROWS" | "COLUMNS" | undefined;
141
141
  value_input_option?: "RAW" | "USER_ENTERED" | undefined;
@@ -148,13 +148,13 @@ export declare class GoogleSheetsBubble<T extends GoogleSheetsParamsInput = Goog
148
148
  credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
149
149
  }, "strip", import("zod").ZodTypeAny, {
150
150
  operation: "clear_values";
151
- range: string;
152
151
  spreadsheet_id: string;
152
+ range: string;
153
153
  credentials?: Partial<Record<CredentialType, string>> | undefined;
154
154
  }, {
155
155
  operation: "clear_values";
156
- range: string;
157
156
  spreadsheet_id: string;
157
+ range: string;
158
158
  credentials?: Partial<Record<CredentialType, string>> | undefined;
159
159
  }>, import("zod").ZodObject<{
160
160
  operation: import("zod").ZodLiteral<"batch_read_values">;
@@ -12,17 +12,17 @@ declare const InsForgeDbParamsSchema: z.ZodObject<{
12
12
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
13
13
  }, "strip", z.ZodTypeAny, {
14
14
  timeout: number;
15
- parameters: unknown[];
16
15
  query: string;
17
16
  allowedOperations: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "CREATE")[];
17
+ parameters: unknown[];
18
18
  maxRows: number;
19
19
  credentials?: Partial<Record<CredentialType, string>> | undefined;
20
20
  }, {
21
21
  query: string;
22
22
  credentials?: Partial<Record<CredentialType, string>> | undefined;
23
23
  timeout?: number | undefined;
24
- parameters?: unknown[] | undefined;
25
24
  allowedOperations?: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "CREATE")[] | undefined;
25
+ parameters?: unknown[] | undefined;
26
26
  maxRows?: number | undefined;
27
27
  }>;
28
28
  type InsForgeDbParamsInput = z.input<typeof InsForgeDbParamsSchema>;
@@ -38,18 +38,18 @@ declare const InsForgeDbResultSchema: z.ZodObject<{
38
38
  }, "strip", z.ZodTypeAny, {
39
39
  error: string;
40
40
  success: boolean;
41
- executionTime: number;
42
41
  rows: Record<string, unknown>[];
43
42
  rowCount: number | null;
44
43
  command: string;
44
+ executionTime: number;
45
45
  cleanedJSONString: string;
46
46
  }, {
47
47
  error: string;
48
48
  success: boolean;
49
- executionTime: number;
50
49
  rows: Record<string, unknown>[];
51
50
  rowCount: number | null;
52
51
  command: string;
52
+ executionTime: number;
53
53
  cleanedJSONString: string;
54
54
  }>;
55
55
  type InsForgeDbResult = z.output<typeof InsForgeDbResultSchema>;
@@ -86,17 +86,17 @@ export declare class InsForgeDbBubble extends ServiceBubble<InsForgeDbParams, In
86
86
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
87
87
  }, "strip", z.ZodTypeAny, {
88
88
  timeout: number;
89
- parameters: unknown[];
90
89
  query: string;
91
90
  allowedOperations: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "CREATE")[];
91
+ parameters: unknown[];
92
92
  maxRows: number;
93
93
  credentials?: Partial<Record<CredentialType, string>> | undefined;
94
94
  }, {
95
95
  query: string;
96
96
  credentials?: Partial<Record<CredentialType, string>> | undefined;
97
97
  timeout?: number | undefined;
98
- parameters?: unknown[] | undefined;
99
98
  allowedOperations?: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "CREATE")[] | undefined;
99
+ parameters?: unknown[] | undefined;
100
100
  maxRows?: number | undefined;
101
101
  }>;
102
102
  static readonly resultSchema: z.ZodObject<{
@@ -110,18 +110,18 @@ export declare class InsForgeDbBubble extends ServiceBubble<InsForgeDbParams, In
110
110
  }, "strip", z.ZodTypeAny, {
111
111
  error: string;
112
112
  success: boolean;
113
- executionTime: number;
114
113
  rows: Record<string, unknown>[];
115
114
  rowCount: number | null;
116
115
  command: string;
116
+ executionTime: number;
117
117
  cleanedJSONString: string;
118
118
  }, {
119
119
  error: string;
120
120
  success: boolean;
121
- executionTime: number;
122
121
  rows: Record<string, unknown>[];
123
122
  rowCount: number | null;
124
123
  command: string;
124
+ executionTime: number;
125
125
  cleanedJSONString: string;
126
126
  }>;
127
127
  static readonly shortDescription = "InsForge is the backend built for AI-assisted development. Connect InsForge with any agent. Add authentication, database, storage, functions, and AI integrations to your app in seconds.";
@@ -13,19 +13,19 @@ declare const PostgreSQLParamsSchema: z.ZodObject<{
13
13
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
14
14
  }, "strip", z.ZodTypeAny, {
15
15
  timeout: number;
16
- parameters: unknown[];
17
16
  ignoreSSL: boolean;
18
17
  query: string;
19
18
  allowedOperations: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "ANALYZE" | "SHOW" | "DESCRIBE" | "DESC" | "CREATE")[];
19
+ parameters: unknown[];
20
20
  maxRows: number;
21
21
  credentials?: Partial<Record<CredentialType, string>> | undefined;
22
22
  }, {
23
23
  query: string;
24
24
  credentials?: Partial<Record<CredentialType, string>> | undefined;
25
25
  timeout?: number | undefined;
26
- parameters?: unknown[] | undefined;
27
26
  ignoreSSL?: boolean | undefined;
28
27
  allowedOperations?: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "ANALYZE" | "SHOW" | "DESCRIBE" | "DESC" | "CREATE")[] | undefined;
28
+ parameters?: unknown[] | undefined;
29
29
  maxRows?: number | undefined;
30
30
  }>;
31
31
  type PostgreSQLParamsInput = z.input<typeof PostgreSQLParamsSchema>;
@@ -51,10 +51,10 @@ declare const PostgreSQLResultSchema: z.ZodObject<{
51
51
  }, "strip", z.ZodTypeAny, {
52
52
  error: string;
53
53
  success: boolean;
54
- executionTime: number;
55
54
  rows: Record<string, unknown>[];
56
55
  rowCount: number | null;
57
56
  command: string;
57
+ executionTime: number;
58
58
  cleanedJSONString: string;
59
59
  fields?: {
60
60
  name: string;
@@ -63,10 +63,10 @@ declare const PostgreSQLResultSchema: z.ZodObject<{
63
63
  }, {
64
64
  error: string;
65
65
  success: boolean;
66
- executionTime: number;
67
66
  rows: Record<string, unknown>[];
68
67
  rowCount: number | null;
69
68
  command: string;
69
+ executionTime: number;
70
70
  cleanedJSONString: string;
71
71
  fields?: {
72
72
  name: string;
@@ -90,19 +90,19 @@ export declare class PostgreSQLBubble extends ServiceBubble<PostgreSQLParams, Po
90
90
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
91
91
  }, "strip", z.ZodTypeAny, {
92
92
  timeout: number;
93
- parameters: unknown[];
94
93
  ignoreSSL: boolean;
95
94
  query: string;
96
95
  allowedOperations: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "ANALYZE" | "SHOW" | "DESCRIBE" | "DESC" | "CREATE")[];
96
+ parameters: unknown[];
97
97
  maxRows: number;
98
98
  credentials?: Partial<Record<CredentialType, string>> | undefined;
99
99
  }, {
100
100
  query: string;
101
101
  credentials?: Partial<Record<CredentialType, string>> | undefined;
102
102
  timeout?: number | undefined;
103
- parameters?: unknown[] | undefined;
104
103
  ignoreSSL?: boolean | undefined;
105
104
  allowedOperations?: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "ANALYZE" | "SHOW" | "DESCRIBE" | "DESC" | "CREATE")[] | undefined;
105
+ parameters?: unknown[] | undefined;
106
106
  maxRows?: number | undefined;
107
107
  }>;
108
108
  static readonly resultSchema: z.ZodObject<{
@@ -126,10 +126,10 @@ export declare class PostgreSQLBubble extends ServiceBubble<PostgreSQLParams, Po
126
126
  }, "strip", z.ZodTypeAny, {
127
127
  error: string;
128
128
  success: boolean;
129
- executionTime: number;
130
129
  rows: Record<string, unknown>[];
131
130
  rowCount: number | null;
132
131
  command: string;
132
+ executionTime: number;
133
133
  cleanedJSONString: string;
134
134
  fields?: {
135
135
  name: string;
@@ -138,10 +138,10 @@ export declare class PostgreSQLBubble extends ServiceBubble<PostgreSQLParams, Po
138
138
  }, {
139
139
  error: string;
140
140
  success: boolean;
141
- executionTime: number;
142
141
  rows: Record<string, unknown>[];
143
142
  rowCount: number | null;
144
143
  command: string;
144
+ executionTime: number;
145
145
  cleanedJSONString: string;
146
146
  fields?: {
147
147
  name: string;