@wix/auto_sdk_blog_posts 1.0.145 → 1.0.147

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (49) hide show
  1. package/build/cjs/index.d.ts +11 -15
  2. package/build/cjs/index.js +69 -23
  3. package/build/cjs/index.js.map +1 -1
  4. package/build/cjs/index.typings.d.ts +116 -33
  5. package/build/cjs/index.typings.js +52 -10
  6. package/build/cjs/index.typings.js.map +1 -1
  7. package/build/cjs/meta.d.ts +99 -3
  8. package/build/cjs/meta.js +46 -4
  9. package/build/cjs/meta.js.map +1 -1
  10. package/build/cjs/schemas.d.ts +82 -84
  11. package/build/cjs/schemas.js +147 -153
  12. package/build/cjs/schemas.js.map +1 -1
  13. package/build/es/index.d.mts +11 -15
  14. package/build/es/index.mjs +67 -23
  15. package/build/es/index.mjs.map +1 -1
  16. package/build/es/index.typings.d.mts +116 -33
  17. package/build/es/index.typings.mjs +50 -10
  18. package/build/es/index.typings.mjs.map +1 -1
  19. package/build/es/meta.d.mts +99 -3
  20. package/build/es/meta.mjs +44 -4
  21. package/build/es/meta.mjs.map +1 -1
  22. package/build/es/schemas.d.mts +82 -84
  23. package/build/es/schemas.mjs +147 -153
  24. package/build/es/schemas.mjs.map +1 -1
  25. package/build/internal/cjs/index.d.ts +11 -15
  26. package/build/internal/cjs/index.js +69 -23
  27. package/build/internal/cjs/index.js.map +1 -1
  28. package/build/internal/cjs/index.typings.d.ts +116 -33
  29. package/build/internal/cjs/index.typings.js +52 -10
  30. package/build/internal/cjs/index.typings.js.map +1 -1
  31. package/build/internal/cjs/meta.d.ts +99 -3
  32. package/build/internal/cjs/meta.js +46 -4
  33. package/build/internal/cjs/meta.js.map +1 -1
  34. package/build/internal/cjs/schemas.d.ts +82 -84
  35. package/build/internal/cjs/schemas.js +147 -153
  36. package/build/internal/cjs/schemas.js.map +1 -1
  37. package/build/internal/es/index.d.mts +11 -15
  38. package/build/internal/es/index.mjs +67 -23
  39. package/build/internal/es/index.mjs.map +1 -1
  40. package/build/internal/es/index.typings.d.mts +116 -33
  41. package/build/internal/es/index.typings.mjs +50 -10
  42. package/build/internal/es/index.typings.mjs.map +1 -1
  43. package/build/internal/es/meta.d.mts +99 -3
  44. package/build/internal/es/meta.mjs +44 -4
  45. package/build/internal/es/meta.mjs.map +1 -1
  46. package/build/internal/es/schemas.d.mts +82 -84
  47. package/build/internal/es/schemas.mjs +147 -153
  48. package/build/internal/es/schemas.mjs.map +1 -1
  49. package/package.json +4 -4
@@ -28,6 +28,7 @@ __export(index_exports, {
28
28
  BannerOrigin: () => BannerOrigin,
29
29
  ButtonDataType: () => ButtonDataType,
30
30
  CardDataBackgroundType: () => CardDataBackgroundType,
31
+ ColumnSize: () => ColumnSize,
31
32
  Crop: () => Crop,
32
33
  DecorationType: () => DecorationType,
33
34
  DesignTarget: () => DesignTarget,
@@ -67,6 +68,7 @@ __export(index_exports, {
67
68
  Resizing: () => Resizing,
68
69
  ResponsivenessBehaviour: () => ResponsivenessBehaviour,
69
70
  Scaling: () => Scaling,
71
+ SmartBlockDataType: () => SmartBlockDataType,
70
72
  SortOrder: () => SortOrder,
71
73
  Source: () => Source,
72
74
  Status: () => Status,
@@ -559,7 +561,10 @@ function getPost(payload) {
559
561
  path: "post.richContent.nodes.cardData.backgroundImage.media.duration"
560
562
  },
561
563
  { path: "post.richContent.nodes.tocData.fontSize" },
562
- { path: "post.richContent.nodes.tocData.itemSpacing" }
564
+ { path: "post.richContent.nodes.tocData.itemSpacing" },
565
+ {
566
+ path: "post.richContent.nodes.smartBlockCellData.shape.duration"
567
+ }
563
568
  ]
564
569
  }
565
570
  ])
@@ -707,7 +712,10 @@ function getPostBySlug(payload) {
707
712
  path: "post.richContent.nodes.cardData.backgroundImage.media.duration"
708
713
  },
709
714
  { path: "post.richContent.nodes.tocData.fontSize" },
710
- { path: "post.richContent.nodes.tocData.itemSpacing" }
715
+ { path: "post.richContent.nodes.tocData.itemSpacing" },
716
+ {
717
+ path: "post.richContent.nodes.smartBlockCellData.shape.duration"
718
+ }
711
719
  ]
712
720
  }
713
721
  ])
@@ -859,7 +867,10 @@ function listPosts(payload) {
859
867
  path: "posts.richContent.nodes.cardData.backgroundImage.media.duration"
860
868
  },
861
869
  { path: "posts.richContent.nodes.tocData.fontSize" },
862
- { path: "posts.richContent.nodes.tocData.itemSpacing" }
870
+ { path: "posts.richContent.nodes.tocData.itemSpacing" },
871
+ {
872
+ path: "posts.richContent.nodes.smartBlockCellData.shape.duration"
873
+ }
863
874
  ]
864
875
  }
865
876
  ])
@@ -1011,7 +1022,10 @@ function queryPosts(payload) {
1011
1022
  path: "posts.richContent.nodes.cardData.backgroundImage.media.duration"
1012
1023
  },
1013
1024
  { path: "posts.richContent.nodes.tocData.fontSize" },
1014
- { path: "posts.richContent.nodes.tocData.itemSpacing" }
1025
+ { path: "posts.richContent.nodes.tocData.itemSpacing" },
1026
+ {
1027
+ path: "posts.richContent.nodes.smartBlockCellData.shape.duration"
1028
+ }
1015
1029
  ]
1016
1030
  }
1017
1031
  ])
@@ -1091,6 +1105,8 @@ var NodeType = /* @__PURE__ */ ((NodeType2) => {
1091
1105
  NodeType2["SHAPE"] = "SHAPE";
1092
1106
  NodeType2["CARD"] = "CARD";
1093
1107
  NodeType2["TOC"] = "TOC";
1108
+ NodeType2["SMART_BLOCK"] = "SMART_BLOCK";
1109
+ NodeType2["SMART_BLOCK_CELL"] = "SMART_BLOCK_CELL";
1094
1110
  return NodeType2;
1095
1111
  })(NodeType || {});
1096
1112
  var BackgroundType = /* @__PURE__ */ ((BackgroundType2) => {
@@ -1418,6 +1434,30 @@ var Indentation = /* @__PURE__ */ ((Indentation2) => {
1418
1434
  Indentation2["FLAT"] = "FLAT";
1419
1435
  return Indentation2;
1420
1436
  })(Indentation || {});
1437
+ var SmartBlockDataType = /* @__PURE__ */ ((SmartBlockDataType2) => {
1438
+ SmartBlockDataType2["SOLID_BOXES"] = "SOLID_BOXES";
1439
+ SmartBlockDataType2["NUMBERED_BOXES"] = "NUMBERED_BOXES";
1440
+ SmartBlockDataType2["STATS"] = "STATS";
1441
+ SmartBlockDataType2["CIRCLE_STATS"] = "CIRCLE_STATS";
1442
+ SmartBlockDataType2["SOLID_BOXES_ALTERNATING"] = "SOLID_BOXES_ALTERNATING";
1443
+ SmartBlockDataType2["SOLID_JOINED_BOXES"] = "SOLID_JOINED_BOXES";
1444
+ SmartBlockDataType2["SIDE_LINE_TEXT"] = "SIDE_LINE_TEXT";
1445
+ SmartBlockDataType2["TOP_LINE_TEXT"] = "TOP_LINE_TEXT";
1446
+ SmartBlockDataType2["OUTLINE_BOXES_WITH_TOP_CIRCLE"] = "OUTLINE_BOXES_WITH_TOP_CIRCLE";
1447
+ SmartBlockDataType2["BIG_BULLETS"] = "BIG_BULLETS";
1448
+ SmartBlockDataType2["SMALL_BULLETS"] = "SMALL_BULLETS";
1449
+ SmartBlockDataType2["ARROW_BULLETS"] = "ARROW_BULLETS";
1450
+ SmartBlockDataType2["PROCESS_STEPS"] = "PROCESS_STEPS";
1451
+ SmartBlockDataType2["BAR_STATS"] = "BAR_STATS";
1452
+ return SmartBlockDataType2;
1453
+ })(SmartBlockDataType || {});
1454
+ var ColumnSize = /* @__PURE__ */ ((ColumnSize2) => {
1455
+ ColumnSize2["SMALL"] = "SMALL";
1456
+ ColumnSize2["MEDIUM"] = "MEDIUM";
1457
+ ColumnSize2["LARGE"] = "LARGE";
1458
+ ColumnSize2["EXTRA_LARGE"] = "EXTRA_LARGE";
1459
+ return ColumnSize2;
1460
+ })(ColumnSize || {});
1421
1461
  var ModerationStatusStatus = /* @__PURE__ */ ((ModerationStatusStatus2) => {
1422
1462
  ModerationStatusStatus2["UNKNOWN"] = "UNKNOWN";
1423
1463
  ModerationStatusStatus2["APPROVED"] = "APPROVED";
@@ -1624,8 +1664,8 @@ async function getPost2(postId, options) {
1624
1664
  paths: [{ path: "post.media.wixMedia.videoV2" }]
1625
1665
  }
1626
1666
  ]),
1627
- ["post.richContent", "post.rich_content"]
1628
- );
1667
+ ["post.richContent"]
1668
+ )?.post;
1629
1669
  } catch (err) {
1630
1670
  const transformedError = (0, import_transform_error.transformError)(
1631
1671
  err,
@@ -1672,7 +1712,7 @@ async function getPostBySlug2(slug, options) {
1672
1712
  paths: [{ path: "post.media.wixMedia.videoV2" }]
1673
1713
  }
1674
1714
  ]),
1675
- ["post.richContent", "post.rich_content"]
1715
+ ["post.richContent"]
1676
1716
  );
1677
1717
  } catch (err) {
1678
1718
  const transformedError = (0, import_transform_error.transformError)(
@@ -1731,7 +1771,7 @@ async function listPosts2(options) {
1731
1771
  paths: [{ path: "posts.media.wixMedia.videoV2" }]
1732
1772
  }
1733
1773
  ]),
1734
- ["posts.richContent", "posts.rich_content"]
1774
+ ["posts.richContent"]
1735
1775
  );
1736
1776
  } catch (err) {
1737
1777
  const transformedError = (0, import_transform_error.transformError)(
@@ -1801,7 +1841,7 @@ function queryPosts2(options) {
1801
1841
  paths: [{ path: "posts.media.wixMedia.videoV2" }]
1802
1842
  }
1803
1843
  ]),
1804
- ["posts.richContent", "posts.rich_content"]
1844
+ ["posts.richContent"]
1805
1845
  );
1806
1846
  return {
1807
1847
  items: transformedData?.posts,
@@ -1849,7 +1889,7 @@ async function typedQueryPosts(query, options) {
1849
1889
  paths: [{ path: "posts.media.wixMedia.videoV2" }]
1850
1890
  }
1851
1891
  ]),
1852
- ["posts.richContent", "posts.rich_content"]
1892
+ ["posts.richContent"]
1853
1893
  );
1854
1894
  } catch (err) {
1855
1895
  const transformedError = (0, import_transform_error.transformError)(
@@ -1963,8 +2003,7 @@ var onPostLiked = (0, import_sdk_types.EventDefinition)(
1963
2003
  transformFn: import_timestamp3.transformRESTTimestampToSDKTimestamp,
1964
2004
  paths: [{ path: "metadata.eventTime" }]
1965
2005
  }
1966
- ]),
1967
- ["entity.rich_content"]
2006
+ ])
1968
2007
  )
1969
2008
  )();
1970
2009
  var onPostUnliked = (0, import_sdk_types.EventDefinition)(
@@ -1976,8 +2015,7 @@ var onPostUnliked = (0, import_sdk_types.EventDefinition)(
1976
2015
  transformFn: import_timestamp3.transformRESTTimestampToSDKTimestamp,
1977
2016
  paths: [{ path: "metadata.eventTime" }]
1978
2017
  }
1979
- ]),
1980
- ["entity.rich_content"]
2018
+ ])
1981
2019
  )
1982
2020
  )();
1983
2021
  var onPostCreated = (0, import_sdk_types.EventDefinition)(
@@ -2097,15 +2135,17 @@ var onPostCreated = (0, import_sdk_types.EventDefinition)(
2097
2135
  path: "entity.richContent.nodes.cardData.backgroundImage.media.duration"
2098
2136
  },
2099
2137
  { path: "entity.richContent.nodes.tocData.fontSize" },
2100
- { path: "entity.richContent.nodes.tocData.itemSpacing" }
2138
+ { path: "entity.richContent.nodes.tocData.itemSpacing" },
2139
+ {
2140
+ path: "entity.richContent.nodes.smartBlockCellData.shape.duration"
2141
+ }
2101
2142
  ]
2102
2143
  },
2103
2144
  {
2104
2145
  transformFn: import_video_v22.transformRESTVideoV2ToSDKVideoV2,
2105
2146
  paths: [{ path: "entity.media.wixMedia.videoV2" }]
2106
2147
  }
2107
- ]),
2108
- ["entity.rich_content"]
2148
+ ])
2109
2149
  )
2110
2150
  )();
2111
2151
  var onPostDeleted = (0, import_sdk_types.EventDefinition)(
@@ -2225,15 +2265,17 @@ var onPostDeleted = (0, import_sdk_types.EventDefinition)(
2225
2265
  path: "entity.richContent.nodes.cardData.backgroundImage.media.duration"
2226
2266
  },
2227
2267
  { path: "entity.richContent.nodes.tocData.fontSize" },
2228
- { path: "entity.richContent.nodes.tocData.itemSpacing" }
2268
+ { path: "entity.richContent.nodes.tocData.itemSpacing" },
2269
+ {
2270
+ path: "entity.richContent.nodes.smartBlockCellData.shape.duration"
2271
+ }
2229
2272
  ]
2230
2273
  },
2231
2274
  {
2232
2275
  transformFn: import_video_v22.transformRESTVideoV2ToSDKVideoV2,
2233
2276
  paths: [{ path: "entity.media.wixMedia.videoV2" }]
2234
2277
  }
2235
- ]),
2236
- ["entity.rich_content"]
2278
+ ])
2237
2279
  )
2238
2280
  )();
2239
2281
  var onPostUpdated = (0, import_sdk_types.EventDefinition)(
@@ -2353,15 +2395,17 @@ var onPostUpdated = (0, import_sdk_types.EventDefinition)(
2353
2395
  path: "entity.richContent.nodes.cardData.backgroundImage.media.duration"
2354
2396
  },
2355
2397
  { path: "entity.richContent.nodes.tocData.fontSize" },
2356
- { path: "entity.richContent.nodes.tocData.itemSpacing" }
2398
+ { path: "entity.richContent.nodes.tocData.itemSpacing" },
2399
+ {
2400
+ path: "entity.richContent.nodes.smartBlockCellData.shape.duration"
2401
+ }
2357
2402
  ]
2358
2403
  },
2359
2404
  {
2360
2405
  transformFn: import_video_v22.transformRESTVideoV2ToSDKVideoV2,
2361
2406
  paths: [{ path: "entity.media.wixMedia.videoV2" }]
2362
2407
  }
2363
- ]),
2364
- ["entity.rich_content"]
2408
+ ])
2365
2409
  )
2366
2410
  )();
2367
2411
 
@@ -2402,6 +2446,7 @@ var onPostUpdated2 = (0, import_event_definition_modules.createEventModule)(onPo
2402
2446
  BannerOrigin,
2403
2447
  ButtonDataType,
2404
2448
  CardDataBackgroundType,
2449
+ ColumnSize,
2405
2450
  Crop,
2406
2451
  DecorationType,
2407
2452
  DesignTarget,
@@ -2441,6 +2486,7 @@ var onPostUpdated2 = (0, import_event_definition_modules.createEventModule)(onPo
2441
2486
  Resizing,
2442
2487
  ResponsivenessBehaviour,
2443
2488
  Scaling,
2489
+ SmartBlockDataType,
2444
2490
  SortOrder,
2445
2491
  Source,
2446
2492
  Status,