@@ -150,6 +150,10 @@ export namespace Components {
150
150
'label' ?: string ;
151
151
'ownerId' ?: string ;
152
152
'paused' ?: boolean ;
153
+ /**
154
+ * Adjust poll frequency
155
+ */
156
+ 'pollInterval' ?: number ;
153
157
}
154
158
interface ManifoldDataProductLogo {
155
159
/**
@@ -260,6 +264,10 @@ export namespace Components {
260
264
*/
261
265
'paused' ?: boolean ;
262
266
/**
267
+ * Interval at which this component polls
268
+ */
269
+ 'pollInterval' ?: number ;
270
+ /**
263
271
* Should the JS event still fire, even if product-link-format is passed?
264
272
*/
265
273
'preserveEvent' ?: boolean ;
@@ -571,6 +579,10 @@ export namespace Components {
571
579
*/
572
580
'paused' ?: boolean ;
573
581
/**
582
+ * Interval at which this component polls
583
+ */
584
+ 'pollInterval' ?: number ;
585
+ /**
574
586
* Should the JS event still fire, even if product-link-format is passed?
575
587
*/
576
588
'preserveEvent' ?: boolean ;
@@ -1203,6 +1215,10 @@ declare namespace LocalJSX {
1203
1215
'onManifold-hasResource-load' ?: ( event : CustomEvent < any > ) => void ;
1204
1216
'ownerId' ?: string ;
1205
1217
'paused' ?: boolean ;
1218
+ /**
1219
+ * Adjust poll frequency
1220
+ */
1221
+ 'pollInterval' ?: number ;
1206
1222
}
1207
1223
interface ManifoldDataProductLogo {
1208
1224
/**
@@ -1325,6 +1341,10 @@ declare namespace LocalJSX {
1325
1341
*/
1326
1342
'paused' ?: boolean ;
1327
1343
/**
1344
+ * Interval at which this component polls
1345
+ */
1346
+ 'pollInterval' ?: number ;
1347
+ /**
1328
1348
* Should the JS event still fire, even if product-link-format is passed?
1329
1349
*/
1330
1350
'preserveEvent' ?: boolean ;
@@ -1648,6 +1668,10 @@ declare namespace LocalJSX {
1648
1668
*/
1649
1669
'paused' ?: boolean ;
1650
1670
/**
1671
+ * Interval at which this component polls
1672
+ */
1673
+ 'pollInterval' ?: number ;
1674
+ /**
1651
1675
* Should the JS event still fire, even if product-link-format is passed?
1652
1676
*/
1653
1677
'preserveEvent' ?: boolean ;
0 commit comments