jamespot-user-api 1.0.186 → 1.0.188
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/documentation/assets/search.js +1 -1
- package/documentation/classes/AdminLicenseApi.html +14 -14
- package/documentation/classes/AdminStoreApi.html +1 -1
- package/documentation/classes/AdminUtilsApi.html +1 -1
- package/documentation/classes/JApplicationApi.html +8 -8
- package/documentation/classes/JArticleApi.html +1 -1
- package/documentation/classes/JAssetReservation.html +1 -1
- package/documentation/classes/JAudienceApi.html +1 -1
- package/documentation/classes/JBaseApi.html +1 -1
- package/documentation/classes/JBbbApi.html +1 -1
- package/documentation/classes/JBookmarkApi.html +1 -1
- package/documentation/classes/JBusinessNetworkingApi.html +1 -1
- package/documentation/classes/JCommunityApi.html +1 -1
- package/documentation/classes/JDatasourceApi.html +1 -1
- package/documentation/classes/JDiapazoneApi.html +1 -1
- package/documentation/classes/JFaqApi.html +1 -1
- package/documentation/classes/JFileApi.html +5 -5
- package/documentation/classes/JFilebankApi.html +1 -1
- package/documentation/classes/JGlobalApi.html +1 -1
- package/documentation/classes/JGroupApi.html +13 -13
- package/documentation/classes/JIAApi.html +1 -1
- package/documentation/classes/JLandApi.html +1 -1
- package/documentation/classes/JMessengerApi.html +1 -1
- package/documentation/classes/JObjectApi.html +1 -1
- package/documentation/classes/JSearchApi.html +6 -6
- package/documentation/classes/JShareApi.html +1 -1
- package/documentation/classes/JSocialActionApi.html +1 -1
- package/documentation/classes/JTaxonomyApi.html +2 -2
- package/documentation/classes/JUserApi.html +7 -7
- package/documentation/classes/JWedocApi.html +1 -1
- package/documentation/classes/JWidgetApi.html +1 -1
- package/documentation/classes/JamespotUserApi.html +1 -1
- package/documentation/classes/Network.html +1 -1
- package/documentation/classes/TVDisplayApi.html +1 -1
- package/documentation/classes/WindowBrowser.html +1 -1
- package/documentation/enums/BookmarkType.html +1 -1
- package/documentation/enums/Format.html +1 -1
- package/documentation/enums/GroupModerateStatus.html +1 -1
- package/documentation/enums/StudioApplicationStatus.html +1 -1
- package/documentation/enums/WidgetsName.html +1 -1
- package/documentation/index.html +1 -1
- package/documentation/interfaces/AccessRightObject.html +1 -1
- package/documentation/interfaces/ApiDefaultWrapper.html +1 -1
- package/documentation/interfaces/ApiWrapper.html +1 -1
- package/documentation/interfaces/BaseMessage.html +1 -1
- package/documentation/interfaces/FileBankProps.html +1 -1
- package/documentation/interfaces/FolderProps.html +1 -1
- package/documentation/interfaces/ListFilterSpec.html +1 -1
- package/documentation/interfaces/OF.html +1 -1
- package/documentation/interfaces/PagingResults.html +1 -1
- package/documentation/interfaces/RootFolderProps.html +1 -1
- package/documentation/interfaces/SpotProps.html +1 -1
- package/documentation/interfaces/TaxonomyCreate.html +1 -1
- package/documentation/interfaces/WidgetType.html +1 -1
- package/documentation/interfaces/WindowInterface.html +1 -1
- package/documentation/modules.html +11 -11
- package/lib/jamespot-user-api.js +1 -1
- package/lib/jamespot-user-api.js.map +1 -1
- package/lib/src/apis/group/group.d.ts +13 -1
- package/lib/src/apis/group/group.mock.d.ts +2 -1
- package/lib/src/apis/tvDisplay/tvDisplay.d.ts +48 -8
- package/lib/src/types/article.d.ts +360 -60
- package/lib/src/types/asei.d.ts +36 -6
- package/lib/src/types/assetReservation.d.ts +156 -26
- package/lib/src/types/businessContact.d.ts +24 -4
- package/lib/src/types/comment.d.ts +36 -6
- package/lib/src/types/faq.d.ts +192 -32
- package/lib/src/types/jLand.d.ts +60 -10
- package/lib/src/types/mediaLibrary.d.ts +36 -6
- package/lib/src/types/meeting.d.ts +108 -18
- package/lib/src/types/pollSurvey.d.ts +108 -18
- package/lib/src/types/quizz.d.ts +108 -18
- package/lib/src/types/socialEvent.d.ts +108 -18
- package/lib/src/types/support.d.ts +108 -18
- package/lib/src/types/surveyDate.d.ts +108 -18
- package/lib/src/types/tvDisplay.d.ts +900 -150
- package/lib/src/types/widgets/default.d.ts +206 -24
- package/lib/src/types/widgets/widgetCheckList.d.ts +52 -10
- package/lib/src/types/widgets.d.ts +442 -68
- package/lib/src/util/index.d.ts +2 -1
- package/lib/src/util/meeting.d.ts +222 -0
- package/lib/src/util/meeting.test.d.ts +1 -0
- package/lib/src/util/socialEvent.d.ts +222 -0
- package/lib/src/util/socialEvent.test.d.ts +1 -0
- package/lib/src/util/widget.d.ts +6 -1
- package/package.json +1 -1
- package/phpunitMock/objectListSpotArticles-default.json +156 -0
|
@@ -192,7 +192,12 @@ export declare const jArticleListShapeTmp: z.ZodObject<z.objectUtil.extendShape<
|
|
|
192
192
|
layers?: string[] | undefined;
|
|
193
193
|
} & import("./widgets").WidgetArticleSliderType) | ({
|
|
194
194
|
layers?: string[] | undefined;
|
|
195
|
-
} & import("./widgets").WidgetType<
|
|
195
|
+
} & import("./widgets").WidgetType<{
|
|
196
|
+
widgets?: import("./widgets").WidgetBaseType[] | undefined;
|
|
197
|
+
arr?: import("./widgets").WidgetCheckListContentArr[] | undefined;
|
|
198
|
+
css?: Record<string, string> | undefined;
|
|
199
|
+
edit?: boolean | undefined;
|
|
200
|
+
}>) | ({
|
|
196
201
|
layers?: string[] | undefined;
|
|
197
202
|
} & import("./widgets").WidgetDatasourceTableType) | ({
|
|
198
203
|
layers?: string[] | undefined;
|
|
@@ -237,7 +242,12 @@ export declare const jArticleListShapeTmp: z.ZodObject<z.objectUtil.extendShape<
|
|
|
237
242
|
layers?: string[] | undefined;
|
|
238
243
|
} & import("./widgets").WidgetArticleSliderType) | ({
|
|
239
244
|
layers?: string[] | undefined;
|
|
240
|
-
} & import("./widgets").WidgetType<
|
|
245
|
+
} & import("./widgets").WidgetType<{
|
|
246
|
+
widgets?: import("./widgets").WidgetBaseType[] | undefined;
|
|
247
|
+
arr?: import("./widgets").WidgetCheckListContentArr[] | undefined;
|
|
248
|
+
css?: Record<string, string> | undefined;
|
|
249
|
+
edit?: boolean | undefined;
|
|
250
|
+
}>) | ({
|
|
241
251
|
layers?: string[] | undefined;
|
|
242
252
|
} & import("./widgets").WidgetDatasourceTableType) | ({
|
|
243
253
|
layers?: string[] | undefined;
|
|
@@ -283,7 +293,12 @@ export declare const jArticleListShapeTmp: z.ZodObject<z.objectUtil.extendShape<
|
|
|
283
293
|
layers?: string[] | undefined;
|
|
284
294
|
} & import("./widgets").WidgetArticleSliderType) | ({
|
|
285
295
|
layers?: string[] | undefined;
|
|
286
|
-
} & import("./widgets").WidgetType<
|
|
296
|
+
} & import("./widgets").WidgetType<{
|
|
297
|
+
widgets?: import("./widgets").WidgetBaseType[] | undefined;
|
|
298
|
+
arr?: import("./widgets").WidgetCheckListContentArr[] | undefined;
|
|
299
|
+
css?: Record<string, string> | undefined;
|
|
300
|
+
edit?: boolean | undefined;
|
|
301
|
+
}>) | ({
|
|
287
302
|
layers?: string[] | undefined;
|
|
288
303
|
} & import("./widgets").WidgetDatasourceTableType) | ({
|
|
289
304
|
layers?: string[] | undefined;
|
|
@@ -328,7 +343,12 @@ export declare const jArticleListShapeTmp: z.ZodObject<z.objectUtil.extendShape<
|
|
|
328
343
|
layers?: string[] | undefined;
|
|
329
344
|
} & import("./widgets").WidgetArticleSliderType) | ({
|
|
330
345
|
layers?: string[] | undefined;
|
|
331
|
-
} & import("./widgets").WidgetType<
|
|
346
|
+
} & import("./widgets").WidgetType<{
|
|
347
|
+
widgets?: import("./widgets").WidgetBaseType[] | undefined;
|
|
348
|
+
arr?: import("./widgets").WidgetCheckListContentArr[] | undefined;
|
|
349
|
+
css?: Record<string, string> | undefined;
|
|
350
|
+
edit?: boolean | undefined;
|
|
351
|
+
}>) | ({
|
|
332
352
|
layers?: string[] | undefined;
|
|
333
353
|
} & import("./widgets").WidgetDatasourceTableType) | ({
|
|
334
354
|
layers?: string[] | undefined;
|
|
@@ -420,7 +440,12 @@ export declare const jArticleListShapeTmp: z.ZodObject<z.objectUtil.extendShape<
|
|
|
420
440
|
layers?: string[] | undefined;
|
|
421
441
|
} & import("./widgets").WidgetArticleSliderType) | ({
|
|
422
442
|
layers?: string[] | undefined;
|
|
423
|
-
} & import("./widgets").WidgetType<
|
|
443
|
+
} & import("./widgets").WidgetType<{
|
|
444
|
+
widgets?: import("./widgets").WidgetBaseType[] | undefined;
|
|
445
|
+
arr?: import("./widgets").WidgetCheckListContentArr[] | undefined;
|
|
446
|
+
css?: Record<string, string> | undefined;
|
|
447
|
+
edit?: boolean | undefined;
|
|
448
|
+
}>) | ({
|
|
424
449
|
layers?: string[] | undefined;
|
|
425
450
|
} & import("./widgets").WidgetDatasourceTableType) | ({
|
|
426
451
|
layers?: string[] | undefined;
|
|
@@ -512,7 +537,12 @@ export declare const jArticleListShapeTmp: z.ZodObject<z.objectUtil.extendShape<
|
|
|
512
537
|
layers?: string[] | undefined;
|
|
513
538
|
} & import("./widgets").WidgetArticleSliderType) | ({
|
|
514
539
|
layers?: string[] | undefined;
|
|
515
|
-
} & import("./widgets").WidgetType<
|
|
540
|
+
} & import("./widgets").WidgetType<{
|
|
541
|
+
widgets?: import("./widgets").WidgetBaseType[] | undefined;
|
|
542
|
+
arr?: import("./widgets").WidgetCheckListContentArr[] | undefined;
|
|
543
|
+
css?: Record<string, string> | undefined;
|
|
544
|
+
edit?: boolean | undefined;
|
|
545
|
+
}>) | ({
|
|
516
546
|
layers?: string[] | undefined;
|
|
517
547
|
} & import("./widgets").WidgetDatasourceTableType) | ({
|
|
518
548
|
layers?: string[] | undefined;
|
|
@@ -704,7 +734,12 @@ export declare const jArticleListSchema: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
704
734
|
layers?: string[] | undefined;
|
|
705
735
|
} & import("./widgets").WidgetArticleSliderType) | ({
|
|
706
736
|
layers?: string[] | undefined;
|
|
707
|
-
} & import("./widgets").WidgetType<
|
|
737
|
+
} & import("./widgets").WidgetType<{
|
|
738
|
+
widgets?: import("./widgets").WidgetBaseType[] | undefined;
|
|
739
|
+
arr?: import("./widgets").WidgetCheckListContentArr[] | undefined;
|
|
740
|
+
css?: Record<string, string> | undefined;
|
|
741
|
+
edit?: boolean | undefined;
|
|
742
|
+
}>) | ({
|
|
708
743
|
layers?: string[] | undefined;
|
|
709
744
|
} & import("./widgets").WidgetDatasourceTableType) | ({
|
|
710
745
|
layers?: string[] | undefined;
|
|
@@ -749,7 +784,12 @@ export declare const jArticleListSchema: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
749
784
|
layers?: string[] | undefined;
|
|
750
785
|
} & import("./widgets").WidgetArticleSliderType) | ({
|
|
751
786
|
layers?: string[] | undefined;
|
|
752
|
-
} & import("./widgets").WidgetType<
|
|
787
|
+
} & import("./widgets").WidgetType<{
|
|
788
|
+
widgets?: import("./widgets").WidgetBaseType[] | undefined;
|
|
789
|
+
arr?: import("./widgets").WidgetCheckListContentArr[] | undefined;
|
|
790
|
+
css?: Record<string, string> | undefined;
|
|
791
|
+
edit?: boolean | undefined;
|
|
792
|
+
}>) | ({
|
|
753
793
|
layers?: string[] | undefined;
|
|
754
794
|
} & import("./widgets").WidgetDatasourceTableType) | ({
|
|
755
795
|
layers?: string[] | undefined;
|
|
@@ -795,7 +835,12 @@ export declare const jArticleListSchema: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
795
835
|
layers?: string[] | undefined;
|
|
796
836
|
} & import("./widgets").WidgetArticleSliderType) | ({
|
|
797
837
|
layers?: string[] | undefined;
|
|
798
|
-
} & import("./widgets").WidgetType<
|
|
838
|
+
} & import("./widgets").WidgetType<{
|
|
839
|
+
widgets?: import("./widgets").WidgetBaseType[] | undefined;
|
|
840
|
+
arr?: import("./widgets").WidgetCheckListContentArr[] | undefined;
|
|
841
|
+
css?: Record<string, string> | undefined;
|
|
842
|
+
edit?: boolean | undefined;
|
|
843
|
+
}>) | ({
|
|
799
844
|
layers?: string[] | undefined;
|
|
800
845
|
} & import("./widgets").WidgetDatasourceTableType) | ({
|
|
801
846
|
layers?: string[] | undefined;
|
|
@@ -840,7 +885,12 @@ export declare const jArticleListSchema: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
840
885
|
layers?: string[] | undefined;
|
|
841
886
|
} & import("./widgets").WidgetArticleSliderType) | ({
|
|
842
887
|
layers?: string[] | undefined;
|
|
843
|
-
} & import("./widgets").WidgetType<
|
|
888
|
+
} & import("./widgets").WidgetType<{
|
|
889
|
+
widgets?: import("./widgets").WidgetBaseType[] | undefined;
|
|
890
|
+
arr?: import("./widgets").WidgetCheckListContentArr[] | undefined;
|
|
891
|
+
css?: Record<string, string> | undefined;
|
|
892
|
+
edit?: boolean | undefined;
|
|
893
|
+
}>) | ({
|
|
844
894
|
layers?: string[] | undefined;
|
|
845
895
|
} & import("./widgets").WidgetDatasourceTableType) | ({
|
|
846
896
|
layers?: string[] | undefined;
|
|
@@ -1032,7 +1082,12 @@ export declare const jArticleViewSchema: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
1032
1082
|
layers?: string[] | undefined;
|
|
1033
1083
|
} & import("./widgets").WidgetArticleSliderType) | ({
|
|
1034
1084
|
layers?: string[] | undefined;
|
|
1035
|
-
} & import("./widgets").WidgetType<
|
|
1085
|
+
} & import("./widgets").WidgetType<{
|
|
1086
|
+
widgets?: import("./widgets").WidgetBaseType[] | undefined;
|
|
1087
|
+
arr?: import("./widgets").WidgetCheckListContentArr[] | undefined;
|
|
1088
|
+
css?: Record<string, string> | undefined;
|
|
1089
|
+
edit?: boolean | undefined;
|
|
1090
|
+
}>) | ({
|
|
1036
1091
|
layers?: string[] | undefined;
|
|
1037
1092
|
} & import("./widgets").WidgetDatasourceTableType) | ({
|
|
1038
1093
|
layers?: string[] | undefined;
|
|
@@ -1077,7 +1132,12 @@ export declare const jArticleViewSchema: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
1077
1132
|
layers?: string[] | undefined;
|
|
1078
1133
|
} & import("./widgets").WidgetArticleSliderType) | ({
|
|
1079
1134
|
layers?: string[] | undefined;
|
|
1080
|
-
} & import("./widgets").WidgetType<
|
|
1135
|
+
} & import("./widgets").WidgetType<{
|
|
1136
|
+
widgets?: import("./widgets").WidgetBaseType[] | undefined;
|
|
1137
|
+
arr?: import("./widgets").WidgetCheckListContentArr[] | undefined;
|
|
1138
|
+
css?: Record<string, string> | undefined;
|
|
1139
|
+
edit?: boolean | undefined;
|
|
1140
|
+
}>) | ({
|
|
1081
1141
|
layers?: string[] | undefined;
|
|
1082
1142
|
} & import("./widgets").WidgetDatasourceTableType) | ({
|
|
1083
1143
|
layers?: string[] | undefined;
|
|
@@ -1123,7 +1183,12 @@ export declare const jArticleViewSchema: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
1123
1183
|
layers?: string[] | undefined;
|
|
1124
1184
|
} & import("./widgets").WidgetArticleSliderType) | ({
|
|
1125
1185
|
layers?: string[] | undefined;
|
|
1126
|
-
} & import("./widgets").WidgetType<
|
|
1186
|
+
} & import("./widgets").WidgetType<{
|
|
1187
|
+
widgets?: import("./widgets").WidgetBaseType[] | undefined;
|
|
1188
|
+
arr?: import("./widgets").WidgetCheckListContentArr[] | undefined;
|
|
1189
|
+
css?: Record<string, string> | undefined;
|
|
1190
|
+
edit?: boolean | undefined;
|
|
1191
|
+
}>) | ({
|
|
1127
1192
|
layers?: string[] | undefined;
|
|
1128
1193
|
} & import("./widgets").WidgetDatasourceTableType) | ({
|
|
1129
1194
|
layers?: string[] | undefined;
|
|
@@ -1168,7 +1233,12 @@ export declare const jArticleViewSchema: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
1168
1233
|
layers?: string[] | undefined;
|
|
1169
1234
|
} & import("./widgets").WidgetArticleSliderType) | ({
|
|
1170
1235
|
layers?: string[] | undefined;
|
|
1171
|
-
} & import("./widgets").WidgetType<
|
|
1236
|
+
} & import("./widgets").WidgetType<{
|
|
1237
|
+
widgets?: import("./widgets").WidgetBaseType[] | undefined;
|
|
1238
|
+
arr?: import("./widgets").WidgetCheckListContentArr[] | undefined;
|
|
1239
|
+
css?: Record<string, string> | undefined;
|
|
1240
|
+
edit?: boolean | undefined;
|
|
1241
|
+
}>) | ({
|
|
1172
1242
|
layers?: string[] | undefined;
|
|
1173
1243
|
} & import("./widgets").WidgetDatasourceTableType) | ({
|
|
1174
1244
|
layers?: string[] | undefined;
|
|
@@ -1315,7 +1385,12 @@ export declare const jArticleViewSchema: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
1315
1385
|
layers?: string[] | undefined;
|
|
1316
1386
|
} & import("./widgets").WidgetArticleSliderType) | ({
|
|
1317
1387
|
layers?: string[] | undefined;
|
|
1318
|
-
} & import("./widgets").WidgetType<
|
|
1388
|
+
} & import("./widgets").WidgetType<{
|
|
1389
|
+
widgets?: import("./widgets").WidgetBaseType[] | undefined;
|
|
1390
|
+
arr?: import("./widgets").WidgetCheckListContentArr[] | undefined;
|
|
1391
|
+
css?: Record<string, string> | undefined;
|
|
1392
|
+
edit?: boolean | undefined;
|
|
1393
|
+
}>) | ({
|
|
1319
1394
|
layers?: string[] | undefined;
|
|
1320
1395
|
} & import("./widgets").WidgetDatasourceTableType) | ({
|
|
1321
1396
|
layers?: string[] | undefined;
|
|
@@ -1420,7 +1495,12 @@ export declare const jArticleViewSchema: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
1420
1495
|
layers?: string[] | undefined;
|
|
1421
1496
|
} & import("./widgets").WidgetArticleSliderType) | ({
|
|
1422
1497
|
layers?: string[] | undefined;
|
|
1423
|
-
} & import("./widgets").WidgetType<
|
|
1498
|
+
} & import("./widgets").WidgetType<{
|
|
1499
|
+
widgets?: import("./widgets").WidgetBaseType[] | undefined;
|
|
1500
|
+
arr?: import("./widgets").WidgetCheckListContentArr[] | undefined;
|
|
1501
|
+
css?: Record<string, string> | undefined;
|
|
1502
|
+
edit?: boolean | undefined;
|
|
1503
|
+
}>) | ({
|
|
1424
1504
|
layers?: string[] | undefined;
|
|
1425
1505
|
} & import("./widgets").WidgetDatasourceTableType) | ({
|
|
1426
1506
|
layers?: string[] | undefined;
|
|
@@ -1613,7 +1693,12 @@ export declare const jArticleExtendViewSchema: z.ZodObject<z.objectUtil.extendSh
|
|
|
1613
1693
|
layers?: string[] | undefined;
|
|
1614
1694
|
} & import("./widgets").WidgetArticleSliderType) | ({
|
|
1615
1695
|
layers?: string[] | undefined;
|
|
1616
|
-
} & import("./widgets").WidgetType<
|
|
1696
|
+
} & import("./widgets").WidgetType<{
|
|
1697
|
+
widgets?: import("./widgets").WidgetBaseType[] | undefined;
|
|
1698
|
+
arr?: import("./widgets").WidgetCheckListContentArr[] | undefined;
|
|
1699
|
+
css?: Record<string, string> | undefined;
|
|
1700
|
+
edit?: boolean | undefined;
|
|
1701
|
+
}>) | ({
|
|
1617
1702
|
layers?: string[] | undefined;
|
|
1618
1703
|
} & import("./widgets").WidgetDatasourceTableType) | ({
|
|
1619
1704
|
layers?: string[] | undefined;
|
|
@@ -1658,7 +1743,12 @@ export declare const jArticleExtendViewSchema: z.ZodObject<z.objectUtil.extendSh
|
|
|
1658
1743
|
layers?: string[] | undefined;
|
|
1659
1744
|
} & import("./widgets").WidgetArticleSliderType) | ({
|
|
1660
1745
|
layers?: string[] | undefined;
|
|
1661
|
-
} & import("./widgets").WidgetType<
|
|
1746
|
+
} & import("./widgets").WidgetType<{
|
|
1747
|
+
widgets?: import("./widgets").WidgetBaseType[] | undefined;
|
|
1748
|
+
arr?: import("./widgets").WidgetCheckListContentArr[] | undefined;
|
|
1749
|
+
css?: Record<string, string> | undefined;
|
|
1750
|
+
edit?: boolean | undefined;
|
|
1751
|
+
}>) | ({
|
|
1662
1752
|
layers?: string[] | undefined;
|
|
1663
1753
|
} & import("./widgets").WidgetDatasourceTableType) | ({
|
|
1664
1754
|
layers?: string[] | undefined;
|
|
@@ -1704,7 +1794,12 @@ export declare const jArticleExtendViewSchema: z.ZodObject<z.objectUtil.extendSh
|
|
|
1704
1794
|
layers?: string[] | undefined;
|
|
1705
1795
|
} & import("./widgets").WidgetArticleSliderType) | ({
|
|
1706
1796
|
layers?: string[] | undefined;
|
|
1707
|
-
} & import("./widgets").WidgetType<
|
|
1797
|
+
} & import("./widgets").WidgetType<{
|
|
1798
|
+
widgets?: import("./widgets").WidgetBaseType[] | undefined;
|
|
1799
|
+
arr?: import("./widgets").WidgetCheckListContentArr[] | undefined;
|
|
1800
|
+
css?: Record<string, string> | undefined;
|
|
1801
|
+
edit?: boolean | undefined;
|
|
1802
|
+
}>) | ({
|
|
1708
1803
|
layers?: string[] | undefined;
|
|
1709
1804
|
} & import("./widgets").WidgetDatasourceTableType) | ({
|
|
1710
1805
|
layers?: string[] | undefined;
|
|
@@ -1749,7 +1844,12 @@ export declare const jArticleExtendViewSchema: z.ZodObject<z.objectUtil.extendSh
|
|
|
1749
1844
|
layers?: string[] | undefined;
|
|
1750
1845
|
} & import("./widgets").WidgetArticleSliderType) | ({
|
|
1751
1846
|
layers?: string[] | undefined;
|
|
1752
|
-
} & import("./widgets").WidgetType<
|
|
1847
|
+
} & import("./widgets").WidgetType<{
|
|
1848
|
+
widgets?: import("./widgets").WidgetBaseType[] | undefined;
|
|
1849
|
+
arr?: import("./widgets").WidgetCheckListContentArr[] | undefined;
|
|
1850
|
+
css?: Record<string, string> | undefined;
|
|
1851
|
+
edit?: boolean | undefined;
|
|
1852
|
+
}>) | ({
|
|
1753
1853
|
layers?: string[] | undefined;
|
|
1754
1854
|
} & import("./widgets").WidgetDatasourceTableType) | ({
|
|
1755
1855
|
layers?: string[] | undefined;
|
|
@@ -1910,7 +2010,12 @@ export declare const jArticleExtendViewSchema: z.ZodObject<z.objectUtil.extendSh
|
|
|
1910
2010
|
layers?: string[] | undefined;
|
|
1911
2011
|
} & import("./widgets").WidgetArticleSliderType) | ({
|
|
1912
2012
|
layers?: string[] | undefined;
|
|
1913
|
-
} & import("./widgets").WidgetType<
|
|
2013
|
+
} & import("./widgets").WidgetType<{
|
|
2014
|
+
widgets?: import("./widgets").WidgetBaseType[] | undefined;
|
|
2015
|
+
arr?: import("./widgets").WidgetCheckListContentArr[] | undefined;
|
|
2016
|
+
css?: Record<string, string> | undefined;
|
|
2017
|
+
edit?: boolean | undefined;
|
|
2018
|
+
}>) | ({
|
|
1914
2019
|
layers?: string[] | undefined;
|
|
1915
2020
|
} & import("./widgets").WidgetDatasourceTableType) | ({
|
|
1916
2021
|
layers?: string[] | undefined;
|
|
@@ -2017,7 +2122,12 @@ export declare const jArticleExtendViewSchema: z.ZodObject<z.objectUtil.extendSh
|
|
|
2017
2122
|
layers?: string[] | undefined;
|
|
2018
2123
|
} & import("./widgets").WidgetArticleSliderType) | ({
|
|
2019
2124
|
layers?: string[] | undefined;
|
|
2020
|
-
} & import("./widgets").WidgetType<
|
|
2125
|
+
} & import("./widgets").WidgetType<{
|
|
2126
|
+
widgets?: import("./widgets").WidgetBaseType[] | undefined;
|
|
2127
|
+
arr?: import("./widgets").WidgetCheckListContentArr[] | undefined;
|
|
2128
|
+
css?: Record<string, string> | undefined;
|
|
2129
|
+
edit?: boolean | undefined;
|
|
2130
|
+
}>) | ({
|
|
2021
2131
|
layers?: string[] | undefined;
|
|
2022
2132
|
} & import("./widgets").WidgetDatasourceTableType) | ({
|
|
2023
2133
|
layers?: string[] | undefined;
|
|
@@ -2211,7 +2321,12 @@ export declare const inferJInternalDraftView: <T extends z.ZodType<any, z.ZodTyp
|
|
|
2211
2321
|
layers?: string[] | undefined;
|
|
2212
2322
|
} & import("./widgets").WidgetArticleSliderType) | ({
|
|
2213
2323
|
layers?: string[] | undefined;
|
|
2214
|
-
} & import("./widgets").WidgetType<
|
|
2324
|
+
} & import("./widgets").WidgetType<{
|
|
2325
|
+
widgets?: import("./widgets").WidgetBaseType[] | undefined;
|
|
2326
|
+
arr?: import("./widgets").WidgetCheckListContentArr[] | undefined;
|
|
2327
|
+
css?: Record<string, string> | undefined;
|
|
2328
|
+
edit?: boolean | undefined;
|
|
2329
|
+
}>) | ({
|
|
2215
2330
|
layers?: string[] | undefined;
|
|
2216
2331
|
} & import("./widgets").WidgetDatasourceTableType) | ({
|
|
2217
2332
|
layers?: string[] | undefined;
|
|
@@ -2256,7 +2371,12 @@ export declare const inferJInternalDraftView: <T extends z.ZodType<any, z.ZodTyp
|
|
|
2256
2371
|
layers?: string[] | undefined;
|
|
2257
2372
|
} & import("./widgets").WidgetArticleSliderType) | ({
|
|
2258
2373
|
layers?: string[] | undefined;
|
|
2259
|
-
} & import("./widgets").WidgetType<
|
|
2374
|
+
} & import("./widgets").WidgetType<{
|
|
2375
|
+
widgets?: import("./widgets").WidgetBaseType[] | undefined;
|
|
2376
|
+
arr?: import("./widgets").WidgetCheckListContentArr[] | undefined;
|
|
2377
|
+
css?: Record<string, string> | undefined;
|
|
2378
|
+
edit?: boolean | undefined;
|
|
2379
|
+
}>) | ({
|
|
2260
2380
|
layers?: string[] | undefined;
|
|
2261
2381
|
} & import("./widgets").WidgetDatasourceTableType) | ({
|
|
2262
2382
|
layers?: string[] | undefined;
|
|
@@ -2302,7 +2422,12 @@ export declare const inferJInternalDraftView: <T extends z.ZodType<any, z.ZodTyp
|
|
|
2302
2422
|
layers?: string[] | undefined;
|
|
2303
2423
|
} & import("./widgets").WidgetArticleSliderType) | ({
|
|
2304
2424
|
layers?: string[] | undefined;
|
|
2305
|
-
} & import("./widgets").WidgetType<
|
|
2425
|
+
} & import("./widgets").WidgetType<{
|
|
2426
|
+
widgets?: import("./widgets").WidgetBaseType[] | undefined;
|
|
2427
|
+
arr?: import("./widgets").WidgetCheckListContentArr[] | undefined;
|
|
2428
|
+
css?: Record<string, string> | undefined;
|
|
2429
|
+
edit?: boolean | undefined;
|
|
2430
|
+
}>) | ({
|
|
2306
2431
|
layers?: string[] | undefined;
|
|
2307
2432
|
} & import("./widgets").WidgetDatasourceTableType) | ({
|
|
2308
2433
|
layers?: string[] | undefined;
|
|
@@ -2347,7 +2472,12 @@ export declare const inferJInternalDraftView: <T extends z.ZodType<any, z.ZodTyp
|
|
|
2347
2472
|
layers?: string[] | undefined;
|
|
2348
2473
|
} & import("./widgets").WidgetArticleSliderType) | ({
|
|
2349
2474
|
layers?: string[] | undefined;
|
|
2350
|
-
} & import("./widgets").WidgetType<
|
|
2475
|
+
} & import("./widgets").WidgetType<{
|
|
2476
|
+
widgets?: import("./widgets").WidgetBaseType[] | undefined;
|
|
2477
|
+
arr?: import("./widgets").WidgetCheckListContentArr[] | undefined;
|
|
2478
|
+
css?: Record<string, string> | undefined;
|
|
2479
|
+
edit?: boolean | undefined;
|
|
2480
|
+
}>) | ({
|
|
2351
2481
|
layers?: string[] | undefined;
|
|
2352
2482
|
} & import("./widgets").WidgetDatasourceTableType) | ({
|
|
2353
2483
|
layers?: string[] | undefined;
|
|
@@ -2583,7 +2713,12 @@ export declare const inferJInternalDraftView: <T extends z.ZodType<any, z.ZodTyp
|
|
|
2583
2713
|
layers?: string[] | undefined;
|
|
2584
2714
|
} & import("./widgets").WidgetArticleSliderType) | ({
|
|
2585
2715
|
layers?: string[] | undefined;
|
|
2586
|
-
} & import("./widgets").WidgetType<
|
|
2716
|
+
} & import("./widgets").WidgetType<{
|
|
2717
|
+
widgets?: import("./widgets").WidgetBaseType[] | undefined;
|
|
2718
|
+
arr?: import("./widgets").WidgetCheckListContentArr[] | undefined;
|
|
2719
|
+
css?: Record<string, string> | undefined;
|
|
2720
|
+
edit?: boolean | undefined;
|
|
2721
|
+
}>) | ({
|
|
2587
2722
|
layers?: string[] | undefined;
|
|
2588
2723
|
} & import("./widgets").WidgetDatasourceTableType) | ({
|
|
2589
2724
|
layers?: string[] | undefined;
|
|
@@ -2628,7 +2763,12 @@ export declare const inferJInternalDraftView: <T extends z.ZodType<any, z.ZodTyp
|
|
|
2628
2763
|
layers?: string[] | undefined;
|
|
2629
2764
|
} & import("./widgets").WidgetArticleSliderType) | ({
|
|
2630
2765
|
layers?: string[] | undefined;
|
|
2631
|
-
} & import("./widgets").WidgetType<
|
|
2766
|
+
} & import("./widgets").WidgetType<{
|
|
2767
|
+
widgets?: import("./widgets").WidgetBaseType[] | undefined;
|
|
2768
|
+
arr?: import("./widgets").WidgetCheckListContentArr[] | undefined;
|
|
2769
|
+
css?: Record<string, string> | undefined;
|
|
2770
|
+
edit?: boolean | undefined;
|
|
2771
|
+
}>) | ({
|
|
2632
2772
|
layers?: string[] | undefined;
|
|
2633
2773
|
} & import("./widgets").WidgetDatasourceTableType) | ({
|
|
2634
2774
|
layers?: string[] | undefined;
|
|
@@ -2674,7 +2814,12 @@ export declare const inferJInternalDraftView: <T extends z.ZodType<any, z.ZodTyp
|
|
|
2674
2814
|
layers?: string[] | undefined;
|
|
2675
2815
|
} & import("./widgets").WidgetArticleSliderType) | ({
|
|
2676
2816
|
layers?: string[] | undefined;
|
|
2677
|
-
} & import("./widgets").WidgetType<
|
|
2817
|
+
} & import("./widgets").WidgetType<{
|
|
2818
|
+
widgets?: import("./widgets").WidgetBaseType[] | undefined;
|
|
2819
|
+
arr?: import("./widgets").WidgetCheckListContentArr[] | undefined;
|
|
2820
|
+
css?: Record<string, string> | undefined;
|
|
2821
|
+
edit?: boolean | undefined;
|
|
2822
|
+
}>) | ({
|
|
2678
2823
|
layers?: string[] | undefined;
|
|
2679
2824
|
} & import("./widgets").WidgetDatasourceTableType) | ({
|
|
2680
2825
|
layers?: string[] | undefined;
|
|
@@ -2719,7 +2864,12 @@ export declare const inferJInternalDraftView: <T extends z.ZodType<any, z.ZodTyp
|
|
|
2719
2864
|
layers?: string[] | undefined;
|
|
2720
2865
|
} & import("./widgets").WidgetArticleSliderType) | ({
|
|
2721
2866
|
layers?: string[] | undefined;
|
|
2722
|
-
} & import("./widgets").WidgetType<
|
|
2867
|
+
} & import("./widgets").WidgetType<{
|
|
2868
|
+
widgets?: import("./widgets").WidgetBaseType[] | undefined;
|
|
2869
|
+
arr?: import("./widgets").WidgetCheckListContentArr[] | undefined;
|
|
2870
|
+
css?: Record<string, string> | undefined;
|
|
2871
|
+
edit?: boolean | undefined;
|
|
2872
|
+
}>) | ({
|
|
2723
2873
|
layers?: string[] | undefined;
|
|
2724
2874
|
} & import("./widgets").WidgetDatasourceTableType) | ({
|
|
2725
2875
|
layers?: string[] | undefined;
|
|
@@ -2955,7 +3105,12 @@ export declare const inferJInternalDraftView: <T extends z.ZodType<any, z.ZodTyp
|
|
|
2955
3105
|
layers?: string[] | undefined;
|
|
2956
3106
|
} & import("./widgets").WidgetArticleSliderType) | ({
|
|
2957
3107
|
layers?: string[] | undefined;
|
|
2958
|
-
} & import("./widgets").WidgetType<
|
|
3108
|
+
} & import("./widgets").WidgetType<{
|
|
3109
|
+
widgets?: import("./widgets").WidgetBaseType[] | undefined;
|
|
3110
|
+
arr?: import("./widgets").WidgetCheckListContentArr[] | undefined;
|
|
3111
|
+
css?: Record<string, string> | undefined;
|
|
3112
|
+
edit?: boolean | undefined;
|
|
3113
|
+
}>) | ({
|
|
2959
3114
|
layers?: string[] | undefined;
|
|
2960
3115
|
} & import("./widgets").WidgetDatasourceTableType) | ({
|
|
2961
3116
|
layers?: string[] | undefined;
|
|
@@ -3000,7 +3155,12 @@ export declare const inferJInternalDraftView: <T extends z.ZodType<any, z.ZodTyp
|
|
|
3000
3155
|
layers?: string[] | undefined;
|
|
3001
3156
|
} & import("./widgets").WidgetArticleSliderType) | ({
|
|
3002
3157
|
layers?: string[] | undefined;
|
|
3003
|
-
} & import("./widgets").WidgetType<
|
|
3158
|
+
} & import("./widgets").WidgetType<{
|
|
3159
|
+
widgets?: import("./widgets").WidgetBaseType[] | undefined;
|
|
3160
|
+
arr?: import("./widgets").WidgetCheckListContentArr[] | undefined;
|
|
3161
|
+
css?: Record<string, string> | undefined;
|
|
3162
|
+
edit?: boolean | undefined;
|
|
3163
|
+
}>) | ({
|
|
3004
3164
|
layers?: string[] | undefined;
|
|
3005
3165
|
} & import("./widgets").WidgetDatasourceTableType) | ({
|
|
3006
3166
|
layers?: string[] | undefined;
|
|
@@ -3046,7 +3206,12 @@ export declare const inferJInternalDraftView: <T extends z.ZodType<any, z.ZodTyp
|
|
|
3046
3206
|
layers?: string[] | undefined;
|
|
3047
3207
|
} & import("./widgets").WidgetArticleSliderType) | ({
|
|
3048
3208
|
layers?: string[] | undefined;
|
|
3049
|
-
} & import("./widgets").WidgetType<
|
|
3209
|
+
} & import("./widgets").WidgetType<{
|
|
3210
|
+
widgets?: import("./widgets").WidgetBaseType[] | undefined;
|
|
3211
|
+
arr?: import("./widgets").WidgetCheckListContentArr[] | undefined;
|
|
3212
|
+
css?: Record<string, string> | undefined;
|
|
3213
|
+
edit?: boolean | undefined;
|
|
3214
|
+
}>) | ({
|
|
3050
3215
|
layers?: string[] | undefined;
|
|
3051
3216
|
} & import("./widgets").WidgetDatasourceTableType) | ({
|
|
3052
3217
|
layers?: string[] | undefined;
|
|
@@ -3091,7 +3256,12 @@ export declare const inferJInternalDraftView: <T extends z.ZodType<any, z.ZodTyp
|
|
|
3091
3256
|
layers?: string[] | undefined;
|
|
3092
3257
|
} & import("./widgets").WidgetArticleSliderType) | ({
|
|
3093
3258
|
layers?: string[] | undefined;
|
|
3094
|
-
} & import("./widgets").WidgetType<
|
|
3259
|
+
} & import("./widgets").WidgetType<{
|
|
3260
|
+
widgets?: import("./widgets").WidgetBaseType[] | undefined;
|
|
3261
|
+
arr?: import("./widgets").WidgetCheckListContentArr[] | undefined;
|
|
3262
|
+
css?: Record<string, string> | undefined;
|
|
3263
|
+
edit?: boolean | undefined;
|
|
3264
|
+
}>) | ({
|
|
3095
3265
|
layers?: string[] | undefined;
|
|
3096
3266
|
} & import("./widgets").WidgetDatasourceTableType) | ({
|
|
3097
3267
|
layers?: string[] | undefined;
|
|
@@ -3327,7 +3497,12 @@ export declare const inferJInternalDraftView: <T extends z.ZodType<any, z.ZodTyp
|
|
|
3327
3497
|
layers?: string[] | undefined;
|
|
3328
3498
|
} & import("./widgets").WidgetArticleSliderType) | ({
|
|
3329
3499
|
layers?: string[] | undefined;
|
|
3330
|
-
} & import("./widgets").WidgetType<
|
|
3500
|
+
} & import("./widgets").WidgetType<{
|
|
3501
|
+
widgets?: import("./widgets").WidgetBaseType[] | undefined;
|
|
3502
|
+
arr?: import("./widgets").WidgetCheckListContentArr[] | undefined;
|
|
3503
|
+
css?: Record<string, string> | undefined;
|
|
3504
|
+
edit?: boolean | undefined;
|
|
3505
|
+
}>) | ({
|
|
3331
3506
|
layers?: string[] | undefined;
|
|
3332
3507
|
} & import("./widgets").WidgetDatasourceTableType) | ({
|
|
3333
3508
|
layers?: string[] | undefined;
|
|
@@ -3372,7 +3547,12 @@ export declare const inferJInternalDraftView: <T extends z.ZodType<any, z.ZodTyp
|
|
|
3372
3547
|
layers?: string[] | undefined;
|
|
3373
3548
|
} & import("./widgets").WidgetArticleSliderType) | ({
|
|
3374
3549
|
layers?: string[] | undefined;
|
|
3375
|
-
} & import("./widgets").WidgetType<
|
|
3550
|
+
} & import("./widgets").WidgetType<{
|
|
3551
|
+
widgets?: import("./widgets").WidgetBaseType[] | undefined;
|
|
3552
|
+
arr?: import("./widgets").WidgetCheckListContentArr[] | undefined;
|
|
3553
|
+
css?: Record<string, string> | undefined;
|
|
3554
|
+
edit?: boolean | undefined;
|
|
3555
|
+
}>) | ({
|
|
3376
3556
|
layers?: string[] | undefined;
|
|
3377
3557
|
} & import("./widgets").WidgetDatasourceTableType) | ({
|
|
3378
3558
|
layers?: string[] | undefined;
|
|
@@ -3418,7 +3598,12 @@ export declare const inferJInternalDraftView: <T extends z.ZodType<any, z.ZodTyp
|
|
|
3418
3598
|
layers?: string[] | undefined;
|
|
3419
3599
|
} & import("./widgets").WidgetArticleSliderType) | ({
|
|
3420
3600
|
layers?: string[] | undefined;
|
|
3421
|
-
} & import("./widgets").WidgetType<
|
|
3601
|
+
} & import("./widgets").WidgetType<{
|
|
3602
|
+
widgets?: import("./widgets").WidgetBaseType[] | undefined;
|
|
3603
|
+
arr?: import("./widgets").WidgetCheckListContentArr[] | undefined;
|
|
3604
|
+
css?: Record<string, string> | undefined;
|
|
3605
|
+
edit?: boolean | undefined;
|
|
3606
|
+
}>) | ({
|
|
3422
3607
|
layers?: string[] | undefined;
|
|
3423
3608
|
} & import("./widgets").WidgetDatasourceTableType) | ({
|
|
3424
3609
|
layers?: string[] | undefined;
|
|
@@ -3463,7 +3648,12 @@ export declare const inferJInternalDraftView: <T extends z.ZodType<any, z.ZodTyp
|
|
|
3463
3648
|
layers?: string[] | undefined;
|
|
3464
3649
|
} & import("./widgets").WidgetArticleSliderType) | ({
|
|
3465
3650
|
layers?: string[] | undefined;
|
|
3466
|
-
} & import("./widgets").WidgetType<
|
|
3651
|
+
} & import("./widgets").WidgetType<{
|
|
3652
|
+
widgets?: import("./widgets").WidgetBaseType[] | undefined;
|
|
3653
|
+
arr?: import("./widgets").WidgetCheckListContentArr[] | undefined;
|
|
3654
|
+
css?: Record<string, string> | undefined;
|
|
3655
|
+
edit?: boolean | undefined;
|
|
3656
|
+
}>) | ({
|
|
3467
3657
|
layers?: string[] | undefined;
|
|
3468
3658
|
} & import("./widgets").WidgetDatasourceTableType) | ({
|
|
3469
3659
|
layers?: string[] | undefined;
|
|
@@ -3699,7 +3889,12 @@ export declare const inferJInternalDraftView: <T extends z.ZodType<any, z.ZodTyp
|
|
|
3699
3889
|
layers?: string[] | undefined;
|
|
3700
3890
|
} & import("./widgets").WidgetArticleSliderType) | ({
|
|
3701
3891
|
layers?: string[] | undefined;
|
|
3702
|
-
} & import("./widgets").WidgetType<
|
|
3892
|
+
} & import("./widgets").WidgetType<{
|
|
3893
|
+
widgets?: import("./widgets").WidgetBaseType[] | undefined;
|
|
3894
|
+
arr?: import("./widgets").WidgetCheckListContentArr[] | undefined;
|
|
3895
|
+
css?: Record<string, string> | undefined;
|
|
3896
|
+
edit?: boolean | undefined;
|
|
3897
|
+
}>) | ({
|
|
3703
3898
|
layers?: string[] | undefined;
|
|
3704
3899
|
} & import("./widgets").WidgetDatasourceTableType) | ({
|
|
3705
3900
|
layers?: string[] | undefined;
|
|
@@ -3744,7 +3939,12 @@ export declare const inferJInternalDraftView: <T extends z.ZodType<any, z.ZodTyp
|
|
|
3744
3939
|
layers?: string[] | undefined;
|
|
3745
3940
|
} & import("./widgets").WidgetArticleSliderType) | ({
|
|
3746
3941
|
layers?: string[] | undefined;
|
|
3747
|
-
} & import("./widgets").WidgetType<
|
|
3942
|
+
} & import("./widgets").WidgetType<{
|
|
3943
|
+
widgets?: import("./widgets").WidgetBaseType[] | undefined;
|
|
3944
|
+
arr?: import("./widgets").WidgetCheckListContentArr[] | undefined;
|
|
3945
|
+
css?: Record<string, string> | undefined;
|
|
3946
|
+
edit?: boolean | undefined;
|
|
3947
|
+
}>) | ({
|
|
3748
3948
|
layers?: string[] | undefined;
|
|
3749
3949
|
} & import("./widgets").WidgetDatasourceTableType) | ({
|
|
3750
3950
|
layers?: string[] | undefined;
|
|
@@ -3790,7 +3990,12 @@ export declare const inferJInternalDraftView: <T extends z.ZodType<any, z.ZodTyp
|
|
|
3790
3990
|
layers?: string[] | undefined;
|
|
3791
3991
|
} & import("./widgets").WidgetArticleSliderType) | ({
|
|
3792
3992
|
layers?: string[] | undefined;
|
|
3793
|
-
} & import("./widgets").WidgetType<
|
|
3993
|
+
} & import("./widgets").WidgetType<{
|
|
3994
|
+
widgets?: import("./widgets").WidgetBaseType[] | undefined;
|
|
3995
|
+
arr?: import("./widgets").WidgetCheckListContentArr[] | undefined;
|
|
3996
|
+
css?: Record<string, string> | undefined;
|
|
3997
|
+
edit?: boolean | undefined;
|
|
3998
|
+
}>) | ({
|
|
3794
3999
|
layers?: string[] | undefined;
|
|
3795
4000
|
} & import("./widgets").WidgetDatasourceTableType) | ({
|
|
3796
4001
|
layers?: string[] | undefined;
|
|
@@ -3835,7 +4040,12 @@ export declare const inferJInternalDraftView: <T extends z.ZodType<any, z.ZodTyp
|
|
|
3835
4040
|
layers?: string[] | undefined;
|
|
3836
4041
|
} & import("./widgets").WidgetArticleSliderType) | ({
|
|
3837
4042
|
layers?: string[] | undefined;
|
|
3838
|
-
} & import("./widgets").WidgetType<
|
|
4043
|
+
} & import("./widgets").WidgetType<{
|
|
4044
|
+
widgets?: import("./widgets").WidgetBaseType[] | undefined;
|
|
4045
|
+
arr?: import("./widgets").WidgetCheckListContentArr[] | undefined;
|
|
4046
|
+
css?: Record<string, string> | undefined;
|
|
4047
|
+
edit?: boolean | undefined;
|
|
4048
|
+
}>) | ({
|
|
3839
4049
|
layers?: string[] | undefined;
|
|
3840
4050
|
} & import("./widgets").WidgetDatasourceTableType) | ({
|
|
3841
4051
|
layers?: string[] | undefined;
|
|
@@ -4169,7 +4379,12 @@ export declare const addCommentParamsSchema: z.ZodObject<{
|
|
|
4169
4379
|
layers?: string[] | undefined;
|
|
4170
4380
|
} & import("./widgets").WidgetArticleSliderType) | ({
|
|
4171
4381
|
layers?: string[] | undefined;
|
|
4172
|
-
} & import("./widgets").WidgetType<
|
|
4382
|
+
} & import("./widgets").WidgetType<{
|
|
4383
|
+
widgets?: import("./widgets").WidgetBaseType[] | undefined;
|
|
4384
|
+
arr?: import("./widgets").WidgetCheckListContentArr[] | undefined;
|
|
4385
|
+
css?: Record<string, string> | undefined;
|
|
4386
|
+
edit?: boolean | undefined;
|
|
4387
|
+
}>) | ({
|
|
4173
4388
|
layers?: string[] | undefined;
|
|
4174
4389
|
} & import("./widgets").WidgetDatasourceTableType) | ({
|
|
4175
4390
|
layers?: string[] | undefined;
|
|
@@ -4214,7 +4429,12 @@ export declare const addCommentParamsSchema: z.ZodObject<{
|
|
|
4214
4429
|
layers?: string[] | undefined;
|
|
4215
4430
|
} & import("./widgets").WidgetArticleSliderType) | ({
|
|
4216
4431
|
layers?: string[] | undefined;
|
|
4217
|
-
} & import("./widgets").WidgetType<
|
|
4432
|
+
} & import("./widgets").WidgetType<{
|
|
4433
|
+
widgets?: import("./widgets").WidgetBaseType[] | undefined;
|
|
4434
|
+
arr?: import("./widgets").WidgetCheckListContentArr[] | undefined;
|
|
4435
|
+
css?: Record<string, string> | undefined;
|
|
4436
|
+
edit?: boolean | undefined;
|
|
4437
|
+
}>) | ({
|
|
4218
4438
|
layers?: string[] | undefined;
|
|
4219
4439
|
} & import("./widgets").WidgetDatasourceTableType) | ({
|
|
4220
4440
|
layers?: string[] | undefined;
|
|
@@ -4260,7 +4480,12 @@ export declare const addCommentParamsSchema: z.ZodObject<{
|
|
|
4260
4480
|
layers?: string[] | undefined;
|
|
4261
4481
|
} & import("./widgets").WidgetArticleSliderType) | ({
|
|
4262
4482
|
layers?: string[] | undefined;
|
|
4263
|
-
} & import("./widgets").WidgetType<
|
|
4483
|
+
} & import("./widgets").WidgetType<{
|
|
4484
|
+
widgets?: import("./widgets").WidgetBaseType[] | undefined;
|
|
4485
|
+
arr?: import("./widgets").WidgetCheckListContentArr[] | undefined;
|
|
4486
|
+
css?: Record<string, string> | undefined;
|
|
4487
|
+
edit?: boolean | undefined;
|
|
4488
|
+
}>) | ({
|
|
4264
4489
|
layers?: string[] | undefined;
|
|
4265
4490
|
} & import("./widgets").WidgetDatasourceTableType) | ({
|
|
4266
4491
|
layers?: string[] | undefined;
|
|
@@ -4305,7 +4530,12 @@ export declare const addCommentParamsSchema: z.ZodObject<{
|
|
|
4305
4530
|
layers?: string[] | undefined;
|
|
4306
4531
|
} & import("./widgets").WidgetArticleSliderType) | ({
|
|
4307
4532
|
layers?: string[] | undefined;
|
|
4308
|
-
} & import("./widgets").WidgetType<
|
|
4533
|
+
} & import("./widgets").WidgetType<{
|
|
4534
|
+
widgets?: import("./widgets").WidgetBaseType[] | undefined;
|
|
4535
|
+
arr?: import("./widgets").WidgetCheckListContentArr[] | undefined;
|
|
4536
|
+
css?: Record<string, string> | undefined;
|
|
4537
|
+
edit?: boolean | undefined;
|
|
4538
|
+
}>) | ({
|
|
4309
4539
|
layers?: string[] | undefined;
|
|
4310
4540
|
} & import("./widgets").WidgetDatasourceTableType) | ({
|
|
4311
4541
|
layers?: string[] | undefined;
|
|
@@ -4357,7 +4587,12 @@ export declare const addCommentParamsSchema: z.ZodObject<{
|
|
|
4357
4587
|
layers?: string[] | undefined;
|
|
4358
4588
|
} & import("./widgets").WidgetArticleSliderType) | ({
|
|
4359
4589
|
layers?: string[] | undefined;
|
|
4360
|
-
} & import("./widgets").WidgetType<
|
|
4590
|
+
} & import("./widgets").WidgetType<{
|
|
4591
|
+
widgets?: import("./widgets").WidgetBaseType[] | undefined;
|
|
4592
|
+
arr?: import("./widgets").WidgetCheckListContentArr[] | undefined;
|
|
4593
|
+
css?: Record<string, string> | undefined;
|
|
4594
|
+
edit?: boolean | undefined;
|
|
4595
|
+
}>) | ({
|
|
4361
4596
|
layers?: string[] | undefined;
|
|
4362
4597
|
} & import("./widgets").WidgetDatasourceTableType) | ({
|
|
4363
4598
|
layers?: string[] | undefined;
|
|
@@ -4409,7 +4644,12 @@ export declare const addCommentParamsSchema: z.ZodObject<{
|
|
|
4409
4644
|
layers?: string[] | undefined;
|
|
4410
4645
|
} & import("./widgets").WidgetArticleSliderType) | ({
|
|
4411
4646
|
layers?: string[] | undefined;
|
|
4412
|
-
} & import("./widgets").WidgetType<
|
|
4647
|
+
} & import("./widgets").WidgetType<{
|
|
4648
|
+
widgets?: import("./widgets").WidgetBaseType[] | undefined;
|
|
4649
|
+
arr?: import("./widgets").WidgetCheckListContentArr[] | undefined;
|
|
4650
|
+
css?: Record<string, string> | undefined;
|
|
4651
|
+
edit?: boolean | undefined;
|
|
4652
|
+
}>) | ({
|
|
4413
4653
|
layers?: string[] | undefined;
|
|
4414
4654
|
} & import("./widgets").WidgetDatasourceTableType) | ({
|
|
4415
4655
|
layers?: string[] | undefined;
|
|
@@ -4463,7 +4703,12 @@ export declare const updateCommentParamsSchema: z.ZodObject<{
|
|
|
4463
4703
|
layers?: string[] | undefined;
|
|
4464
4704
|
} & import("./widgets").WidgetArticleSliderType) | ({
|
|
4465
4705
|
layers?: string[] | undefined;
|
|
4466
|
-
} & import("./widgets").WidgetType<
|
|
4706
|
+
} & import("./widgets").WidgetType<{
|
|
4707
|
+
widgets?: import("./widgets").WidgetBaseType[] | undefined;
|
|
4708
|
+
arr?: import("./widgets").WidgetCheckListContentArr[] | undefined;
|
|
4709
|
+
css?: Record<string, string> | undefined;
|
|
4710
|
+
edit?: boolean | undefined;
|
|
4711
|
+
}>) | ({
|
|
4467
4712
|
layers?: string[] | undefined;
|
|
4468
4713
|
} & import("./widgets").WidgetDatasourceTableType) | ({
|
|
4469
4714
|
layers?: string[] | undefined;
|
|
@@ -4508,7 +4753,12 @@ export declare const updateCommentParamsSchema: z.ZodObject<{
|
|
|
4508
4753
|
layers?: string[] | undefined;
|
|
4509
4754
|
} & import("./widgets").WidgetArticleSliderType) | ({
|
|
4510
4755
|
layers?: string[] | undefined;
|
|
4511
|
-
} & import("./widgets").WidgetType<
|
|
4756
|
+
} & import("./widgets").WidgetType<{
|
|
4757
|
+
widgets?: import("./widgets").WidgetBaseType[] | undefined;
|
|
4758
|
+
arr?: import("./widgets").WidgetCheckListContentArr[] | undefined;
|
|
4759
|
+
css?: Record<string, string> | undefined;
|
|
4760
|
+
edit?: boolean | undefined;
|
|
4761
|
+
}>) | ({
|
|
4512
4762
|
layers?: string[] | undefined;
|
|
4513
4763
|
} & import("./widgets").WidgetDatasourceTableType) | ({
|
|
4514
4764
|
layers?: string[] | undefined;
|
|
@@ -4554,7 +4804,12 @@ export declare const updateCommentParamsSchema: z.ZodObject<{
|
|
|
4554
4804
|
layers?: string[] | undefined;
|
|
4555
4805
|
} & import("./widgets").WidgetArticleSliderType) | ({
|
|
4556
4806
|
layers?: string[] | undefined;
|
|
4557
|
-
} & import("./widgets").WidgetType<
|
|
4807
|
+
} & import("./widgets").WidgetType<{
|
|
4808
|
+
widgets?: import("./widgets").WidgetBaseType[] | undefined;
|
|
4809
|
+
arr?: import("./widgets").WidgetCheckListContentArr[] | undefined;
|
|
4810
|
+
css?: Record<string, string> | undefined;
|
|
4811
|
+
edit?: boolean | undefined;
|
|
4812
|
+
}>) | ({
|
|
4558
4813
|
layers?: string[] | undefined;
|
|
4559
4814
|
} & import("./widgets").WidgetDatasourceTableType) | ({
|
|
4560
4815
|
layers?: string[] | undefined;
|
|
@@ -4599,7 +4854,12 @@ export declare const updateCommentParamsSchema: z.ZodObject<{
|
|
|
4599
4854
|
layers?: string[] | undefined;
|
|
4600
4855
|
} & import("./widgets").WidgetArticleSliderType) | ({
|
|
4601
4856
|
layers?: string[] | undefined;
|
|
4602
|
-
} & import("./widgets").WidgetType<
|
|
4857
|
+
} & import("./widgets").WidgetType<{
|
|
4858
|
+
widgets?: import("./widgets").WidgetBaseType[] | undefined;
|
|
4859
|
+
arr?: import("./widgets").WidgetCheckListContentArr[] | undefined;
|
|
4860
|
+
css?: Record<string, string> | undefined;
|
|
4861
|
+
edit?: boolean | undefined;
|
|
4862
|
+
}>) | ({
|
|
4603
4863
|
layers?: string[] | undefined;
|
|
4604
4864
|
} & import("./widgets").WidgetDatasourceTableType) | ({
|
|
4605
4865
|
layers?: string[] | undefined;
|
|
@@ -4649,7 +4909,12 @@ export declare const updateCommentParamsSchema: z.ZodObject<{
|
|
|
4649
4909
|
layers?: string[] | undefined;
|
|
4650
4910
|
} & import("./widgets").WidgetArticleSliderType) | ({
|
|
4651
4911
|
layers?: string[] | undefined;
|
|
4652
|
-
} & import("./widgets").WidgetType<
|
|
4912
|
+
} & import("./widgets").WidgetType<{
|
|
4913
|
+
widgets?: import("./widgets").WidgetBaseType[] | undefined;
|
|
4914
|
+
arr?: import("./widgets").WidgetCheckListContentArr[] | undefined;
|
|
4915
|
+
css?: Record<string, string> | undefined;
|
|
4916
|
+
edit?: boolean | undefined;
|
|
4917
|
+
}>) | ({
|
|
4653
4918
|
layers?: string[] | undefined;
|
|
4654
4919
|
} & import("./widgets").WidgetDatasourceTableType) | ({
|
|
4655
4920
|
layers?: string[] | undefined;
|
|
@@ -4699,7 +4964,12 @@ export declare const updateCommentParamsSchema: z.ZodObject<{
|
|
|
4699
4964
|
layers?: string[] | undefined;
|
|
4700
4965
|
} & import("./widgets").WidgetArticleSliderType) | ({
|
|
4701
4966
|
layers?: string[] | undefined;
|
|
4702
|
-
} & import("./widgets").WidgetType<
|
|
4967
|
+
} & import("./widgets").WidgetType<{
|
|
4968
|
+
widgets?: import("./widgets").WidgetBaseType[] | undefined;
|
|
4969
|
+
arr?: import("./widgets").WidgetCheckListContentArr[] | undefined;
|
|
4970
|
+
css?: Record<string, string> | undefined;
|
|
4971
|
+
edit?: boolean | undefined;
|
|
4972
|
+
}>) | ({
|
|
4703
4973
|
layers?: string[] | undefined;
|
|
4704
4974
|
} & import("./widgets").WidgetDatasourceTableType) | ({
|
|
4705
4975
|
layers?: string[] | undefined;
|
|
@@ -4922,7 +5192,12 @@ export declare const jFolderListSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
4922
5192
|
layers?: string[] | undefined;
|
|
4923
5193
|
} & import("./widgets").WidgetArticleSliderType) | ({
|
|
4924
5194
|
layers?: string[] | undefined;
|
|
4925
|
-
} & import("./widgets").WidgetType<
|
|
5195
|
+
} & import("./widgets").WidgetType<{
|
|
5196
|
+
widgets?: import("./widgets").WidgetBaseType[] | undefined;
|
|
5197
|
+
arr?: import("./widgets").WidgetCheckListContentArr[] | undefined;
|
|
5198
|
+
css?: Record<string, string> | undefined;
|
|
5199
|
+
edit?: boolean | undefined;
|
|
5200
|
+
}>) | ({
|
|
4926
5201
|
layers?: string[] | undefined;
|
|
4927
5202
|
} & import("./widgets").WidgetDatasourceTableType) | ({
|
|
4928
5203
|
layers?: string[] | undefined;
|
|
@@ -4967,7 +5242,12 @@ export declare const jFolderListSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
4967
5242
|
layers?: string[] | undefined;
|
|
4968
5243
|
} & import("./widgets").WidgetArticleSliderType) | ({
|
|
4969
5244
|
layers?: string[] | undefined;
|
|
4970
|
-
} & import("./widgets").WidgetType<
|
|
5245
|
+
} & import("./widgets").WidgetType<{
|
|
5246
|
+
widgets?: import("./widgets").WidgetBaseType[] | undefined;
|
|
5247
|
+
arr?: import("./widgets").WidgetCheckListContentArr[] | undefined;
|
|
5248
|
+
css?: Record<string, string> | undefined;
|
|
5249
|
+
edit?: boolean | undefined;
|
|
5250
|
+
}>) | ({
|
|
4971
5251
|
layers?: string[] | undefined;
|
|
4972
5252
|
} & import("./widgets").WidgetDatasourceTableType) | ({
|
|
4973
5253
|
layers?: string[] | undefined;
|
|
@@ -5013,7 +5293,12 @@ export declare const jFolderListSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
5013
5293
|
layers?: string[] | undefined;
|
|
5014
5294
|
} & import("./widgets").WidgetArticleSliderType) | ({
|
|
5015
5295
|
layers?: string[] | undefined;
|
|
5016
|
-
} & import("./widgets").WidgetType<
|
|
5296
|
+
} & import("./widgets").WidgetType<{
|
|
5297
|
+
widgets?: import("./widgets").WidgetBaseType[] | undefined;
|
|
5298
|
+
arr?: import("./widgets").WidgetCheckListContentArr[] | undefined;
|
|
5299
|
+
css?: Record<string, string> | undefined;
|
|
5300
|
+
edit?: boolean | undefined;
|
|
5301
|
+
}>) | ({
|
|
5017
5302
|
layers?: string[] | undefined;
|
|
5018
5303
|
} & import("./widgets").WidgetDatasourceTableType) | ({
|
|
5019
5304
|
layers?: string[] | undefined;
|
|
@@ -5058,7 +5343,12 @@ export declare const jFolderListSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
5058
5343
|
layers?: string[] | undefined;
|
|
5059
5344
|
} & import("./widgets").WidgetArticleSliderType) | ({
|
|
5060
5345
|
layers?: string[] | undefined;
|
|
5061
|
-
} & import("./widgets").WidgetType<
|
|
5346
|
+
} & import("./widgets").WidgetType<{
|
|
5347
|
+
widgets?: import("./widgets").WidgetBaseType[] | undefined;
|
|
5348
|
+
arr?: import("./widgets").WidgetCheckListContentArr[] | undefined;
|
|
5349
|
+
css?: Record<string, string> | undefined;
|
|
5350
|
+
edit?: boolean | undefined;
|
|
5351
|
+
}>) | ({
|
|
5062
5352
|
layers?: string[] | undefined;
|
|
5063
5353
|
} & import("./widgets").WidgetDatasourceTableType) | ({
|
|
5064
5354
|
layers?: string[] | undefined;
|
|
@@ -5155,7 +5445,12 @@ export declare const jFolderListSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
5155
5445
|
layers?: string[] | undefined;
|
|
5156
5446
|
} & import("./widgets").WidgetArticleSliderType) | ({
|
|
5157
5447
|
layers?: string[] | undefined;
|
|
5158
|
-
} & import("./widgets").WidgetType<
|
|
5448
|
+
} & import("./widgets").WidgetType<{
|
|
5449
|
+
widgets?: import("./widgets").WidgetBaseType[] | undefined;
|
|
5450
|
+
arr?: import("./widgets").WidgetCheckListContentArr[] | undefined;
|
|
5451
|
+
css?: Record<string, string> | undefined;
|
|
5452
|
+
edit?: boolean | undefined;
|
|
5453
|
+
}>) | ({
|
|
5159
5454
|
layers?: string[] | undefined;
|
|
5160
5455
|
} & import("./widgets").WidgetDatasourceTableType) | ({
|
|
5161
5456
|
layers?: string[] | undefined;
|
|
@@ -5250,7 +5545,12 @@ export declare const jFolderListSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
5250
5545
|
layers?: string[] | undefined;
|
|
5251
5546
|
} & import("./widgets").WidgetArticleSliderType) | ({
|
|
5252
5547
|
layers?: string[] | undefined;
|
|
5253
|
-
} & import("./widgets").WidgetType<
|
|
5548
|
+
} & import("./widgets").WidgetType<{
|
|
5549
|
+
widgets?: import("./widgets").WidgetBaseType[] | undefined;
|
|
5550
|
+
arr?: import("./widgets").WidgetCheckListContentArr[] | undefined;
|
|
5551
|
+
css?: Record<string, string> | undefined;
|
|
5552
|
+
edit?: boolean | undefined;
|
|
5553
|
+
}>) | ({
|
|
5254
5554
|
layers?: string[] | undefined;
|
|
5255
5555
|
} & import("./widgets").WidgetDatasourceTableType) | ({
|
|
5256
5556
|
layers?: string[] | undefined;
|