@bubblelab/bubble-core 0.1.72 → 0.1.73
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 +84 -84
- package/dist/bubbles/service-bubble/agi-inc.d.ts +112 -112
- package/dist/bubbles/service-bubble/ai-agent.d.ts +8 -8
- package/dist/bubbles/service-bubble/airtable.d.ts +132 -132
- package/dist/bubbles/service-bubble/apify/apify.d.ts +8 -8
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +110 -110
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +49 -49
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +22 -22
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +56 -56
- package/dist/bubbles/service-bubble/firecrawl.d.ts +304 -304
- package/dist/bubbles/service-bubble/followupboss.d.ts +264 -264
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +40 -40
- package/dist/bubbles/service-bubble/github.d.ts +156 -156
- package/dist/bubbles/service-bubble/gmail.d.ts +578 -578
- package/dist/bubbles/service-bubble/google-calendar.d.ts +152 -152
- package/dist/bubbles/service-bubble/google-drive.d.ts +146 -146
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +52 -52
- package/dist/bubbles/service-bubble/hello-world.d.ts +4 -4
- package/dist/bubbles/service-bubble/http.d.ts +20 -20
- package/dist/bubbles/service-bubble/insforge-db.d.ts +10 -10
- package/dist/bubbles/service-bubble/jira/jira.d.ts +54 -54
- package/dist/bubbles/service-bubble/notion/notion.d.ts +840 -840
- package/dist/bubbles/service-bubble/postgresql.d.ts +10 -10
- package/dist/bubbles/service-bubble/resend.d.ts +20 -20
- package/dist/bubbles/service-bubble/slack/slack.d.ts +358 -358
- package/dist/bubbles/service-bubble/slack/slack.utils.d.ts +17 -0
- package/dist/bubbles/service-bubble/slack/slack.utils.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/slack/slack.utils.js +117 -2
- package/dist/bubbles/service-bubble/slack/slack.utils.js.map +1 -1
- package/dist/bubbles/service-bubble/storage.d.ts +40 -40
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts +76 -76
- package/dist/bubbles/service-bubble/telegram.d.ts +942 -942
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +28 -28
- package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/chart-js-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/code-edit-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +14 -14
- package/dist/bubbles/tool-bubble/get-bubble-details-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/get-trigger-detail-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +32 -32
- package/dist/bubbles/tool-bubble/instagram-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +38 -38
- package/dist/bubbles/tool-bubble/list-bubbles-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +18 -18
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +14 -14
- package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +16 -16
- package/dist/bubbles/tool-bubble/tool-template.d.ts +4 -4
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +18 -18
- package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/web-extract-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +18 -18
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +18 -18
- package/dist/bubbles/workflow-bubble/database-analyzer.workflow.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +16 -16
- package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +78 -78
- package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +16 -16
- package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +76 -76
- package/dist/bubbles/workflow-bubble/slack-notifier.workflow.d.ts +4 -4
- package/dist/bubbles.json +1 -1
- package/package.json +2 -2
|
@@ -13,15 +13,15 @@ declare const GoogleMapsToolParamsSchema: z.ZodObject<{
|
|
|
13
13
|
operation: "search";
|
|
14
14
|
queries: string[];
|
|
15
15
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
16
|
-
location?: string | undefined;
|
|
17
16
|
limit?: number | undefined;
|
|
17
|
+
location?: string | undefined;
|
|
18
18
|
language?: string | undefined;
|
|
19
19
|
}, {
|
|
20
20
|
operation: "search";
|
|
21
21
|
queries: string[];
|
|
22
22
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
23
|
-
location?: string | undefined;
|
|
24
23
|
limit?: number | undefined;
|
|
24
|
+
location?: string | undefined;
|
|
25
25
|
language?: string | undefined;
|
|
26
26
|
}>;
|
|
27
27
|
declare const GoogleMapsToolResultSchema: z.ZodObject<{
|
|
@@ -66,15 +66,15 @@ declare const GoogleMapsToolResultSchema: z.ZodObject<{
|
|
|
66
66
|
likesCount: z.ZodNullable<z.ZodNumber>;
|
|
67
67
|
responseFromOwnerText: z.ZodNullable<z.ZodString>;
|
|
68
68
|
}, "strip", z.ZodTypeAny, {
|
|
69
|
-
name: string | null;
|
|
70
69
|
text: string | null;
|
|
70
|
+
name: string | null;
|
|
71
71
|
likesCount: number | null;
|
|
72
72
|
rating: number | null;
|
|
73
73
|
publishedAtDate: string | null;
|
|
74
74
|
responseFromOwnerText: string | null;
|
|
75
75
|
}, {
|
|
76
|
-
name: string | null;
|
|
77
76
|
text: string | null;
|
|
77
|
+
name: string | null;
|
|
78
78
|
likesCount: number | null;
|
|
79
79
|
rating: number | null;
|
|
80
80
|
publishedAtDate: string | null;
|
|
@@ -85,11 +85,11 @@ declare const GoogleMapsToolResultSchema: z.ZodObject<{
|
|
|
85
85
|
}, "strip", z.ZodTypeAny, {
|
|
86
86
|
title: string | null;
|
|
87
87
|
url: string | null;
|
|
88
|
+
phone: string | null;
|
|
88
89
|
location: {
|
|
89
90
|
lat: number | null;
|
|
90
91
|
lng: number | null;
|
|
91
92
|
} | null;
|
|
92
|
-
phone: string | null;
|
|
93
93
|
rating: number | null;
|
|
94
94
|
category: string | null;
|
|
95
95
|
address: string | null;
|
|
@@ -104,8 +104,8 @@ declare const GoogleMapsToolResultSchema: z.ZodObject<{
|
|
|
104
104
|
isAdvertisement: boolean | null;
|
|
105
105
|
priceLevel: string | null;
|
|
106
106
|
reviews: {
|
|
107
|
-
name: string | null;
|
|
108
107
|
text: string | null;
|
|
108
|
+
name: string | null;
|
|
109
109
|
likesCount: number | null;
|
|
110
110
|
rating: number | null;
|
|
111
111
|
publishedAtDate: string | null;
|
|
@@ -115,11 +115,11 @@ declare const GoogleMapsToolResultSchema: z.ZodObject<{
|
|
|
115
115
|
}, {
|
|
116
116
|
title: string | null;
|
|
117
117
|
url: string | null;
|
|
118
|
+
phone: string | null;
|
|
118
119
|
location: {
|
|
119
120
|
lat: number | null;
|
|
120
121
|
lng: number | null;
|
|
121
122
|
} | null;
|
|
122
|
-
phone: string | null;
|
|
123
123
|
rating: number | null;
|
|
124
124
|
category: string | null;
|
|
125
125
|
address: string | null;
|
|
@@ -134,8 +134,8 @@ declare const GoogleMapsToolResultSchema: z.ZodObject<{
|
|
|
134
134
|
isAdvertisement: boolean | null;
|
|
135
135
|
priceLevel: string | null;
|
|
136
136
|
reviews: {
|
|
137
|
-
name: string | null;
|
|
138
137
|
text: string | null;
|
|
138
|
+
name: string | null;
|
|
139
139
|
likesCount: number | null;
|
|
140
140
|
rating: number | null;
|
|
141
141
|
publishedAtDate: string | null;
|
|
@@ -147,17 +147,17 @@ declare const GoogleMapsToolResultSchema: z.ZodObject<{
|
|
|
147
147
|
success: z.ZodBoolean;
|
|
148
148
|
error: z.ZodString;
|
|
149
149
|
}, "strip", z.ZodTypeAny, {
|
|
150
|
-
operation: "search";
|
|
151
|
-
success: boolean;
|
|
152
150
|
error: string;
|
|
151
|
+
success: boolean;
|
|
152
|
+
operation: "search";
|
|
153
153
|
places: {
|
|
154
154
|
title: string | null;
|
|
155
155
|
url: string | null;
|
|
156
|
+
phone: string | null;
|
|
156
157
|
location: {
|
|
157
158
|
lat: number | null;
|
|
158
159
|
lng: number | null;
|
|
159
160
|
} | null;
|
|
160
|
-
phone: string | null;
|
|
161
161
|
rating: number | null;
|
|
162
162
|
category: string | null;
|
|
163
163
|
address: string | null;
|
|
@@ -172,8 +172,8 @@ declare const GoogleMapsToolResultSchema: z.ZodObject<{
|
|
|
172
172
|
isAdvertisement: boolean | null;
|
|
173
173
|
priceLevel: string | null;
|
|
174
174
|
reviews: {
|
|
175
|
-
name: string | null;
|
|
176
175
|
text: string | null;
|
|
176
|
+
name: string | null;
|
|
177
177
|
likesCount: number | null;
|
|
178
178
|
rating: number | null;
|
|
179
179
|
publishedAtDate: string | null;
|
|
@@ -183,17 +183,17 @@ declare const GoogleMapsToolResultSchema: z.ZodObject<{
|
|
|
183
183
|
}[];
|
|
184
184
|
totalPlaces: number;
|
|
185
185
|
}, {
|
|
186
|
-
operation: "search";
|
|
187
|
-
success: boolean;
|
|
188
186
|
error: string;
|
|
187
|
+
success: boolean;
|
|
188
|
+
operation: "search";
|
|
189
189
|
places: {
|
|
190
190
|
title: string | null;
|
|
191
191
|
url: string | null;
|
|
192
|
+
phone: string | null;
|
|
192
193
|
location: {
|
|
193
194
|
lat: number | null;
|
|
194
195
|
lng: number | null;
|
|
195
196
|
} | null;
|
|
196
|
-
phone: string | null;
|
|
197
197
|
rating: number | null;
|
|
198
198
|
category: string | null;
|
|
199
199
|
address: string | null;
|
|
@@ -208,8 +208,8 @@ declare const GoogleMapsToolResultSchema: z.ZodObject<{
|
|
|
208
208
|
isAdvertisement: boolean | null;
|
|
209
209
|
priceLevel: string | null;
|
|
210
210
|
reviews: {
|
|
211
|
-
name: string | null;
|
|
212
211
|
text: string | null;
|
|
212
|
+
name: string | null;
|
|
213
213
|
likesCount: number | null;
|
|
214
214
|
rating: number | null;
|
|
215
215
|
publishedAtDate: string | null;
|
|
@@ -235,15 +235,15 @@ export declare class GoogleMapsTool extends ToolBubble<GoogleMapsToolParams, Goo
|
|
|
235
235
|
operation: "search";
|
|
236
236
|
queries: string[];
|
|
237
237
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
238
|
-
location?: string | undefined;
|
|
239
238
|
limit?: number | undefined;
|
|
239
|
+
location?: string | undefined;
|
|
240
240
|
language?: string | undefined;
|
|
241
241
|
}, {
|
|
242
242
|
operation: "search";
|
|
243
243
|
queries: string[];
|
|
244
244
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
245
|
-
location?: string | undefined;
|
|
246
245
|
limit?: number | undefined;
|
|
246
|
+
location?: string | undefined;
|
|
247
247
|
language?: string | undefined;
|
|
248
248
|
}>;
|
|
249
249
|
static readonly resultSchema: z.ZodObject<{
|
|
@@ -288,15 +288,15 @@ export declare class GoogleMapsTool extends ToolBubble<GoogleMapsToolParams, Goo
|
|
|
288
288
|
likesCount: z.ZodNullable<z.ZodNumber>;
|
|
289
289
|
responseFromOwnerText: z.ZodNullable<z.ZodString>;
|
|
290
290
|
}, "strip", z.ZodTypeAny, {
|
|
291
|
-
name: string | null;
|
|
292
291
|
text: string | null;
|
|
292
|
+
name: string | null;
|
|
293
293
|
likesCount: number | null;
|
|
294
294
|
rating: number | null;
|
|
295
295
|
publishedAtDate: string | null;
|
|
296
296
|
responseFromOwnerText: string | null;
|
|
297
297
|
}, {
|
|
298
|
-
name: string | null;
|
|
299
298
|
text: string | null;
|
|
299
|
+
name: string | null;
|
|
300
300
|
likesCount: number | null;
|
|
301
301
|
rating: number | null;
|
|
302
302
|
publishedAtDate: string | null;
|
|
@@ -307,11 +307,11 @@ export declare class GoogleMapsTool extends ToolBubble<GoogleMapsToolParams, Goo
|
|
|
307
307
|
}, "strip", z.ZodTypeAny, {
|
|
308
308
|
title: string | null;
|
|
309
309
|
url: string | null;
|
|
310
|
+
phone: string | null;
|
|
310
311
|
location: {
|
|
311
312
|
lat: number | null;
|
|
312
313
|
lng: number | null;
|
|
313
314
|
} | null;
|
|
314
|
-
phone: string | null;
|
|
315
315
|
rating: number | null;
|
|
316
316
|
category: string | null;
|
|
317
317
|
address: string | null;
|
|
@@ -326,8 +326,8 @@ export declare class GoogleMapsTool extends ToolBubble<GoogleMapsToolParams, Goo
|
|
|
326
326
|
isAdvertisement: boolean | null;
|
|
327
327
|
priceLevel: string | null;
|
|
328
328
|
reviews: {
|
|
329
|
-
name: string | null;
|
|
330
329
|
text: string | null;
|
|
330
|
+
name: string | null;
|
|
331
331
|
likesCount: number | null;
|
|
332
332
|
rating: number | null;
|
|
333
333
|
publishedAtDate: string | null;
|
|
@@ -337,11 +337,11 @@ export declare class GoogleMapsTool extends ToolBubble<GoogleMapsToolParams, Goo
|
|
|
337
337
|
}, {
|
|
338
338
|
title: string | null;
|
|
339
339
|
url: string | null;
|
|
340
|
+
phone: string | null;
|
|
340
341
|
location: {
|
|
341
342
|
lat: number | null;
|
|
342
343
|
lng: number | null;
|
|
343
344
|
} | null;
|
|
344
|
-
phone: string | null;
|
|
345
345
|
rating: number | null;
|
|
346
346
|
category: string | null;
|
|
347
347
|
address: string | null;
|
|
@@ -356,8 +356,8 @@ export declare class GoogleMapsTool extends ToolBubble<GoogleMapsToolParams, Goo
|
|
|
356
356
|
isAdvertisement: boolean | null;
|
|
357
357
|
priceLevel: string | null;
|
|
358
358
|
reviews: {
|
|
359
|
-
name: string | null;
|
|
360
359
|
text: string | null;
|
|
360
|
+
name: string | null;
|
|
361
361
|
likesCount: number | null;
|
|
362
362
|
rating: number | null;
|
|
363
363
|
publishedAtDate: string | null;
|
|
@@ -369,17 +369,17 @@ export declare class GoogleMapsTool extends ToolBubble<GoogleMapsToolParams, Goo
|
|
|
369
369
|
success: z.ZodBoolean;
|
|
370
370
|
error: z.ZodString;
|
|
371
371
|
}, "strip", z.ZodTypeAny, {
|
|
372
|
-
operation: "search";
|
|
373
|
-
success: boolean;
|
|
374
372
|
error: string;
|
|
373
|
+
success: boolean;
|
|
374
|
+
operation: "search";
|
|
375
375
|
places: {
|
|
376
376
|
title: string | null;
|
|
377
377
|
url: string | null;
|
|
378
|
+
phone: string | null;
|
|
378
379
|
location: {
|
|
379
380
|
lat: number | null;
|
|
380
381
|
lng: number | null;
|
|
381
382
|
} | null;
|
|
382
|
-
phone: string | null;
|
|
383
383
|
rating: number | null;
|
|
384
384
|
category: string | null;
|
|
385
385
|
address: string | null;
|
|
@@ -394,8 +394,8 @@ export declare class GoogleMapsTool extends ToolBubble<GoogleMapsToolParams, Goo
|
|
|
394
394
|
isAdvertisement: boolean | null;
|
|
395
395
|
priceLevel: string | null;
|
|
396
396
|
reviews: {
|
|
397
|
-
name: string | null;
|
|
398
397
|
text: string | null;
|
|
398
|
+
name: string | null;
|
|
399
399
|
likesCount: number | null;
|
|
400
400
|
rating: number | null;
|
|
401
401
|
publishedAtDate: string | null;
|
|
@@ -405,17 +405,17 @@ export declare class GoogleMapsTool extends ToolBubble<GoogleMapsToolParams, Goo
|
|
|
405
405
|
}[];
|
|
406
406
|
totalPlaces: number;
|
|
407
407
|
}, {
|
|
408
|
-
operation: "search";
|
|
409
|
-
success: boolean;
|
|
410
408
|
error: string;
|
|
409
|
+
success: boolean;
|
|
410
|
+
operation: "search";
|
|
411
411
|
places: {
|
|
412
412
|
title: string | null;
|
|
413
413
|
url: string | null;
|
|
414
|
+
phone: string | null;
|
|
414
415
|
location: {
|
|
415
416
|
lat: number | null;
|
|
416
417
|
lng: number | null;
|
|
417
418
|
} | null;
|
|
418
|
-
phone: string | null;
|
|
419
419
|
rating: number | null;
|
|
420
420
|
category: string | null;
|
|
421
421
|
address: string | null;
|
|
@@ -430,8 +430,8 @@ export declare class GoogleMapsTool extends ToolBubble<GoogleMapsToolParams, Goo
|
|
|
430
430
|
isAdvertisement: boolean | null;
|
|
431
431
|
priceLevel: string | null;
|
|
432
432
|
reviews: {
|
|
433
|
-
name: string | null;
|
|
434
433
|
text: string | null;
|
|
434
|
+
name: string | null;
|
|
435
435
|
likesCount: number | null;
|
|
436
436
|
rating: number | null;
|
|
437
437
|
publishedAtDate: string | null;
|
|
@@ -147,9 +147,9 @@ declare const InstagramToolResultSchema: z.ZodObject<{
|
|
|
147
147
|
success: z.ZodBoolean;
|
|
148
148
|
error: z.ZodString;
|
|
149
149
|
}, "strip", z.ZodTypeAny, {
|
|
150
|
-
operation: "scrapeProfile" | "scrapeHashtag";
|
|
151
|
-
success: boolean;
|
|
152
150
|
error: string;
|
|
151
|
+
success: boolean;
|
|
152
|
+
operation: "scrapeProfile" | "scrapeHashtag";
|
|
153
153
|
posts: {
|
|
154
154
|
type: "image" | "video" | "carousel" | null;
|
|
155
155
|
url: string | null;
|
|
@@ -175,9 +175,9 @@ declare const InstagramToolResultSchema: z.ZodObject<{
|
|
|
175
175
|
scrapedHashtags?: string[] | undefined;
|
|
176
176
|
scrapedProfiles?: string[] | undefined;
|
|
177
177
|
}, {
|
|
178
|
-
operation: "scrapeProfile" | "scrapeHashtag";
|
|
179
|
-
success: boolean;
|
|
180
178
|
error: string;
|
|
179
|
+
success: boolean;
|
|
180
|
+
operation: "scrapeProfile" | "scrapeHashtag";
|
|
181
181
|
posts: {
|
|
182
182
|
type: "image" | "video" | "carousel" | null;
|
|
183
183
|
url: string | null;
|
|
@@ -312,9 +312,9 @@ export declare class InstagramTool extends ToolBubble<InstagramToolParams, Insta
|
|
|
312
312
|
success: z.ZodBoolean;
|
|
313
313
|
error: z.ZodString;
|
|
314
314
|
}, "strip", z.ZodTypeAny, {
|
|
315
|
-
operation: "scrapeProfile" | "scrapeHashtag";
|
|
316
|
-
success: boolean;
|
|
317
315
|
error: string;
|
|
316
|
+
success: boolean;
|
|
317
|
+
operation: "scrapeProfile" | "scrapeHashtag";
|
|
318
318
|
posts: {
|
|
319
319
|
type: "image" | "video" | "carousel" | null;
|
|
320
320
|
url: string | null;
|
|
@@ -340,9 +340,9 @@ export declare class InstagramTool extends ToolBubble<InstagramToolParams, Insta
|
|
|
340
340
|
scrapedHashtags?: string[] | undefined;
|
|
341
341
|
scrapedProfiles?: string[] | undefined;
|
|
342
342
|
}, {
|
|
343
|
-
operation: "scrapeProfile" | "scrapeHashtag";
|
|
344
|
-
success: boolean;
|
|
345
343
|
error: string;
|
|
344
|
+
success: boolean;
|
|
345
|
+
operation: "scrapeProfile" | "scrapeHashtag";
|
|
346
346
|
posts: {
|
|
347
347
|
type: "image" | "video" | "carousel" | null;
|
|
348
348
|
url: string | null;
|
|
@@ -63,9 +63,9 @@ export declare class LinkedInConnectionTool<T extends LinkedInConnectionToolPara
|
|
|
63
63
|
}>>;
|
|
64
64
|
error: import("zod").ZodString;
|
|
65
65
|
}, "strip", import("zod").ZodTypeAny, {
|
|
66
|
-
operation: "send_connection";
|
|
67
|
-
success: boolean;
|
|
68
66
|
error: string;
|
|
67
|
+
success: boolean;
|
|
68
|
+
operation: "send_connection";
|
|
69
69
|
message?: string | undefined;
|
|
70
70
|
profile?: {
|
|
71
71
|
name: string;
|
|
@@ -74,9 +74,9 @@ export declare class LinkedInConnectionTool<T extends LinkedInConnectionToolPara
|
|
|
74
74
|
headline?: string | undefined;
|
|
75
75
|
} | undefined;
|
|
76
76
|
}, {
|
|
77
|
-
operation: "send_connection";
|
|
78
|
-
success: boolean;
|
|
79
77
|
error: string;
|
|
78
|
+
success: boolean;
|
|
79
|
+
operation: "send_connection";
|
|
80
80
|
message?: string | undefined;
|
|
81
81
|
profile?: {
|
|
82
82
|
name: string;
|