@bubblelab/bubble-core 0.1.63 → 0.1.64
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/dist/bubble-bundle.d.ts +1 -1
- package/dist/bubbles.json +1 -1
- package/package.json +2 -2
package/dist/bubble-bundle.d.ts
CHANGED
|
@@ -128,7 +128,7 @@ export interface WebhookEvent extends BubbleTriggerEvent { body?: Record<string,
|
|
|
128
128
|
export interface BubbleTrigger { type: keyof BubbleTriggerEventRegistry; cronSchedule?: string; name?: string; description?: string; timeout?: number; retries?: number; }
|
|
129
129
|
export interface SlackEventWrapper { token: string; team_id: string; api_app_id: string; event: SlackAppMentionEvent | SlackMessageEvent; type: 'event_callback'; authorizations: Array<{ enterprise_id?: string; team_id: string; user_id: string; is_bot: boolean; }>; event_context: string; event_id: string; event_time: number; }
|
|
130
130
|
export interface SlackAppMentionEvent { type: 'app_mention'; user: string; text: string; ts: string; channel: string; event_ts: string; thread_ts?: string; }
|
|
131
|
-
export interface SlackMessageEvent { type: 'message'; user: string; text: string; ts: string; channel: string; event_ts: string; channel_type: 'channel' | 'group' | 'im' | 'mpim'; subtype?: string; }
|
|
131
|
+
export interface SlackMessageEvent { type: 'message'; user: string; text: string; ts: string; channel: string; event_ts: string; channel_type: 'channel' | 'group' | 'im' | 'mpim'; subtype?: string; bot_id?: string; bot_profile?: { id: string; name: string; app_id: string; }; }
|
|
132
132
|
export interface SlackMentionEvent extends BubbleTriggerEvent { slack_event: SlackEventWrapper; channel: string; user: string; text: string; thread_ts?: string; }
|
|
133
133
|
export interface SlackMessageReceivedEvent extends BubbleTriggerEvent { slack_event: SlackEventWrapper; channel: string; user: string; text: string; channel_type: 'channel' | 'group' | 'im' | 'mpim'; subtype?: string; }
|
|
134
134
|
export interface JsonSchema { type: string; properties?: Record<string, JsonSchemaProperty>; required?: string[]; additionalProperties?: boolean; }
|
package/dist/bubbles.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bubblelab/bubble-core",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.64",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"puppeteer-core": "^24.10.0",
|
|
41
41
|
"resend": "^4.8.0",
|
|
42
42
|
"zod": "^3.24.1",
|
|
43
|
-
"@bubblelab/shared-schemas": "0.1.
|
|
43
|
+
"@bubblelab/shared-schemas": "0.1.65"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"zod-to-json-schema": "^3.24.6",
|