@webflow/designer-extension-typings 2.0.31 → 2.0.33

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.
@@ -156,13 +156,33 @@ interface NoAppConnections {
156
156
  readonly appConnections: false;
157
157
  }
158
158
 
159
- interface ElementSettings {
159
+ interface BindableSourceSearch {
160
160
  searchBindableSources(
161
161
  this: {id: FullElementId},
162
162
  options?: SearchBindableSourcesOptions
163
163
  ): Promise<Array<BindableSource>>;
164
164
  }
165
165
 
166
+ interface ElementSettings {
167
+ readonly elementSettings: true;
168
+ searchSettings(
169
+ this: {id: FullElementId},
170
+ options?: SearchSettingsOptions
171
+ ): Promise<Record<string, ElementSetting>>;
172
+ getSettings(this: {id: FullElementId}): Promise<ElementSettingSummaries>;
173
+ getResolvedSettings(this: {
174
+ id: FullElementId;
175
+ }): Promise<ResolvedElementSettings>;
176
+ setSettings(
177
+ this: {id: FullElementId},
178
+ settings: SetSettingsInput
179
+ ): Promise<null>;
180
+ }
181
+
182
+ interface NoElementSettings {
183
+ readonly elementSettings: false;
184
+ }
185
+
166
186
  interface ComponentElement
167
187
  extends
168
188
  WebflowElement,
@@ -173,19 +193,22 @@ interface ComponentElement
173
193
  NoChildren,
174
194
  NoTextContent,
175
195
  NoAppConnections,
176
- ElementSettings {
196
+ BindableSourceSearch,
197
+ NoElementSettings {
177
198
  readonly id: FullElementId;
178
199
  readonly type: 'ComponentInstance';
179
200
  readonly plugin: '';
180
201
  getComponent(): Promise<Component>;
181
202
  getSlots(): Promise<Array<SlotInstanceElement>>;
182
203
  getProps(): Promise<Array<InstancePropSummary>>;
204
+ getResolvedProps(): Promise<Array<ResolvedInstanceProp>>;
183
205
  searchProps(
184
206
  options?: SearchInstancePropsOptions
185
207
  ): Promise<Array<InstanceProp>>;
186
208
  setProps(
187
209
  props: Array<SetInstancePropEntry>
188
210
  ): Promise<Array<SetInstancePropEntry>>;
211
+ resetAllProps(): Promise<null>;
189
212
  }
190
213
 
191
214
  interface UnknownElement
@@ -197,6 +220,7 @@ interface UnknownElement
197
220
  NoChildren,
198
221
  NoTextContent,
199
222
  NoAppConnections,
223
+ BindableSourceSearch,
200
224
  ElementSettings {
201
225
  readonly id: FullElementId;
202
226
  readonly type: '';
@@ -213,6 +237,7 @@ interface DOMElement
213
237
  TextContent,
214
238
  AppConnections,
215
239
  DisplayName,
240
+ BindableSourceSearch,
216
241
  ElementSettings {
217
242
  readonly id: FullElementId;
218
243
  readonly type: 'DOM';
@@ -235,6 +260,7 @@ interface SearchFormElement
235
260
  NoTextContent,
236
261
  NoAppConnections,
237
262
  DisplayName,
263
+ BindableSourceSearch,
238
264
  ElementSettings {
239
265
  readonly id: FullElementId;
240
266
  readonly type: 'SearchForm';
@@ -251,6 +277,7 @@ interface SearchInputElement
251
277
  NoTextContent,
252
278
  NoAppConnections,
253
279
  DisplayName,
280
+ BindableSourceSearch,
254
281
  ElementSettings {
255
282
  readonly id: FullElementId;
256
283
  readonly type: 'SearchInput';
@@ -267,6 +294,7 @@ interface SearchButtonElement
267
294
  NoTextContent,
268
295
  NoAppConnections,
269
296
  DisplayName,
297
+ BindableSourceSearch,
270
298
  ElementSettings {
271
299
  readonly id: FullElementId;
272
300
  readonly type: 'SearchButton';
@@ -283,6 +311,7 @@ interface SearchResultEmptyElement
283
311
  NoTextContent,
284
312
  NoAppConnections,
285
313
  DisplayName,
314
+ BindableSourceSearch,
286
315
  ElementSettings {
287
316
  readonly id: FullElementId;
288
317
  readonly type: 'SearchResultEmpty';
@@ -299,6 +328,7 @@ interface SearchResultWrapperElement
299
328
  NoTextContent,
300
329
  NoAppConnections,
301
330
  DisplayName,
331
+ BindableSourceSearch,
302
332
  ElementSettings {
303
333
  readonly id: FullElementId;
304
334
  readonly type: 'SearchResultWrapper';
@@ -315,6 +345,7 @@ interface SearchResultListElement
315
345
  NoTextContent,
316
346
  NoAppConnections,
317
347
  DisplayName,
348
+ BindableSourceSearch,
318
349
  ElementSettings {
319
350
  readonly id: FullElementId;
320
351
  readonly type: 'SearchResultList';
@@ -331,6 +362,7 @@ interface SearchResultItemElement
331
362
  NoTextContent,
332
363
  NoAppConnections,
333
364
  DisplayName,
365
+ BindableSourceSearch,
334
366
  ElementSettings {
335
367
  readonly id: FullElementId;
336
368
  readonly type: 'SearchResultItem';
@@ -347,6 +379,7 @@ interface BlockElement
347
379
  NoTextContent,
348
380
  NoAppConnections,
349
381
  DisplayName,
382
+ BindableSourceSearch,
350
383
  ElementSettings {
351
384
  readonly id: FullElementId;
352
385
  readonly type: 'Block';
@@ -365,6 +398,7 @@ interface BlockquoteElement
365
398
  TextContent,
366
399
  NoAppConnections,
367
400
  DisplayName,
401
+ BindableSourceSearch,
368
402
  ElementSettings {
369
403
  readonly id: FullElementId;
370
404
  readonly type: 'Blockquote';
@@ -381,6 +415,7 @@ interface CodeBlockElement
381
415
  NoTextContent,
382
416
  NoAppConnections,
383
417
  DisplayName,
418
+ BindableSourceSearch,
384
419
  ElementSettings {
385
420
  readonly id: FullElementId;
386
421
  readonly type: 'CodeBlock';
@@ -397,6 +432,7 @@ interface EmphasizedElement
397
432
  TextContent,
398
433
  NoAppConnections,
399
434
  DisplayName,
435
+ BindableSourceSearch,
400
436
  ElementSettings {
401
437
  readonly id: FullElementId;
402
438
  readonly type: 'Emphasized';
@@ -413,6 +449,7 @@ interface FigcaptionElement
413
449
  NoTextContent,
414
450
  NoAppConnections,
415
451
  DisplayName,
452
+ BindableSourceSearch,
416
453
  ElementSettings {
417
454
  readonly id: FullElementId;
418
455
  readonly type: 'Figcaption';
@@ -429,6 +466,7 @@ interface FigureElement
429
466
  NoTextContent,
430
467
  NoAppConnections,
431
468
  DisplayName,
469
+ BindableSourceSearch,
432
470
  ElementSettings {
433
471
  readonly id: FullElementId;
434
472
  readonly type: 'Figure';
@@ -445,6 +483,7 @@ interface HeadingElement
445
483
  TextContent,
446
484
  NoAppConnections,
447
485
  DisplayName,
486
+ BindableSourceSearch,
448
487
  ElementSettings {
449
488
  readonly id: FullElementId;
450
489
  readonly type: 'Heading';
@@ -463,6 +502,7 @@ interface IframeElement
463
502
  NoTextContent,
464
503
  NoAppConnections,
465
504
  DisplayName,
505
+ BindableSourceSearch,
466
506
  ElementSettings {
467
507
  readonly id: FullElementId;
468
508
  readonly type: 'Iframe';
@@ -479,6 +519,7 @@ interface ImageElement
479
519
  NoTextContent,
480
520
  AppConnections,
481
521
  DisplayName,
522
+ BindableSourceSearch,
482
523
  ElementSettings {
483
524
  readonly id: FullElementId;
484
525
  readonly type: 'Image';
@@ -499,6 +540,7 @@ interface LinkElement
499
540
  TextContent,
500
541
  NoAppConnections,
501
542
  DisplayName,
543
+ BindableSourceSearch,
502
544
  ElementSettings {
503
545
  readonly id: FullElementId;
504
546
  readonly type: 'Link';
@@ -508,6 +550,10 @@ interface LinkElement
508
550
  target: string | Page | AnyElement | Asset,
509
551
  metadata?: {openInNewTab?: boolean; subject?: string}
510
552
  ): Promise<null>;
553
+ setSettings(
554
+ this: {id: FullElementId},
555
+ settings: SetSettingsInput
556
+ ): Promise<null>;
511
557
  getTarget(): Promise<null | string | Page | AnyElement | Asset>;
512
558
  }
513
559
 
@@ -521,6 +567,7 @@ interface ListElement
521
567
  NoTextContent,
522
568
  NoAppConnections,
523
569
  DisplayName,
570
+ BindableSourceSearch,
524
571
  ElementSettings {
525
572
  readonly id: FullElementId;
526
573
  readonly type: 'List';
@@ -537,6 +584,7 @@ interface ListItemElement
537
584
  NoTextContent,
538
585
  NoAppConnections,
539
586
  DisplayName,
587
+ BindableSourceSearch,
540
588
  ElementSettings {
541
589
  readonly id: FullElementId;
542
590
  readonly type: 'ListItem';
@@ -553,6 +601,7 @@ interface ParagraphElement
553
601
  TextContent,
554
602
  NoAppConnections,
555
603
  DisplayName,
604
+ BindableSourceSearch,
556
605
  ElementSettings {
557
606
  readonly id: FullElementId;
558
607
  readonly type: 'Paragraph';
@@ -569,6 +618,7 @@ interface RichTextElement
569
618
  NoTextContent,
570
619
  NoAppConnections,
571
620
  DisplayName,
621
+ BindableSourceSearch,
572
622
  ElementSettings {
573
623
  readonly id: FullElementId;
574
624
  readonly type: 'RichText';
@@ -585,6 +635,7 @@ interface SpanElement
585
635
  TextContent,
586
636
  NoAppConnections,
587
637
  DisplayName,
638
+ BindableSourceSearch,
588
639
  ElementSettings {
589
640
  readonly id: FullElementId;
590
641
  readonly type: 'Span';
@@ -601,6 +652,7 @@ interface StringElement
601
652
  NoTextContent,
602
653
  NoAppConnections,
603
654
  NoDisplayName,
655
+ BindableSourceSearch,
604
656
  ElementSettings {
605
657
  readonly id: FullElementId;
606
658
  readonly type: 'String';
@@ -619,6 +671,7 @@ interface StrongElement
619
671
  TextContent,
620
672
  NoAppConnections,
621
673
  DisplayName,
674
+ BindableSourceSearch,
622
675
  ElementSettings {
623
676
  readonly id: FullElementId;
624
677
  readonly type: 'Strong';
@@ -635,6 +688,7 @@ interface SuperscriptElement
635
688
  TextContent,
636
689
  NoAppConnections,
637
690
  DisplayName,
691
+ BindableSourceSearch,
638
692
  ElementSettings {
639
693
  readonly id: FullElementId;
640
694
  readonly type: 'Superscript';
@@ -651,6 +705,7 @@ interface SubscriptElement
651
705
  TextContent,
652
706
  NoAppConnections,
653
707
  DisplayName,
708
+ BindableSourceSearch,
654
709
  ElementSettings {
655
710
  readonly id: FullElementId;
656
711
  readonly type: 'Subscript';
@@ -667,6 +722,7 @@ interface InlineCodeElement
667
722
  TextContent,
668
723
  NoAppConnections,
669
724
  DisplayName,
725
+ BindableSourceSearch,
670
726
  ElementSettings {
671
727
  readonly id: FullElementId;
672
728
  readonly type: 'InlineCode';
@@ -683,6 +739,7 @@ interface AnimationElement
683
739
  NoTextContent,
684
740
  NoAppConnections,
685
741
  DisplayName,
742
+ BindableSourceSearch,
686
743
  ElementSettings {
687
744
  readonly id: FullElementId;
688
745
  readonly type: 'Animation';
@@ -699,6 +756,7 @@ interface SplineElement
699
756
  NoTextContent,
700
757
  NoAppConnections,
701
758
  DisplayName,
759
+ BindableSourceSearch,
702
760
  ElementSettings {
703
761
  readonly id: FullElementId;
704
762
  readonly type: 'Spline';
@@ -715,6 +773,7 @@ interface RiveElement
715
773
  NoTextContent,
716
774
  NoAppConnections,
717
775
  DisplayName,
776
+ BindableSourceSearch,
718
777
  ElementSettings {
719
778
  readonly id: FullElementId;
720
779
  readonly type: 'Rive';
@@ -731,6 +790,7 @@ interface BackgroundVideoWrapperElement
731
790
  NoTextContent,
732
791
  NoAppConnections,
733
792
  DisplayName,
793
+ BindableSourceSearch,
734
794
  ElementSettings {
735
795
  readonly id: FullElementId;
736
796
  readonly type: 'BackgroundVideoWrapper';
@@ -747,6 +807,7 @@ interface BackgroundVideoPlayPauseButtonElement
747
807
  NoTextContent,
748
808
  NoAppConnections,
749
809
  DisplayName,
810
+ BindableSourceSearch,
750
811
  ElementSettings {
751
812
  readonly id: FullElementId;
752
813
  readonly type: 'BackgroundVideoPlayPauseButton';
@@ -763,6 +824,7 @@ interface BackgroundVideoPlayPauseButtonPlayingElement
763
824
  NoTextContent,
764
825
  NoAppConnections,
765
826
  DisplayName,
827
+ BindableSourceSearch,
766
828
  ElementSettings {
767
829
  readonly id: FullElementId;
768
830
  readonly type: 'BackgroundVideoPlayPauseButtonPlaying';
@@ -779,6 +841,7 @@ interface BackgroundVideoPlayPauseButtonPausedElement
779
841
  NoTextContent,
780
842
  NoAppConnections,
781
843
  DisplayName,
844
+ BindableSourceSearch,
782
845
  ElementSettings {
783
846
  readonly id: FullElementId;
784
847
  readonly type: 'BackgroundVideoPlayPauseButtonPaused';
@@ -795,6 +858,7 @@ interface BodyElement
795
858
  NoTextContent,
796
859
  NoAppConnections,
797
860
  DisplayName,
861
+ BindableSourceSearch,
798
862
  ElementSettings {
799
863
  readonly id: FullElementId;
800
864
  readonly type: 'Body';
@@ -811,6 +875,7 @@ interface CommerceAddToCartFormElement
811
875
  NoTextContent,
812
876
  NoAppConnections,
813
877
  DisplayName,
878
+ BindableSourceSearch,
814
879
  ElementSettings {
815
880
  readonly id: FullElementId;
816
881
  readonly type: 'CommerceAddToCartForm';
@@ -827,6 +892,7 @@ interface CommerceAddToCartButtonElement
827
892
  NoTextContent,
828
893
  NoAppConnections,
829
894
  DisplayName,
895
+ BindableSourceSearch,
830
896
  ElementSettings {
831
897
  readonly id: FullElementId;
832
898
  readonly type: 'CommerceAddToCartButton';
@@ -843,6 +909,7 @@ interface CommerceAddToCartWrapperElement
843
909
  NoTextContent,
844
910
  NoAppConnections,
845
911
  DisplayName,
912
+ BindableSourceSearch,
846
913
  ElementSettings {
847
914
  readonly id: FullElementId;
848
915
  readonly type: 'CommerceAddToCartWrapper';
@@ -859,6 +926,7 @@ interface CommerceAddToCartQuantityInputElement
859
926
  NoTextContent,
860
927
  NoAppConnections,
861
928
  DisplayName,
929
+ BindableSourceSearch,
862
930
  ElementSettings {
863
931
  readonly id: FullElementId;
864
932
  readonly type: 'CommerceAddToCartQuantityInput';
@@ -875,6 +943,7 @@ interface CommerceAddToCartErrorElement
875
943
  NoTextContent,
876
944
  NoAppConnections,
877
945
  DisplayName,
946
+ BindableSourceSearch,
878
947
  ElementSettings {
879
948
  readonly id: FullElementId;
880
949
  readonly type: 'CommerceAddToCartError';
@@ -891,6 +960,7 @@ interface CommerceAddToCartOutOfStockElement
891
960
  NoTextContent,
892
961
  NoAppConnections,
893
962
  DisplayName,
963
+ BindableSourceSearch,
894
964
  ElementSettings {
895
965
  readonly id: FullElementId;
896
966
  readonly type: 'CommerceAddToCartOutOfStock';
@@ -907,6 +977,7 @@ interface CommerceAddToCartOptionListElement
907
977
  NoTextContent,
908
978
  NoAppConnections,
909
979
  DisplayName,
980
+ BindableSourceSearch,
910
981
  ElementSettings {
911
982
  readonly id: FullElementId;
912
983
  readonly type: 'CommerceAddToCartOptionList';
@@ -923,6 +994,7 @@ interface CommerceAddToCartOptionListWithSelectorTypesElement
923
994
  NoTextContent,
924
995
  NoAppConnections,
925
996
  DisplayName,
997
+ BindableSourceSearch,
926
998
  ElementSettings {
927
999
  readonly id: FullElementId;
928
1000
  readonly type: 'CommerceAddToCartOptionListWithSelectorTypes';
@@ -939,6 +1011,7 @@ interface CommerceAddToCartOptionElement
939
1011
  NoTextContent,
940
1012
  NoAppConnections,
941
1013
  DisplayName,
1014
+ BindableSourceSearch,
942
1015
  ElementSettings {
943
1016
  readonly id: FullElementId;
944
1017
  readonly type: 'CommerceAddToCartOption';
@@ -955,6 +1028,7 @@ interface CommerceAddToCartOptionLabelElement
955
1028
  NoTextContent,
956
1029
  NoAppConnections,
957
1030
  DisplayName,
1031
+ BindableSourceSearch,
958
1032
  ElementSettings {
959
1033
  readonly id: FullElementId;
960
1034
  readonly type: 'CommerceAddToCartOptionLabel';
@@ -971,6 +1045,7 @@ interface CommerceAddToCartOptionSelectElement
971
1045
  NoTextContent,
972
1046
  NoAppConnections,
973
1047
  DisplayName,
1048
+ BindableSourceSearch,
974
1049
  ElementSettings {
975
1050
  readonly id: FullElementId;
976
1051
  readonly type: 'CommerceAddToCartOptionSelect';
@@ -987,6 +1062,7 @@ interface CommerceAddToCartOptionPillGroupElement
987
1062
  NoTextContent,
988
1063
  NoAppConnections,
989
1064
  DisplayName,
1065
+ BindableSourceSearch,
990
1066
  ElementSettings {
991
1067
  readonly id: FullElementId;
992
1068
  readonly type: 'CommerceAddToCartOptionPillGroup';
@@ -1003,6 +1079,7 @@ interface CommerceAddToCartOptionPillElement
1003
1079
  NoTextContent,
1004
1080
  NoAppConnections,
1005
1081
  DisplayName,
1082
+ BindableSourceSearch,
1006
1083
  ElementSettings {
1007
1084
  readonly id: FullElementId;
1008
1085
  readonly type: 'CommerceAddToCartOptionPill';
@@ -1019,6 +1096,7 @@ interface CommerceBuyNowButtonElement
1019
1096
  TextContent,
1020
1097
  NoAppConnections,
1021
1098
  DisplayName,
1099
+ BindableSourceSearch,
1022
1100
  ElementSettings {
1023
1101
  readonly id: FullElementId;
1024
1102
  readonly type: 'CommerceBuyNowButton';
@@ -1035,6 +1113,7 @@ interface CommerceCartWrapperElement
1035
1113
  NoTextContent,
1036
1114
  NoAppConnections,
1037
1115
  DisplayName,
1116
+ BindableSourceSearch,
1038
1117
  ElementSettings {
1039
1118
  readonly id: FullElementId;
1040
1119
  readonly type: 'CommerceCartWrapper';
@@ -1051,6 +1130,7 @@ interface CommerceCartOpenLinkElement
1051
1130
  TextContent,
1052
1131
  NoAppConnections,
1053
1132
  DisplayName,
1133
+ BindableSourceSearch,
1054
1134
  ElementSettings {
1055
1135
  readonly id: FullElementId;
1056
1136
  readonly type: 'CommerceCartOpenLink';
@@ -1067,6 +1147,7 @@ interface CommerceCartOpenLinkCountElement
1067
1147
  NoTextContent,
1068
1148
  NoAppConnections,
1069
1149
  DisplayName,
1150
+ BindableSourceSearch,
1070
1151
  ElementSettings {
1071
1152
  readonly id: FullElementId;
1072
1153
  readonly type: 'CommerceCartOpenLinkCount';
@@ -1083,6 +1164,7 @@ interface CommerceCartOpenLinkIconElement
1083
1164
  NoTextContent,
1084
1165
  NoAppConnections,
1085
1166
  DisplayName,
1167
+ BindableSourceSearch,
1086
1168
  ElementSettings {
1087
1169
  readonly id: FullElementId;
1088
1170
  readonly type: 'CommerceCartOpenLinkIcon';
@@ -1099,6 +1181,7 @@ interface CommerceCartContainerWrapperElement
1099
1181
  NoTextContent,
1100
1182
  NoAppConnections,
1101
1183
  DisplayName,
1184
+ BindableSourceSearch,
1102
1185
  ElementSettings {
1103
1186
  readonly id: FullElementId;
1104
1187
  readonly type: 'CommerceCartContainerWrapper';
@@ -1115,6 +1198,7 @@ interface CommerceCartContainerElement
1115
1198
  NoTextContent,
1116
1199
  NoAppConnections,
1117
1200
  DisplayName,
1201
+ BindableSourceSearch,
1118
1202
  ElementSettings {
1119
1203
  readonly id: FullElementId;
1120
1204
  readonly type: 'CommerceCartContainer';
@@ -1131,6 +1215,7 @@ interface CommerceCartHeaderElement
1131
1215
  NoTextContent,
1132
1216
  NoAppConnections,
1133
1217
  DisplayName,
1218
+ BindableSourceSearch,
1134
1219
  ElementSettings {
1135
1220
  readonly id: FullElementId;
1136
1221
  readonly type: 'CommerceCartHeader';
@@ -1147,6 +1232,7 @@ interface CommerceCartHeadingElement
1147
1232
  NoTextContent,
1148
1233
  NoAppConnections,
1149
1234
  DisplayName,
1235
+ BindableSourceSearch,
1150
1236
  ElementSettings {
1151
1237
  readonly id: FullElementId;
1152
1238
  readonly type: 'CommerceCartHeading';
@@ -1163,6 +1249,7 @@ interface CommerceCartFormWrapperElement
1163
1249
  NoTextContent,
1164
1250
  NoAppConnections,
1165
1251
  DisplayName,
1252
+ BindableSourceSearch,
1166
1253
  ElementSettings {
1167
1254
  readonly id: FullElementId;
1168
1255
  readonly type: 'CommerceCartFormWrapper';
@@ -1179,6 +1266,7 @@ interface CommerceCartFormElement
1179
1266
  NoTextContent,
1180
1267
  NoAppConnections,
1181
1268
  DisplayName,
1269
+ BindableSourceSearch,
1182
1270
  ElementSettings {
1183
1271
  readonly id: FullElementId;
1184
1272
  readonly type: 'CommerceCartForm';
@@ -1195,6 +1283,7 @@ interface CommerceCartEmptyStateElement
1195
1283
  NoTextContent,
1196
1284
  NoAppConnections,
1197
1285
  DisplayName,
1286
+ BindableSourceSearch,
1198
1287
  ElementSettings {
1199
1288
  readonly id: FullElementId;
1200
1289
  readonly type: 'CommerceCartEmptyState';
@@ -1211,6 +1300,7 @@ interface CommerceCartErrorStateElement
1211
1300
  NoTextContent,
1212
1301
  NoAppConnections,
1213
1302
  DisplayName,
1303
+ BindableSourceSearch,
1214
1304
  ElementSettings {
1215
1305
  readonly id: FullElementId;
1216
1306
  readonly type: 'CommerceCartErrorState';
@@ -1227,6 +1317,7 @@ interface CommerceCartListElement
1227
1317
  NoTextContent,
1228
1318
  NoAppConnections,
1229
1319
  DisplayName,
1320
+ BindableSourceSearch,
1230
1321
  ElementSettings {
1231
1322
  readonly id: FullElementId;
1232
1323
  readonly type: 'CommerceCartList';
@@ -1243,6 +1334,7 @@ interface CommerceCartFooterElement
1243
1334
  NoTextContent,
1244
1335
  NoAppConnections,
1245
1336
  DisplayName,
1337
+ BindableSourceSearch,
1246
1338
  ElementSettings {
1247
1339
  readonly id: FullElementId;
1248
1340
  readonly type: 'CommerceCartFooter';
@@ -1259,6 +1351,7 @@ interface CommerceCartLineItemElement
1259
1351
  NoTextContent,
1260
1352
  NoAppConnections,
1261
1353
  DisplayName,
1354
+ BindableSourceSearch,
1262
1355
  ElementSettings {
1263
1356
  readonly id: FullElementId;
1264
1357
  readonly type: 'CommerceCartLineItem';
@@ -1275,6 +1368,7 @@ interface CommerceCartCheckoutButtonElement
1275
1368
  TextContent,
1276
1369
  NoAppConnections,
1277
1370
  DisplayName,
1371
+ BindableSourceSearch,
1278
1372
  ElementSettings {
1279
1373
  readonly id: FullElementId;
1280
1374
  readonly type: 'CommerceCartCheckoutButton';
@@ -1291,6 +1385,7 @@ interface CommerceCartItemElement
1291
1385
  NoTextContent,
1292
1386
  NoAppConnections,
1293
1387
  DisplayName,
1388
+ BindableSourceSearch,
1294
1389
  ElementSettings {
1295
1390
  readonly id: FullElementId;
1296
1391
  readonly type: 'CommerceCartItem';
@@ -1307,6 +1402,7 @@ interface CommerceCartItemImageElement
1307
1402
  NoTextContent,
1308
1403
  NoAppConnections,
1309
1404
  DisplayName,
1405
+ BindableSourceSearch,
1310
1406
  ElementSettings {
1311
1407
  readonly id: FullElementId;
1312
1408
  readonly type: 'CommerceCartItemImage';
@@ -1323,6 +1419,7 @@ interface CommerceCartItemInfoElement
1323
1419
  NoTextContent,
1324
1420
  NoAppConnections,
1325
1421
  DisplayName,
1422
+ BindableSourceSearch,
1326
1423
  ElementSettings {
1327
1424
  readonly id: FullElementId;
1328
1425
  readonly type: 'CommerceCartItemInfo';
@@ -1339,6 +1436,7 @@ interface CommerceCartProductNameElement
1339
1436
  NoTextContent,
1340
1437
  NoAppConnections,
1341
1438
  DisplayName,
1439
+ BindableSourceSearch,
1342
1440
  ElementSettings {
1343
1441
  readonly id: FullElementId;
1344
1442
  readonly type: 'CommerceCartProductName';
@@ -1355,6 +1453,7 @@ interface CommerceCartProductPriceElement
1355
1453
  NoTextContent,
1356
1454
  NoAppConnections,
1357
1455
  DisplayName,
1456
+ BindableSourceSearch,
1358
1457
  ElementSettings {
1359
1458
  readonly id: FullElementId;
1360
1459
  readonly type: 'CommerceCartProductPrice';
@@ -1371,6 +1470,7 @@ interface CommerceCartQuantityElement
1371
1470
  NoTextContent,
1372
1471
  NoAppConnections,
1373
1472
  DisplayName,
1473
+ BindableSourceSearch,
1374
1474
  ElementSettings {
1375
1475
  readonly id: FullElementId;
1376
1476
  readonly type: 'CommerceCartQuantity';
@@ -1387,6 +1487,7 @@ interface CommerceCartCloseLinkElement
1387
1487
  TextContent,
1388
1488
  NoAppConnections,
1389
1489
  DisplayName,
1490
+ BindableSourceSearch,
1390
1491
  ElementSettings {
1391
1492
  readonly id: FullElementId;
1392
1493
  readonly type: 'CommerceCartCloseLink';
@@ -1403,6 +1504,7 @@ interface CommerceCartCloseLinkIconElement
1403
1504
  NoTextContent,
1404
1505
  NoAppConnections,
1405
1506
  DisplayName,
1507
+ BindableSourceSearch,
1406
1508
  ElementSettings {
1407
1509
  readonly id: FullElementId;
1408
1510
  readonly type: 'CommerceCartCloseLinkIcon';
@@ -1419,6 +1521,7 @@ interface CommerceCartRemoveLinkElement
1419
1521
  TextContent,
1420
1522
  NoAppConnections,
1421
1523
  DisplayName,
1524
+ BindableSourceSearch,
1422
1525
  ElementSettings {
1423
1526
  readonly id: FullElementId;
1424
1527
  readonly type: 'CommerceCartRemoveLink';
@@ -1435,6 +1538,7 @@ interface CommerceCartOrderValueElement
1435
1538
  NoTextContent,
1436
1539
  NoAppConnections,
1437
1540
  DisplayName,
1541
+ BindableSourceSearch,
1438
1542
  ElementSettings {
1439
1543
  readonly id: FullElementId;
1440
1544
  readonly type: 'CommerceCartOrderValue';
@@ -1451,6 +1555,7 @@ interface CommerceCartCheckoutActionsElement
1451
1555
  NoTextContent,
1452
1556
  NoAppConnections,
1453
1557
  DisplayName,
1558
+ BindableSourceSearch,
1454
1559
  ElementSettings {
1455
1560
  readonly id: FullElementId;
1456
1561
  readonly type: 'CommerceCartCheckoutActions';
@@ -1467,6 +1572,7 @@ interface CommerceCartOptionListElement
1467
1572
  NoTextContent,
1468
1573
  NoAppConnections,
1469
1574
  DisplayName,
1575
+ BindableSourceSearch,
1470
1576
  ElementSettings {
1471
1577
  readonly id: FullElementId;
1472
1578
  readonly type: 'CommerceCartOptionList';
@@ -1483,6 +1589,7 @@ interface CommerceCartOptionListItemElement
1483
1589
  NoTextContent,
1484
1590
  NoAppConnections,
1485
1591
  DisplayName,
1592
+ BindableSourceSearch,
1486
1593
  ElementSettings {
1487
1594
  readonly id: FullElementId;
1488
1595
  readonly type: 'CommerceCartOptionListItem';
@@ -1499,6 +1606,7 @@ interface CommerceCartOptionListItemLabelElement
1499
1606
  TextContent,
1500
1607
  NoAppConnections,
1501
1608
  DisplayName,
1609
+ BindableSourceSearch,
1502
1610
  ElementSettings {
1503
1611
  readonly id: FullElementId;
1504
1612
  readonly type: 'CommerceCartOptionListItemLabel';
@@ -1515,6 +1623,7 @@ interface CommerceCartOptionListItemValueElement
1515
1623
  TextContent,
1516
1624
  NoAppConnections,
1517
1625
  DisplayName,
1626
+ BindableSourceSearch,
1518
1627
  ElementSettings {
1519
1628
  readonly id: FullElementId;
1520
1629
  readonly type: 'CommerceCartOptionListItemValue';
@@ -1531,6 +1640,7 @@ interface CommerceCartQuickCheckoutActionsElement
1531
1640
  NoTextContent,
1532
1641
  NoAppConnections,
1533
1642
  DisplayName,
1643
+ BindableSourceSearch,
1534
1644
  ElementSettings {
1535
1645
  readonly id: FullElementId;
1536
1646
  readonly type: 'CommerceCartQuickCheckoutActions';
@@ -1547,6 +1657,7 @@ interface CommerceCartQuickCheckoutButtonElement
1547
1657
  TextContent,
1548
1658
  NoAppConnections,
1549
1659
  DisplayName,
1660
+ BindableSourceSearch,
1550
1661
  ElementSettings {
1551
1662
  readonly id: FullElementId;
1552
1663
  readonly type: 'CommerceCartQuickCheckoutButton';
@@ -1563,6 +1674,7 @@ interface CommerceCartApplePayButtonElement
1563
1674
  TextContent,
1564
1675
  NoAppConnections,
1565
1676
  DisplayName,
1677
+ BindableSourceSearch,
1566
1678
  ElementSettings {
1567
1679
  readonly id: FullElementId;
1568
1680
  readonly type: 'CommerceCartApplePayButton';
@@ -1579,6 +1691,7 @@ interface CommerceCartApplePayIconElement
1579
1691
  NoTextContent,
1580
1692
  NoAppConnections,
1581
1693
  DisplayName,
1694
+ BindableSourceSearch,
1582
1695
  ElementSettings {
1583
1696
  readonly id: FullElementId;
1584
1697
  readonly type: 'CommerceCartApplePayIcon';
@@ -1595,6 +1708,7 @@ interface CommerceQuickCheckoutGoogleIconElement
1595
1708
  NoTextContent,
1596
1709
  NoAppConnections,
1597
1710
  DisplayName,
1711
+ BindableSourceSearch,
1598
1712
  ElementSettings {
1599
1713
  readonly id: FullElementId;
1600
1714
  readonly type: 'CommerceQuickCheckoutGoogleIcon';
@@ -1611,6 +1725,7 @@ interface CommerceQuickCheckoutMicrosoftIconElement
1611
1725
  NoTextContent,
1612
1726
  NoAppConnections,
1613
1727
  DisplayName,
1728
+ BindableSourceSearch,
1614
1729
  ElementSettings {
1615
1730
  readonly id: FullElementId;
1616
1731
  readonly type: 'CommerceQuickCheckoutMicrosoftIcon';
@@ -1627,6 +1742,7 @@ interface CommercePayPalCheckoutButtonElement
1627
1742
  NoTextContent,
1628
1743
  NoAppConnections,
1629
1744
  DisplayName,
1745
+ BindableSourceSearch,
1630
1746
  ElementSettings {
1631
1747
  readonly id: FullElementId;
1632
1748
  readonly type: 'CommercePayPalCheckoutButton';
@@ -1643,6 +1759,7 @@ interface CommerceCheckoutBlockContentElement
1643
1759
  NoTextContent,
1644
1760
  NoAppConnections,
1645
1761
  DisplayName,
1762
+ BindableSourceSearch,
1646
1763
  ElementSettings {
1647
1764
  readonly id: FullElementId;
1648
1765
  readonly type: 'CommerceCheckoutBlockContent';
@@ -1659,6 +1776,7 @@ interface CommerceCheckoutBlockHeaderElement
1659
1776
  NoTextContent,
1660
1777
  NoAppConnections,
1661
1778
  DisplayName,
1779
+ BindableSourceSearch,
1662
1780
  ElementSettings {
1663
1781
  readonly id: FullElementId;
1664
1782
  readonly type: 'CommerceCheckoutBlockHeader';
@@ -1675,6 +1793,7 @@ interface CommerceCheckoutColumnElement
1675
1793
  NoTextContent,
1676
1794
  NoAppConnections,
1677
1795
  DisplayName,
1796
+ BindableSourceSearch,
1678
1797
  ElementSettings {
1679
1798
  readonly id: FullElementId;
1680
1799
  readonly type: 'CommerceCheckoutColumn';
@@ -1691,6 +1810,7 @@ interface CommerceCheckoutFormContainerElement
1691
1810
  NoTextContent,
1692
1811
  NoAppConnections,
1693
1812
  DisplayName,
1813
+ BindableSourceSearch,
1694
1814
  ElementSettings {
1695
1815
  readonly id: FullElementId;
1696
1816
  readonly type: 'CommerceCheckoutFormContainer';
@@ -1707,6 +1827,7 @@ interface CommerceCheckoutRowElement
1707
1827
  NoTextContent,
1708
1828
  NoAppConnections,
1709
1829
  DisplayName,
1830
+ BindableSourceSearch,
1710
1831
  ElementSettings {
1711
1832
  readonly id: FullElementId;
1712
1833
  readonly type: 'CommerceCheckoutRow';
@@ -1723,6 +1844,7 @@ interface CommerceCheckoutLabelElement
1723
1844
  TextContent,
1724
1845
  NoAppConnections,
1725
1846
  DisplayName,
1847
+ BindableSourceSearch,
1726
1848
  ElementSettings {
1727
1849
  readonly id: FullElementId;
1728
1850
  readonly type: 'CommerceCheckoutLabel';
@@ -1739,6 +1861,7 @@ interface CommerceLabelElement
1739
1861
  TextContent,
1740
1862
  NoAppConnections,
1741
1863
  DisplayName,
1864
+ BindableSourceSearch,
1742
1865
  ElementSettings {
1743
1866
  readonly id: FullElementId;
1744
1867
  readonly type: 'CommerceLabel';
@@ -1755,6 +1878,7 @@ interface CommerceCheckoutCardExpirationDateElement
1755
1878
  NoTextContent,
1756
1879
  NoAppConnections,
1757
1880
  DisplayName,
1881
+ BindableSourceSearch,
1758
1882
  ElementSettings {
1759
1883
  readonly id: FullElementId;
1760
1884
  readonly type: 'CommerceCheckoutCardExpirationDate';
@@ -1771,6 +1895,7 @@ interface CommerceCheckoutCardNumberElement
1771
1895
  NoTextContent,
1772
1896
  NoAppConnections,
1773
1897
  DisplayName,
1898
+ BindableSourceSearch,
1774
1899
  ElementSettings {
1775
1900
  readonly id: FullElementId;
1776
1901
  readonly type: 'CommerceCheckoutCardNumber';
@@ -1787,6 +1912,7 @@ interface CommerceCheckoutCardSecurityCodeElement
1787
1912
  NoTextContent,
1788
1913
  NoAppConnections,
1789
1914
  DisplayName,
1915
+ BindableSourceSearch,
1790
1916
  ElementSettings {
1791
1917
  readonly id: FullElementId;
1792
1918
  readonly type: 'CommerceCheckoutCardSecurityCode';
@@ -1803,6 +1929,7 @@ interface CommerceCheckoutCustomerInfoWrapperElement
1803
1929
  NoTextContent,
1804
1930
  NoAppConnections,
1805
1931
  DisplayName,
1932
+ BindableSourceSearch,
1806
1933
  ElementSettings {
1807
1934
  readonly id: FullElementId;
1808
1935
  readonly type: 'CommerceCheckoutCustomerInfoWrapper';
@@ -1819,6 +1946,7 @@ interface CommerceCheckoutErrorStateElement
1819
1946
  NoTextContent,
1820
1947
  NoAppConnections,
1821
1948
  DisplayName,
1949
+ BindableSourceSearch,
1822
1950
  ElementSettings {
1823
1951
  readonly id: FullElementId;
1824
1952
  readonly type: 'CommerceCheckoutErrorState';
@@ -1835,6 +1963,7 @@ interface CommerceCheckoutPaymentInfoWrapperElement
1835
1963
  NoTextContent,
1836
1964
  NoAppConnections,
1837
1965
  DisplayName,
1966
+ BindableSourceSearch,
1838
1967
  ElementSettings {
1839
1968
  readonly id: FullElementId;
1840
1969
  readonly type: 'CommerceCheckoutPaymentInfoWrapper';
@@ -1851,6 +1980,7 @@ interface CommerceCheckoutPlaceOrderButtonElement
1851
1980
  TextContent,
1852
1981
  NoAppConnections,
1853
1982
  DisplayName,
1983
+ BindableSourceSearch,
1854
1984
  ElementSettings {
1855
1985
  readonly id: FullElementId;
1856
1986
  readonly type: 'CommerceCheckoutPlaceOrderButton';
@@ -1867,6 +1997,7 @@ interface CommerceCheckoutEmailInputElement
1867
1997
  NoTextContent,
1868
1998
  NoAppConnections,
1869
1999
  DisplayName,
2000
+ BindableSourceSearch,
1870
2001
  ElementSettings {
1871
2002
  readonly id: FullElementId;
1872
2003
  readonly type: 'CommerceCheckoutEmailInput';
@@ -1883,6 +2014,7 @@ interface CommerceCheckoutShippingAddressWrapperElement
1883
2014
  NoTextContent,
1884
2015
  NoAppConnections,
1885
2016
  DisplayName,
2017
+ BindableSourceSearch,
1886
2018
  ElementSettings {
1887
2019
  readonly id: FullElementId;
1888
2020
  readonly type: 'CommerceCheckoutShippingAddressWrapper';
@@ -1899,6 +2031,7 @@ interface CommerceCheckoutShippingCountrySelectorElement
1899
2031
  NoTextContent,
1900
2032
  NoAppConnections,
1901
2033
  DisplayName,
2034
+ BindableSourceSearch,
1902
2035
  ElementSettings {
1903
2036
  readonly id: FullElementId;
1904
2037
  readonly type: 'CommerceCheckoutShippingCountrySelector';
@@ -1915,6 +2048,7 @@ interface CommerceCheckoutShippingFullNameElement
1915
2048
  NoTextContent,
1916
2049
  NoAppConnections,
1917
2050
  DisplayName,
2051
+ BindableSourceSearch,
1918
2052
  ElementSettings {
1919
2053
  readonly id: FullElementId;
1920
2054
  readonly type: 'CommerceCheckoutShippingFullName';
@@ -1931,6 +2065,7 @@ interface CommerceCheckoutShippingStreetAddressElement
1931
2065
  NoTextContent,
1932
2066
  NoAppConnections,
1933
2067
  DisplayName,
2068
+ BindableSourceSearch,
1934
2069
  ElementSettings {
1935
2070
  readonly id: FullElementId;
1936
2071
  readonly type: 'CommerceCheckoutShippingStreetAddress';
@@ -1947,6 +2082,7 @@ interface CommerceCheckoutShippingStreetAddressOptionalElement
1947
2082
  NoTextContent,
1948
2083
  NoAppConnections,
1949
2084
  DisplayName,
2085
+ BindableSourceSearch,
1950
2086
  ElementSettings {
1951
2087
  readonly id: FullElementId;
1952
2088
  readonly type: 'CommerceCheckoutShippingStreetAddressOptional';
@@ -1963,6 +2099,7 @@ interface CommerceCheckoutShippingCityElement
1963
2099
  NoTextContent,
1964
2100
  NoAppConnections,
1965
2101
  DisplayName,
2102
+ BindableSourceSearch,
1966
2103
  ElementSettings {
1967
2104
  readonly id: FullElementId;
1968
2105
  readonly type: 'CommerceCheckoutShippingCity';
@@ -1979,6 +2116,7 @@ interface CommerceCheckoutShippingZipPostalCodeElement
1979
2116
  NoTextContent,
1980
2117
  NoAppConnections,
1981
2118
  DisplayName,
2119
+ BindableSourceSearch,
1982
2120
  ElementSettings {
1983
2121
  readonly id: FullElementId;
1984
2122
  readonly type: 'CommerceCheckoutShippingZipPostalCode';
@@ -1995,6 +2133,7 @@ interface CommerceCheckoutShippingStateProvinceElement
1995
2133
  NoTextContent,
1996
2134
  NoAppConnections,
1997
2135
  DisplayName,
2136
+ BindableSourceSearch,
1998
2137
  ElementSettings {
1999
2138
  readonly id: FullElementId;
2000
2139
  readonly type: 'CommerceCheckoutShippingStateProvince';
@@ -2011,6 +2150,7 @@ interface CommerceOrderConfirmationElement
2011
2150
  NoTextContent,
2012
2151
  NoAppConnections,
2013
2152
  DisplayName,
2153
+ BindableSourceSearch,
2014
2154
  ElementSettings {
2015
2155
  readonly id: FullElementId;
2016
2156
  readonly type: 'CommerceOrderConfirmation';
@@ -2027,6 +2167,7 @@ interface CommerceOrderConfirmationContainerElement
2027
2167
  NoTextContent,
2028
2168
  NoAppConnections,
2029
2169
  DisplayName,
2170
+ BindableSourceSearch,
2030
2171
  ElementSettings {
2031
2172
  readonly id: FullElementId;
2032
2173
  readonly type: 'CommerceOrderConfirmationContainer';
@@ -2043,6 +2184,7 @@ interface CommerceOrderConfirmationHeaderWrapperElement
2043
2184
  NoTextContent,
2044
2185
  NoAppConnections,
2045
2186
  DisplayName,
2187
+ BindableSourceSearch,
2046
2188
  ElementSettings {
2047
2189
  readonly id: FullElementId;
2048
2190
  readonly type: 'CommerceOrderConfirmationHeaderWrapper';
@@ -2059,6 +2201,7 @@ interface CommerceCheckoutBillingAddressWrapperElement
2059
2201
  NoTextContent,
2060
2202
  NoAppConnections,
2061
2203
  DisplayName,
2204
+ BindableSourceSearch,
2062
2205
  ElementSettings {
2063
2206
  readonly id: FullElementId;
2064
2207
  readonly type: 'CommerceCheckoutBillingAddressWrapper';
@@ -2075,6 +2218,7 @@ interface CommerceCheckoutBillingCountrySelectorElement
2075
2218
  NoTextContent,
2076
2219
  NoAppConnections,
2077
2220
  DisplayName,
2221
+ BindableSourceSearch,
2078
2222
  ElementSettings {
2079
2223
  readonly id: FullElementId;
2080
2224
  readonly type: 'CommerceCheckoutBillingCountrySelector';
@@ -2091,6 +2235,7 @@ interface CommerceCheckoutBillingFullNameElement
2091
2235
  NoTextContent,
2092
2236
  NoAppConnections,
2093
2237
  DisplayName,
2238
+ BindableSourceSearch,
2094
2239
  ElementSettings {
2095
2240
  readonly id: FullElementId;
2096
2241
  readonly type: 'CommerceCheckoutBillingFullName';
@@ -2107,6 +2252,7 @@ interface CommerceCheckoutBillingStreetAddressElement
2107
2252
  NoTextContent,
2108
2253
  NoAppConnections,
2109
2254
  DisplayName,
2255
+ BindableSourceSearch,
2110
2256
  ElementSettings {
2111
2257
  readonly id: FullElementId;
2112
2258
  readonly type: 'CommerceCheckoutBillingStreetAddress';
@@ -2123,6 +2269,7 @@ interface CommerceCheckoutBillingStreetAddressOptionalElement
2123
2269
  NoTextContent,
2124
2270
  NoAppConnections,
2125
2271
  DisplayName,
2272
+ BindableSourceSearch,
2126
2273
  ElementSettings {
2127
2274
  readonly id: FullElementId;
2128
2275
  readonly type: 'CommerceCheckoutBillingStreetAddressOptional';
@@ -2139,6 +2286,7 @@ interface CommerceCheckoutBillingCityElement
2139
2286
  NoTextContent,
2140
2287
  NoAppConnections,
2141
2288
  DisplayName,
2289
+ BindableSourceSearch,
2142
2290
  ElementSettings {
2143
2291
  readonly id: FullElementId;
2144
2292
  readonly type: 'CommerceCheckoutBillingCity';
@@ -2155,6 +2303,7 @@ interface CommerceCheckoutBillingZipPostalCodeElement
2155
2303
  NoTextContent,
2156
2304
  NoAppConnections,
2157
2305
  DisplayName,
2306
+ BindableSourceSearch,
2158
2307
  ElementSettings {
2159
2308
  readonly id: FullElementId;
2160
2309
  readonly type: 'CommerceCheckoutBillingZipPostalCode';
@@ -2171,6 +2320,7 @@ interface CommerceCheckoutBillingStateProvinceElement
2171
2320
  NoTextContent,
2172
2321
  NoAppConnections,
2173
2322
  DisplayName,
2323
+ BindableSourceSearch,
2174
2324
  ElementSettings {
2175
2325
  readonly id: FullElementId;
2176
2326
  readonly type: 'CommerceCheckoutBillingStateProvince';
@@ -2187,6 +2337,7 @@ interface CommerceCheckoutBillingAddressToggleWrapperElement
2187
2337
  NoTextContent,
2188
2338
  NoAppConnections,
2189
2339
  DisplayName,
2340
+ BindableSourceSearch,
2190
2341
  ElementSettings {
2191
2342
  readonly id: FullElementId;
2192
2343
  readonly type: 'CommerceCheckoutBillingAddressToggleWrapper';
@@ -2203,6 +2354,7 @@ interface CommerceCheckoutBillingAddressToggleCheckboxElement
2203
2354
  NoTextContent,
2204
2355
  NoAppConnections,
2205
2356
  DisplayName,
2357
+ BindableSourceSearch,
2206
2358
  ElementSettings {
2207
2359
  readonly id: FullElementId;
2208
2360
  readonly type: 'CommerceCheckoutBillingAddressToggleCheckbox';
@@ -2219,6 +2371,7 @@ interface CommerceCheckoutBillingAddressToggleLabelElement
2219
2371
  TextContent,
2220
2372
  NoAppConnections,
2221
2373
  DisplayName,
2374
+ BindableSourceSearch,
2222
2375
  ElementSettings {
2223
2376
  readonly id: FullElementId;
2224
2377
  readonly type: 'CommerceCheckoutBillingAddressToggleLabel';
@@ -2235,6 +2388,7 @@ interface CommerceCheckoutOrderItemsWrapperElement
2235
2388
  NoTextContent,
2236
2389
  NoAppConnections,
2237
2390
  DisplayName,
2391
+ BindableSourceSearch,
2238
2392
  ElementSettings {
2239
2393
  readonly id: FullElementId;
2240
2394
  readonly type: 'CommerceCheckoutOrderItemsWrapper';
@@ -2251,6 +2405,7 @@ interface CommerceCheckoutOrderItemsListElement
2251
2405
  NoTextContent,
2252
2406
  NoAppConnections,
2253
2407
  DisplayName,
2408
+ BindableSourceSearch,
2254
2409
  ElementSettings {
2255
2410
  readonly id: FullElementId;
2256
2411
  readonly type: 'CommerceCheckoutOrderItemsList';
@@ -2267,6 +2422,7 @@ interface CommerceCheckoutOrderItemElement
2267
2422
  NoTextContent,
2268
2423
  NoAppConnections,
2269
2424
  DisplayName,
2425
+ BindableSourceSearch,
2270
2426
  ElementSettings {
2271
2427
  readonly id: FullElementId;
2272
2428
  readonly type: 'CommerceCheckoutOrderItem';
@@ -2283,6 +2439,7 @@ interface CommerceBoldTextBlockElement
2283
2439
  NoTextContent,
2284
2440
  NoAppConnections,
2285
2441
  DisplayName,
2442
+ BindableSourceSearch,
2286
2443
  ElementSettings {
2287
2444
  readonly id: FullElementId;
2288
2445
  readonly type: 'CommerceBoldTextBlock';
@@ -2299,6 +2456,7 @@ interface CommerceCheckoutOrderItemDescriptionWrapperElement
2299
2456
  NoTextContent,
2300
2457
  NoAppConnections,
2301
2458
  DisplayName,
2459
+ BindableSourceSearch,
2302
2460
  ElementSettings {
2303
2461
  readonly id: FullElementId;
2304
2462
  readonly type: 'CommerceCheckoutOrderItemDescriptionWrapper';
@@ -2315,6 +2473,7 @@ interface CommerceCheckoutOrderItemQuantityWrapperElement
2315
2473
  NoTextContent,
2316
2474
  NoAppConnections,
2317
2475
  DisplayName,
2476
+ BindableSourceSearch,
2318
2477
  ElementSettings {
2319
2478
  readonly id: FullElementId;
2320
2479
  readonly type: 'CommerceCheckoutOrderItemQuantityWrapper';
@@ -2331,6 +2490,7 @@ interface CommerceCheckoutOrderItemOptionListElement
2331
2490
  NoTextContent,
2332
2491
  NoAppConnections,
2333
2492
  DisplayName,
2493
+ BindableSourceSearch,
2334
2494
  ElementSettings {
2335
2495
  readonly id: FullElementId;
2336
2496
  readonly type: 'CommerceCheckoutOrderItemOptionList';
@@ -2347,6 +2507,7 @@ interface CommerceCheckoutOrderItemOptionListItemElement
2347
2507
  NoTextContent,
2348
2508
  NoAppConnections,
2349
2509
  DisplayName,
2510
+ BindableSourceSearch,
2350
2511
  ElementSettings {
2351
2512
  readonly id: FullElementId;
2352
2513
  readonly type: 'CommerceCheckoutOrderItemOptionListItem';
@@ -2363,6 +2524,7 @@ interface CommerceCheckoutOrderItemOptionListItemLabelElement
2363
2524
  TextContent,
2364
2525
  NoAppConnections,
2365
2526
  DisplayName,
2527
+ BindableSourceSearch,
2366
2528
  ElementSettings {
2367
2529
  readonly id: FullElementId;
2368
2530
  readonly type: 'CommerceCheckoutOrderItemOptionListItemLabel';
@@ -2379,6 +2541,7 @@ interface CommerceCheckoutOrderItemOptionListItemValueElement
2379
2541
  TextContent,
2380
2542
  NoAppConnections,
2381
2543
  DisplayName,
2544
+ BindableSourceSearch,
2382
2545
  ElementSettings {
2383
2546
  readonly id: FullElementId;
2384
2547
  readonly type: 'CommerceCheckoutOrderItemOptionListItemValue';
@@ -2395,6 +2558,7 @@ interface CommerceCheckoutOrderItemTrialTextWrapperElement
2395
2558
  NoTextContent,
2396
2559
  NoAppConnections,
2397
2560
  DisplayName,
2561
+ BindableSourceSearch,
2398
2562
  ElementSettings {
2399
2563
  readonly id: FullElementId;
2400
2564
  readonly type: 'CommerceCheckoutOrderItemTrialTextWrapper';
@@ -2411,6 +2575,7 @@ interface CommerceCheckoutShippingMethodsWrapperElement
2411
2575
  NoTextContent,
2412
2576
  NoAppConnections,
2413
2577
  DisplayName,
2578
+ BindableSourceSearch,
2414
2579
  ElementSettings {
2415
2580
  readonly id: FullElementId;
2416
2581
  readonly type: 'CommerceCheckoutShippingMethodsWrapper';
@@ -2427,6 +2592,7 @@ interface CommerceCheckoutShippingMethodsEmptyStateElement
2427
2592
  NoTextContent,
2428
2593
  NoAppConnections,
2429
2594
  DisplayName,
2595
+ BindableSourceSearch,
2430
2596
  ElementSettings {
2431
2597
  readonly id: FullElementId;
2432
2598
  readonly type: 'CommerceCheckoutShippingMethodsEmptyState';
@@ -2443,6 +2609,7 @@ interface CommerceCheckoutShippingMethodsListElement
2443
2609
  NoTextContent,
2444
2610
  NoAppConnections,
2445
2611
  DisplayName,
2612
+ BindableSourceSearch,
2446
2613
  ElementSettings {
2447
2614
  readonly id: FullElementId;
2448
2615
  readonly type: 'CommerceCheckoutShippingMethodsList';
@@ -2459,6 +2626,7 @@ interface CommerceCheckoutShippingMethodItemElement
2459
2626
  NoTextContent,
2460
2627
  NoAppConnections,
2461
2628
  DisplayName,
2629
+ BindableSourceSearch,
2462
2630
  ElementSettings {
2463
2631
  readonly id: FullElementId;
2464
2632
  readonly type: 'CommerceCheckoutShippingMethodItem';
@@ -2475,6 +2643,7 @@ interface CommerceCheckoutShippingMethodRadioButtonElement
2475
2643
  NoTextContent,
2476
2644
  NoAppConnections,
2477
2645
  DisplayName,
2646
+ BindableSourceSearch,
2478
2647
  ElementSettings {
2479
2648
  readonly id: FullElementId;
2480
2649
  readonly type: 'CommerceCheckoutShippingMethodRadioButton';
@@ -2491,6 +2660,7 @@ interface CommerceCheckoutShippingMethodDescriptionBlockElement
2491
2660
  NoTextContent,
2492
2661
  NoAppConnections,
2493
2662
  DisplayName,
2663
+ BindableSourceSearch,
2494
2664
  ElementSettings {
2495
2665
  readonly id: FullElementId;
2496
2666
  readonly type: 'CommerceCheckoutShippingMethodDescriptionBlock';
@@ -2507,6 +2677,7 @@ interface CommerceCheckoutShippingMethodNameBlockElement
2507
2677
  NoTextContent,
2508
2678
  NoAppConnections,
2509
2679
  DisplayName,
2680
+ BindableSourceSearch,
2510
2681
  ElementSettings {
2511
2682
  readonly id: FullElementId;
2512
2683
  readonly type: 'CommerceCheckoutShippingMethodNameBlock';
@@ -2523,6 +2694,7 @@ interface CommerceCheckoutShippingMethodBlockWrapperElement
2523
2694
  NoTextContent,
2524
2695
  NoAppConnections,
2525
2696
  DisplayName,
2697
+ BindableSourceSearch,
2526
2698
  ElementSettings {
2527
2699
  readonly id: FullElementId;
2528
2700
  readonly type: 'CommerceCheckoutShippingMethodBlockWrapper';
@@ -2539,6 +2711,7 @@ interface CommerceCheckoutCustomerInfoSummaryWrapperElement
2539
2711
  NoTextContent,
2540
2712
  NoAppConnections,
2541
2713
  DisplayName,
2714
+ BindableSourceSearch,
2542
2715
  ElementSettings {
2543
2716
  readonly id: FullElementId;
2544
2717
  readonly type: 'CommerceCheckoutCustomerInfoSummaryWrapper';
@@ -2555,6 +2728,7 @@ interface CommerceCheckoutShippingSummaryWrapperElement
2555
2728
  NoTextContent,
2556
2729
  NoAppConnections,
2557
2730
  DisplayName,
2731
+ BindableSourceSearch,
2558
2732
  ElementSettings {
2559
2733
  readonly id: FullElementId;
2560
2734
  readonly type: 'CommerceCheckoutShippingSummaryWrapper';
@@ -2571,6 +2745,7 @@ interface CommerceCheckoutPaymentSummaryWrapperElement
2571
2745
  NoTextContent,
2572
2746
  NoAppConnections,
2573
2747
  DisplayName,
2748
+ BindableSourceSearch,
2574
2749
  ElementSettings {
2575
2750
  readonly id: FullElementId;
2576
2751
  readonly type: 'CommerceCheckoutPaymentSummaryWrapper';
@@ -2587,6 +2762,7 @@ interface CommerceCheckoutOrderSummaryWrapperElement
2587
2762
  NoTextContent,
2588
2763
  NoAppConnections,
2589
2764
  DisplayName,
2765
+ BindableSourceSearch,
2590
2766
  ElementSettings {
2591
2767
  readonly id: FullElementId;
2592
2768
  readonly type: 'CommerceCheckoutOrderSummaryWrapper';
@@ -2603,6 +2779,7 @@ interface CommerceCheckoutSummaryItemElement
2603
2779
  NoTextContent,
2604
2780
  NoAppConnections,
2605
2781
  DisplayName,
2782
+ BindableSourceSearch,
2606
2783
  ElementSettings {
2607
2784
  readonly id: FullElementId;
2608
2785
  readonly type: 'CommerceCheckoutSummaryItem';
@@ -2619,6 +2796,7 @@ interface CommerceCheckoutSummaryLabelElement
2619
2796
  TextContent,
2620
2797
  NoAppConnections,
2621
2798
  DisplayName,
2799
+ BindableSourceSearch,
2622
2800
  ElementSettings {
2623
2801
  readonly id: FullElementId;
2624
2802
  readonly type: 'CommerceCheckoutSummaryLabel';
@@ -2635,6 +2813,7 @@ interface CommerceCheckoutSummaryBlockHeaderElement
2635
2813
  NoTextContent,
2636
2814
  NoAppConnections,
2637
2815
  DisplayName,
2816
+ BindableSourceSearch,
2638
2817
  ElementSettings {
2639
2818
  readonly id: FullElementId;
2640
2819
  readonly type: 'CommerceCheckoutSummaryBlockHeader';
@@ -2651,6 +2830,7 @@ interface CommerceCheckoutSummaryLineItemElement
2651
2830
  NoTextContent,
2652
2831
  NoAppConnections,
2653
2832
  DisplayName,
2833
+ BindableSourceSearch,
2654
2834
  ElementSettings {
2655
2835
  readonly id: FullElementId;
2656
2836
  readonly type: 'CommerceCheckoutSummaryLineItem';
@@ -2667,6 +2847,7 @@ interface CommerceCheckoutSummaryTotalElement
2667
2847
  NoTextContent,
2668
2848
  NoAppConnections,
2669
2849
  DisplayName,
2850
+ BindableSourceSearch,
2670
2851
  ElementSettings {
2671
2852
  readonly id: FullElementId;
2672
2853
  readonly type: 'CommerceCheckoutSummaryTotal';
@@ -2683,6 +2864,7 @@ interface CommerceCheckoutSummaryTextSpacingOnDivElement
2683
2864
  NoTextContent,
2684
2865
  NoAppConnections,
2685
2866
  DisplayName,
2867
+ BindableSourceSearch,
2686
2868
  ElementSettings {
2687
2869
  readonly id: FullElementId;
2688
2870
  readonly type: 'CommerceCheckoutSummaryTextSpacingOnDiv';
@@ -2699,6 +2881,7 @@ interface CommerceCheckoutSummaryFlexBoxDivElement
2699
2881
  NoTextContent,
2700
2882
  NoAppConnections,
2701
2883
  DisplayName,
2884
+ BindableSourceSearch,
2702
2885
  ElementSettings {
2703
2886
  readonly id: FullElementId;
2704
2887
  readonly type: 'CommerceCheckoutSummaryFlexBoxDiv';
@@ -2715,6 +2898,7 @@ interface CommerceCheckoutOrderItemDescriptionPriceElement
2715
2898
  NoTextContent,
2716
2899
  NoAppConnections,
2717
2900
  DisplayName,
2901
+ BindableSourceSearch,
2718
2902
  ElementSettings {
2719
2903
  readonly id: FullElementId;
2720
2904
  readonly type: 'CommerceCheckoutOrderItemDescriptionPrice';
@@ -2731,6 +2915,7 @@ interface CommerceCheckoutOrderSummaryExtraItemsListElement
2731
2915
  NoTextContent,
2732
2916
  NoAppConnections,
2733
2917
  DisplayName,
2918
+ BindableSourceSearch,
2734
2919
  ElementSettings {
2735
2920
  readonly id: FullElementId;
2736
2921
  readonly type: 'CommerceCheckoutOrderSummaryExtraItemsList';
@@ -2747,6 +2932,7 @@ interface CommerceCheckoutOrderSummaryExtraItemsListItemElement
2747
2932
  NoTextContent,
2748
2933
  NoAppConnections,
2749
2934
  DisplayName,
2935
+ BindableSourceSearch,
2750
2936
  ElementSettings {
2751
2937
  readonly id: FullElementId;
2752
2938
  readonly type: 'CommerceCheckoutOrderSummaryExtraItemsListItem';
@@ -2763,6 +2949,7 @@ interface CommerceCheckoutErrorMsgElement
2763
2949
  NoTextContent,
2764
2950
  NoAppConnections,
2765
2951
  DisplayName,
2952
+ BindableSourceSearch,
2766
2953
  ElementSettings {
2767
2954
  readonly id: FullElementId;
2768
2955
  readonly type: 'CommerceCheckoutErrorMsg';
@@ -2779,6 +2966,7 @@ interface CommerceCartErrorMsgElement
2779
2966
  NoTextContent,
2780
2967
  NoAppConnections,
2781
2968
  DisplayName,
2969
+ BindableSourceSearch,
2782
2970
  ElementSettings {
2783
2971
  readonly id: FullElementId;
2784
2972
  readonly type: 'CommerceCartErrorMsg';
@@ -2795,6 +2983,7 @@ interface CommerceAddToCartErrorMsgElement
2795
2983
  NoTextContent,
2796
2984
  NoAppConnections,
2797
2985
  DisplayName,
2986
+ BindableSourceSearch,
2798
2987
  ElementSettings {
2799
2988
  readonly id: FullElementId;
2800
2989
  readonly type: 'CommerceAddToCartErrorMsg';
@@ -2811,6 +3000,7 @@ interface CommerceLayoutMainElement
2811
3000
  NoTextContent,
2812
3001
  NoAppConnections,
2813
3002
  DisplayName,
3003
+ BindableSourceSearch,
2814
3004
  ElementSettings {
2815
3005
  readonly id: FullElementId;
2816
3006
  readonly type: 'CommerceLayoutMain';
@@ -2827,6 +3017,7 @@ interface CommerceLayoutSidebarElement
2827
3017
  NoTextContent,
2828
3018
  NoAppConnections,
2829
3019
  DisplayName,
3020
+ BindableSourceSearch,
2830
3021
  ElementSettings {
2831
3022
  readonly id: FullElementId;
2832
3023
  readonly type: 'CommerceLayoutSidebar';
@@ -2843,6 +3034,7 @@ interface CommerceLayoutContainerElement
2843
3034
  NoTextContent,
2844
3035
  NoAppConnections,
2845
3036
  DisplayName,
3037
+ BindableSourceSearch,
2846
3038
  ElementSettings {
2847
3039
  readonly id: FullElementId;
2848
3040
  readonly type: 'CommerceLayoutContainer';
@@ -2859,6 +3051,7 @@ interface CommercePaypalCheckoutFormContainerElement
2859
3051
  NoTextContent,
2860
3052
  NoAppConnections,
2861
3053
  DisplayName,
3054
+ BindableSourceSearch,
2862
3055
  ElementSettings {
2863
3056
  readonly id: FullElementId;
2864
3057
  readonly type: 'CommercePaypalCheckoutFormContainer';
@@ -2875,6 +3068,7 @@ interface CommercePaypalCheckoutErrorStateElement
2875
3068
  NoTextContent,
2876
3069
  NoAppConnections,
2877
3070
  DisplayName,
3071
+ BindableSourceSearch,
2878
3072
  ElementSettings {
2879
3073
  readonly id: FullElementId;
2880
3074
  readonly type: 'CommercePaypalCheckoutErrorState';
@@ -2891,6 +3085,7 @@ interface CommercePaypalCheckoutErrorMessageElement
2891
3085
  NoTextContent,
2892
3086
  NoAppConnections,
2893
3087
  DisplayName,
3088
+ BindableSourceSearch,
2894
3089
  ElementSettings {
2895
3090
  readonly id: FullElementId;
2896
3091
  readonly type: 'CommercePaypalCheckoutErrorMessage';
@@ -2907,6 +3102,7 @@ interface CommerceCheckoutAdditionalInputsContainerElement
2907
3102
  NoTextContent,
2908
3103
  NoAppConnections,
2909
3104
  DisplayName,
3105
+ BindableSourceSearch,
2910
3106
  ElementSettings {
2911
3107
  readonly id: FullElementId;
2912
3108
  readonly type: 'CommerceCheckoutAdditionalInputsContainer';
@@ -2923,6 +3119,7 @@ interface CommerceCheckoutAdditionalInfoSummaryWrapperElement
2923
3119
  NoTextContent,
2924
3120
  NoAppConnections,
2925
3121
  DisplayName,
3122
+ BindableSourceSearch,
2926
3123
  ElementSettings {
2927
3124
  readonly id: FullElementId;
2928
3125
  readonly type: 'CommerceCheckoutAdditionalInfoSummaryWrapper';
@@ -2939,6 +3136,7 @@ interface CommerceCheckoutAdditionalTextAreaElement
2939
3136
  NoTextContent,
2940
3137
  NoAppConnections,
2941
3138
  DisplayName,
3139
+ BindableSourceSearch,
2942
3140
  ElementSettings {
2943
3141
  readonly id: FullElementId;
2944
3142
  readonly type: 'CommerceCheckoutAdditionalTextArea';
@@ -2955,6 +3153,7 @@ interface CommerceCheckoutAdditionalTextInputElement
2955
3153
  NoTextContent,
2956
3154
  NoAppConnections,
2957
3155
  DisplayName,
3156
+ BindableSourceSearch,
2958
3157
  ElementSettings {
2959
3158
  readonly id: FullElementId;
2960
3159
  readonly type: 'CommerceCheckoutAdditionalTextInput';
@@ -2971,6 +3170,7 @@ interface CommerceCheckoutAdditionalCheckboxElement
2971
3170
  NoTextContent,
2972
3171
  NoAppConnections,
2973
3172
  DisplayName,
3173
+ BindableSourceSearch,
2974
3174
  ElementSettings {
2975
3175
  readonly id: FullElementId;
2976
3176
  readonly type: 'CommerceCheckoutAdditionalCheckbox';
@@ -2987,6 +3187,7 @@ interface CommerceCheckoutAdditionalCheckboxWrapperElement
2987
3187
  NoTextContent,
2988
3188
  NoAppConnections,
2989
3189
  DisplayName,
3190
+ BindableSourceSearch,
2990
3191
  ElementSettings {
2991
3192
  readonly id: FullElementId;
2992
3193
  readonly type: 'CommerceCheckoutAdditionalCheckboxWrapper';
@@ -3003,6 +3204,7 @@ interface CommerceCheckoutDiscountsElement
3003
3204
  NoTextContent,
3004
3205
  NoAppConnections,
3005
3206
  DisplayName,
3207
+ BindableSourceSearch,
3006
3208
  ElementSettings {
3007
3209
  readonly id: FullElementId;
3008
3210
  readonly type: 'CommerceCheckoutDiscounts';
@@ -3019,6 +3221,7 @@ interface CommerceCheckoutDiscountsButtonElement
3019
3221
  TextContent,
3020
3222
  NoAppConnections,
3021
3223
  DisplayName,
3224
+ BindableSourceSearch,
3022
3225
  ElementSettings {
3023
3226
  readonly id: FullElementId;
3024
3227
  readonly type: 'CommerceCheckoutDiscountsButton';
@@ -3035,6 +3238,7 @@ interface CommerceCheckoutDiscountsInputElement
3035
3238
  NoTextContent,
3036
3239
  NoAppConnections,
3037
3240
  DisplayName,
3241
+ BindableSourceSearch,
3038
3242
  ElementSettings {
3039
3243
  readonly id: FullElementId;
3040
3244
  readonly type: 'CommerceCheckoutDiscountsInput';
@@ -3051,6 +3255,7 @@ interface CommerceCheckoutDiscountsLabelElement
3051
3255
  TextContent,
3052
3256
  NoAppConnections,
3053
3257
  DisplayName,
3258
+ BindableSourceSearch,
3054
3259
  ElementSettings {
3055
3260
  readonly id: FullElementId;
3056
3261
  readonly type: 'CommerceCheckoutDiscountsLabel';
@@ -3067,6 +3272,7 @@ interface CommerceDownloadsWrapperElement
3067
3272
  NoTextContent,
3068
3273
  NoAppConnections,
3069
3274
  DisplayName,
3275
+ BindableSourceSearch,
3070
3276
  ElementSettings {
3071
3277
  readonly id: FullElementId;
3072
3278
  readonly type: 'CommerceDownloadsWrapper';
@@ -3083,6 +3289,7 @@ interface CommerceDownloadsListElement
3083
3289
  NoTextContent,
3084
3290
  NoAppConnections,
3085
3291
  DisplayName,
3292
+ BindableSourceSearch,
3086
3293
  ElementSettings {
3087
3294
  readonly id: FullElementId;
3088
3295
  readonly type: 'CommerceDownloadsList';
@@ -3099,6 +3306,7 @@ interface CommerceDownloadsItemElement
3099
3306
  NoTextContent,
3100
3307
  NoAppConnections,
3101
3308
  DisplayName,
3309
+ BindableSourceSearch,
3102
3310
  ElementSettings {
3103
3311
  readonly id: FullElementId;
3104
3312
  readonly type: 'CommerceDownloadsItem';
@@ -3115,6 +3323,7 @@ interface DropdownLinkElement
3115
3323
  TextContent,
3116
3324
  NoAppConnections,
3117
3325
  DisplayName,
3326
+ BindableSourceSearch,
3118
3327
  ElementSettings {
3119
3328
  readonly id: FullElementId;
3120
3329
  readonly type: 'DropdownLink';
@@ -3131,6 +3340,7 @@ interface DropdownListElement
3131
3340
  NoTextContent,
3132
3341
  NoAppConnections,
3133
3342
  DisplayName,
3343
+ BindableSourceSearch,
3134
3344
  ElementSettings {
3135
3345
  readonly id: FullElementId;
3136
3346
  readonly type: 'DropdownList';
@@ -3147,6 +3357,7 @@ interface DropdownToggleElement
3147
3357
  NoTextContent,
3148
3358
  NoAppConnections,
3149
3359
  DisplayName,
3360
+ BindableSourceSearch,
3150
3361
  ElementSettings {
3151
3362
  readonly id: FullElementId;
3152
3363
  readonly type: 'DropdownToggle';
@@ -3163,6 +3374,7 @@ interface DropdownWrapperElement
3163
3374
  NoTextContent,
3164
3375
  NoAppConnections,
3165
3376
  DisplayName,
3377
+ BindableSourceSearch,
3166
3378
  ElementSettings {
3167
3379
  readonly id: FullElementId;
3168
3380
  readonly type: 'DropdownWrapper';
@@ -3179,6 +3391,7 @@ interface DropTargetElement
3179
3391
  NoTextContent,
3180
3392
  NoAppConnections,
3181
3393
  DisplayName,
3394
+ BindableSourceSearch,
3182
3395
  ElementSettings {
3183
3396
  readonly id: FullElementId;
3184
3397
  readonly type: 'DropTarget';
@@ -3195,6 +3408,7 @@ interface DynamoWrapperElement
3195
3408
  NoTextContent,
3196
3409
  NoAppConnections,
3197
3410
  DisplayName,
3411
+ BindableSourceSearch,
3198
3412
  ElementSettings {
3199
3413
  readonly id: FullElementId;
3200
3414
  readonly type: 'DynamoWrapper';
@@ -3211,6 +3425,7 @@ interface DynamoListElement
3211
3425
  NoTextContent,
3212
3426
  NoAppConnections,
3213
3427
  DisplayName,
3428
+ BindableSourceSearch,
3214
3429
  ElementSettings {
3215
3430
  readonly id: FullElementId;
3216
3431
  readonly type: 'DynamoList';
@@ -3227,6 +3442,7 @@ interface DynamoItemElement
3227
3442
  NoTextContent,
3228
3443
  NoAppConnections,
3229
3444
  DisplayName,
3445
+ BindableSourceSearch,
3230
3446
  ElementSettings {
3231
3447
  readonly id: FullElementId;
3232
3448
  readonly type: 'DynamoItem';
@@ -3243,6 +3459,7 @@ interface DynamoEmptyElement
3243
3459
  NoTextContent,
3244
3460
  NoAppConnections,
3245
3461
  DisplayName,
3462
+ BindableSourceSearch,
3246
3463
  ElementSettings {
3247
3464
  readonly id: FullElementId;
3248
3465
  readonly type: 'DynamoEmpty';
@@ -3259,6 +3476,7 @@ interface HtmlEmbedElement
3259
3476
  NoTextContent,
3260
3477
  NoAppConnections,
3261
3478
  DisplayName,
3479
+ BindableSourceSearch,
3262
3480
  ElementSettings {
3263
3481
  readonly id: FullElementId;
3264
3482
  readonly type: 'HtmlEmbed';
@@ -3275,6 +3493,7 @@ interface VideoElement
3275
3493
  NoTextContent,
3276
3494
  NoAppConnections,
3277
3495
  DisplayName,
3496
+ BindableSourceSearch,
3278
3497
  ElementSettings {
3279
3498
  readonly id: FullElementId;
3280
3499
  readonly type: 'Video';
@@ -3291,6 +3510,7 @@ interface YouTubeVideoElement
3291
3510
  NoTextContent,
3292
3511
  NoAppConnections,
3293
3512
  DisplayName,
3513
+ BindableSourceSearch,
3294
3514
  ElementSettings {
3295
3515
  readonly id: FullElementId;
3296
3516
  readonly type: 'YouTubeVideo';
@@ -3307,6 +3527,7 @@ interface LightboxWrapperElement
3307
3527
  TextContent,
3308
3528
  NoAppConnections,
3309
3529
  DisplayName,
3530
+ BindableSourceSearch,
3310
3531
  ElementSettings {
3311
3532
  readonly id: FullElementId;
3312
3533
  readonly type: 'LightboxWrapper';
@@ -3323,6 +3544,7 @@ interface FormBlockLabelElement
3323
3544
  TextContent,
3324
3545
  NoAppConnections,
3325
3546
  DisplayName,
3547
+ BindableSourceSearch,
3326
3548
  ElementSettings {
3327
3549
  readonly id: FullElementId;
3328
3550
  readonly type: 'FormBlockLabel';
@@ -3339,6 +3561,7 @@ interface FormButtonElement
3339
3561
  NoTextContent,
3340
3562
  NoAppConnections,
3341
3563
  DisplayName,
3564
+ BindableSourceSearch,
3342
3565
  ElementSettings {
3343
3566
  readonly id: FullElementId;
3344
3567
  readonly type: 'FormButton';
@@ -3355,6 +3578,7 @@ interface FormCheckboxInputElement
3355
3578
  NoTextContent,
3356
3579
  NoAppConnections,
3357
3580
  DisplayName,
3581
+ BindableSourceSearch,
3358
3582
  ElementSettings {
3359
3583
  readonly id: FullElementId;
3360
3584
  readonly type: 'FormCheckboxInput';
@@ -3375,6 +3599,7 @@ interface FormCheckboxWrapperElement
3375
3599
  NoTextContent,
3376
3600
  NoAppConnections,
3377
3601
  DisplayName,
3602
+ BindableSourceSearch,
3378
3603
  ElementSettings {
3379
3604
  readonly id: FullElementId;
3380
3605
  readonly type: 'FormCheckboxWrapper';
@@ -3391,6 +3616,7 @@ interface FormErrorMessageElement
3391
3616
  NoTextContent,
3392
3617
  NoAppConnections,
3393
3618
  DisplayName,
3619
+ BindableSourceSearch,
3394
3620
  ElementSettings {
3395
3621
  readonly id: FullElementId;
3396
3622
  readonly type: 'FormErrorMessage';
@@ -3407,6 +3633,7 @@ interface FormFormElement
3407
3633
  NoTextContent,
3408
3634
  AppConnections,
3409
3635
  DisplayName,
3636
+ BindableSourceSearch,
3410
3637
  ElementSettings {
3411
3638
  readonly id: FullElementId;
3412
3639
  readonly type: 'FormForm';
@@ -3415,6 +3642,10 @@ interface FormFormElement
3415
3642
  setName(name: string): Promise<null>;
3416
3643
  getSettings(): Promise<FormSettings>;
3417
3644
  setSettings(settings: Partial<FormSettings>): Promise<null>;
3645
+ setSettings(
3646
+ this: {id: FullElementId},
3647
+ settings: SetSettingsInput
3648
+ ): Promise<null>;
3418
3649
  }
3419
3650
 
3420
3651
  interface FormInlineLabelElement
@@ -3427,6 +3658,7 @@ interface FormInlineLabelElement
3427
3658
  TextContent,
3428
3659
  NoAppConnections,
3429
3660
  DisplayName,
3661
+ BindableSourceSearch,
3430
3662
  ElementSettings {
3431
3663
  readonly id: FullElementId;
3432
3664
  readonly type: 'FormInlineLabel';
@@ -3443,6 +3675,7 @@ interface FormRadioInputElement
3443
3675
  NoTextContent,
3444
3676
  NoAppConnections,
3445
3677
  DisplayName,
3678
+ BindableSourceSearch,
3446
3679
  ElementSettings {
3447
3680
  readonly id: FullElementId;
3448
3681
  readonly type: 'FormRadioInput';
@@ -3463,6 +3696,7 @@ interface FormRadioWrapperElement
3463
3696
  NoTextContent,
3464
3697
  NoAppConnections,
3465
3698
  DisplayName,
3699
+ BindableSourceSearch,
3466
3700
  ElementSettings {
3467
3701
  readonly id: FullElementId;
3468
3702
  readonly type: 'FormRadioWrapper';
@@ -3479,6 +3713,7 @@ interface FormSelectElement
3479
3713
  NoTextContent,
3480
3714
  NoAppConnections,
3481
3715
  DisplayName,
3716
+ BindableSourceSearch,
3482
3717
  ElementSettings {
3483
3718
  readonly id: FullElementId;
3484
3719
  readonly type: 'FormSelect';
@@ -3499,6 +3734,7 @@ interface FormSuccessMessageElement
3499
3734
  NoTextContent,
3500
3735
  NoAppConnections,
3501
3736
  DisplayName,
3737
+ BindableSourceSearch,
3502
3738
  ElementSettings {
3503
3739
  readonly id: FullElementId;
3504
3740
  readonly type: 'FormSuccessMessage';
@@ -3515,6 +3751,7 @@ interface FormTextareaElement
3515
3751
  NoTextContent,
3516
3752
  NoAppConnections,
3517
3753
  DisplayName,
3754
+ BindableSourceSearch,
3518
3755
  ElementSettings {
3519
3756
  readonly id: FullElementId;
3520
3757
  readonly type: 'FormTextarea';
@@ -3535,6 +3772,7 @@ interface FormTextInputElement
3535
3772
  NoTextContent,
3536
3773
  NoAppConnections,
3537
3774
  DisplayName,
3775
+ BindableSourceSearch,
3538
3776
  ElementSettings {
3539
3777
  readonly id: FullElementId;
3540
3778
  readonly type: 'FormTextInput';
@@ -3561,6 +3799,7 @@ interface FormWrapperElement
3561
3799
  NoTextContent,
3562
3800
  AppConnections,
3563
3801
  DisplayName,
3802
+ BindableSourceSearch,
3564
3803
  ElementSettings {
3565
3804
  readonly id: FullElementId;
3566
3805
  readonly type: 'FormWrapper';
@@ -3569,6 +3808,10 @@ interface FormWrapperElement
3569
3808
  setName(name: string): Promise<null>;
3570
3809
  getSettings(): Promise<FormSettings>;
3571
3810
  setSettings(settings: Partial<FormSettings>): Promise<null>;
3811
+ setSettings(
3812
+ this: {id: FullElementId},
3813
+ settings: SetSettingsInput
3814
+ ): Promise<null>;
3572
3815
  }
3573
3816
 
3574
3817
  interface FormReCaptchaElement
@@ -3581,6 +3824,7 @@ interface FormReCaptchaElement
3581
3824
  NoTextContent,
3582
3825
  NoAppConnections,
3583
3826
  DisplayName,
3827
+ BindableSourceSearch,
3584
3828
  ElementSettings {
3585
3829
  readonly id: FullElementId;
3586
3830
  readonly type: 'FormReCaptcha';
@@ -3597,6 +3841,7 @@ interface FormFileUploadWrapperElement
3597
3841
  NoTextContent,
3598
3842
  NoAppConnections,
3599
3843
  DisplayName,
3844
+ BindableSourceSearch,
3600
3845
  ElementSettings {
3601
3846
  readonly id: FullElementId;
3602
3847
  readonly type: 'FormFileUploadWrapper';
@@ -3617,6 +3862,7 @@ interface FormFileUploadDefaultElement
3617
3862
  NoTextContent,
3618
3863
  NoAppConnections,
3619
3864
  DisplayName,
3865
+ BindableSourceSearch,
3620
3866
  ElementSettings {
3621
3867
  readonly id: FullElementId;
3622
3868
  readonly type: 'FormFileUploadDefault';
@@ -3633,6 +3879,7 @@ interface FormFileUploadUploadingElement
3633
3879
  NoTextContent,
3634
3880
  NoAppConnections,
3635
3881
  DisplayName,
3882
+ BindableSourceSearch,
3636
3883
  ElementSettings {
3637
3884
  readonly id: FullElementId;
3638
3885
  readonly type: 'FormFileUploadUploading';
@@ -3649,6 +3896,7 @@ interface FormFileUploadUploadingBtnElement
3649
3896
  NoTextContent,
3650
3897
  NoAppConnections,
3651
3898
  DisplayName,
3899
+ BindableSourceSearch,
3652
3900
  ElementSettings {
3653
3901
  readonly id: FullElementId;
3654
3902
  readonly type: 'FormFileUploadUploadingBtn';
@@ -3665,6 +3913,7 @@ interface FormFileUploadUploadingIconElement
3665
3913
  NoTextContent,
3666
3914
  NoAppConnections,
3667
3915
  DisplayName,
3916
+ BindableSourceSearch,
3668
3917
  ElementSettings {
3669
3918
  readonly id: FullElementId;
3670
3919
  readonly type: 'FormFileUploadUploadingIcon';
@@ -3681,6 +3930,7 @@ interface FormFileUploadSuccessElement
3681
3930
  NoTextContent,
3682
3931
  NoAppConnections,
3683
3932
  DisplayName,
3933
+ BindableSourceSearch,
3684
3934
  ElementSettings {
3685
3935
  readonly id: FullElementId;
3686
3936
  readonly type: 'FormFileUploadSuccess';
@@ -3697,6 +3947,7 @@ interface FormFileUploadFileElement
3697
3947
  NoTextContent,
3698
3948
  NoAppConnections,
3699
3949
  DisplayName,
3950
+ BindableSourceSearch,
3700
3951
  ElementSettings {
3701
3952
  readonly id: FullElementId;
3702
3953
  readonly type: 'FormFileUploadFile';
@@ -3713,6 +3964,7 @@ interface FormFileUploadFileNameElement
3713
3964
  NoTextContent,
3714
3965
  NoAppConnections,
3715
3966
  DisplayName,
3967
+ BindableSourceSearch,
3716
3968
  ElementSettings {
3717
3969
  readonly id: FullElementId;
3718
3970
  readonly type: 'FormFileUploadFileName';
@@ -3729,6 +3981,7 @@ interface FormFileUploadRemoveLinkElement
3729
3981
  NoTextContent,
3730
3982
  NoAppConnections,
3731
3983
  DisplayName,
3984
+ BindableSourceSearch,
3732
3985
  ElementSettings {
3733
3986
  readonly id: FullElementId;
3734
3987
  readonly type: 'FormFileUploadRemoveLink';
@@ -3745,6 +3998,7 @@ interface FormFileUploadErrorElement
3745
3998
  NoTextContent,
3746
3999
  NoAppConnections,
3747
4000
  DisplayName,
4001
+ BindableSourceSearch,
3748
4002
  ElementSettings {
3749
4003
  readonly id: FullElementId;
3750
4004
  readonly type: 'FormFileUploadError';
@@ -3761,6 +4015,7 @@ interface FormFileUploadErrorMsgElement
3761
4015
  NoTextContent,
3762
4016
  NoAppConnections,
3763
4017
  DisplayName,
4018
+ BindableSourceSearch,
3764
4019
  ElementSettings {
3765
4020
  readonly id: FullElementId;
3766
4021
  readonly type: 'FormFileUploadErrorMsg';
@@ -3777,6 +4032,7 @@ interface FormFileUploadInputElement
3777
4032
  NoTextContent,
3778
4033
  NoAppConnections,
3779
4034
  DisplayName,
4035
+ BindableSourceSearch,
3780
4036
  ElementSettings {
3781
4037
  readonly id: FullElementId;
3782
4038
  readonly type: 'FormFileUploadInput';
@@ -3793,6 +4049,7 @@ interface FormFileUploadLabelElement
3793
4049
  NoTextContent,
3794
4050
  NoAppConnections,
3795
4051
  DisplayName,
4052
+ BindableSourceSearch,
3796
4053
  ElementSettings {
3797
4054
  readonly id: FullElementId;
3798
4055
  readonly type: 'FormFileUploadLabel';
@@ -3809,6 +4066,7 @@ interface FormFileUploadInfoElement
3809
4066
  NoTextContent,
3810
4067
  NoAppConnections,
3811
4068
  DisplayName,
4069
+ BindableSourceSearch,
3812
4070
  ElementSettings {
3813
4071
  readonly id: FullElementId;
3814
4072
  readonly type: 'FormFileUploadInfo';
@@ -3825,6 +4083,7 @@ interface FormFileUploadTextElement
3825
4083
  NoTextContent,
3826
4084
  NoAppConnections,
3827
4085
  DisplayName,
4086
+ BindableSourceSearch,
3828
4087
  ElementSettings {
3829
4088
  readonly id: FullElementId;
3830
4089
  readonly type: 'FormFileUploadText';
@@ -3841,6 +4100,7 @@ interface IconElement
3841
4100
  NoTextContent,
3842
4101
  NoAppConnections,
3843
4102
  DisplayName,
4103
+ BindableSourceSearch,
3844
4104
  ElementSettings {
3845
4105
  readonly id: FullElementId;
3846
4106
  readonly type: 'Icon';
@@ -3857,6 +4117,7 @@ interface HreflangsElement
3857
4117
  NoTextContent,
3858
4118
  NoAppConnections,
3859
4119
  DisplayName,
4120
+ BindableSourceSearch,
3860
4121
  ElementSettings {
3861
4122
  readonly id: FullElementId;
3862
4123
  readonly type: 'Hreflangs';
@@ -3873,6 +4134,7 @@ interface LocalesWrapperElement
3873
4134
  NoTextContent,
3874
4135
  NoAppConnections,
3875
4136
  DisplayName,
4137
+ BindableSourceSearch,
3876
4138
  ElementSettings {
3877
4139
  readonly id: FullElementId;
3878
4140
  readonly type: 'LocalesWrapper';
@@ -3889,6 +4151,7 @@ interface LocalesEmptyElement
3889
4151
  NoTextContent,
3890
4152
  NoAppConnections,
3891
4153
  DisplayName,
4154
+ BindableSourceSearch,
3892
4155
  ElementSettings {
3893
4156
  readonly id: FullElementId;
3894
4157
  readonly type: 'LocalesEmpty';
@@ -3905,6 +4168,7 @@ interface LocalesListElement
3905
4168
  NoTextContent,
3906
4169
  NoAppConnections,
3907
4170
  DisplayName,
4171
+ BindableSourceSearch,
3908
4172
  ElementSettings {
3909
4173
  readonly id: FullElementId;
3910
4174
  readonly type: 'LocalesList';
@@ -3921,6 +4185,7 @@ interface LocalesItemElement
3921
4185
  NoTextContent,
3922
4186
  NoAppConnections,
3923
4187
  DisplayName,
4188
+ BindableSourceSearch,
3924
4189
  ElementSettings {
3925
4190
  readonly id: FullElementId;
3926
4191
  readonly type: 'LocalesItem';
@@ -3937,6 +4202,7 @@ interface ContainerElement
3937
4202
  NoTextContent,
3938
4203
  NoAppConnections,
3939
4204
  DisplayName,
4205
+ BindableSourceSearch,
3940
4206
  ElementSettings {
3941
4207
  readonly id: FullElementId;
3942
4208
  readonly type: 'Container';
@@ -3953,6 +4219,7 @@ interface RowElement
3953
4219
  NoTextContent,
3954
4220
  NoAppConnections,
3955
4221
  DisplayName,
4222
+ BindableSourceSearch,
3956
4223
  ElementSettings {
3957
4224
  readonly id: FullElementId;
3958
4225
  readonly type: 'Row';
@@ -3969,6 +4236,7 @@ interface ColumnElement
3969
4236
  NoTextContent,
3970
4237
  NoAppConnections,
3971
4238
  DisplayName,
4239
+ BindableSourceSearch,
3972
4240
  ElementSettings {
3973
4241
  readonly id: FullElementId;
3974
4242
  readonly type: 'Column';
@@ -3985,6 +4253,7 @@ interface SectionElement
3985
4253
  NoTextContent,
3986
4254
  NoAppConnections,
3987
4255
  DisplayName,
4256
+ BindableSourceSearch,
3988
4257
  ElementSettings {
3989
4258
  readonly id: FullElementId;
3990
4259
  readonly type: 'Section';
@@ -4001,6 +4270,7 @@ interface GridElement
4001
4270
  NoTextContent,
4002
4271
  NoAppConnections,
4003
4272
  DisplayName,
4273
+ BindableSourceSearch,
4004
4274
  ElementSettings {
4005
4275
  readonly id: FullElementId;
4006
4276
  readonly type: 'Grid';
@@ -4017,6 +4287,7 @@ interface LayoutElement
4017
4287
  NoTextContent,
4018
4288
  NoAppConnections,
4019
4289
  DisplayName,
4290
+ BindableSourceSearch,
4020
4291
  ElementSettings {
4021
4292
  readonly id: FullElementId;
4022
4293
  readonly type: 'Layout';
@@ -4033,6 +4304,7 @@ interface CellElement
4033
4304
  NoTextContent,
4034
4305
  NoAppConnections,
4035
4306
  DisplayName,
4307
+ BindableSourceSearch,
4036
4308
  ElementSettings {
4037
4309
  readonly id: FullElementId;
4038
4310
  readonly type: 'Cell';
@@ -4049,6 +4321,7 @@ interface BlockContainerElement
4049
4321
  NoTextContent,
4050
4322
  NoAppConnections,
4051
4323
  DisplayName,
4324
+ BindableSourceSearch,
4052
4325
  ElementSettings {
4053
4326
  readonly id: FullElementId;
4054
4327
  readonly type: 'BlockContainer';
@@ -4065,6 +4338,7 @@ interface VFlexElement
4065
4338
  NoTextContent,
4066
4339
  NoAppConnections,
4067
4340
  DisplayName,
4341
+ BindableSourceSearch,
4068
4342
  ElementSettings {
4069
4343
  readonly id: FullElementId;
4070
4344
  readonly type: 'VFlex';
@@ -4081,6 +4355,7 @@ interface HFlexElement
4081
4355
  NoTextContent,
4082
4356
  NoAppConnections,
4083
4357
  DisplayName,
4358
+ BindableSourceSearch,
4084
4359
  ElementSettings {
4085
4360
  readonly id: FullElementId;
4086
4361
  readonly type: 'HFlex';
@@ -4097,6 +4372,7 @@ interface NavbarBrandElement
4097
4372
  NoTextContent,
4098
4373
  NoAppConnections,
4099
4374
  DisplayName,
4375
+ BindableSourceSearch,
4100
4376
  ElementSettings {
4101
4377
  readonly id: FullElementId;
4102
4378
  readonly type: 'NavbarBrand';
@@ -4113,6 +4389,7 @@ interface NavbarButtonElement
4113
4389
  NoTextContent,
4114
4390
  NoAppConnections,
4115
4391
  DisplayName,
4392
+ BindableSourceSearch,
4116
4393
  ElementSettings {
4117
4394
  readonly id: FullElementId;
4118
4395
  readonly type: 'NavbarButton';
@@ -4129,6 +4406,7 @@ interface NavbarContainerElement
4129
4406
  NoTextContent,
4130
4407
  NoAppConnections,
4131
4408
  DisplayName,
4409
+ BindableSourceSearch,
4132
4410
  ElementSettings {
4133
4411
  readonly id: FullElementId;
4134
4412
  readonly type: 'NavbarContainer';
@@ -4145,6 +4423,7 @@ interface NavbarLinkElement
4145
4423
  TextContent,
4146
4424
  NoAppConnections,
4147
4425
  DisplayName,
4426
+ BindableSourceSearch,
4148
4427
  ElementSettings {
4149
4428
  readonly id: FullElementId;
4150
4429
  readonly type: 'NavbarLink';
@@ -4161,6 +4440,7 @@ interface NavbarMenuElement
4161
4440
  NoTextContent,
4162
4441
  NoAppConnections,
4163
4442
  DisplayName,
4443
+ BindableSourceSearch,
4164
4444
  ElementSettings {
4165
4445
  readonly id: FullElementId;
4166
4446
  readonly type: 'NavbarMenu';
@@ -4177,6 +4457,7 @@ interface NavbarWrapperElement
4177
4457
  NoTextContent,
4178
4458
  NoAppConnections,
4179
4459
  DisplayName,
4460
+ BindableSourceSearch,
4180
4461
  ElementSettings {
4181
4462
  readonly id: FullElementId;
4182
4463
  readonly type: 'NavbarWrapper';
@@ -4193,6 +4474,7 @@ interface PaginationElement
4193
4474
  NoTextContent,
4194
4475
  NoAppConnections,
4195
4476
  DisplayName,
4477
+ BindableSourceSearch,
4196
4478
  ElementSettings {
4197
4479
  readonly id: FullElementId;
4198
4480
  readonly type: 'Pagination';
@@ -4209,6 +4491,7 @@ interface PaginationPreviousElement
4209
4491
  NoTextContent,
4210
4492
  NoAppConnections,
4211
4493
  DisplayName,
4494
+ BindableSourceSearch,
4212
4495
  ElementSettings {
4213
4496
  readonly id: FullElementId;
4214
4497
  readonly type: 'PaginationPrevious';
@@ -4225,6 +4508,7 @@ interface PaginationNextElement
4225
4508
  NoTextContent,
4226
4509
  NoAppConnections,
4227
4510
  DisplayName,
4511
+ BindableSourceSearch,
4228
4512
  ElementSettings {
4229
4513
  readonly id: FullElementId;
4230
4514
  readonly type: 'PaginationNext';
@@ -4241,6 +4525,7 @@ interface PaginationPreviousIconElement
4241
4525
  NoTextContent,
4242
4526
  NoAppConnections,
4243
4527
  DisplayName,
4528
+ BindableSourceSearch,
4244
4529
  ElementSettings {
4245
4530
  readonly id: FullElementId;
4246
4531
  readonly type: 'PaginationPreviousIcon';
@@ -4257,6 +4542,7 @@ interface PaginationNextIconElement
4257
4542
  NoTextContent,
4258
4543
  NoAppConnections,
4259
4544
  DisplayName,
4545
+ BindableSourceSearch,
4260
4546
  ElementSettings {
4261
4547
  readonly id: FullElementId;
4262
4548
  readonly type: 'PaginationNextIcon';
@@ -4273,6 +4559,7 @@ interface PaginationCountElement
4273
4559
  NoTextContent,
4274
4560
  NoAppConnections,
4275
4561
  DisplayName,
4562
+ BindableSourceSearch,
4276
4563
  ElementSettings {
4277
4564
  readonly id: FullElementId;
4278
4565
  readonly type: 'PaginationCount';
@@ -4289,6 +4576,7 @@ interface SliderArrowElement
4289
4576
  NoTextContent,
4290
4577
  NoAppConnections,
4291
4578
  DisplayName,
4579
+ BindableSourceSearch,
4292
4580
  ElementSettings {
4293
4581
  readonly id: FullElementId;
4294
4582
  readonly type: 'SliderArrow';
@@ -4305,6 +4593,7 @@ interface SliderMaskElement
4305
4593
  NoTextContent,
4306
4594
  NoAppConnections,
4307
4595
  DisplayName,
4596
+ BindableSourceSearch,
4308
4597
  ElementSettings {
4309
4598
  readonly id: FullElementId;
4310
4599
  readonly type: 'SliderMask';
@@ -4321,6 +4610,7 @@ interface SliderNavElement
4321
4610
  NoTextContent,
4322
4611
  NoAppConnections,
4323
4612
  DisplayName,
4613
+ BindableSourceSearch,
4324
4614
  ElementSettings {
4325
4615
  readonly id: FullElementId;
4326
4616
  readonly type: 'SliderNav';
@@ -4337,6 +4627,7 @@ interface SliderSlideElement
4337
4627
  NoTextContent,
4338
4628
  NoAppConnections,
4339
4629
  DisplayName,
4630
+ BindableSourceSearch,
4340
4631
  ElementSettings {
4341
4632
  readonly id: FullElementId;
4342
4633
  readonly type: 'SliderSlide';
@@ -4353,6 +4644,7 @@ interface SliderWrapperElement
4353
4644
  NoTextContent,
4354
4645
  NoAppConnections,
4355
4646
  DisplayName,
4647
+ BindableSourceSearch,
4356
4648
  ElementSettings {
4357
4649
  readonly id: FullElementId;
4358
4650
  readonly type: 'SliderWrapper';
@@ -4369,6 +4661,7 @@ interface MetaElement
4369
4661
  NoTextContent,
4370
4662
  NoAppConnections,
4371
4663
  DisplayName,
4664
+ BindableSourceSearch,
4372
4665
  ElementSettings {
4373
4666
  readonly id: FullElementId;
4374
4667
  readonly type: 'Meta';
@@ -4385,6 +4678,7 @@ interface TitleElement
4385
4678
  NoTextContent,
4386
4679
  NoAppConnections,
4387
4680
  DisplayName,
4681
+ BindableSourceSearch,
4388
4682
  ElementSettings {
4389
4683
  readonly id: FullElementId;
4390
4684
  readonly type: 'Title';
@@ -4401,6 +4695,7 @@ interface CustomCodeElement
4401
4695
  NoTextContent,
4402
4696
  NoAppConnections,
4403
4697
  DisplayName,
4698
+ BindableSourceSearch,
4404
4699
  ElementSettings {
4405
4700
  readonly id: FullElementId;
4406
4701
  readonly type: 'CustomCode';
@@ -4417,6 +4712,7 @@ interface CommentElement
4417
4712
  NoTextContent,
4418
4713
  NoAppConnections,
4419
4714
  DisplayName,
4715
+ BindableSourceSearch,
4420
4716
  ElementSettings {
4421
4717
  readonly id: FullElementId;
4422
4718
  readonly type: 'Comment';
@@ -4433,6 +4729,7 @@ interface FacebookPixelElement
4433
4729
  NoTextContent,
4434
4730
  NoAppConnections,
4435
4731
  DisplayName,
4732
+ BindableSourceSearch,
4436
4733
  ElementSettings {
4437
4734
  readonly id: FullElementId;
4438
4735
  readonly type: 'FacebookPixel';
@@ -4449,6 +4746,7 @@ interface GoogleAnalyticsElement
4449
4746
  NoTextContent,
4450
4747
  NoAppConnections,
4451
4748
  DisplayName,
4749
+ BindableSourceSearch,
4452
4750
  ElementSettings {
4453
4751
  readonly id: FullElementId;
4454
4752
  readonly type: 'GoogleAnalytics';
@@ -4465,6 +4763,7 @@ interface TabsContentElement
4465
4763
  NoTextContent,
4466
4764
  NoAppConnections,
4467
4765
  DisplayName,
4766
+ BindableSourceSearch,
4468
4767
  ElementSettings {
4469
4768
  readonly id: FullElementId;
4470
4769
  readonly type: 'TabsContent';
@@ -4481,6 +4780,7 @@ interface TabsLinkElement
4481
4780
  TextContent,
4482
4781
  NoAppConnections,
4483
4782
  DisplayName,
4783
+ BindableSourceSearch,
4484
4784
  ElementSettings {
4485
4785
  readonly id: FullElementId;
4486
4786
  readonly type: 'TabsLink';
@@ -4497,6 +4797,7 @@ interface TabsMenuElement
4497
4797
  NoTextContent,
4498
4798
  NoAppConnections,
4499
4799
  DisplayName,
4800
+ BindableSourceSearch,
4500
4801
  ElementSettings {
4501
4802
  readonly id: FullElementId;
4502
4803
  readonly type: 'TabsMenu';
@@ -4513,6 +4814,7 @@ interface TabsPaneElement
4513
4814
  NoTextContent,
4514
4815
  NoAppConnections,
4515
4816
  DisplayName,
4817
+ BindableSourceSearch,
4516
4818
  ElementSettings {
4517
4819
  readonly id: FullElementId;
4518
4820
  readonly type: 'TabsPane';
@@ -4529,6 +4831,7 @@ interface TabsWrapperElement
4529
4831
  NoTextContent,
4530
4832
  NoAppConnections,
4531
4833
  DisplayName,
4834
+ BindableSourceSearch,
4532
4835
  ElementSettings {
4533
4836
  readonly id: FullElementId;
4534
4837
  readonly type: 'TabsWrapper';
@@ -4545,6 +4848,7 @@ interface FacebookElement
4545
4848
  NoTextContent,
4546
4849
  NoAppConnections,
4547
4850
  DisplayName,
4851
+ BindableSourceSearch,
4548
4852
  ElementSettings {
4549
4853
  readonly id: FullElementId;
4550
4854
  readonly type: 'Facebook';
@@ -4561,6 +4865,7 @@ interface MapWidgetElement
4561
4865
  NoTextContent,
4562
4866
  NoAppConnections,
4563
4867
  DisplayName,
4868
+ BindableSourceSearch,
4564
4869
  ElementSettings {
4565
4870
  readonly id: FullElementId;
4566
4871
  readonly type: 'MapWidget';
@@ -4577,6 +4882,7 @@ interface TwitterElement
4577
4882
  NoTextContent,
4578
4883
  NoAppConnections,
4579
4884
  DisplayName,
4885
+ BindableSourceSearch,
4580
4886
  ElementSettings {
4581
4887
  readonly id: FullElementId;
4582
4888
  readonly type: 'Twitter';
@@ -4593,6 +4899,7 @@ interface GooglePlusElement
4593
4899
  NoTextContent,
4594
4900
  NoAppConnections,
4595
4901
  DisplayName,
4902
+ BindableSourceSearch,
4596
4903
  ElementSettings {
4597
4904
  readonly id: FullElementId;
4598
4905
  readonly type: 'GooglePlus';
@@ -4609,6 +4916,7 @@ interface BlockContentElement
4609
4916
  NoTextContent,
4610
4917
  NoAppConnections,
4611
4918
  DisplayName,
4919
+ BindableSourceSearch,
4612
4920
  ElementSettings {
4613
4921
  readonly id: FullElementId;
4614
4922
  readonly type: 'BlockContent';
@@ -4625,6 +4933,7 @@ interface BlockHeaderElement
4625
4933
  NoTextContent,
4626
4934
  NoAppConnections,
4627
4935
  DisplayName,
4936
+ BindableSourceSearch,
4628
4937
  ElementSettings {
4629
4938
  readonly id: FullElementId;
4630
4939
  readonly type: 'BlockHeader';
@@ -4641,6 +4950,7 @@ interface FlexColumnElement
4641
4950
  NoTextContent,
4642
4951
  NoAppConnections,
4643
4952
  DisplayName,
4953
+ BindableSourceSearch,
4644
4954
  ElementSettings {
4645
4955
  readonly id: FullElementId;
4646
4956
  readonly type: 'FlexColumn';
@@ -4657,6 +4967,7 @@ interface GridRowElement
4657
4967
  NoTextContent,
4658
4968
  NoAppConnections,
4659
4969
  DisplayName,
4970
+ BindableSourceSearch,
4660
4971
  ElementSettings {
4661
4972
  readonly id: FullElementId;
4662
4973
  readonly type: 'GridRow';
@@ -4673,6 +4984,7 @@ interface SlotElement
4673
4984
  NoTextContent,
4674
4985
  NoAppConnections,
4675
4986
  DisplayName,
4987
+ BindableSourceSearch,
4676
4988
  ElementSettings {
4677
4989
  readonly id: FullElementId;
4678
4990
  readonly type: 'Slot';
@@ -4689,6 +5001,7 @@ interface FrameElement
4689
5001
  NoTextContent,
4690
5002
  NoAppConnections,
4691
5003
  DisplayName,
5004
+ BindableSourceSearch,
4692
5005
  ElementSettings {
4693
5006
  readonly id: FullElementId;
4694
5007
  readonly type: 'Frame';