@bubblelab/bubble-core 0.1.41 → 0.1.43

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 (30) hide show
  1. package/dist/bubble-bundle.d.ts +33 -33
  2. package/dist/bubbles/service-bubble/ai-agent.d.ts +24 -24
  3. package/dist/bubbles/service-bubble/apify/apify.d.ts +8 -8
  4. package/dist/bubbles/service-bubble/ashby/ashby.d.ts +40 -40
  5. package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +74 -74
  6. package/dist/bubbles/service-bubble/firecrawl.d.ts +184 -184
  7. package/dist/bubbles/service-bubble/github.d.ts +28 -28
  8. package/dist/bubbles/service-bubble/gmail.d.ts +104 -104
  9. package/dist/bubbles/service-bubble/google-drive.d.ts +32 -32
  10. package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +10 -10
  11. package/dist/bubbles/service-bubble/insforge-db.d.ts +8 -8
  12. package/dist/bubbles/service-bubble/notion/notion.d.ts +64 -64
  13. package/dist/bubbles/service-bubble/postgresql.d.ts +8 -8
  14. package/dist/bubbles/service-bubble/slack/slack.d.ts +32 -32
  15. package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +5 -5
  16. package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.d.ts +17 -0
  17. package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.d.ts.map +1 -1
  18. package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.js +127 -10
  19. package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.js.map +1 -1
  20. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +254 -254
  21. package/dist/bubbles/tool-bubble/people-search-tool.d.ts +12 -0
  22. package/dist/bubbles/tool-bubble/people-search-tool.d.ts.map +1 -1
  23. package/dist/bubbles/tool-bubble/people-search-tool.js +11 -1
  24. package/dist/bubbles/tool-bubble/people-search-tool.js.map +1 -1
  25. package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +4 -4
  26. package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +54 -54
  27. package/dist/bubbles/tool-bubble/twitter-tool.d.ts +80 -80
  28. package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +16 -16
  29. package/dist/bubbles.json +11 -3
  30. package/package.json +2 -2
@@ -191,12 +191,6 @@ declare const AIAgentParamsSchema: z.ZodObject<{
191
191
  maxRetries?: number | undefined;
192
192
  } | undefined;
193
193
  };
194
- streaming: boolean;
195
- tools: {
196
- name: "get-bubble-details-tool" | "get-trigger-detail-tool" | "list-bubbles-tool" | "sql-query-tool" | "chart-js-tool" | "web-search-tool" | "web-scrape-tool" | "web-crawl-tool" | "web-extract-tool" | "research-agent-tool" | "reddit-scrape-tool" | "bubbleflow-validation-tool" | "code-edit-tool" | "instagram-tool" | "linkedin-tool" | "tiktok-tool" | "twitter-tool" | "google-maps-tool" | "youtube-tool" | "amazon-shopping-tool" | "people-search-tool";
197
- credentials?: Partial<Record<CredentialType, string>> | undefined;
198
- config?: Record<string, unknown> | undefined;
199
- }[];
200
194
  images: ({
201
195
  type: "base64";
202
196
  data: string;
@@ -208,7 +202,13 @@ declare const AIAgentParamsSchema: z.ZodObject<{
208
202
  description?: string | undefined;
209
203
  })[];
210
204
  systemPrompt: string;
205
+ tools: {
206
+ name: "get-bubble-details-tool" | "get-trigger-detail-tool" | "list-bubbles-tool" | "sql-query-tool" | "chart-js-tool" | "web-search-tool" | "web-scrape-tool" | "web-crawl-tool" | "web-extract-tool" | "research-agent-tool" | "reddit-scrape-tool" | "bubbleflow-validation-tool" | "code-edit-tool" | "instagram-tool" | "linkedin-tool" | "tiktok-tool" | "twitter-tool" | "google-maps-tool" | "youtube-tool" | "amazon-shopping-tool" | "people-search-tool";
207
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
208
+ config?: Record<string, unknown> | undefined;
209
+ }[];
211
210
  maxIterations: number;
211
+ streaming: boolean;
212
212
  name?: string | undefined;
213
213
  credentials?: Partial<Record<CredentialType, string>> | undefined;
214
214
  conversationHistory?: {
@@ -244,12 +244,6 @@ declare const AIAgentParamsSchema: z.ZodObject<{
244
244
  maxRetries?: number | undefined;
245
245
  } | undefined;
246
246
  } | undefined;
247
- streaming?: boolean | undefined;
248
- tools?: {
249
- name: "get-bubble-details-tool" | "get-trigger-detail-tool" | "list-bubbles-tool" | "sql-query-tool" | "chart-js-tool" | "web-search-tool" | "web-scrape-tool" | "web-crawl-tool" | "web-extract-tool" | "research-agent-tool" | "reddit-scrape-tool" | "bubbleflow-validation-tool" | "code-edit-tool" | "instagram-tool" | "linkedin-tool" | "tiktok-tool" | "twitter-tool" | "google-maps-tool" | "youtube-tool" | "amazon-shopping-tool" | "people-search-tool";
250
- credentials?: Partial<Record<CredentialType, string>> | undefined;
251
- config?: Record<string, unknown> | undefined;
252
- }[] | undefined;
253
247
  images?: ({
254
248
  data: string;
255
249
  type?: "base64" | undefined;
@@ -267,6 +261,11 @@ declare const AIAgentParamsSchema: z.ZodObject<{
267
261
  name?: string | undefined;
268
262
  }[] | undefined;
269
263
  systemPrompt?: string | undefined;
264
+ tools?: {
265
+ name: "get-bubble-details-tool" | "get-trigger-detail-tool" | "list-bubbles-tool" | "sql-query-tool" | "chart-js-tool" | "web-search-tool" | "web-scrape-tool" | "web-crawl-tool" | "web-extract-tool" | "research-agent-tool" | "reddit-scrape-tool" | "bubbleflow-validation-tool" | "code-edit-tool" | "instagram-tool" | "linkedin-tool" | "tiktok-tool" | "twitter-tool" | "google-maps-tool" | "youtube-tool" | "amazon-shopping-tool" | "people-search-tool";
266
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
267
+ config?: Record<string, unknown> | undefined;
268
+ }[] | undefined;
270
269
  customTools?: {
271
270
  description: string;
272
271
  name: string;
@@ -274,6 +273,7 @@ declare const AIAgentParamsSchema: z.ZodObject<{
274
273
  func: (args_0: Record<string, unknown>, ...args: unknown[]) => Promise<unknown>;
275
274
  }[] | undefined;
276
275
  maxIterations?: number | undefined;
276
+ streaming?: boolean | undefined;
277
277
  expectedOutputSchema?: string | z.ZodTypeAny | undefined;
278
278
  }>;
279
279
  declare const AIAgentResultSchema: z.ZodObject<{
@@ -490,12 +490,6 @@ export declare class AIAgentBubble extends ServiceBubble<AIAgentParamsParsed, AI
490
490
  maxRetries?: number | undefined;
491
491
  } | undefined;
492
492
  };
493
- streaming: boolean;
494
- tools: {
495
- name: "get-bubble-details-tool" | "get-trigger-detail-tool" | "list-bubbles-tool" | "sql-query-tool" | "chart-js-tool" | "web-search-tool" | "web-scrape-tool" | "web-crawl-tool" | "web-extract-tool" | "research-agent-tool" | "reddit-scrape-tool" | "bubbleflow-validation-tool" | "code-edit-tool" | "instagram-tool" | "linkedin-tool" | "tiktok-tool" | "twitter-tool" | "google-maps-tool" | "youtube-tool" | "amazon-shopping-tool" | "people-search-tool";
496
- credentials?: Partial<Record<CredentialType, string>> | undefined;
497
- config?: Record<string, unknown> | undefined;
498
- }[];
499
493
  images: ({
500
494
  type: "base64";
501
495
  data: string;
@@ -507,7 +501,13 @@ export declare class AIAgentBubble extends ServiceBubble<AIAgentParamsParsed, AI
507
501
  description?: string | undefined;
508
502
  })[];
509
503
  systemPrompt: string;
504
+ tools: {
505
+ name: "get-bubble-details-tool" | "get-trigger-detail-tool" | "list-bubbles-tool" | "sql-query-tool" | "chart-js-tool" | "web-search-tool" | "web-scrape-tool" | "web-crawl-tool" | "web-extract-tool" | "research-agent-tool" | "reddit-scrape-tool" | "bubbleflow-validation-tool" | "code-edit-tool" | "instagram-tool" | "linkedin-tool" | "tiktok-tool" | "twitter-tool" | "google-maps-tool" | "youtube-tool" | "amazon-shopping-tool" | "people-search-tool";
506
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
507
+ config?: Record<string, unknown> | undefined;
508
+ }[];
510
509
  maxIterations: number;
510
+ streaming: boolean;
511
511
  name?: string | undefined;
512
512
  credentials?: Partial<Record<CredentialType, string>> | undefined;
513
513
  conversationHistory?: {
@@ -543,12 +543,6 @@ export declare class AIAgentBubble extends ServiceBubble<AIAgentParamsParsed, AI
543
543
  maxRetries?: number | undefined;
544
544
  } | undefined;
545
545
  } | undefined;
546
- streaming?: boolean | undefined;
547
- tools?: {
548
- name: "get-bubble-details-tool" | "get-trigger-detail-tool" | "list-bubbles-tool" | "sql-query-tool" | "chart-js-tool" | "web-search-tool" | "web-scrape-tool" | "web-crawl-tool" | "web-extract-tool" | "research-agent-tool" | "reddit-scrape-tool" | "bubbleflow-validation-tool" | "code-edit-tool" | "instagram-tool" | "linkedin-tool" | "tiktok-tool" | "twitter-tool" | "google-maps-tool" | "youtube-tool" | "amazon-shopping-tool" | "people-search-tool";
549
- credentials?: Partial<Record<CredentialType, string>> | undefined;
550
- config?: Record<string, unknown> | undefined;
551
- }[] | undefined;
552
546
  images?: ({
553
547
  data: string;
554
548
  type?: "base64" | undefined;
@@ -566,6 +560,11 @@ export declare class AIAgentBubble extends ServiceBubble<AIAgentParamsParsed, AI
566
560
  name?: string | undefined;
567
561
  }[] | undefined;
568
562
  systemPrompt?: string | undefined;
563
+ tools?: {
564
+ name: "get-bubble-details-tool" | "get-trigger-detail-tool" | "list-bubbles-tool" | "sql-query-tool" | "chart-js-tool" | "web-search-tool" | "web-scrape-tool" | "web-crawl-tool" | "web-extract-tool" | "research-agent-tool" | "reddit-scrape-tool" | "bubbleflow-validation-tool" | "code-edit-tool" | "instagram-tool" | "linkedin-tool" | "tiktok-tool" | "twitter-tool" | "google-maps-tool" | "youtube-tool" | "amazon-shopping-tool" | "people-search-tool";
565
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
566
+ config?: Record<string, unknown> | undefined;
567
+ }[] | undefined;
569
568
  customTools?: {
570
569
  description: string;
571
570
  name: string;
@@ -573,6 +572,7 @@ export declare class AIAgentBubble extends ServiceBubble<AIAgentParamsParsed, AI
573
572
  func: (args_0: Record<string, unknown>, ...args: unknown[]) => Promise<unknown>;
574
573
  }[] | undefined;
575
574
  maxIterations?: number | undefined;
575
+ streaming?: boolean | undefined;
576
576
  expectedOutputSchema?: string | z.ZodTypeAny | undefined;
577
577
  }>;
578
578
  static readonly resultSchema: z.ZodObject<{
@@ -70,22 +70,22 @@ declare const ApifyResultSchema: z.ZodObject<{
70
70
  id: string;
71
71
  inputSchemaUrl: string;
72
72
  description?: string | null | undefined;
73
+ stars?: number | null | undefined;
73
74
  usage?: {
74
75
  totalRuns?: number | undefined;
75
76
  usersCount?: number | undefined;
76
77
  } | null | undefined;
77
- stars?: number | null | undefined;
78
78
  requiresRental?: boolean | undefined;
79
79
  }, {
80
80
  name: string;
81
81
  id: string;
82
82
  inputSchemaUrl: string;
83
83
  description?: string | null | undefined;
84
+ stars?: number | null | undefined;
84
85
  usage?: {
85
86
  totalRuns?: number | undefined;
86
87
  usersCount?: number | undefined;
87
88
  } | null | undefined;
88
- stars?: number | null | undefined;
89
89
  requiresRental?: boolean | undefined;
90
90
  }>, "many">>;
91
91
  }, "strip", z.ZodTypeAny, {
@@ -102,11 +102,11 @@ declare const ApifyResultSchema: z.ZodObject<{
102
102
  id: string;
103
103
  inputSchemaUrl: string;
104
104
  description?: string | null | undefined;
105
+ stars?: number | null | undefined;
105
106
  usage?: {
106
107
  totalRuns?: number | undefined;
107
108
  usersCount?: number | undefined;
108
109
  } | null | undefined;
109
- stars?: number | null | undefined;
110
110
  requiresRental?: boolean | undefined;
111
111
  }[] | undefined;
112
112
  }, {
@@ -123,11 +123,11 @@ declare const ApifyResultSchema: z.ZodObject<{
123
123
  id: string;
124
124
  inputSchemaUrl: string;
125
125
  description?: string | null | undefined;
126
+ stars?: number | null | undefined;
126
127
  usage?: {
127
128
  totalRuns?: number | undefined;
128
129
  usersCount?: number | undefined;
129
130
  } | null | undefined;
130
- stars?: number | null | undefined;
131
131
  requiresRental?: boolean | undefined;
132
132
  }[] | undefined;
133
133
  }>;
@@ -206,22 +206,22 @@ export declare class ApifyBubble<T extends string = string> extends ServiceBubbl
206
206
  id: string;
207
207
  inputSchemaUrl: string;
208
208
  description?: string | null | undefined;
209
+ stars?: number | null | undefined;
209
210
  usage?: {
210
211
  totalRuns?: number | undefined;
211
212
  usersCount?: number | undefined;
212
213
  } | null | undefined;
213
- stars?: number | null | undefined;
214
214
  requiresRental?: boolean | undefined;
215
215
  }, {
216
216
  name: string;
217
217
  id: string;
218
218
  inputSchemaUrl: string;
219
219
  description?: string | null | undefined;
220
+ stars?: number | null | undefined;
220
221
  usage?: {
221
222
  totalRuns?: number | undefined;
222
223
  usersCount?: number | undefined;
223
224
  } | null | undefined;
224
- stars?: number | null | undefined;
225
225
  requiresRental?: boolean | undefined;
226
226
  }>, "many">>;
227
227
  }, "strip", z.ZodTypeAny, {
@@ -238,11 +238,11 @@ export declare class ApifyBubble<T extends string = string> extends ServiceBubbl
238
238
  id: string;
239
239
  inputSchemaUrl: string;
240
240
  description?: string | null | undefined;
241
+ stars?: number | null | undefined;
241
242
  usage?: {
242
243
  totalRuns?: number | undefined;
243
244
  usersCount?: number | undefined;
244
245
  } | null | undefined;
245
- stars?: number | null | undefined;
246
246
  requiresRental?: boolean | undefined;
247
247
  }[] | undefined;
248
248
  }, {
@@ -259,11 +259,11 @@ export declare class ApifyBubble<T extends string = string> extends ServiceBubbl
259
259
  id: string;
260
260
  inputSchemaUrl: string;
261
261
  description?: string | null | undefined;
262
+ stars?: number | null | undefined;
262
263
  usage?: {
263
264
  totalRuns?: number | undefined;
264
265
  usersCount?: number | undefined;
265
266
  } | null | undefined;
266
- stars?: number | null | undefined;
267
267
  requiresRental?: boolean | undefined;
268
268
  }[] | undefined;
269
269
  }>;
@@ -349,22 +349,16 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
349
349
  type: "Personal" | "Work" | "Other";
350
350
  isPrimary: boolean;
351
351
  } | null | undefined;
352
- primaryPhoneNumber?: {
352
+ emailAddresses?: {
353
353
  value: string;
354
354
  type: "Personal" | "Work" | "Other";
355
355
  isPrimary: boolean;
356
- } | null | undefined;
357
- customFields?: {
358
- title: string;
359
- id: string;
360
- value?: unknown;
361
- isPrivate?: boolean | undefined;
362
356
  }[] | undefined;
363
- emailAddresses?: {
357
+ primaryPhoneNumber?: {
364
358
  value: string;
365
359
  type: "Personal" | "Work" | "Other";
366
360
  isPrimary: boolean;
367
- }[] | undefined;
361
+ } | null | undefined;
368
362
  phoneNumbers?: {
369
363
  value: string;
370
364
  type: "Personal" | "Work" | "Other";
@@ -388,6 +382,12 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
388
382
  id: string;
389
383
  handle: string;
390
384
  }[] | undefined;
385
+ customFields?: {
386
+ title: string;
387
+ id: string;
388
+ value?: unknown;
389
+ isPrivate?: boolean | undefined;
390
+ }[] | undefined;
391
391
  }, {
392
392
  name: string;
393
393
  id: string;
@@ -403,22 +403,16 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
403
403
  type: "Personal" | "Work" | "Other";
404
404
  isPrimary: boolean;
405
405
  } | null | undefined;
406
- primaryPhoneNumber?: {
406
+ emailAddresses?: {
407
407
  value: string;
408
408
  type: "Personal" | "Work" | "Other";
409
409
  isPrimary: boolean;
410
- } | null | undefined;
411
- customFields?: {
412
- title: string;
413
- id: string;
414
- value?: unknown;
415
- isPrivate?: boolean | undefined;
416
410
  }[] | undefined;
417
- emailAddresses?: {
411
+ primaryPhoneNumber?: {
418
412
  value: string;
419
413
  type: "Personal" | "Work" | "Other";
420
414
  isPrimary: boolean;
421
- }[] | undefined;
415
+ } | null | undefined;
422
416
  phoneNumbers?: {
423
417
  value: string;
424
418
  type: "Personal" | "Work" | "Other";
@@ -442,6 +436,12 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
442
436
  id: string;
443
437
  handle: string;
444
438
  }[] | undefined;
439
+ customFields?: {
440
+ title: string;
441
+ id: string;
442
+ value?: unknown;
443
+ isPrivate?: boolean | undefined;
444
+ }[] | undefined;
445
445
  }>, "many">>;
446
446
  next_cursor: import("zod").ZodOptional<import("zod").ZodString>;
447
447
  more_data_available: import("zod").ZodOptional<import("zod").ZodBoolean>;
@@ -468,22 +468,16 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
468
468
  type: "Personal" | "Work" | "Other";
469
469
  isPrimary: boolean;
470
470
  } | null | undefined;
471
- primaryPhoneNumber?: {
471
+ emailAddresses?: {
472
472
  value: string;
473
473
  type: "Personal" | "Work" | "Other";
474
474
  isPrimary: boolean;
475
- } | null | undefined;
476
- customFields?: {
477
- title: string;
478
- id: string;
479
- value?: unknown;
480
- isPrivate?: boolean | undefined;
481
475
  }[] | undefined;
482
- emailAddresses?: {
476
+ primaryPhoneNumber?: {
483
477
  value: string;
484
478
  type: "Personal" | "Work" | "Other";
485
479
  isPrimary: boolean;
486
- }[] | undefined;
480
+ } | null | undefined;
487
481
  phoneNumbers?: {
488
482
  value: string;
489
483
  type: "Personal" | "Work" | "Other";
@@ -507,6 +501,12 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
507
501
  id: string;
508
502
  handle: string;
509
503
  }[] | undefined;
504
+ customFields?: {
505
+ title: string;
506
+ id: string;
507
+ value?: unknown;
508
+ isPrivate?: boolean | undefined;
509
+ }[] | undefined;
510
510
  }[] | undefined;
511
511
  more_data_available?: boolean | undefined;
512
512
  }, {
@@ -530,22 +530,16 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
530
530
  type: "Personal" | "Work" | "Other";
531
531
  isPrimary: boolean;
532
532
  } | null | undefined;
533
- primaryPhoneNumber?: {
533
+ emailAddresses?: {
534
534
  value: string;
535
535
  type: "Personal" | "Work" | "Other";
536
536
  isPrimary: boolean;
537
- } | null | undefined;
538
- customFields?: {
539
- title: string;
540
- id: string;
541
- value?: unknown;
542
- isPrivate?: boolean | undefined;
543
537
  }[] | undefined;
544
- emailAddresses?: {
538
+ primaryPhoneNumber?: {
545
539
  value: string;
546
540
  type: "Personal" | "Work" | "Other";
547
541
  isPrimary: boolean;
548
- }[] | undefined;
542
+ } | null | undefined;
549
543
  phoneNumbers?: {
550
544
  value: string;
551
545
  type: "Personal" | "Work" | "Other";
@@ -569,6 +563,12 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
569
563
  id: string;
570
564
  handle: string;
571
565
  }[] | undefined;
566
+ customFields?: {
567
+ title: string;
568
+ id: string;
569
+ value?: unknown;
570
+ isPrivate?: boolean | undefined;
571
+ }[] | undefined;
572
572
  }[] | undefined;
573
573
  more_data_available?: boolean | undefined;
574
574
  }>, import("zod").ZodObject<{
@@ -1251,8 +1251,8 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
1251
1251
  }, "strip", import("zod").ZodTypeAny, {
1252
1252
  title: string;
1253
1253
  id: string;
1254
- isPrivate: boolean;
1255
1254
  isArchived: boolean;
1255
+ isPrivate: boolean;
1256
1256
  objectType: string;
1257
1257
  fieldType: string;
1258
1258
  selectableValues?: {
@@ -1263,8 +1263,8 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
1263
1263
  }, {
1264
1264
  title: string;
1265
1265
  id: string;
1266
- isPrivate: boolean;
1267
1266
  isArchived: boolean;
1267
+ isPrivate: boolean;
1268
1268
  objectType: string;
1269
1269
  fieldType: string;
1270
1270
  selectableValues?: {
@@ -1287,8 +1287,8 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
1287
1287
  custom_fields?: {
1288
1288
  title: string;
1289
1289
  id: string;
1290
- isPrivate: boolean;
1291
1290
  isArchived: boolean;
1291
+ isPrivate: boolean;
1292
1292
  objectType: string;
1293
1293
  fieldType: string;
1294
1294
  selectableValues?: {
@@ -1307,8 +1307,8 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
1307
1307
  custom_fields?: {
1308
1308
  title: string;
1309
1309
  id: string;
1310
- isPrivate: boolean;
1311
1310
  isArchived: boolean;
1311
+ isPrivate: boolean;
1312
1312
  objectType: string;
1313
1313
  fieldType: string;
1314
1314
  selectableValues?: {