@quintype/arrow 3.54.1-debug-full-bleed.4 → 3.54.1-version-upgrade.1

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 (648) hide show
  1. package/.babelrc +12 -0
  2. package/.circleci/config.yml +43 -0
  3. package/.eslintrc.json +35 -0
  4. package/.prettierrc +6 -0
  5. package/.storybook/addons.js +4 -0
  6. package/.storybook/main.js +7 -0
  7. package/.storybook/preview.js +3 -0
  8. package/.storybook/webpack.config.js +8 -0
  9. package/.stylelintrc +10 -0
  10. package/.vscode/extensions.json +16 -0
  11. package/.vscode/settings.json +12 -0
  12. package/CHANGELOG.md +2578 -0
  13. package/__mocks__/fileMock.js +1 -0
  14. package/__mocks__/styleMock.js +1 -0
  15. package/assets/stylesheets/mixins.scss +35 -0
  16. package/assets/stylesheets/reset.scss +148 -0
  17. package/assets/stylesheets/viewports.m.css +3 -0
  18. package/bin-dev-scripts/prepublish.sh +11 -0
  19. package/bin-dev-scripts/sync-to.sh +13 -0
  20. package/jest.config.json +14 -0
  21. package/package.json +138 -1
  22. package/publish +24 -0
  23. package/rollup.js +202 -0
  24. package/setupTests.js +3 -0
  25. package/src/components/Atoms/AdPlaceholder/ads.m.css +13 -0
  26. package/src/components/Atoms/AdPlaceholder/index.js +25 -0
  27. package/src/components/Atoms/AudioPlayer/PlayerBase.js +150 -0
  28. package/src/components/Atoms/AudioPlayer/PlayerControls.js +155 -0
  29. package/src/components/Atoms/AudioPlayer/ProgressBar.js +24 -0
  30. package/src/components/Atoms/AudioPlayer/audio.m.css +201 -0
  31. package/src/components/Atoms/AudioPlayer/index.js +59 -0
  32. package/src/components/Atoms/AudioPlayer/progressbar.m.css +48 -0
  33. package/src/components/Atoms/Author/README.md +19 -0
  34. package/src/components/Atoms/Author/author.m.css +62 -0
  35. package/src/components/Atoms/Author/index.js +112 -0
  36. package/src/components/Atoms/Author/stories.js +23 -0
  37. package/src/components/Atoms/AuthorCard/README.md +55 -0
  38. package/src/components/Atoms/AuthorCard/author-card.m.css +224 -0
  39. package/src/components/Atoms/AuthorCard/author-card.test.js +97 -0
  40. package/src/components/Atoms/AuthorCard/index.js +312 -0
  41. package/src/components/Atoms/AuthorCard/stories.js +164 -0
  42. package/src/components/Atoms/AuthorImage/README.md +31 -0
  43. package/src/components/Atoms/AuthorImage/author-image.m.css +53 -0
  44. package/src/components/Atoms/AuthorImage/index.js +62 -0
  45. package/src/components/Atoms/AuthorImage/stories.js +20 -0
  46. package/src/components/Atoms/AuthorWithTimestamp/README.md +12 -0
  47. package/src/components/Atoms/AuthorWithTimestamp/author-with-timestamp.m.css +40 -0
  48. package/src/components/Atoms/AuthorWithTimestamp/index.js +115 -0
  49. package/src/components/Atoms/AuthorWithTimestamp/stories.js +27 -0
  50. package/src/components/Atoms/BulletPoint/README.md +9 -0
  51. package/src/components/Atoms/BulletPoint/bullet-point.m.css +25 -0
  52. package/src/components/Atoms/BulletPoint/index.js +19 -0
  53. package/src/components/Atoms/BulletPoint/stories.js +6 -0
  54. package/src/components/Atoms/CaptionAttribution/README.md +15 -0
  55. package/src/components/Atoms/CaptionAttribution/caption-attribution.m.css +40 -0
  56. package/src/components/Atoms/CaptionAttribution/caption-attribution.test.js +29 -0
  57. package/src/components/Atoms/CaptionAttribution/index.js +40 -0
  58. package/src/components/Atoms/CaptionAttribution/stories.js +40 -0
  59. package/src/components/Atoms/CollectionName/README.md +11 -0
  60. package/src/components/Atoms/CollectionName/collection-name.m.css +106 -0
  61. package/src/components/Atoms/CollectionName/index.js +147 -0
  62. package/src/components/Atoms/CollectionName/stories.js +52 -0
  63. package/src/components/Atoms/Divider/__snapshots__/divider.test.js.snap +18 -0
  64. package/src/components/Atoms/Divider/divider.m.css +6 -0
  65. package/src/components/Atoms/Divider/divider.test.js +10 -0
  66. package/src/components/Atoms/Divider/index.js +20 -0
  67. package/src/components/Atoms/Dot/dot.js +20 -0
  68. package/src/components/Atoms/Dot/dot.m.css +6 -0
  69. package/src/components/Atoms/ExtendedLoadMore/README.md +9 -0
  70. package/src/components/Atoms/ExtendedLoadMore/__snapshots__/extended-load-more.test.js.snap +11 -0
  71. package/src/components/Atoms/ExtendedLoadMore/extended-load-more.test.js +19 -0
  72. package/src/components/Atoms/ExtendedLoadMore/index.js +114 -0
  73. package/src/components/Atoms/FallbackImage/fallback.m.css +33 -0
  74. package/src/components/Atoms/FallbackImage/index.js +39 -0
  75. package/src/components/Atoms/Headline/README.md +7 -0
  76. package/src/components/Atoms/Headline/headline.m.css +67 -0
  77. package/src/components/Atoms/Headline/index.js +112 -0
  78. package/src/components/Atoms/Headline/stories.js +52 -0
  79. package/src/components/Atoms/HeroImage/README.md +13 -0
  80. package/src/components/Atoms/HeroImage/hero-image.m.css +99 -0
  81. package/src/components/Atoms/HeroImage/index.js +293 -0
  82. package/src/components/Atoms/HeroImage/stories.js +22 -0
  83. package/src/components/Atoms/Hyperlink/hyperlink.m.css +10 -0
  84. package/src/components/Atoms/Hyperlink/index.js +24 -0
  85. package/src/components/Atoms/LoadMoreTarget/index.js +30 -0
  86. package/src/components/Atoms/LoadMoreTarget/load-more-target.m.css +7 -0
  87. package/src/components/Atoms/Loadmore/README.md +0 -0
  88. package/src/components/Atoms/Loadmore/__snapshots__/load-more.test.js.snap +25 -0
  89. package/src/components/Atoms/Loadmore/index.js +54 -0
  90. package/src/components/Atoms/Loadmore/load-more.m.css +23 -0
  91. package/src/components/Atoms/Loadmore/load-more.test.js +30 -0
  92. package/src/components/Atoms/Loadmore/stories.js +17 -0
  93. package/src/components/Atoms/MagazineCoverImage/README.md +21 -0
  94. package/src/components/Atoms/MagazineCoverImage/index.js +73 -0
  95. package/src/components/Atoms/MagazineCoverImage/magazine-cover-image.m.css +24 -0
  96. package/src/components/Atoms/MagazineCoverImage/stories.js +21 -0
  97. package/src/components/Atoms/PremiumStoryIcon/index.js +27 -0
  98. package/src/components/Atoms/PublishDetail/README.md +15 -0
  99. package/src/components/Atoms/PublishDetail/index.js +105 -0
  100. package/src/components/Atoms/PublishDetail/publish-details.m.css +53 -0
  101. package/src/components/Atoms/PublishDetail/publish-details.test.js +35 -0
  102. package/src/components/Atoms/PublishDetail/stories.js +22 -0
  103. package/src/components/Atoms/ReadTime/README.md +13 -0
  104. package/src/components/Atoms/ReadTime/index.js +59 -0
  105. package/src/components/Atoms/ReadTime/read-time.m.css +25 -0
  106. package/src/components/Atoms/ReadTime/read-time.test.js +27 -0
  107. package/src/components/Atoms/ReadTime/stories.js +19 -0
  108. package/src/components/Atoms/ResponsiveImg/index.js +174 -0
  109. package/src/components/Atoms/ScrollSnap/SliderArrow/index.js +67 -0
  110. package/src/components/Atoms/ScrollSnap/SliderArrow/slider-arrow.m.css +45 -0
  111. package/src/components/Atoms/ScrollSnap/SliderIndicator/index.js +41 -0
  112. package/src/components/Atoms/ScrollSnap/SliderIndicator/slider-indicator.m.css +71 -0
  113. package/src/components/Atoms/ScrollSnap/index.js +179 -0
  114. package/src/components/Atoms/ScrollSnap/scroll-snap.m.css +26 -0
  115. package/src/components/Atoms/SectionTag/README.md +11 -0
  116. package/src/components/Atoms/SectionTag/index.js +74 -0
  117. package/src/components/Atoms/SectionTag/section.m.css +53 -0
  118. package/src/components/Atoms/SectionTag/stories.js +26 -0
  119. package/src/components/Atoms/SocialSharePopup/README.md +25 -0
  120. package/src/components/Atoms/SocialSharePopup/__snapshots__/social-share-popup.test.js.snap +259 -0
  121. package/src/components/Atoms/SocialSharePopup/index.js +122 -0
  122. package/src/components/Atoms/SocialSharePopup/social-share-popup.m.css +287 -0
  123. package/src/components/Atoms/SocialSharePopup/social-share-popup.test.js +101 -0
  124. package/src/components/Atoms/SocialSharePopup/stories.js +19 -0
  125. package/src/components/Atoms/SponsoredLabel/index.js +52 -0
  126. package/src/components/Atoms/SponsoredLabel/sponsored-lable.m.css +17 -0
  127. package/src/components/Atoms/StoryDemarcationIcon/index.js +127 -0
  128. package/src/components/Atoms/StoryElements/AISummary/ai-icons.js +51 -0
  129. package/src/components/Atoms/StoryElements/AISummary/ai-summary.m.css +106 -0
  130. package/src/components/Atoms/StoryElements/AISummary/index.js +206 -0
  131. package/src/components/Atoms/StoryElements/AISummary/stories.js +27 -0
  132. package/src/components/Atoms/StoryElements/AlsoRead/README.md +49 -0
  133. package/src/components/Atoms/StoryElements/AlsoRead/also-read.m.css +133 -0
  134. package/src/components/Atoms/StoryElements/AlsoRead/also-read.test.js +83 -0
  135. package/src/components/Atoms/StoryElements/AlsoRead/index.js +126 -0
  136. package/src/components/Atoms/StoryElements/AlsoRead/stories.js +40 -0
  137. package/src/components/Atoms/StoryElements/Attachment/README.md +21 -0
  138. package/src/components/Atoms/StoryElements/Attachment/__snapshots__/attachment.test.js.snap +47 -0
  139. package/src/components/Atoms/StoryElements/Attachment/attachment.m.css +127 -0
  140. package/src/components/Atoms/StoryElements/Attachment/attachment.test.js +39 -0
  141. package/src/components/Atoms/StoryElements/Attachment/index.js +63 -0
  142. package/src/components/Atoms/StoryElements/Attachment/stories.js +48 -0
  143. package/src/components/Atoms/StoryElements/BigFact/README.md +9 -0
  144. package/src/components/Atoms/StoryElements/BigFact/big-fact.m.css +41 -0
  145. package/src/components/Atoms/StoryElements/BigFact/big-fact.test.js +21 -0
  146. package/src/components/Atoms/StoryElements/BigFact/index.js +33 -0
  147. package/src/components/Atoms/StoryElements/BigFact/stories.js +9 -0
  148. package/src/components/Atoms/StoryElements/BlockQuote/README.md +49 -0
  149. package/src/components/Atoms/StoryElements/BlockQuote/Svg/curve.js +27 -0
  150. package/src/components/Atoms/StoryElements/BlockQuote/Svg/edge.js +27 -0
  151. package/src/components/Atoms/StoryElements/BlockQuote/Svg/icon.m.css +11 -0
  152. package/src/components/Atoms/StoryElements/BlockQuote/block-quote.m.css +170 -0
  153. package/src/components/Atoms/StoryElements/BlockQuote/block-quote.test.js +48 -0
  154. package/src/components/Atoms/StoryElements/BlockQuote/index.js +82 -0
  155. package/src/components/Atoms/StoryElements/BlockQuote/stories.js +35 -0
  156. package/src/components/Atoms/StoryElements/Blurb/README.md +43 -0
  157. package/src/components/Atoms/StoryElements/Blurb/blurb.m.css +56 -0
  158. package/src/components/Atoms/StoryElements/Blurb/blurb.test.js +71 -0
  159. package/src/components/Atoms/StoryElements/Blurb/index.js +50 -0
  160. package/src/components/Atoms/StoryElements/Blurb/stories.js +28 -0
  161. package/src/components/Atoms/StoryElements/Image/README.md +13 -0
  162. package/src/components/Atoms/StoryElements/Image/image.m.css +21 -0
  163. package/src/components/Atoms/StoryElements/Image/image.test.js +20 -0
  164. package/src/components/Atoms/StoryElements/Image/index.js +76 -0
  165. package/src/components/Atoms/StoryElements/Image/stories.js +25 -0
  166. package/src/components/Atoms/StoryElements/ImageSlideshow/README.md +13 -0
  167. package/src/components/Atoms/StoryElements/ImageSlideshow/image-slideshow.m.css +63 -0
  168. package/src/components/Atoms/StoryElements/ImageSlideshow/index.js +101 -0
  169. package/src/components/Atoms/StoryElements/ImageSlideshow/stories.js +34 -0
  170. package/src/components/Atoms/StoryElements/QuestionAnswer/README.md +56 -0
  171. package/src/components/Atoms/StoryElements/QuestionAnswer/index.js +150 -0
  172. package/src/components/Atoms/StoryElements/QuestionAnswer/question-answer.m.css +185 -0
  173. package/src/components/Atoms/StoryElements/QuestionAnswer/question-answer.test.js +74 -0
  174. package/src/components/Atoms/StoryElements/QuestionAnswer/stories.js +79 -0
  175. package/src/components/Atoms/StoryElements/Quote/README.md +41 -0
  176. package/src/components/Atoms/StoryElements/Quote/index.js +45 -0
  177. package/src/components/Atoms/StoryElements/Quote/quote.m.css +125 -0
  178. package/src/components/Atoms/StoryElements/Quote/quote.test.js +58 -0
  179. package/src/components/Atoms/StoryElements/Quote/stories.js +28 -0
  180. package/src/components/Atoms/StoryElements/Reference/README.md +9 -0
  181. package/src/components/Atoms/StoryElements/Reference/index.js +52 -0
  182. package/src/components/Atoms/StoryElements/Reference/reference.m.css +42 -0
  183. package/src/components/Atoms/StoryElements/Reference/reference.test.js +28 -0
  184. package/src/components/Atoms/StoryElements/Reference/stories.js +18 -0
  185. package/src/components/Atoms/StoryElements/StoryElement/README.md +10 -0
  186. package/src/components/Atoms/StoryElements/StoryElement/index.js +35 -0
  187. package/src/components/Atoms/StoryElements/StoryElement/stories.js +20 -0
  188. package/src/components/Atoms/StoryElements/StoryElement/storyElement.m.css +23 -0
  189. package/src/components/Atoms/StoryElements/StoryElement/storyelement.test.js +13 -0
  190. package/src/components/Atoms/StoryElements/Summary/README.md +56 -0
  191. package/src/components/Atoms/StoryElements/Summary/index.js +67 -0
  192. package/src/components/Atoms/StoryElements/Summary/stories.js +33 -0
  193. package/src/components/Atoms/StoryElements/Summary/summary.m.css +169 -0
  194. package/src/components/Atoms/StoryElements/Summary/summary.test.js +50 -0
  195. package/src/components/Atoms/StoryElements/Text/README.md +32 -0
  196. package/src/components/Atoms/StoryElements/Text/index.js +40 -0
  197. package/src/components/Atoms/StoryElements/Text/stories.js +32 -0
  198. package/src/components/Atoms/StoryElements/Text/text.m.css +88 -0
  199. package/src/components/Atoms/StoryElements/Text/text.test.js +42 -0
  200. package/src/components/Atoms/StoryElements/Video/README.md +9 -0
  201. package/src/components/Atoms/StoryElements/Video/index.js +46 -0
  202. package/src/components/Atoms/StoryElements/Video/stories.js +24 -0
  203. package/src/components/Atoms/StoryElements/Video/video.m.css +142 -0
  204. package/src/components/Atoms/StoryElements/Video/video.test.js +19 -0
  205. package/src/components/Atoms/StoryElements/imageGallery/README.md +18 -0
  206. package/src/components/Atoms/StoryElements/imageGallery/image-gallery.m.css +52 -0
  207. package/src/components/Atoms/StoryElements/imageGallery/image-gallery.test.js +19 -0
  208. package/src/components/Atoms/StoryElements/imageGallery/index.js +79 -0
  209. package/src/components/Atoms/StoryElements/imageGallery/stories.js +23 -0
  210. package/src/components/Atoms/StoryElements/withElementWrapper.js +13 -0
  211. package/src/components/Atoms/StoryElements/withElementWrapper.test.js +31 -0
  212. package/src/components/Atoms/StoryHeadline/index.js +56 -0
  213. package/src/components/Atoms/StoryHeadline/story-headline.m.css +36 -0
  214. package/src/components/Atoms/StoryReview/README.md +9 -0
  215. package/src/components/Atoms/StoryReview/index.js +39 -0
  216. package/src/components/Atoms/StoryReview/stories.js +8 -0
  217. package/src/components/Atoms/StoryReview/story-review.m.css +34 -0
  218. package/src/components/Atoms/StoryTags/README.md +9 -0
  219. package/src/components/Atoms/StoryTags/index.js +33 -0
  220. package/src/components/Atoms/StoryTags/stories.js +25 -0
  221. package/src/components/Atoms/StoryTags/story-tags.test.js +18 -0
  222. package/src/components/Atoms/StoryTags/tags.m.css +42 -0
  223. package/src/components/Atoms/Subheadline/README.md +17 -0
  224. package/src/components/Atoms/Subheadline/index.js +54 -0
  225. package/src/components/Atoms/Subheadline/stories.js +12 -0
  226. package/src/components/Atoms/Subheadline/subheadline.m.css +17 -0
  227. package/src/components/Atoms/TimeStamp/README.md +9 -0
  228. package/src/components/Atoms/TimeStamp/index.js +83 -0
  229. package/src/components/Atoms/TimeStamp/stories.js +9 -0
  230. package/src/components/Atoms/TimeStamp/timestamp.m.css +21 -0
  231. package/src/components/Fixture/config.json +2703 -0
  232. package/src/components/Fixture/dummy-collection.js +2790 -0
  233. package/src/components/Fixture/dummyStory.js +2368 -0
  234. package/src/components/Fixture/index.js +425 -0
  235. package/src/components/Fixture/slot-config.js +29 -0
  236. package/src/components/Fixture/timezone.js +1 -0
  237. package/src/components/Molecules/FollowUs/README.md +17 -0
  238. package/src/components/Molecules/FollowUs/follow-us.m.css +99 -0
  239. package/src/components/Molecules/FollowUs/index.js +97 -0
  240. package/src/components/Molecules/FollowUs/stories.js +9 -0
  241. package/src/components/Molecules/FullScreenImages/fullscreenimages.scss +56 -0
  242. package/src/components/Molecules/FullScreenImages/index.js +98 -0
  243. package/src/components/Molecules/KeyEvents/README.md +21 -0
  244. package/src/components/Molecules/KeyEvents/index.js +132 -0
  245. package/src/components/Molecules/KeyEvents/key-events.m.css +103 -0
  246. package/src/components/Molecules/KeyEvents/stories.js +28 -0
  247. package/src/components/Molecules/PageIntroductionCard/README.md +25 -0
  248. package/src/components/Molecules/PageIntroductionCard/index.js +50 -0
  249. package/src/components/Molecules/PageIntroductionCard/page-intro-card.m.css +61 -0
  250. package/src/components/Molecules/PageIntroductionCard/stories.js +16 -0
  251. package/src/components/Molecules/PortraitStoryCard/README.md +10 -0
  252. package/src/components/Molecules/PortraitStoryCard/index.js +54 -0
  253. package/src/components/Molecules/PortraitStoryCard/portrait-story-card.m.css +42 -0
  254. package/src/components/Molecules/PortraitStoryCard/stories.js +24 -0
  255. package/src/components/Molecules/SliderHorizontalCard/README.md +14 -0
  256. package/src/components/Molecules/SliderHorizontalCard/index.js +44 -0
  257. package/src/components/Molecules/SliderHorizontalCard/slider-horizontal-card.m.css +42 -0
  258. package/src/components/Molecules/SliderHorizontalCard/stories.js +30 -0
  259. package/src/components/Molecules/SocialShareTemplate/README.md +118 -0
  260. package/src/components/Molecules/SocialShareTemplate/__snapshots__/social-share-template.test.js.snap +285 -0
  261. package/src/components/Molecules/SocialShareTemplate/index.js +299 -0
  262. package/src/components/Molecules/SocialShareTemplate/social-share-data.js +205 -0
  263. package/src/components/Molecules/SocialShareTemplate/social-share-template.m.css +340 -0
  264. package/src/components/Molecules/SocialShareTemplate/social-share-template.test.js +147 -0
  265. package/src/components/Molecules/SocialShareTemplate/stories.js +45 -0
  266. package/src/components/Molecules/StoryCard/README.md +75 -0
  267. package/src/components/Molecules/StoryCard/READMEBGIMAGE.md +25 -0
  268. package/src/components/Molecules/StoryCard/READMEBORDER.md +61 -0
  269. package/src/components/Molecules/StoryCard/index.js +248 -0
  270. package/src/components/Molecules/StoryCard/stories.js +223 -0
  271. package/src/components/Molecules/StoryCard/storycard.m.css +197 -0
  272. package/src/components/Molecules/StoryCardWithBulletPoint/README.md +9 -0
  273. package/src/components/Molecules/StoryCardWithBulletPoint/index.js +33 -0
  274. package/src/components/Molecules/StoryCardWithBulletPoint/stories.js +31 -0
  275. package/src/components/Molecules/StoryCardWithBulletPoint/story-card-with-bullet-point.m.css +7 -0
  276. package/src/components/Molecules/StoryElementCard/README.md +9 -0
  277. package/src/components/Molecules/StoryElementCard/index.js +511 -0
  278. package/src/components/Molecules/StoryElementCard/stories.js +27 -0
  279. package/src/components/Molecules/StoryElementCard/story-element-card.m.css +102 -0
  280. package/src/components/Molecules/StorycardContent/README.md +34 -0
  281. package/src/components/Molecules/StorycardContent/index.js +85 -0
  282. package/src/components/Molecules/StorycardContent/stories.js +39 -0
  283. package/src/components/Molecules/StorycardContent/storycardContent.m.css +27 -0
  284. package/src/components/Rows/AlternateCollectionFilter/README.md +38 -0
  285. package/src/components/Rows/AlternateCollectionFilter/alternate-collection-filter.m.css +254 -0
  286. package/src/components/Rows/AlternateCollectionFilter/index.js +179 -0
  287. package/src/components/Rows/AlternateCollectionFilter/stories.js +74 -0
  288. package/src/components/Rows/AsideCollection/README.md +27 -0
  289. package/src/components/Rows/AsideCollection/aside-collection.m.css +125 -0
  290. package/src/components/Rows/AsideCollection/aside-collection.test.js +34 -0
  291. package/src/components/Rows/AsideCollection/index.js +247 -0
  292. package/src/components/Rows/AsideCollection/stories.js +52 -0
  293. package/src/components/Rows/AstrologyCollection/README.md +40 -0
  294. package/src/components/Rows/AstrologyCollection/astrology-collection.m.css +173 -0
  295. package/src/components/Rows/AstrologyCollection/index.js +176 -0
  296. package/src/components/Rows/AstrologyCollection/stories.js +60 -0
  297. package/src/components/Rows/AuthorIntroductionCard/README.md +43 -0
  298. package/src/components/Rows/AuthorIntroductionCard/author-intro.m.css +334 -0
  299. package/src/components/Rows/AuthorIntroductionCard/author-intro.test.js +106 -0
  300. package/src/components/Rows/AuthorIntroductionCard/index.js +126 -0
  301. package/src/components/Rows/AuthorIntroductionCard/stories.js +43 -0
  302. package/src/components/Rows/AuthorsList/README.md +24 -0
  303. package/src/components/Rows/AuthorsList/author-list.test.js +50 -0
  304. package/src/components/Rows/AuthorsList/authors-list.m.css +22 -0
  305. package/src/components/Rows/AuthorsList/index.js +48 -0
  306. package/src/components/Rows/AuthorsList/stories.js +61 -0
  307. package/src/components/Rows/CollectionFilter/README.md +39 -0
  308. package/src/components/Rows/CollectionFilter/collection-filter.m.css +213 -0
  309. package/src/components/Rows/CollectionFilter/index.js +240 -0
  310. package/src/components/Rows/CollectionFilter/stories.js +77 -0
  311. package/src/components/Rows/ElevenStories/11-stories.m.css +85 -0
  312. package/src/components/Rows/ElevenStories/README.md +39 -0
  313. package/src/components/Rows/ElevenStories/index.js +338 -0
  314. package/src/components/Rows/ElevenStories/stories.js +70 -0
  315. package/src/components/Rows/FourColFiveStories/README.md +37 -0
  316. package/src/components/Rows/FourColFiveStories/four-col-five-stories.m.css +115 -0
  317. package/src/components/Rows/FourColFiveStories/index.js +170 -0
  318. package/src/components/Rows/FourColFiveStories/stories.js +68 -0
  319. package/src/components/Rows/FourColGrid/README.md +39 -0
  320. package/src/components/Rows/FourColGrid/four-col.m.css +50 -0
  321. package/src/components/Rows/FourColGrid/index.js +164 -0
  322. package/src/components/Rows/FourColGrid/stories.js +66 -0
  323. package/src/components/Rows/FourColPortraitStories/README.md +38 -0
  324. package/src/components/Rows/FourColPortraitStories/four-col-portrait-stories.m.css +45 -0
  325. package/src/components/Rows/FourColPortraitStories/index.js +149 -0
  326. package/src/components/Rows/FourColPortraitStories/stories.js +66 -0
  327. package/src/components/Rows/FourColSixteenStories/README.md +35 -0
  328. package/src/components/Rows/FourColSixteenStories/four-col-sixteen-stories.m.css +165 -0
  329. package/src/components/Rows/FourColSixteenStories/index.js +136 -0
  330. package/src/components/Rows/FourColSixteenStories/stories.js +47 -0
  331. package/src/components/Rows/FourColTwelveStory/README.md +39 -0
  332. package/src/components/Rows/FourColTwelveStory/four-col-twelve-story.m.css +80 -0
  333. package/src/components/Rows/FourColTwelveStory/index.js +175 -0
  334. package/src/components/Rows/FourColTwelveStory/stories.js +117 -0
  335. package/src/components/Rows/FourStorySlider/README.md +45 -0
  336. package/src/components/Rows/FourStorySlider/four-story-slider.m.css +78 -0
  337. package/src/components/Rows/FourStorySlider/index.js +128 -0
  338. package/src/components/Rows/FourStorySlider/stories.js +117 -0
  339. package/src/components/Rows/FourStorySliderPortrait/README.md +45 -0
  340. package/src/components/Rows/FourStorySliderPortrait/four-story-slider-portrait.m.css +272 -0
  341. package/src/components/Rows/FourStorySliderPortrait/index.js +128 -0
  342. package/src/components/Rows/FourStorySliderPortrait/stories.js +117 -0
  343. package/src/components/Rows/FourTabbedBigStorySlider/README.md +39 -0
  344. package/src/components/Rows/FourTabbedBigStorySlider/four-tabbed-big-story-slider.m.css +265 -0
  345. package/src/components/Rows/FourTabbedBigStorySlider/index.js +159 -0
  346. package/src/components/Rows/FourTabbedBigStorySlider/stories.js +63 -0
  347. package/src/components/Rows/FullScreenSlider/README.md +46 -0
  348. package/src/components/Rows/FullScreenSlider/full-screen-slider.m.css +162 -0
  349. package/src/components/Rows/FullScreenSlider/index.js +122 -0
  350. package/src/components/Rows/FullScreenSlider/stories.js +115 -0
  351. package/src/components/Rows/HalfScreenSlider/README.md +43 -0
  352. package/src/components/Rows/HalfScreenSlider/half-screen-slider.m.css +80 -0
  353. package/src/components/Rows/HalfScreenSlider/index.js +112 -0
  354. package/src/components/Rows/HalfScreenSlider/stories.js +115 -0
  355. package/src/components/Rows/IntroductionCard/README.md +11 -0
  356. package/src/components/Rows/IntroductionCard/index.js +72 -0
  357. package/src/components/Rows/IntroductionCard/intro-card.module.css +102 -0
  358. package/src/components/Rows/IntroductionCard/stories.js +32 -0
  359. package/src/components/Rows/ListComponent/README.md +48 -0
  360. package/src/components/Rows/ListComponent/index.js +149 -0
  361. package/src/components/Rows/ListComponent/list-component.m.css +65 -0
  362. package/src/components/Rows/ListComponent/stories.js +63 -0
  363. package/src/components/Rows/Listicles/README.md +32 -0
  364. package/src/components/Rows/Listicles/index.js +162 -0
  365. package/src/components/Rows/Listicles/listicles.m.css +149 -0
  366. package/src/components/Rows/Listicles/stories.js +66 -0
  367. package/src/components/Rows/MagazineEditions/README.md +21 -0
  368. package/src/components/Rows/MagazineEditions/index.js +96 -0
  369. package/src/components/Rows/MagazineEditions/magazine-editions.m.css +50 -0
  370. package/src/components/Rows/MagazineEditions/magazine-editions.test.js +33 -0
  371. package/src/components/Rows/MagazineEditions/stories.js +45 -0
  372. package/src/components/Rows/MagazineHeaderCard/README.md +21 -0
  373. package/src/components/Rows/MagazineHeaderCard/index.js +77 -0
  374. package/src/components/Rows/MagazineHeaderCard/magazine-cards.m.css +107 -0
  375. package/src/components/Rows/MagazineHeaderCard/stories.js +36 -0
  376. package/src/components/Rows/MagazineWidget/README.md +21 -0
  377. package/src/components/Rows/MagazineWidget/index.js +132 -0
  378. package/src/components/Rows/MagazineWidget/stories.js +43 -0
  379. package/src/components/Rows/OneColStoryList/README.md +48 -0
  380. package/src/components/Rows/OneColStoryList/index.js +217 -0
  381. package/src/components/Rows/OneColStoryList/one-col-story-list.m.css +91 -0
  382. package/src/components/Rows/OneColStoryList/stories.js +61 -0
  383. package/src/components/Rows/OpinionCollection/README.md +36 -0
  384. package/src/components/Rows/OpinionCollection/index.js +156 -0
  385. package/src/components/Rows/OpinionCollection/opinion-collection.m.css +210 -0
  386. package/src/components/Rows/OpinionCollection/stories.js +82 -0
  387. package/src/components/Rows/SixColSixStories/README.md +39 -0
  388. package/src/components/Rows/SixColSixStories/index.js +182 -0
  389. package/src/components/Rows/SixColSixStories/six-col-six-stories.m.css +92 -0
  390. package/src/components/Rows/SixColSixStories/stories.js +76 -0
  391. package/src/components/Rows/StoryTemplates/EventStoryTemplates/CustomAttributes/custom-attributes.m.css +78 -0
  392. package/src/components/Rows/StoryTemplates/EventStoryTemplates/CustomAttributes/index.js +103 -0
  393. package/src/components/Rows/StoryTemplates/EventStoryTemplates/event-story.m.css +138 -0
  394. package/src/components/Rows/StoryTemplates/EventStoryTemplates/index.js +56 -0
  395. package/src/components/Rows/StoryTemplates/EventStoryTemplates/stories.js +78 -0
  396. package/src/components/Rows/StoryTemplates/EventStoryTemplates/template.js +169 -0
  397. package/src/components/Rows/StoryTemplates/ListicleStoryTemplates/README.md +19 -0
  398. package/src/components/Rows/StoryTemplates/ListicleStoryTemplates/__snapshots__/listicle-story.test.js.snap +841 -0
  399. package/src/components/Rows/StoryTemplates/ListicleStoryTemplates/index.js +477 -0
  400. package/src/components/Rows/StoryTemplates/ListicleStoryTemplates/listicle-story.m.css +285 -0
  401. package/src/components/Rows/StoryTemplates/ListicleStoryTemplates/listicle-story.test.js +47 -0
  402. package/src/components/Rows/StoryTemplates/ListicleStoryTemplates/listicleUtils.js +16 -0
  403. package/src/components/Rows/StoryTemplates/ListicleStoryTemplates/stories.js +125 -0
  404. package/src/components/Rows/StoryTemplates/LiveBlogStoryTemplates/README.md +25 -0
  405. package/src/components/Rows/StoryTemplates/LiveBlogStoryTemplates/index.js +74 -0
  406. package/src/components/Rows/StoryTemplates/LiveBlogStoryTemplates/live-blog.m.css +320 -0
  407. package/src/components/Rows/StoryTemplates/LiveBlogStoryTemplates/stories.js +114 -0
  408. package/src/components/Rows/StoryTemplates/LiveBlogStoryTemplates/templates.js +449 -0
  409. package/src/components/Rows/StoryTemplates/PhotoStoryTemplates/index.js +381 -0
  410. package/src/components/Rows/StoryTemplates/PhotoStoryTemplates/photo-story.test.js +144 -0
  411. package/src/components/Rows/StoryTemplates/PhotoStoryTemplates/photo.m.css +199 -0
  412. package/src/components/Rows/StoryTemplates/PhotoStoryTemplates/stories.js +117 -0
  413. package/src/components/Rows/StoryTemplates/Snapshot/README.md +9 -0
  414. package/src/components/Rows/StoryTemplates/Snapshot/index.js +103 -0
  415. package/src/components/Rows/StoryTemplates/Snapshot/snapshot.m.css +88 -0
  416. package/src/components/Rows/StoryTemplates/Snapshot/stories.js +95 -0
  417. package/src/components/Rows/StoryTemplates/TextStoryTemplates/README.md +49 -0
  418. package/src/components/Rows/StoryTemplates/TextStoryTemplates/index.js +100 -0
  419. package/src/components/Rows/StoryTemplates/TextStoryTemplates/stories.js +120 -0
  420. package/src/components/Rows/StoryTemplates/TextStoryTemplates/templates.js +413 -0
  421. package/src/components/Rows/StoryTemplates/TextStoryTemplates/text-story.m.css +496 -0
  422. package/src/components/Rows/StoryTemplates/TextStoryTemplates/text-story.test.js +222 -0
  423. package/src/components/Rows/StoryTemplates/VideoStoryTemplates/README.md +31 -0
  424. package/src/components/Rows/StoryTemplates/VideoStoryTemplates/index.js +294 -0
  425. package/src/components/Rows/StoryTemplates/VideoStoryTemplates/stories.js +217 -0
  426. package/src/components/Rows/StoryTemplates/VideoStoryTemplates/video-story.m.css +185 -0
  427. package/src/components/Rows/ThreeColFlexStories/README.md +38 -0
  428. package/src/components/Rows/ThreeColFlexStories/index.js +217 -0
  429. package/src/components/Rows/ThreeColFlexStories/stories.js +73 -0
  430. package/src/components/Rows/ThreeColFlexStories/three-col-flex-stories.m.css +58 -0
  431. package/src/components/Rows/ThreeColFourteenStory/README.md +28 -0
  432. package/src/components/Rows/ThreeColFourteenStory/index.js +131 -0
  433. package/src/components/Rows/ThreeColFourteenStory/stories.js +60 -0
  434. package/src/components/Rows/ThreeColFourteenStory/three-col-fourteen-story.m.css +51 -0
  435. package/src/components/Rows/ThreeColGrid/README.md +36 -0
  436. package/src/components/Rows/ThreeColGrid/index.js +177 -0
  437. package/src/components/Rows/ThreeColGrid/stories.js +70 -0
  438. package/src/components/Rows/ThreeColGrid/three-col.m.css +43 -0
  439. package/src/components/Rows/ThreeColSevenStory/README.md +36 -0
  440. package/src/components/Rows/ThreeColSevenStory/index.js +242 -0
  441. package/src/components/Rows/ThreeColSevenStory/stories.js +103 -0
  442. package/src/components/Rows/ThreeColSevenStory/three-col-seven-story.m.css +44 -0
  443. package/src/components/Rows/ThreeColSixStories/README.md +40 -0
  444. package/src/components/Rows/ThreeColSixStories/index.js +183 -0
  445. package/src/components/Rows/ThreeColSixStories/stories.js +73 -0
  446. package/src/components/Rows/ThreeColSixStories/three-col-six-stories.m.css +32 -0
  447. package/src/components/Rows/ThreeColTwelveStories/README.md +41 -0
  448. package/src/components/Rows/ThreeColTwelveStories/index.js +153 -0
  449. package/src/components/Rows/ThreeColTwelveStories/stories.js +51 -0
  450. package/src/components/Rows/ThreeColTwelveStories/three-col-twelve-stories.m.css +105 -0
  451. package/src/components/Rows/TwoColFourStory/README.md +33 -0
  452. package/src/components/Rows/TwoColFourStory/index.js +162 -0
  453. package/src/components/Rows/TwoColFourStory/stories.js +68 -0
  454. package/src/components/Rows/TwoColFourStory/two-col-four-story.m.css +66 -0
  455. package/src/components/Rows/TwoColFourStoryHighlight/README.md +35 -0
  456. package/src/components/Rows/TwoColFourStoryHighlight/index.js +138 -0
  457. package/src/components/Rows/TwoColFourStoryHighlight/stories.js +48 -0
  458. package/src/components/Rows/TwoColFourStoryHighlight/two-col-four-story-highlight.m.css +116 -0
  459. package/src/components/Rows/TwoColSevenStories/README.md +37 -0
  460. package/src/components/Rows/TwoColSevenStories/index.js +150 -0
  461. package/src/components/Rows/TwoColSevenStories/stories.js +100 -0
  462. package/src/components/Rows/TwoColSevenStories/two-col-seven-stories.m.css +182 -0
  463. package/src/components/Rows/TwoColSixStories/README.md +36 -0
  464. package/src/components/Rows/TwoColSixStories/index.js +140 -0
  465. package/src/components/Rows/TwoColSixStories/stories.js +67 -0
  466. package/src/components/Rows/TwoColSixStories/two-col-six-stories.m.css +174 -0
  467. package/src/components/Rows/TwoColTenStoriesSidebar/README.md +34 -0
  468. package/src/components/Rows/TwoColTenStoriesSidebar/index.js +193 -0
  469. package/src/components/Rows/TwoColTenStoriesSidebar/stories.js +45 -0
  470. package/src/components/Rows/TwoColTenStoriesSidebar/two-col-ten-stories-sidebar.m.css +64 -0
  471. package/src/components/Rows/TwoColThreeStory/README.md +40 -0
  472. package/src/components/Rows/TwoColThreeStory/index.js +155 -0
  473. package/src/components/Rows/TwoColThreeStory/stories.js +68 -0
  474. package/src/components/Rows/TwoColThreeStory/two-col-three-story.m.css +36 -0
  475. package/src/components/SharedContext.js +13 -0
  476. package/src/components/Svgs/Loading/loading.js +133 -0
  477. package/src/components/Svgs/Loading/loading.m.css +6 -0
  478. package/src/components/Svgs/SocialIcons/circular-color/copylink.js +22 -0
  479. package/src/components/Svgs/SocialIcons/circular-color/email.js +16 -0
  480. package/src/components/Svgs/SocialIcons/circular-color/facebook.js +23 -0
  481. package/src/components/Svgs/SocialIcons/circular-color/instagram.js +24 -0
  482. package/src/components/Svgs/SocialIcons/circular-color/jio.js +30 -0
  483. package/src/components/Svgs/SocialIcons/circular-color/linkedin.js +16 -0
  484. package/src/components/Svgs/SocialIcons/circular-color/pinterest.js +16 -0
  485. package/src/components/Svgs/SocialIcons/circular-color/reddit.js +27 -0
  486. package/src/components/Svgs/SocialIcons/circular-color/telegram.js +16 -0
  487. package/src/components/Svgs/SocialIcons/circular-color/tiktok.js +40 -0
  488. package/src/components/Svgs/SocialIcons/circular-color/twitter.js +22 -0
  489. package/src/components/Svgs/SocialIcons/circular-color/whatsapp.js +18 -0
  490. package/src/components/Svgs/SocialIcons/circular-color/youtube.js +16 -0
  491. package/src/components/Svgs/SocialIcons/circular-plain/copylink.js +19 -0
  492. package/src/components/Svgs/SocialIcons/circular-plain/email.js +19 -0
  493. package/src/components/Svgs/SocialIcons/circular-plain/facebook.js +29 -0
  494. package/src/components/Svgs/SocialIcons/circular-plain/instagram.js +21 -0
  495. package/src/components/Svgs/SocialIcons/circular-plain/linkedin.js +21 -0
  496. package/src/components/Svgs/SocialIcons/circular-plain/reddit.js +33 -0
  497. package/src/components/Svgs/SocialIcons/circular-plain/telegram.js +22 -0
  498. package/src/components/Svgs/SocialIcons/circular-plain/twitter.js +21 -0
  499. package/src/components/Svgs/SocialIcons/circular-plain/whatsapp.js +23 -0
  500. package/src/components/Svgs/SocialIcons/circular-plain/youtube.js +17 -0
  501. package/src/components/Svgs/SocialIcons/plain/copylink.js +17 -0
  502. package/src/components/Svgs/SocialIcons/plain/email.js +23 -0
  503. package/src/components/Svgs/SocialIcons/plain/facebook.js +21 -0
  504. package/src/components/Svgs/SocialIcons/plain/google-news.js +26 -0
  505. package/src/components/Svgs/SocialIcons/plain/instagram.js +17 -0
  506. package/src/components/Svgs/SocialIcons/plain/linkedin.js +17 -0
  507. package/src/components/Svgs/SocialIcons/plain/pinterest.js +19 -0
  508. package/src/components/Svgs/SocialIcons/plain/reddit.js +25 -0
  509. package/src/components/Svgs/SocialIcons/plain/twitter.js +17 -0
  510. package/src/components/Svgs/SocialIcons/plain/whatsapp.js +19 -0
  511. package/src/components/Svgs/SocialIcons/plain/youtube.js +17 -0
  512. package/src/components/Svgs/SocialIcons/square/copylink.js +19 -0
  513. package/src/components/Svgs/SocialIcons/square/email.js +13 -0
  514. package/src/components/Svgs/SocialIcons/square/facebook.js +20 -0
  515. package/src/components/Svgs/SocialIcons/square/instagram.js +17 -0
  516. package/src/components/Svgs/SocialIcons/square/linkedin.js +13 -0
  517. package/src/components/Svgs/SocialIcons/square/reddit.js +24 -0
  518. package/src/components/Svgs/SocialIcons/square/telegram.js +13 -0
  519. package/src/components/Svgs/SocialIcons/square/twitter.js +19 -0
  520. package/src/components/Svgs/SocialIcons/square/whatsapp.js +15 -0
  521. package/src/components/Svgs/SocialIcons/square/youtube.js +13 -0
  522. package/src/components/Svgs/TTS-Icons/AudioSpeakerIcon.js +14 -0
  523. package/src/components/Svgs/TTS-Icons/BackwardIconSvg.js +13 -0
  524. package/src/components/Svgs/TTS-Icons/ClosePlayerIconSvg.js +13 -0
  525. package/src/components/Svgs/TTS-Icons/ForwordIconSvg.js +13 -0
  526. package/src/components/Svgs/TTS-Icons/PauseIconSvg.js +13 -0
  527. package/src/components/Svgs/TTS-Icons/PlayIconSvg.js +15 -0
  528. package/src/components/Svgs/TTS-Icons/ReplayIcon.js +16 -0
  529. package/src/components/Svgs/back-arrow.js +22 -0
  530. package/src/components/Svgs/calender.js +20 -0
  531. package/src/components/Svgs/caret-right.svg +3 -0
  532. package/src/components/Svgs/clock-icon.js +17 -0
  533. package/src/components/Svgs/close-icon.js +15 -0
  534. package/src/components/Svgs/crown.js +31 -0
  535. package/src/components/Svgs/fallbackImage.js +42 -0
  536. package/src/components/Svgs/hyperlink.js +17 -0
  537. package/src/components/Svgs/key.js +33 -0
  538. package/src/components/Svgs/large-share-icon.js +64 -0
  539. package/src/components/Svgs/left-arrow.js +17 -0
  540. package/src/components/Svgs/liveicon.js +14 -0
  541. package/src/components/Svgs/location.js +19 -0
  542. package/src/components/Svgs/lock.js +31 -0
  543. package/src/components/Svgs/photo-icons.js +84 -0
  544. package/src/components/Svgs/right-arrow.js +17 -0
  545. package/src/components/Svgs/share-icon.js +66 -0
  546. package/src/components/Svgs/star.js +33 -0
  547. package/src/components/Svgs/user-fallback-icon.js +19 -0
  548. package/src/components/Svgs/video-icons.js +104 -0
  549. package/src/components/Svgs/visual-story-icons.js +77 -0
  550. package/src/components/Typography/README.md +7 -0
  551. package/src/components/Typography/index.js +47 -0
  552. package/src/components/Typography/stories.js +10 -0
  553. package/src/components/Typography/style.m.css +11 -0
  554. package/src/constants.js +2 -0
  555. package/src/entry-points.js +373 -0
  556. package/src/guide/stories.js +18 -0
  557. package/src/hydration-component/index.js +37 -0
  558. package/src/hydration-component/useNearScreen.js +56 -0
  559. package/src/index.js +99 -0
  560. package/src/utils/copy-link.js +37 -0
  561. package/src/utils/dateFnsLocales.js +9 -0
  562. package/src/utils/img-size-utils.js +102 -0
  563. package/src/utils/testing-utils.js +8 -0
  564. package/src/utils/utils.js +615 -0
  565. package/src/utils/utils.test.js +108 -0
  566. package/storybook/index.js +83 -0
  567. package/AlsoRead/styles.arrow.css +0 -1
  568. package/AlternateCollectionFilter/styles.arrow.css +0 -1
  569. package/AsideCollection/styles.arrow.css +0 -1
  570. package/AstrologyCollection/styles.arrow.css +0 -1
  571. package/Attachment/styles.arrow.css +0 -1
  572. package/Author/styles.arrow.css +0 -1
  573. package/AuthorIntroductionCard/styles.arrow.css +0 -1
  574. package/AuthorWithTime/styles.arrow.css +0 -1
  575. package/AuthorsList/styles.arrow.css +0 -1
  576. package/BigFact/styles.arrow.css +0 -1
  577. package/BlockQuote/styles.arrow.css +0 -1
  578. package/Blurb/styles.arrow.css +0 -1
  579. package/CollectionFilter/styles.arrow.css +0 -1
  580. package/CollectionName/styles.arrow.css +0 -1
  581. package/ElevenStories/styles.arrow.css +0 -1
  582. package/EventStoryTemplate/styles.arrow.css +0 -1
  583. package/FollowUs/styles.arrow.css +0 -1
  584. package/FourColFiveStories/styles.arrow.css +0 -1
  585. package/FourColGrid/styles.arrow.css +0 -1
  586. package/FourColPortraitStories/styles.arrow.css +0 -1
  587. package/FourColSixteenStories/styles.arrow.css +0 -1
  588. package/FourColTwelveStories/styles.arrow.css +0 -1
  589. package/FourStorySlider/styles.arrow.css +0 -1
  590. package/FourStorySliderPortrait/styles.arrow.css +0 -1
  591. package/FourTabbedBigStorySlider/styles.arrow.css +0 -1
  592. package/FullScreenSlider/styles.arrow.css +0 -1
  593. package/HalfScreenSlider/styles.arrow.css +0 -1
  594. package/Headline/styles.arrow.css +0 -1
  595. package/HeroImage/styles.arrow.css +0 -1
  596. package/Image/styles.arrow.css +0 -1
  597. package/ImageGallery/styles.arrow.css +0 -1
  598. package/ImageSlideshow/styles.arrow.css +0 -1
  599. package/IntroductionCard/styles.arrow.css +0 -1
  600. package/KeyEvents/styles.arrow.css +0 -1
  601. package/ListComponent/styles.arrow.css +0 -1
  602. package/ListicleStoryTemplate/styles.arrow.css +0 -1
  603. package/Listicles/styles.arrow.css +0 -1
  604. package/LiveBlogStoryTemplate/styles.arrow.css +0 -1
  605. package/LoadmoreButton/styles.arrow.css +0 -1
  606. package/MagazineEditions/styles.arrow.css +0 -1
  607. package/MagazineHeaderCard/styles.arrow.css +0 -1
  608. package/MagazineWidget/styles.arrow.css +0 -1
  609. package/OneColStoryList/styles.arrow.css +0 -1
  610. package/OpinionCollection/styles.arrow.css +0 -1
  611. package/PageIntroductionCard/styles.arrow.css +0 -1
  612. package/PhotoStoryTemplate/styles.arrow.css +0 -1
  613. package/PublishDetails/styles.arrow.css +0 -1
  614. package/QuestionAnswer/styles.arrow.css +0 -1
  615. package/Quote/styles.arrow.css +0 -1
  616. package/Reference/styles.arrow.css +0 -1
  617. package/ScrollSnap/styles.arrow.css +0 -1
  618. package/SectionTag/styles.arrow.css +0 -1
  619. package/SixColSixStories/styles.arrow.css +0 -1
  620. package/Snapshot/styles.arrow.css +0 -1
  621. package/SocialShareTemplate/styles.arrow.css +0 -1
  622. package/StoryCard/styles.arrow.css +0 -1
  623. package/StoryCollection/styles.arrow.css +0 -1
  624. package/StoryElement/styles.arrow.css +0 -1
  625. package/StoryElementCard/styles.arrow.css +0 -1
  626. package/StorycardContent/styles.arrow.css +0 -1
  627. package/Subheadline/styles.arrow.css +0 -1
  628. package/Summary/styles.arrow.css +0 -1
  629. package/Text/styles.arrow.css +0 -1
  630. package/TextStoryTemplate/styles.arrow.css +0 -1
  631. package/ThreeColFlexStories/styles.arrow.css +0 -1
  632. package/ThreeColFourteenStories/styles.arrow.css +0 -1
  633. package/ThreeColGrid/styles.arrow.css +0 -1
  634. package/ThreeColSevenStory/styles.arrow.css +0 -1
  635. package/ThreeColSixStories/styles.arrow.css +0 -1
  636. package/ThreeColTwelveStories/styles.arrow.css +0 -1
  637. package/TimeStamp/styles.arrow.css +0 -1
  638. package/TwoColFourStories/styles.arrow.css +0 -1
  639. package/TwoColFourStoryHighlight/styles.arrow.css +0 -1
  640. package/TwoColSevenStories/styles.arrow.css +0 -1
  641. package/TwoColSixStories/styles.arrow.css +0 -1
  642. package/TwoColTenStoriesSidebar/styles.arrow.css +0 -1
  643. package/TwoColThreeStories/styles.arrow.css +0 -1
  644. package/Video/styles.arrow.css +0 -1
  645. package/VideoStoryTemplate/styles.arrow.css +0 -1
  646. package/cjs/index.js +0 -1
  647. package/esm/index.js +0 -1
  648. /package/{app.scss → assets/stylesheets/app.scss} +0 -0
@@ -0,0 +1,2790 @@
1
+ export const dummyCollection = {
2
+ "updated-at": 1571041608154,
3
+ slug: "dummy",
4
+ fallback: false,
5
+ name: "dummy",
6
+ "data-source": "manual",
7
+ automated: false,
8
+ template: "default",
9
+ rules: {},
10
+ summary: "dummy",
11
+ id: 76330,
12
+ "total-count": 16,
13
+ "collection-date": null,
14
+ items: [
15
+ {
16
+ id: "b4f33f98-8814-4675-97f0-75e447e43ab8",
17
+ "associated-metadata": {},
18
+ type: "story",
19
+ story: {
20
+ "updated-at": 1568978484435,
21
+ seo: {
22
+ "meta-description": "Meta description",
23
+ "claim-reviews": {
24
+ story: null
25
+ }
26
+ },
27
+ "assignee-id": 299252,
28
+ "author-name": "Ashwini Mohan",
29
+ tags: [
30
+ {
31
+ id: 168475,
32
+ name: "news",
33
+ "meta-description": null,
34
+ slug: "news",
35
+ "tag-type": "Tag"
36
+ }
37
+ ],
38
+ headline: "Untitled Sep 20, 2019 04:30 PM",
39
+ "storyline-id": null,
40
+ votes: {},
41
+ "story-content-id": "b4f33f98-8814-4675-97f0-75e447e43ab8",
42
+ slug: "recent-stories/news/business/untitled-sep-20-2019-0430-pm",
43
+ "last-published-at": 1568978485926,
44
+ subheadline: "TESTING DESCRIPTION FIELD.",
45
+ alternative: {},
46
+ sections: [
47
+ {
48
+ "domain-slug": null,
49
+ slug: "business",
50
+ name: "Business",
51
+ "section-url": "https://ace-web.qtstage.io/recent-stories/news/business",
52
+ id: 5752,
53
+ "parent-id": 5670,
54
+ "display-name": "Business",
55
+ collection: {
56
+ slug: "business1",
57
+ name: "Business News",
58
+ id: 2729
59
+ },
60
+ data: null
61
+ }
62
+ ],
63
+ "story-audio": {
64
+ "s3-key":
65
+ "ace/story-audio/2019-09/b4f33f98-8814-4675-97f0-75e447e43ab8/.01634f09-e91b-442b-90a4-521052bdffaf.mp3"
66
+ },
67
+ "access-level-value": null,
68
+ "content-created-at": 1568977220927,
69
+ "owner-name": "Ashwini Mohan",
70
+ "custom-slug": null,
71
+ "push-notification": null,
72
+ "publisher-id": 97,
73
+ "hero-image-metadata": {
74
+ width: 1024,
75
+ height: 576,
76
+ "focus-point": [676, 312]
77
+ },
78
+ comments: null,
79
+ entities: {},
80
+ "published-at": 1568978485926,
81
+ "breaking-news-linked-story-id": null,
82
+ "storyline-title": null,
83
+ summary: "Social Description",
84
+ "push-notification-title": null,
85
+ "external-id": null,
86
+ "canonical-url": null,
87
+ autotags: [],
88
+ "linked-entities": [],
89
+ status: "published",
90
+ "hero-image-attribution": "attribution",
91
+ "bullet-type": "123",
92
+ id: "b4f33f98-8814-4675-97f0-75e447e43ab8",
93
+ "hero-image-s3-key":
94
+ "ace/2019-06/3999bc52-1280-49aa-b542-20cd9e06dd34/The_Secret_to_a_Good_Quality_Sleep_Memory_Foam.jpg",
95
+ contributors: [],
96
+ cards: [
97
+ {
98
+ "story-elements": [
99
+ {
100
+ description: "",
101
+ "page-url": "/story/b4f33f98-8814-4675-97f0-75e447e43ab8/element/212be322-baaa-46a1-ae92-7f8f79fc4107",
102
+ type: "youtube-video",
103
+ "family-id": "e6b6aecf-3bc6-451b-ac69-33aa3d79ce6b",
104
+ title: "",
105
+ id: "212be322-baaa-46a1-ae92-7f8f79fc4107",
106
+ url: "https://www.youtube.com/watch?v=OY9Oq3hp0YU&feature=youtu.be",
107
+ "embed-url": "https://www.youtube.com/embed/OY9Oq3hp0YU",
108
+ metadata: {},
109
+ subtype: null
110
+ },
111
+ {
112
+ id: "00000000-0000-0000-0000-000000000000",
113
+ description: "",
114
+ title: "",
115
+ subtype: null,
116
+ type: "text",
117
+ text: '<p>text <a href="https://ace-web.qtstage.io/">promotional</a> message</p>',
118
+ metadata: {
119
+ "promotional-message": true
120
+ }
121
+ }
122
+ ],
123
+ "card-updated-at": 1568977881112,
124
+ "content-version-id": "1cd5ea42-6751-4ec6-a161-395f3326ce00",
125
+ "card-added-at": 1568977256690,
126
+ status: "draft",
127
+ id: "8db07059-5344-4859-bfbb-441148b13a02",
128
+ "content-id": "8db07059-5344-4859-bfbb-441148b13a02",
129
+ version: 4,
130
+ metadata: {
131
+ "social-share": {
132
+ shareable: false,
133
+ title: "Untitled Sep 20, 2019 04:30 PM",
134
+ message: "Social Description",
135
+ image: {
136
+ key:
137
+ "ace/2019-06/3999bc52-1280-49aa-b542-20cd9e06dd34/The_Secret_to_a_Good_Quality_Sleep_Memory_Foam.jpg",
138
+ url: null,
139
+ attribution: "attribution",
140
+ caption: "caption",
141
+ metadata: {
142
+ width: 1024,
143
+ height: 576,
144
+ "focus-point": [676, 312]
145
+ }
146
+ }
147
+ },
148
+ attributes: {}
149
+ }
150
+ }
151
+ ],
152
+ url: "https://ace-web.qtstage.io/recent-stories/news/business/untitled-sep-20-2019-0430-pm",
153
+ "story-version-id": "a64fe8b4-c0aa-4bd5-93a2-6e428332e5b2",
154
+ "content-type": "story",
155
+ "content-updated-at": 1568978486084,
156
+ "author-id": 299252,
157
+ "owner-id": 299252,
158
+ "linked-story-ids": [],
159
+ access: null,
160
+ "promotional-message": '<p>text <a href="https://ace-web.qtstage.io/">promotional</a> message</p>',
161
+ "asana-project-id": null,
162
+ "first-published-at": 1568977881440,
163
+ "hero-image-caption": "caption",
164
+ version: 7,
165
+ "story-template": "video",
166
+ "sequence-no": null,
167
+ "created-at": 1568978481003,
168
+ authors: [
169
+ {
170
+ id: 299252,
171
+ name: "Ashwini Mohan",
172
+ slug: "ashwini-mohan",
173
+ "avatar-url": "https://thumbor-stg.assettype.com/ace/2019-08/145ab200-429f-44ac-8618-00c6e4643e31/cat.jpeg",
174
+ "avatar-s3-key": "ace/2019-08/145ab200-429f-44ac-8618-00c6e4643e31/cat.jpeg",
175
+ "twitter-handle": null,
176
+ bio: null,
177
+ "contributor-role": {
178
+ id: 873,
179
+ name: "Author"
180
+ }
181
+ }
182
+ ],
183
+ metadata: {
184
+ "card-share": {
185
+ shareable: false
186
+ }
187
+ },
188
+ "publish-at": null,
189
+ "assignee-name": "Ashwini Mohan"
190
+ }
191
+ },
192
+ {
193
+ id: "b4f33f98-8814-4675-97f0-75e447e43ab8",
194
+ "associated-metadata": {},
195
+ type: "story",
196
+ story: {
197
+ "updated-at": 1568978484435,
198
+ seo: {
199
+ "meta-description": "Meta description",
200
+ "claim-reviews": {
201
+ story: null
202
+ }
203
+ },
204
+ "assignee-id": 299252,
205
+ "author-name": "Ashwini Mohan",
206
+ tags: [
207
+ {
208
+ id: 168475,
209
+ name: "news",
210
+ "meta-description": null,
211
+ slug: "news",
212
+ "tag-type": "Tag"
213
+ }
214
+ ],
215
+ headline: "Untitled Sep 20, 2019 04:30 PM",
216
+ "storyline-id": null,
217
+ votes: {},
218
+ "story-content-id": "b4f33f98-8814-4675-97f0-75e447e43ab8",
219
+ slug: "recent-stories/news/business/untitled-sep-20-2019-0430-pm",
220
+ "last-published-at": 1568978485926,
221
+ subheadline: "TESTING DESCRIPTION FIELD.",
222
+ alternative: {},
223
+ sections: [
224
+ {
225
+ "domain-slug": null,
226
+ slug: "business",
227
+ name: "Business",
228
+ "section-url": "https://ace-web.qtstage.io/recent-stories/news/business",
229
+ id: 5752,
230
+ "parent-id": 5670,
231
+ "display-name": "Business",
232
+ collection: {
233
+ slug: "business1",
234
+ name: "Business News",
235
+ id: 2729
236
+ },
237
+ data: null
238
+ }
239
+ ],
240
+ "story-audio": {
241
+ "s3-key":
242
+ "ace/story-audio/2019-09/b4f33f98-8814-4675-97f0-75e447e43ab8/.01634f09-e91b-442b-90a4-521052bdffaf.mp3"
243
+ },
244
+ "access-level-value": null,
245
+ "content-created-at": 1568977220927,
246
+ "owner-name": "Ashwini Mohan",
247
+ "custom-slug": null,
248
+ "push-notification": null,
249
+ "publisher-id": 97,
250
+ "hero-image-metadata": {
251
+ width: 1024,
252
+ height: 576,
253
+ "focus-point": [676, 312]
254
+ },
255
+ comments: null,
256
+ entities: {},
257
+ "published-at": 1568978485926,
258
+ "breaking-news-linked-story-id": null,
259
+ "storyline-title": null,
260
+ summary: "Social Description",
261
+ "push-notification-title": null,
262
+ "external-id": null,
263
+ "canonical-url": null,
264
+ autotags: [],
265
+ "linked-entities": [],
266
+ status: "published",
267
+ "hero-image-attribution": "attribution",
268
+ "bullet-type": "123",
269
+ id: "b4f33f98-8814-4675-97f0-75e447e43ab8",
270
+ "hero-image-s3-key":
271
+ "ace/2019-06/3999bc52-1280-49aa-b542-20cd9e06dd34/The_Secret_to_a_Good_Quality_Sleep_Memory_Foam.jpg",
272
+ contributors: [],
273
+ cards: [
274
+ {
275
+ "story-elements": [
276
+ {
277
+ description: "",
278
+ "page-url": "/story/b4f33f98-8814-4675-97f0-75e447e43ab8/element/212be322-baaa-46a1-ae92-7f8f79fc4107",
279
+ type: "youtube-video",
280
+ "family-id": "e6b6aecf-3bc6-451b-ac69-33aa3d79ce6b",
281
+ title: "",
282
+ id: "212be322-baaa-46a1-ae92-7f8f79fc4107",
283
+ url: "https://www.youtube.com/watch?v=OY9Oq3hp0YU&feature=youtu.be",
284
+ "embed-url": "https://www.youtube.com/embed/OY9Oq3hp0YU",
285
+ metadata: {},
286
+ subtype: null
287
+ },
288
+ {
289
+ id: "00000000-0000-0000-0000-000000000000",
290
+ description: "",
291
+ title: "",
292
+ subtype: null,
293
+ type: "text",
294
+ text: '<p>text <a href="https://ace-web.qtstage.io/">promotional</a> message</p>',
295
+ metadata: {
296
+ "promotional-message": true
297
+ }
298
+ }
299
+ ],
300
+ "card-updated-at": 1568977881112,
301
+ "content-version-id": "1cd5ea42-6751-4ec6-a161-395f3326ce00",
302
+ "card-added-at": 1568977256690,
303
+ status: "draft",
304
+ id: "8db07059-5344-4859-bfbb-441148b13a02",
305
+ "content-id": "8db07059-5344-4859-bfbb-441148b13a02",
306
+ version: 4,
307
+ metadata: {
308
+ "social-share": {
309
+ shareable: false,
310
+ title: "Untitled Sep 20, 2019 04:30 PM",
311
+ message: "Social Description",
312
+ image: {
313
+ key:
314
+ "ace/2019-06/3999bc52-1280-49aa-b542-20cd9e06dd34/The_Secret_to_a_Good_Quality_Sleep_Memory_Foam.jpg",
315
+ url: null,
316
+ attribution: "attribution",
317
+ caption: "caption",
318
+ metadata: {
319
+ width: 1024,
320
+ height: 576,
321
+ "focus-point": [676, 312]
322
+ }
323
+ }
324
+ },
325
+ attributes: {}
326
+ }
327
+ }
328
+ ],
329
+ url: "https://ace-web.qtstage.io/recent-stories/news/business/untitled-sep-20-2019-0430-pm",
330
+ "story-version-id": "a64fe8b4-c0aa-4bd5-93a2-6e428332e5b2",
331
+ "content-type": "story",
332
+ "content-updated-at": 1568978486084,
333
+ "author-id": 299252,
334
+ "owner-id": 299252,
335
+ "linked-story-ids": [],
336
+ access: null,
337
+ "promotional-message": '<p>text <a href="https://ace-web.qtstage.io/">promotional</a> message</p>',
338
+ "asana-project-id": null,
339
+ "first-published-at": 1568977881440,
340
+ "hero-image-caption": "caption",
341
+ version: 7,
342
+ "story-template": "video",
343
+ "sequence-no": null,
344
+ "created-at": 1568978481003,
345
+ authors: [
346
+ {
347
+ id: 299252,
348
+ name: "Ashwini Mohan",
349
+ slug: "ashwini-mohan",
350
+ "avatar-url": "https://thumbor-stg.assettype.com/ace/2019-08/145ab200-429f-44ac-8618-00c6e4643e31/cat.jpeg",
351
+ "avatar-s3-key": "ace/2019-08/145ab200-429f-44ac-8618-00c6e4643e31/cat.jpeg",
352
+ "twitter-handle": null,
353
+ bio: null,
354
+ "contributor-role": {
355
+ id: 873,
356
+ name: "Author"
357
+ }
358
+ }
359
+ ],
360
+ metadata: {
361
+ "card-share": {
362
+ shareable: false
363
+ }
364
+ },
365
+ "publish-at": null,
366
+ "assignee-name": "Ashwini Mohan"
367
+ }
368
+ },
369
+ {
370
+ id: "b4f33f98-8814-4675-97f0-75e447e43ab8",
371
+ "associated-metadata": {},
372
+ type: "story",
373
+ story: {
374
+ "updated-at": 1568978484435,
375
+ seo: {
376
+ "meta-description": "Meta description",
377
+ "claim-reviews": {
378
+ story: null
379
+ }
380
+ },
381
+ "assignee-id": 299252,
382
+ "author-name": "Ashwini Mohan",
383
+ tags: [
384
+ {
385
+ id: 168475,
386
+ name: "news",
387
+ "meta-description": null,
388
+ slug: "news",
389
+ "tag-type": "Tag"
390
+ }
391
+ ],
392
+ headline: "Untitled Sep 20, 2019 04:30 PM",
393
+ "storyline-id": null,
394
+ votes: {},
395
+ "story-content-id": "b4f33f98-8814-4675-97f0-75e447e43ab8",
396
+ slug: "recent-stories/news/business/untitled-sep-20-2019-0430-pm",
397
+ "last-published-at": 1568978485926,
398
+ subheadline: "TESTING DESCRIPTION FIELD.",
399
+ alternative: {},
400
+ sections: [
401
+ {
402
+ "domain-slug": null,
403
+ slug: "business",
404
+ name: "Business",
405
+ "section-url": "https://ace-web.qtstage.io/recent-stories/news/business",
406
+ id: 5752,
407
+ "parent-id": 5670,
408
+ "display-name": "Business",
409
+ collection: {
410
+ slug: "business1",
411
+ name: "Business News",
412
+ id: 2729
413
+ },
414
+ data: null
415
+ }
416
+ ],
417
+ "story-audio": {
418
+ "s3-key":
419
+ "ace/story-audio/2019-09/b4f33f98-8814-4675-97f0-75e447e43ab8/.01634f09-e91b-442b-90a4-521052bdffaf.mp3"
420
+ },
421
+ "access-level-value": null,
422
+ "content-created-at": 1568977220927,
423
+ "owner-name": "Ashwini Mohan",
424
+ "custom-slug": null,
425
+ "push-notification": null,
426
+ "publisher-id": 97,
427
+ "hero-image-metadata": {
428
+ width: 1024,
429
+ height: 576,
430
+ "focus-point": [676, 312]
431
+ },
432
+ comments: null,
433
+ entities: {},
434
+ "published-at": 1568978485926,
435
+ "breaking-news-linked-story-id": null,
436
+ "storyline-title": null,
437
+ summary: "Social Description",
438
+ "push-notification-title": null,
439
+ "external-id": null,
440
+ "canonical-url": null,
441
+ autotags: [],
442
+ "linked-entities": [],
443
+ status: "published",
444
+ "hero-image-attribution": "attribution",
445
+ "bullet-type": "123",
446
+ id: "b4f33f98-8814-4675-97f0-75e447e43ab8",
447
+ "hero-image-s3-key":
448
+ "ace/2019-06/3999bc52-1280-49aa-b542-20cd9e06dd34/The_Secret_to_a_Good_Quality_Sleep_Memory_Foam.jpg",
449
+ contributors: [],
450
+ cards: [
451
+ {
452
+ "story-elements": [
453
+ {
454
+ description: "",
455
+ "page-url": "/story/b4f33f98-8814-4675-97f0-75e447e43ab8/element/212be322-baaa-46a1-ae92-7f8f79fc4107",
456
+ type: "youtube-video",
457
+ "family-id": "e6b6aecf-3bc6-451b-ac69-33aa3d79ce6b",
458
+ title: "",
459
+ id: "212be322-baaa-46a1-ae92-7f8f79fc4107",
460
+ url: "https://www.youtube.com/watch?v=OY9Oq3hp0YU&feature=youtu.be",
461
+ "embed-url": "https://www.youtube.com/embed/OY9Oq3hp0YU",
462
+ metadata: {},
463
+ subtype: null
464
+ },
465
+ {
466
+ id: "00000000-0000-0000-0000-000000000000",
467
+ description: "",
468
+ title: "",
469
+ subtype: null,
470
+ type: "text",
471
+ text: '<p>text <a href="https://ace-web.qtstage.io/">promotional</a> message</p>',
472
+ metadata: {
473
+ "promotional-message": true
474
+ }
475
+ }
476
+ ],
477
+ "card-updated-at": 1568977881112,
478
+ "content-version-id": "1cd5ea42-6751-4ec6-a161-395f3326ce00",
479
+ "card-added-at": 1568977256690,
480
+ status: "draft",
481
+ id: "8db07059-5344-4859-bfbb-441148b13a02",
482
+ "content-id": "8db07059-5344-4859-bfbb-441148b13a02",
483
+ version: 4,
484
+ metadata: {
485
+ "social-share": {
486
+ shareable: false,
487
+ title: "Untitled Sep 20, 2019 04:30 PM",
488
+ message: "Social Description",
489
+ image: {
490
+ key:
491
+ "ace/2019-06/3999bc52-1280-49aa-b542-20cd9e06dd34/The_Secret_to_a_Good_Quality_Sleep_Memory_Foam.jpg",
492
+ url: null,
493
+ attribution: "attribution",
494
+ caption: "caption",
495
+ metadata: {
496
+ width: 1024,
497
+ height: 576,
498
+ "focus-point": [676, 312]
499
+ }
500
+ }
501
+ },
502
+ attributes: {}
503
+ }
504
+ }
505
+ ],
506
+ url: "https://ace-web.qtstage.io/recent-stories/news/business/untitled-sep-20-2019-0430-pm",
507
+ "story-version-id": "a64fe8b4-c0aa-4bd5-93a2-6e428332e5b2",
508
+ "content-type": "story",
509
+ "content-updated-at": 1568978486084,
510
+ "author-id": 299252,
511
+ "owner-id": 299252,
512
+ "linked-story-ids": [],
513
+ access: null,
514
+ "promotional-message": '<p>text <a href="https://ace-web.qtstage.io/">promotional</a> message</p>',
515
+ "asana-project-id": null,
516
+ "first-published-at": 1568977881440,
517
+ "hero-image-caption": "caption",
518
+ version: 7,
519
+ "story-template": "video",
520
+ "sequence-no": null,
521
+ "created-at": 1568978481003,
522
+ authors: [
523
+ {
524
+ id: 299252,
525
+ name: "Ashwini Mohan",
526
+ slug: "ashwini-mohan",
527
+ "avatar-url": "https://thumbor-stg.assettype.com/ace/2019-08/145ab200-429f-44ac-8618-00c6e4643e31/cat.jpeg",
528
+ "avatar-s3-key": "ace/2019-08/145ab200-429f-44ac-8618-00c6e4643e31/cat.jpeg",
529
+ "twitter-handle": null,
530
+ bio: null,
531
+ "contributor-role": {
532
+ id: 873,
533
+ name: "Author"
534
+ }
535
+ }
536
+ ],
537
+ metadata: {
538
+ "card-share": {
539
+ shareable: false
540
+ }
541
+ },
542
+ "publish-at": null,
543
+ "assignee-name": "Ashwini Mohan"
544
+ }
545
+ },
546
+ {
547
+ id: "b4f33f98-8814-4675-97f0-75e447e43ab8",
548
+ "associated-metadata": {},
549
+ type: "story",
550
+ story: {
551
+ "updated-at": 1568978484435,
552
+ seo: {
553
+ "meta-description": "Meta description",
554
+ "claim-reviews": {
555
+ story: null
556
+ }
557
+ },
558
+ "assignee-id": 299252,
559
+ "author-name": "Ashwini Mohan",
560
+ tags: [
561
+ {
562
+ id: 168475,
563
+ name: "news",
564
+ "meta-description": null,
565
+ slug: "news",
566
+ "tag-type": "Tag"
567
+ }
568
+ ],
569
+ headline: "Untitled Sep 20, 2019 04:30 PM",
570
+ "storyline-id": null,
571
+ votes: {},
572
+ "story-content-id": "b4f33f98-8814-4675-97f0-75e447e43ab8",
573
+ slug: "recent-stories/news/business/untitled-sep-20-2019-0430-pm",
574
+ "last-published-at": 1568978485926,
575
+ subheadline: "TESTING DESCRIPTION FIELD.",
576
+ alternative: {},
577
+ sections: [
578
+ {
579
+ "domain-slug": null,
580
+ slug: "business",
581
+ name: "Business",
582
+ "section-url": "https://ace-web.qtstage.io/recent-stories/news/business",
583
+ id: 5752,
584
+ "parent-id": 5670,
585
+ "display-name": "Business",
586
+ collection: {
587
+ slug: "business1",
588
+ name: "Business News",
589
+ id: 2729
590
+ },
591
+ data: null
592
+ }
593
+ ],
594
+ "story-audio": {
595
+ "s3-key":
596
+ "ace/story-audio/2019-09/b4f33f98-8814-4675-97f0-75e447e43ab8/.01634f09-e91b-442b-90a4-521052bdffaf.mp3"
597
+ },
598
+ "access-level-value": null,
599
+ "content-created-at": 1568977220927,
600
+ "owner-name": "Ashwini Mohan",
601
+ "custom-slug": null,
602
+ "push-notification": null,
603
+ "publisher-id": 97,
604
+ "hero-image-metadata": {
605
+ width: 1024,
606
+ height: 576,
607
+ "focus-point": [676, 312]
608
+ },
609
+ comments: null,
610
+ entities: {},
611
+ "published-at": 1568978485926,
612
+ "breaking-news-linked-story-id": null,
613
+ "storyline-title": null,
614
+ summary: "Social Description",
615
+ "push-notification-title": null,
616
+ "external-id": null,
617
+ "canonical-url": null,
618
+ autotags: [],
619
+ "linked-entities": [],
620
+ status: "published",
621
+ "hero-image-attribution": "attribution",
622
+ "bullet-type": "123",
623
+ id: "b4f33f98-8814-4675-97f0-75e447e43ab8",
624
+ "hero-image-s3-key":
625
+ "ace/2019-06/3999bc52-1280-49aa-b542-20cd9e06dd34/The_Secret_to_a_Good_Quality_Sleep_Memory_Foam.jpg",
626
+ contributors: [],
627
+ cards: [
628
+ {
629
+ "story-elements": [
630
+ {
631
+ description: "",
632
+ "page-url": "/story/b4f33f98-8814-4675-97f0-75e447e43ab8/element/212be322-baaa-46a1-ae92-7f8f79fc4107",
633
+ type: "youtube-video",
634
+ "family-id": "e6b6aecf-3bc6-451b-ac69-33aa3d79ce6b",
635
+ title: "",
636
+ id: "212be322-baaa-46a1-ae92-7f8f79fc4107",
637
+ url: "https://www.youtube.com/watch?v=OY9Oq3hp0YU&feature=youtu.be",
638
+ "embed-url": "https://www.youtube.com/embed/OY9Oq3hp0YU",
639
+ metadata: {},
640
+ subtype: null
641
+ },
642
+ {
643
+ id: "00000000-0000-0000-0000-000000000000",
644
+ description: "",
645
+ title: "",
646
+ subtype: null,
647
+ type: "text",
648
+ text: '<p>text <a href="https://ace-web.qtstage.io/">promotional</a> message</p>',
649
+ metadata: {
650
+ "promotional-message": true
651
+ }
652
+ }
653
+ ],
654
+ "card-updated-at": 1568977881112,
655
+ "content-version-id": "1cd5ea42-6751-4ec6-a161-395f3326ce00",
656
+ "card-added-at": 1568977256690,
657
+ status: "draft",
658
+ id: "8db07059-5344-4859-bfbb-441148b13a02",
659
+ "content-id": "8db07059-5344-4859-bfbb-441148b13a02",
660
+ version: 4,
661
+ metadata: {
662
+ "social-share": {
663
+ shareable: false,
664
+ title: "Untitled Sep 20, 2019 04:30 PM",
665
+ message: "Social Description",
666
+ image: {
667
+ key:
668
+ "ace/2019-06/3999bc52-1280-49aa-b542-20cd9e06dd34/The_Secret_to_a_Good_Quality_Sleep_Memory_Foam.jpg",
669
+ url: null,
670
+ attribution: "attribution",
671
+ caption: "caption",
672
+ metadata: {
673
+ width: 1024,
674
+ height: 576,
675
+ "focus-point": [676, 312]
676
+ }
677
+ }
678
+ },
679
+ attributes: {}
680
+ }
681
+ }
682
+ ],
683
+ url: "https://ace-web.qtstage.io/recent-stories/news/business/untitled-sep-20-2019-0430-pm",
684
+ "story-version-id": "a64fe8b4-c0aa-4bd5-93a2-6e428332e5b2",
685
+ "content-type": "story",
686
+ "content-updated-at": 1568978486084,
687
+ "author-id": 299252,
688
+ "owner-id": 299252,
689
+ "linked-story-ids": [],
690
+ access: null,
691
+ "promotional-message": '<p>text <a href="https://ace-web.qtstage.io/">promotional</a> message</p>',
692
+ "asana-project-id": null,
693
+ "first-published-at": 1568977881440,
694
+ "hero-image-caption": "caption",
695
+ version: 7,
696
+ "story-template": "video",
697
+ "sequence-no": null,
698
+ "created-at": 1568978481003,
699
+ authors: [
700
+ {
701
+ id: 299252,
702
+ name: "Ashwini Mohan",
703
+ slug: "ashwini-mohan",
704
+ "avatar-url": "https://thumbor-stg.assettype.com/ace/2019-08/145ab200-429f-44ac-8618-00c6e4643e31/cat.jpeg",
705
+ "avatar-s3-key": "ace/2019-08/145ab200-429f-44ac-8618-00c6e4643e31/cat.jpeg",
706
+ "twitter-handle": null,
707
+ bio: null,
708
+ "contributor-role": {
709
+ id: 873,
710
+ name: "Author"
711
+ }
712
+ }
713
+ ],
714
+ metadata: {
715
+ "card-share": {
716
+ shareable: false
717
+ }
718
+ },
719
+ "publish-at": null,
720
+ "assignee-name": "Ashwini Mohan"
721
+ }
722
+ },
723
+ {
724
+ id: "b4f33f98-8814-4675-97f0-75e447e43ab8",
725
+ "associated-metadata": {},
726
+ type: "story",
727
+ story: {
728
+ "updated-at": 1568978484435,
729
+ seo: {
730
+ "meta-description": "Meta description",
731
+ "claim-reviews": {
732
+ story: null
733
+ }
734
+ },
735
+ "assignee-id": 299252,
736
+ "author-name": "Ashwini Mohan",
737
+ tags: [
738
+ {
739
+ id: 168475,
740
+ name: "news",
741
+ "meta-description": null,
742
+ slug: "news",
743
+ "tag-type": "Tag"
744
+ }
745
+ ],
746
+ headline: "Untitled Sep 20, 2019 04:30 PM",
747
+ "storyline-id": null,
748
+ votes: {},
749
+ "story-content-id": "b4f33f98-8814-4675-97f0-75e447e43ab8",
750
+ slug: "recent-stories/news/business/untitled-sep-20-2019-0430-pm",
751
+ "last-published-at": 1568978485926,
752
+ subheadline: "TESTING DESCRIPTION FIELD.",
753
+ alternative: {},
754
+ sections: [
755
+ {
756
+ "domain-slug": null,
757
+ slug: "business",
758
+ name: "Business",
759
+ "section-url": "https://ace-web.qtstage.io/recent-stories/news/business",
760
+ id: 5752,
761
+ "parent-id": 5670,
762
+ "display-name": "Business",
763
+ collection: {
764
+ slug: "business1",
765
+ name: "Business News",
766
+ id: 2729
767
+ },
768
+ data: null
769
+ }
770
+ ],
771
+ "story-audio": {
772
+ "s3-key":
773
+ "ace/story-audio/2019-09/b4f33f98-8814-4675-97f0-75e447e43ab8/.01634f09-e91b-442b-90a4-521052bdffaf.mp3"
774
+ },
775
+ "access-level-value": null,
776
+ "content-created-at": 1568977220927,
777
+ "owner-name": "Ashwini Mohan",
778
+ "custom-slug": null,
779
+ "push-notification": null,
780
+ "publisher-id": 97,
781
+ "hero-image-metadata": {
782
+ width: 1024,
783
+ height: 576,
784
+ "focus-point": [676, 312]
785
+ },
786
+ comments: null,
787
+ entities: {},
788
+ "published-at": 1568978485926,
789
+ "breaking-news-linked-story-id": null,
790
+ "storyline-title": null,
791
+ summary: "Social Description",
792
+ "push-notification-title": null,
793
+ "external-id": null,
794
+ "canonical-url": null,
795
+ autotags: [],
796
+ "linked-entities": [],
797
+ status: "published",
798
+ "hero-image-attribution": "attribution",
799
+ "bullet-type": "123",
800
+ id: "b4f33f98-8814-4675-97f0-75e447e43ab8",
801
+ "hero-image-s3-key":
802
+ "ace/2019-06/3999bc52-1280-49aa-b542-20cd9e06dd34/The_Secret_to_a_Good_Quality_Sleep_Memory_Foam.jpg",
803
+ contributors: [],
804
+ cards: [
805
+ {
806
+ "story-elements": [
807
+ {
808
+ description: "",
809
+ "page-url": "/story/b4f33f98-8814-4675-97f0-75e447e43ab8/element/212be322-baaa-46a1-ae92-7f8f79fc4107",
810
+ type: "youtube-video",
811
+ "family-id": "e6b6aecf-3bc6-451b-ac69-33aa3d79ce6b",
812
+ title: "",
813
+ id: "212be322-baaa-46a1-ae92-7f8f79fc4107",
814
+ url: "https://www.youtube.com/watch?v=OY9Oq3hp0YU&feature=youtu.be",
815
+ "embed-url": "https://www.youtube.com/embed/OY9Oq3hp0YU",
816
+ metadata: {},
817
+ subtype: null
818
+ },
819
+ {
820
+ id: "00000000-0000-0000-0000-000000000000",
821
+ description: "",
822
+ title: "",
823
+ subtype: null,
824
+ type: "text",
825
+ text: '<p>text <a href="https://ace-web.qtstage.io/">promotional</a> message</p>',
826
+ metadata: {
827
+ "promotional-message": true
828
+ }
829
+ }
830
+ ],
831
+ "card-updated-at": 1568977881112,
832
+ "content-version-id": "1cd5ea42-6751-4ec6-a161-395f3326ce00",
833
+ "card-added-at": 1568977256690,
834
+ status: "draft",
835
+ id: "8db07059-5344-4859-bfbb-441148b13a02",
836
+ "content-id": "8db07059-5344-4859-bfbb-441148b13a02",
837
+ version: 4,
838
+ metadata: {
839
+ "social-share": {
840
+ shareable: false,
841
+ title: "Untitled Sep 20, 2019 04:30 PM",
842
+ message: "Social Description",
843
+ image: {
844
+ key:
845
+ "ace/2019-06/3999bc52-1280-49aa-b542-20cd9e06dd34/The_Secret_to_a_Good_Quality_Sleep_Memory_Foam.jpg",
846
+ url: null,
847
+ attribution: "attribution",
848
+ caption: "caption",
849
+ metadata: {
850
+ width: 1024,
851
+ height: 576,
852
+ "focus-point": [676, 312]
853
+ }
854
+ }
855
+ },
856
+ attributes: {}
857
+ }
858
+ }
859
+ ],
860
+ url: "https://ace-web.qtstage.io/recent-stories/news/business/untitled-sep-20-2019-0430-pm",
861
+ "story-version-id": "a64fe8b4-c0aa-4bd5-93a2-6e428332e5b2",
862
+ "content-type": "story",
863
+ "content-updated-at": 1568978486084,
864
+ "author-id": 299252,
865
+ "owner-id": 299252,
866
+ "linked-story-ids": [],
867
+ access: null,
868
+ "promotional-message": '<p>text <a href="https://ace-web.qtstage.io/">promotional</a> message</p>',
869
+ "asana-project-id": null,
870
+ "first-published-at": 1568977881440,
871
+ "hero-image-caption": "caption",
872
+ version: 7,
873
+ "story-template": "video",
874
+ "sequence-no": null,
875
+ "created-at": 1568978481003,
876
+ authors: [
877
+ {
878
+ id: 299252,
879
+ name: "Ashwini Mohan",
880
+ slug: "ashwini-mohan",
881
+ "avatar-url": "https://thumbor-stg.assettype.com/ace/2019-08/145ab200-429f-44ac-8618-00c6e4643e31/cat.jpeg",
882
+ "avatar-s3-key": "ace/2019-08/145ab200-429f-44ac-8618-00c6e4643e31/cat.jpeg",
883
+ "twitter-handle": null,
884
+ bio: null,
885
+ "contributor-role": {
886
+ id: 873,
887
+ name: "Author"
888
+ }
889
+ }
890
+ ],
891
+ metadata: {
892
+ "card-share": {
893
+ shareable: false
894
+ }
895
+ },
896
+ "publish-at": null,
897
+ "assignee-name": "Ashwini Mohan"
898
+ }
899
+ },
900
+ {
901
+ id: "b4f33f98-8814-4675-97f0-75e447e43ab8",
902
+ "associated-metadata": {},
903
+ type: "story",
904
+ story: {
905
+ "updated-at": 1568978484435,
906
+ seo: {
907
+ "meta-description": "Meta description",
908
+ "claim-reviews": {
909
+ story: null
910
+ }
911
+ },
912
+ "assignee-id": 299252,
913
+ "author-name": "Ashwini Mohan",
914
+ tags: [
915
+ {
916
+ id: 168475,
917
+ name: "news",
918
+ "meta-description": null,
919
+ slug: "news",
920
+ "tag-type": "Tag"
921
+ }
922
+ ],
923
+ headline: "Untitled Sep 20, 2019 04:30 PM",
924
+ "storyline-id": null,
925
+ votes: {},
926
+ "story-content-id": "b4f33f98-8814-4675-97f0-75e447e43ab8",
927
+ slug: "recent-stories/news/business/untitled-sep-20-2019-0430-pm",
928
+ "last-published-at": 1568978485926,
929
+ subheadline: "TESTING DESCRIPTION FIELD.",
930
+ alternative: {},
931
+ sections: [
932
+ {
933
+ "domain-slug": null,
934
+ slug: "business",
935
+ name: "Business",
936
+ "section-url": "https://ace-web.qtstage.io/recent-stories/news/business",
937
+ id: 5752,
938
+ "parent-id": 5670,
939
+ "display-name": "Business",
940
+ collection: {
941
+ slug: "business1",
942
+ name: "Business News",
943
+ id: 2729
944
+ },
945
+ data: null
946
+ }
947
+ ],
948
+ "story-audio": {
949
+ "s3-key":
950
+ "ace/story-audio/2019-09/b4f33f98-8814-4675-97f0-75e447e43ab8/.01634f09-e91b-442b-90a4-521052bdffaf.mp3"
951
+ },
952
+ "access-level-value": null,
953
+ "content-created-at": 1568977220927,
954
+ "owner-name": "Ashwini Mohan",
955
+ "custom-slug": null,
956
+ "push-notification": null,
957
+ "publisher-id": 97,
958
+ "hero-image-metadata": {
959
+ width: 1024,
960
+ height: 576,
961
+ "focus-point": [676, 312]
962
+ },
963
+ comments: null,
964
+ entities: {},
965
+ "published-at": 1568978485926,
966
+ "breaking-news-linked-story-id": null,
967
+ "storyline-title": null,
968
+ summary: "Social Description",
969
+ "push-notification-title": null,
970
+ "external-id": null,
971
+ "canonical-url": null,
972
+ autotags: [],
973
+ "linked-entities": [],
974
+ status: "published",
975
+ "hero-image-attribution": "attribution",
976
+ "bullet-type": "123",
977
+ id: "b4f33f98-8814-4675-97f0-75e447e43ab8",
978
+ "hero-image-s3-key":
979
+ "ace/2019-06/3999bc52-1280-49aa-b542-20cd9e06dd34/The_Secret_to_a_Good_Quality_Sleep_Memory_Foam.jpg",
980
+ contributors: [],
981
+ cards: [
982
+ {
983
+ "story-elements": [
984
+ {
985
+ description: "",
986
+ "page-url": "/story/b4f33f98-8814-4675-97f0-75e447e43ab8/element/212be322-baaa-46a1-ae92-7f8f79fc4107",
987
+ type: "youtube-video",
988
+ "family-id": "e6b6aecf-3bc6-451b-ac69-33aa3d79ce6b",
989
+ title: "",
990
+ id: "212be322-baaa-46a1-ae92-7f8f79fc4107",
991
+ url: "https://www.youtube.com/watch?v=OY9Oq3hp0YU&feature=youtu.be",
992
+ "embed-url": "https://www.youtube.com/embed/OY9Oq3hp0YU",
993
+ metadata: {},
994
+ subtype: null
995
+ },
996
+ {
997
+ id: "00000000-0000-0000-0000-000000000000",
998
+ description: "",
999
+ title: "",
1000
+ subtype: null,
1001
+ type: "text",
1002
+ text: '<p>text <a href="https://ace-web.qtstage.io/">promotional</a> message</p>',
1003
+ metadata: {
1004
+ "promotional-message": true
1005
+ }
1006
+ }
1007
+ ],
1008
+ "card-updated-at": 1568977881112,
1009
+ "content-version-id": "1cd5ea42-6751-4ec6-a161-395f3326ce00",
1010
+ "card-added-at": 1568977256690,
1011
+ status: "draft",
1012
+ id: "8db07059-5344-4859-bfbb-441148b13a02",
1013
+ "content-id": "8db07059-5344-4859-bfbb-441148b13a02",
1014
+ version: 4,
1015
+ metadata: {
1016
+ "social-share": {
1017
+ shareable: false,
1018
+ title: "Untitled Sep 20, 2019 04:30 PM",
1019
+ message: "Social Description",
1020
+ image: {
1021
+ key:
1022
+ "ace/2019-06/3999bc52-1280-49aa-b542-20cd9e06dd34/The_Secret_to_a_Good_Quality_Sleep_Memory_Foam.jpg",
1023
+ url: null,
1024
+ attribution: "attribution",
1025
+ caption: "caption",
1026
+ metadata: {
1027
+ width: 1024,
1028
+ height: 576,
1029
+ "focus-point": [676, 312]
1030
+ }
1031
+ }
1032
+ },
1033
+ attributes: {}
1034
+ }
1035
+ }
1036
+ ],
1037
+ url: "https://ace-web.qtstage.io/recent-stories/news/business/untitled-sep-20-2019-0430-pm",
1038
+ "story-version-id": "a64fe8b4-c0aa-4bd5-93a2-6e428332e5b2",
1039
+ "content-type": "story",
1040
+ "content-updated-at": 1568978486084,
1041
+ "author-id": 299252,
1042
+ "owner-id": 299252,
1043
+ "linked-story-ids": [],
1044
+ access: null,
1045
+ "promotional-message": '<p>text <a href="https://ace-web.qtstage.io/">promotional</a> message</p>',
1046
+ "asana-project-id": null,
1047
+ "first-published-at": 1568977881440,
1048
+ "hero-image-caption": "caption",
1049
+ version: 7,
1050
+ "story-template": "video",
1051
+ "sequence-no": null,
1052
+ "created-at": 1568978481003,
1053
+ authors: [
1054
+ {
1055
+ id: 299252,
1056
+ name: "Ashwini Mohan",
1057
+ slug: "ashwini-mohan",
1058
+ "avatar-url": "https://thumbor-stg.assettype.com/ace/2019-08/145ab200-429f-44ac-8618-00c6e4643e31/cat.jpeg",
1059
+ "avatar-s3-key": "ace/2019-08/145ab200-429f-44ac-8618-00c6e4643e31/cat.jpeg",
1060
+ "twitter-handle": null,
1061
+ bio: null,
1062
+ "contributor-role": {
1063
+ id: 873,
1064
+ name: "Author"
1065
+ }
1066
+ }
1067
+ ],
1068
+ metadata: {
1069
+ "card-share": {
1070
+ shareable: false
1071
+ }
1072
+ },
1073
+ "publish-at": null,
1074
+ "assignee-name": "Ashwini Mohan"
1075
+ }
1076
+ },
1077
+ {
1078
+ id: 40827,
1079
+ "associated-metadata": {},
1080
+ type: "collection",
1081
+ name: "col02",
1082
+ slug: "col02",
1083
+ template: "default",
1084
+ metadata: {
1085
+ "cover-image": {}
1086
+ },
1087
+ "collection-date": null
1088
+ },
1089
+ {
1090
+ id: "b4f33f98-8814-4675-97f0-75e447e43ab8",
1091
+ "associated-metadata": {},
1092
+ type: "story",
1093
+ story: {
1094
+ "updated-at": 1568978484435,
1095
+ seo: {
1096
+ "meta-description": "Meta description",
1097
+ "claim-reviews": {
1098
+ story: null
1099
+ }
1100
+ },
1101
+ "assignee-id": 299252,
1102
+ "author-name": "Ashwini Mohan",
1103
+ tags: [
1104
+ {
1105
+ id: 168475,
1106
+ name: "news",
1107
+ "meta-description": null,
1108
+ slug: "news",
1109
+ "tag-type": "Tag"
1110
+ }
1111
+ ],
1112
+ headline: "Untitled Sep 20, 2019 04:30 PM",
1113
+ "storyline-id": null,
1114
+ votes: {},
1115
+ "story-content-id": "b4f33f98-8814-4675-97f0-75e447e43ab8",
1116
+ slug: "recent-stories/news/business/untitled-sep-20-2019-0430-pm",
1117
+ "last-published-at": 1568978485926,
1118
+ subheadline: "TESTING DESCRIPTION FIELD.",
1119
+ alternative: {},
1120
+ sections: [
1121
+ {
1122
+ "domain-slug": null,
1123
+ slug: "business",
1124
+ name: "Business",
1125
+ "section-url": "https://ace-web.qtstage.io/recent-stories/news/business",
1126
+ id: 5752,
1127
+ "parent-id": 5670,
1128
+ "display-name": "Business",
1129
+ collection: {
1130
+ slug: "business1",
1131
+ name: "Business News",
1132
+ id: 2729
1133
+ },
1134
+ data: null
1135
+ }
1136
+ ],
1137
+ "story-audio": {
1138
+ "s3-key":
1139
+ "ace/story-audio/2019-09/b4f33f98-8814-4675-97f0-75e447e43ab8/.01634f09-e91b-442b-90a4-521052bdffaf.mp3"
1140
+ },
1141
+ "access-level-value": null,
1142
+ "content-created-at": 1568977220927,
1143
+ "owner-name": "Ashwini Mohan",
1144
+ "custom-slug": null,
1145
+ "push-notification": null,
1146
+ "publisher-id": 97,
1147
+ "hero-image-metadata": {
1148
+ width: 1024,
1149
+ height: 576,
1150
+ "focus-point": [676, 312]
1151
+ },
1152
+ comments: null,
1153
+ entities: {},
1154
+ "published-at": 1568978485926,
1155
+ "breaking-news-linked-story-id": null,
1156
+ "storyline-title": null,
1157
+ summary: "Social Description",
1158
+ "push-notification-title": null,
1159
+ "external-id": null,
1160
+ "canonical-url": null,
1161
+ autotags: [],
1162
+ "linked-entities": [],
1163
+ status: "published",
1164
+ "hero-image-attribution": "attribution",
1165
+ "bullet-type": "123",
1166
+ id: "b4f33f98-8814-4675-97f0-75e447e43ab8",
1167
+ "hero-image-s3-key":
1168
+ "ace/2019-06/3999bc52-1280-49aa-b542-20cd9e06dd34/The_Secret_to_a_Good_Quality_Sleep_Memory_Foam.jpg",
1169
+ contributors: [],
1170
+ cards: [
1171
+ {
1172
+ "story-elements": [
1173
+ {
1174
+ description: "",
1175
+ "page-url": "/story/b4f33f98-8814-4675-97f0-75e447e43ab8/element/212be322-baaa-46a1-ae92-7f8f79fc4107",
1176
+ type: "youtube-video",
1177
+ "family-id": "e6b6aecf-3bc6-451b-ac69-33aa3d79ce6b",
1178
+ title: "",
1179
+ id: "212be322-baaa-46a1-ae92-7f8f79fc4107",
1180
+ url: "https://www.youtube.com/watch?v=OY9Oq3hp0YU&feature=youtu.be",
1181
+ "embed-url": "https://www.youtube.com/embed/OY9Oq3hp0YU",
1182
+ metadata: {},
1183
+ subtype: null
1184
+ },
1185
+ {
1186
+ id: "00000000-0000-0000-0000-000000000000",
1187
+ description: "",
1188
+ title: "",
1189
+ subtype: null,
1190
+ type: "text",
1191
+ text: '<p>text <a href="https://ace-web.qtstage.io/">promotional</a> message</p>',
1192
+ metadata: {
1193
+ "promotional-message": true
1194
+ }
1195
+ }
1196
+ ],
1197
+ "card-updated-at": 1568977881112,
1198
+ "content-version-id": "1cd5ea42-6751-4ec6-a161-395f3326ce00",
1199
+ "card-added-at": 1568977256690,
1200
+ status: "draft",
1201
+ id: "8db07059-5344-4859-bfbb-441148b13a02",
1202
+ "content-id": "8db07059-5344-4859-bfbb-441148b13a02",
1203
+ version: 4,
1204
+ metadata: {
1205
+ "social-share": {
1206
+ shareable: false,
1207
+ title: "Untitled Sep 20, 2019 04:30 PM",
1208
+ message: "Social Description",
1209
+ image: {
1210
+ key:
1211
+ "ace/2019-06/3999bc52-1280-49aa-b542-20cd9e06dd34/The_Secret_to_a_Good_Quality_Sleep_Memory_Foam.jpg",
1212
+ url: null,
1213
+ attribution: "attribution",
1214
+ caption: "caption",
1215
+ metadata: {
1216
+ width: 1024,
1217
+ height: 576,
1218
+ "focus-point": [676, 312]
1219
+ }
1220
+ }
1221
+ },
1222
+ attributes: {}
1223
+ }
1224
+ }
1225
+ ],
1226
+ url: "https://ace-web.qtstage.io/recent-stories/news/business/untitled-sep-20-2019-0430-pm",
1227
+ "story-version-id": "a64fe8b4-c0aa-4bd5-93a2-6e428332e5b2",
1228
+ "content-type": "story",
1229
+ "content-updated-at": 1568978486084,
1230
+ "author-id": 299252,
1231
+ "owner-id": 299252,
1232
+ "linked-story-ids": [],
1233
+ access: null,
1234
+ "promotional-message": '<p>text <a href="https://ace-web.qtstage.io/">promotional</a> message</p>',
1235
+ "asana-project-id": null,
1236
+ "first-published-at": 1568977881440,
1237
+ "hero-image-caption": "caption",
1238
+ version: 7,
1239
+ "story-template": "video",
1240
+ "sequence-no": null,
1241
+ "created-at": 1568978481003,
1242
+ authors: [
1243
+ {
1244
+ id: 299252,
1245
+ name: "Ashwini Mohan",
1246
+ slug: "ashwini-mohan",
1247
+ "avatar-url": "https://thumbor-stg.assettype.com/ace/2019-08/145ab200-429f-44ac-8618-00c6e4643e31/cat.jpeg",
1248
+ "avatar-s3-key": "ace/2019-08/145ab200-429f-44ac-8618-00c6e4643e31/cat.jpeg",
1249
+ "twitter-handle": null,
1250
+ bio: null,
1251
+ "contributor-role": {
1252
+ id: 873,
1253
+ name: "Author"
1254
+ }
1255
+ }
1256
+ ],
1257
+ metadata: {
1258
+ "card-share": {
1259
+ shareable: false
1260
+ }
1261
+ },
1262
+ "publish-at": null,
1263
+ "assignee-name": "Ashwini Mohan"
1264
+ }
1265
+ },
1266
+ {
1267
+ id: "b4f33f98-8814-4675-97f0-75e447e43ab8",
1268
+ "associated-metadata": {},
1269
+ type: "story",
1270
+ story: {
1271
+ "updated-at": 1568978484435,
1272
+ seo: {
1273
+ "meta-description": "Meta description",
1274
+ "claim-reviews": {
1275
+ story: null
1276
+ }
1277
+ },
1278
+ "assignee-id": 299252,
1279
+ "author-name": "Ashwini Mohan",
1280
+ tags: [
1281
+ {
1282
+ id: 168475,
1283
+ name: "news",
1284
+ "meta-description": null,
1285
+ slug: "news",
1286
+ "tag-type": "Tag"
1287
+ }
1288
+ ],
1289
+ headline: "Untitled Sep 20, 2019 04:30 PM",
1290
+ "storyline-id": null,
1291
+ votes: {},
1292
+ "story-content-id": "b4f33f98-8814-4675-97f0-75e447e43ab8",
1293
+ slug: "recent-stories/news/business/untitled-sep-20-2019-0430-pm",
1294
+ "last-published-at": 1568978485926,
1295
+ subheadline: "TESTING DESCRIPTION FIELD.",
1296
+ alternative: {},
1297
+ sections: [
1298
+ {
1299
+ "domain-slug": null,
1300
+ slug: "business",
1301
+ name: "Business",
1302
+ "section-url": "https://ace-web.qtstage.io/recent-stories/news/business",
1303
+ id: 5752,
1304
+ "parent-id": 5670,
1305
+ "display-name": "Business",
1306
+ collection: {
1307
+ slug: "business1",
1308
+ name: "Business News",
1309
+ id: 2729
1310
+ },
1311
+ data: null
1312
+ }
1313
+ ],
1314
+ "story-audio": {
1315
+ "s3-key":
1316
+ "ace/story-audio/2019-09/b4f33f98-8814-4675-97f0-75e447e43ab8/.01634f09-e91b-442b-90a4-521052bdffaf.mp3"
1317
+ },
1318
+ "access-level-value": null,
1319
+ "content-created-at": 1568977220927,
1320
+ "owner-name": "Ashwini Mohan",
1321
+ "custom-slug": null,
1322
+ "push-notification": null,
1323
+ "publisher-id": 97,
1324
+ "hero-image-metadata": {
1325
+ width: 1024,
1326
+ height: 576,
1327
+ "focus-point": [676, 312]
1328
+ },
1329
+ comments: null,
1330
+ entities: {},
1331
+ "published-at": 1568978485926,
1332
+ "breaking-news-linked-story-id": null,
1333
+ "storyline-title": null,
1334
+ summary: "Social Description",
1335
+ "push-notification-title": null,
1336
+ "external-id": null,
1337
+ "canonical-url": null,
1338
+ autotags: [],
1339
+ "linked-entities": [],
1340
+ status: "published",
1341
+ "hero-image-attribution": "attribution",
1342
+ "bullet-type": "123",
1343
+ id: "b4f33f98-8814-4675-97f0-75e447e43ab8",
1344
+ "hero-image-s3-key":
1345
+ "ace/2019-06/3999bc52-1280-49aa-b542-20cd9e06dd34/The_Secret_to_a_Good_Quality_Sleep_Memory_Foam.jpg",
1346
+ contributors: [],
1347
+ cards: [
1348
+ {
1349
+ "story-elements": [
1350
+ {
1351
+ description: "",
1352
+ "page-url": "/story/b4f33f98-8814-4675-97f0-75e447e43ab8/element/212be322-baaa-46a1-ae92-7f8f79fc4107",
1353
+ type: "youtube-video",
1354
+ "family-id": "e6b6aecf-3bc6-451b-ac69-33aa3d79ce6b",
1355
+ title: "",
1356
+ id: "212be322-baaa-46a1-ae92-7f8f79fc4107",
1357
+ url: "https://www.youtube.com/watch?v=OY9Oq3hp0YU&feature=youtu.be",
1358
+ "embed-url": "https://www.youtube.com/embed/OY9Oq3hp0YU",
1359
+ metadata: {},
1360
+ subtype: null
1361
+ },
1362
+ {
1363
+ id: "00000000-0000-0000-0000-000000000000",
1364
+ description: "",
1365
+ title: "",
1366
+ subtype: null,
1367
+ type: "text",
1368
+ text: '<p>text <a href="https://ace-web.qtstage.io/">promotional</a> message</p>',
1369
+ metadata: {
1370
+ "promotional-message": true
1371
+ }
1372
+ }
1373
+ ],
1374
+ "card-updated-at": 1568977881112,
1375
+ "content-version-id": "1cd5ea42-6751-4ec6-a161-395f3326ce00",
1376
+ "card-added-at": 1568977256690,
1377
+ status: "draft",
1378
+ id: "8db07059-5344-4859-bfbb-441148b13a02",
1379
+ "content-id": "8db07059-5344-4859-bfbb-441148b13a02",
1380
+ version: 4,
1381
+ metadata: {
1382
+ "social-share": {
1383
+ shareable: false,
1384
+ title: "Untitled Sep 20, 2019 04:30 PM",
1385
+ message: "Social Description",
1386
+ image: {
1387
+ key:
1388
+ "ace/2019-06/3999bc52-1280-49aa-b542-20cd9e06dd34/The_Secret_to_a_Good_Quality_Sleep_Memory_Foam.jpg",
1389
+ url: null,
1390
+ attribution: "attribution",
1391
+ caption: "caption",
1392
+ metadata: {
1393
+ width: 1024,
1394
+ height: 576,
1395
+ "focus-point": [676, 312]
1396
+ }
1397
+ }
1398
+ },
1399
+ attributes: {}
1400
+ }
1401
+ }
1402
+ ],
1403
+ url: "https://ace-web.qtstage.io/recent-stories/news/business/untitled-sep-20-2019-0430-pm",
1404
+ "story-version-id": "a64fe8b4-c0aa-4bd5-93a2-6e428332e5b2",
1405
+ "content-type": "story",
1406
+ "content-updated-at": 1568978486084,
1407
+ "author-id": 299252,
1408
+ "owner-id": 299252,
1409
+ "linked-story-ids": [],
1410
+ access: null,
1411
+ "promotional-message": '<p>text <a href="https://ace-web.qtstage.io/">promotional</a> message</p>',
1412
+ "asana-project-id": null,
1413
+ "first-published-at": 1568977881440,
1414
+ "hero-image-caption": "caption",
1415
+ version: 7,
1416
+ "story-template": "video",
1417
+ "sequence-no": null,
1418
+ "created-at": 1568978481003,
1419
+ authors: [
1420
+ {
1421
+ id: 299252,
1422
+ name: "Ashwini Mohan",
1423
+ slug: "ashwini-mohan",
1424
+ "avatar-url": "https://thumbor-stg.assettype.com/ace/2019-08/145ab200-429f-44ac-8618-00c6e4643e31/cat.jpeg",
1425
+ "avatar-s3-key": "ace/2019-08/145ab200-429f-44ac-8618-00c6e4643e31/cat.jpeg",
1426
+ "twitter-handle": null,
1427
+ bio: null,
1428
+ "contributor-role": {
1429
+ id: 873,
1430
+ name: "Author"
1431
+ }
1432
+ }
1433
+ ],
1434
+ metadata: {
1435
+ "card-share": {
1436
+ shareable: false
1437
+ }
1438
+ },
1439
+ "publish-at": null,
1440
+ "assignee-name": "Ashwini Mohan"
1441
+ }
1442
+ },
1443
+ {
1444
+ id: 42230,
1445
+ "associated-metadata": {},
1446
+ type: "collection",
1447
+ name: "New Collection for test 123",
1448
+ slug: "new-collection-for-test-123",
1449
+ template: "section",
1450
+ metadata: {
1451
+ "cover-image": {
1452
+ "cover-image-url":
1453
+ "http://thumbor-stg.assettype.com/ace/2018-10/7caece74-bdc3-4f1e-bcc7-80d7129d770c/trailer.jpeg",
1454
+ "cover-image-metadata": {
1455
+ width: 720,
1456
+ "mime-type": "image/jpeg",
1457
+ height: 1080,
1458
+ "focus-point": [350, 648]
1459
+ },
1460
+ "cover-image-s3-key": "ace/2018-10/7caece74-bdc3-4f1e-bcc7-80d7129d770c/trailer.jpeg",
1461
+ caption: "thugs of hindustan"
1462
+ }
1463
+ },
1464
+ "collection-date": null
1465
+ },
1466
+ {
1467
+ id: 67979,
1468
+ "associated-metadata": {},
1469
+ type: "collection",
1470
+ name: "Collection Test",
1471
+ slug: "collectiontest",
1472
+ template: "default",
1473
+ metadata: {
1474
+ "cover-image": null
1475
+ },
1476
+ "collection-date": null
1477
+ },
1478
+ {
1479
+ id: 68415,
1480
+ "associated-metadata": {},
1481
+ type: "collection",
1482
+ name: "Foo test collection",
1483
+ slug: "foo",
1484
+ template: "default",
1485
+ metadata: {
1486
+ "cover-image": null
1487
+ },
1488
+ "collection-date": null
1489
+ },
1490
+ {
1491
+ id: "7afda60c-1360-4320-bbe2-d6e29a8bcb1d",
1492
+ "associated-metadata": {},
1493
+ type: "story",
1494
+ story: {
1495
+ "updated-at": 1570786673740,
1496
+ seo: {
1497
+ "claim-reviews": {
1498
+ story: null
1499
+ }
1500
+ },
1501
+ "assignee-id": 187245,
1502
+ "author-name": "Shreya Shukla",
1503
+ tags: [],
1504
+ headline: "Subscribed story time stamp test",
1505
+ "storyline-id": null,
1506
+ votes: {},
1507
+ "story-content-id": "7afda60c-1360-4320-bbe2-d6e29a8bcb1d",
1508
+ slug: "health/time-stamp-test",
1509
+ "linked-stories": {
1510
+ "39b60649-aa6f-49f6-8365-0981b799b3b7": {
1511
+ "author-name": "Shitesh Jain",
1512
+ headline: "New Summary test",
1513
+ "story-content-id": "39b60649-aa6f-49f6-8365-0981b799b3b7",
1514
+ slug: "current-affairs/new-summary-test",
1515
+ sections: [
1516
+ {
1517
+ id: 6449,
1518
+ name: "Current Affairs",
1519
+ slug: "current-affairs",
1520
+ data: null
1521
+ }
1522
+ ],
1523
+ "hero-image-metadata": {
1524
+ width: 960,
1525
+ "mime-type": "image/png",
1526
+ height: 603,
1527
+ "focus-point": [535, 225]
1528
+ },
1529
+ "hero-image-s3-key": "ace/2018-12/d65b8758-9130-417f-bd97-c181661d6701/cat_1285634_960_720.png",
1530
+ url: "https://ace-web.qtstage.io/current-affairs/new-summary-test",
1531
+ "content-updated-at": 1555409545429,
1532
+ "author-id": 234915,
1533
+ "first-published-at": 1555408930663,
1534
+ authors: [
1535
+ {
1536
+ id: 234915,
1537
+ name: "Shitesh Jain",
1538
+ slug: "shitesh-jain-4",
1539
+ "avatar-url": "https://lh3.googleusercontent.com/a-/AAuE7mBO5TOGmzwz6_e4-1i0wQ2-Z8qEnkyp3GWL-aGm",
1540
+ "avatar-s3-key": null,
1541
+ "twitter-handle": null,
1542
+ bio: null,
1543
+ "contributor-role": {
1544
+ id: 873,
1545
+ name: "Author"
1546
+ }
1547
+ }
1548
+ ]
1549
+ }
1550
+ },
1551
+ "last-published-at": 1570786676787,
1552
+ subheadline:
1553
+ "time stamp testtime stamp testtime stamp testtime stamp testtime stamp testtime stamp testtime stamp test",
1554
+ alternative: {},
1555
+ sections: [
1556
+ {
1557
+ "domain-slug": null,
1558
+ slug: "health",
1559
+ name: "Health",
1560
+ "section-url": "https://ace-web.qtstage.io/health",
1561
+ id: 11181,
1562
+ "parent-id": null,
1563
+ "display-name": "Health",
1564
+ collection: {
1565
+ slug: "health",
1566
+ name: "Health",
1567
+ id: 15603
1568
+ },
1569
+ data: null
1570
+ }
1571
+ ],
1572
+ "story-audio": {
1573
+ "s3-key":
1574
+ "ace/story-audio/2019-10/7afda60c-1360-4320-bbe2-d6e29a8bcb1d/.cd246a47-5dd8-4636-8db7-d15b205ca999.mp3"
1575
+ },
1576
+ "access-level-value": null,
1577
+ "content-created-at": 1569910912673,
1578
+ "owner-name": "Shreya Shukla",
1579
+ "custom-slug": null,
1580
+ "push-notification": null,
1581
+ "publisher-id": 97,
1582
+ "hero-image-metadata": {
1583
+ width: 266,
1584
+ height: 190
1585
+ },
1586
+ comments: null,
1587
+ entities: {},
1588
+ "published-at": 1570786676787,
1589
+ "breaking-news-linked-story-id": null,
1590
+ "storyline-title": null,
1591
+ summary: null,
1592
+ "push-notification-title": null,
1593
+ "external-id": null,
1594
+ "canonical-url": null,
1595
+ autotags: [],
1596
+ "linked-entities": [],
1597
+ status: "published",
1598
+ "hero-image-attribution": "Bacardi test ",
1599
+ "bullet-type": "123",
1600
+ id: "7afda60c-1360-4320-bbe2-d6e29a8bcb1d",
1601
+ "hero-image-s3-key": "ace/2018-12/89a3fa9c-0b79-4140-b0ef-d1a35ea0b733/dog4.jpeg",
1602
+ contributors: [],
1603
+ cards: [
1604
+ {
1605
+ "story-elements": [
1606
+ {
1607
+ description: "",
1608
+ "page-url": "/story/7afda60c-1360-4320-bbe2-d6e29a8bcb1d/element/14890d2e-936a-459e-aed5-dd8e330c38d3",
1609
+ type: "text",
1610
+ "family-id": "950885ec-e6c2-4ee7-9269-d2de475338d2",
1611
+ title: "",
1612
+ id: "14890d2e-936a-459e-aed5-dd8e330c38d3",
1613
+ metadata: {},
1614
+ subtype: "summary",
1615
+ text:
1616
+ "<p>time stamp testtime stamp testtime stamp testtime stamp testtime stamp testtime stamp testtime stamp testtime stamp testtime stamp testtime stamp testtime stamp testtime stamp testtime stamp testtime stamp testtime stamp testtime stamp testtime stamp testtime stamp testtime stamp testtime stamp testtime stamp testtime stamp testtime stamp test</p>"
1617
+ }
1618
+ ],
1619
+ "card-updated-at": 1569910964026,
1620
+ "content-version-id": "fcf58ef5-1e24-41b0-ae31-d0de0594cf7f",
1621
+ "card-added-at": 1569910912686,
1622
+ status: "draft",
1623
+ id: "a6781258-a4ee-49e6-aec5-f5383db3abfa",
1624
+ "content-id": "a6781258-a4ee-49e6-aec5-f5383db3abfa",
1625
+ version: 3,
1626
+ metadata: {
1627
+ "social-share": {
1628
+ shareable: false,
1629
+ title: "Subscribed story time stamp test",
1630
+ message: null,
1631
+ image: {
1632
+ key: "ace/2018-12/89a3fa9c-0b79-4140-b0ef-d1a35ea0b733/dog4.jpeg",
1633
+ url: null,
1634
+ attribution: "Bacardi test ",
1635
+ caption: "test image caption ",
1636
+ metadata: {
1637
+ width: 266,
1638
+ height: 190
1639
+ }
1640
+ }
1641
+ },
1642
+ attributes: {}
1643
+ }
1644
+ },
1645
+ {
1646
+ "story-elements": [
1647
+ {
1648
+ description: "",
1649
+ "page-url": "/story/7afda60c-1360-4320-bbe2-d6e29a8bcb1d/element/cfd952a3-ce14-455d-bc27-6fd8ba9720c8",
1650
+ type: "text",
1651
+ "family-id": "3cd75898-e31f-404c-ad68-16f4b4aa6be7",
1652
+ title: "",
1653
+ id: "cfd952a3-ce14-455d-bc27-6fd8ba9720c8",
1654
+ metadata: {
1655
+ "linked-story": {
1656
+ headline: "New Summary test",
1657
+ "story-content-id": "39b60649-aa6f-49f6-8365-0981b799b3b7",
1658
+ "highlighted-text": "",
1659
+ id: "39b60649-aa6f-49f6-8365-0981b799b3b7",
1660
+ "highlighted-headline": null
1661
+ },
1662
+ "linked-story-id": "39b60649-aa6f-49f6-8365-0981b799b3b7"
1663
+ },
1664
+ subtype: "also-read",
1665
+ text: "New Summary test"
1666
+ },
1667
+ {
1668
+ description: "",
1669
+ "page-url": "/story/7afda60c-1360-4320-bbe2-d6e29a8bcb1d/element/927048d7-7410-4c11-83df-12ddcc6e0705",
1670
+ type: "text",
1671
+ "family-id": "575266d7-935b-4ec1-bd80-2e5deee1b7be",
1672
+ title: "",
1673
+ id: "927048d7-7410-4c11-83df-12ddcc6e0705",
1674
+ metadata: {},
1675
+ subtype: null,
1676
+ text:
1677
+ "<p>n literary theory, a text is any object that can be “read”, whether this object is a work of literature, a street sign, an arrangement of buildings on a city block, or styles of clothing. It is a coherent set of signs that transmits some kind of informative message.n literary theory, a text is any object that can be “read”, whether this object is</p> "
1678
+ },
1679
+ {
1680
+ description: "",
1681
+ "page-url": "/story/7afda60c-1360-4320-bbe2-d6e29a8bcb1d/element/1b742dc6-b708-40f4-a365-03340bf111bf",
1682
+ type: "text",
1683
+ "family-id": "3e89c0ef-3f77-472f-a437-cc269c151578",
1684
+ title: "",
1685
+ id: "1b742dc6-b708-40f4-a365-03340bf111bf",
1686
+ metadata: {},
1687
+ subtype: null,
1688
+ text:
1689
+ "<p>a work of literature, a street sign, an arrangement of buildings on a city block, or styles of clothing. It is a coherent set of signs that transmits some kind of informative message.n literary theory, a text is any object that can be “read”, whether this object is a work of literature, a street sign, an arrangement of buildings on a city block, or styles of clothing. It is a coherent set of signs that transmits some kind of informative message.</p>"
1690
+ }
1691
+ ],
1692
+ "card-updated-at": 1569910964026,
1693
+ "content-version-id": "21fc3ac1-304d-46fe-a467-e114cca94ef7",
1694
+ "card-added-at": 1569910960556,
1695
+ status: "draft",
1696
+ id: "399ed9ee-84b3-44fa-918c-5d3e6db3a00b",
1697
+ "content-id": "399ed9ee-84b3-44fa-918c-5d3e6db3a00b",
1698
+ version: 2,
1699
+ metadata: {
1700
+ "social-share": {
1701
+ shareable: false,
1702
+ title: "Subscribed story time stamp test",
1703
+ message: null,
1704
+ image: {
1705
+ key: "ace/2018-12/89a3fa9c-0b79-4140-b0ef-d1a35ea0b733/dog4.jpeg",
1706
+ url: null,
1707
+ attribution: "Bacardi test ",
1708
+ caption: "test image caption ",
1709
+ metadata: {
1710
+ width: 266,
1711
+ height: 190
1712
+ }
1713
+ }
1714
+ }
1715
+ }
1716
+ },
1717
+ {
1718
+ "story-elements": [
1719
+ {
1720
+ description: "",
1721
+ "page-url": "/story/7afda60c-1360-4320-bbe2-d6e29a8bcb1d/element/6afe8b08-59af-4886-8d55-92bbf5fbebeb",
1722
+ type: "text",
1723
+ "family-id": "4cb68e4c-556e-49e4-917f-41a9754815f6",
1724
+ title: "",
1725
+ id: "6afe8b08-59af-4886-8d55-92bbf5fbebeb",
1726
+ metadata: {},
1727
+ subtype: null,
1728
+ text:
1729
+ "<p>a work of literature, a street sign, an arrangement of buildings on a city block, or styles of clothing. It is a coherent set of signs that transmits some kind of informative message.n literary theory, a text is any object that can be “read”, whether this object is a work of literature, a street sign, an arrangement of buildings on a city block, or styles of clothing. It is a coherent set of signs that transmits some kind of informative message.a work of literature, a street sign, an arrangement of buildings on a city block, or styles of clothing. It is a coherent set of signs that transmits some kind of informative message.n literary theory, a text is any object that can be “read”, whether this object is a work of literature, a street sign, an arrangement of buildings on a city block, or styles of clothing. It is a coherent set of signs that transmits some kind of informative message.</p>"
1730
+ }
1731
+ ],
1732
+ "card-updated-at": 1570786670702,
1733
+ "content-version-id": "68b4c7d6-489c-42c3-b61a-83b159168dc3",
1734
+ "card-added-at": 1570786670702,
1735
+ status: "draft",
1736
+ id: "e46eb9a5-c0eb-40a1-84c4-da93b83ec752",
1737
+ "content-id": "e46eb9a5-c0eb-40a1-84c4-da93b83ec752",
1738
+ version: 1,
1739
+ metadata: {
1740
+ "social-share": {
1741
+ shareable: false,
1742
+ title: "Subscribed story time stamp test",
1743
+ message: null,
1744
+ image: {
1745
+ key: "ace/2018-12/89a3fa9c-0b79-4140-b0ef-d1a35ea0b733/dog4.jpeg",
1746
+ url: null,
1747
+ attribution: "Bacardi test ",
1748
+ caption: "test image caption ",
1749
+ metadata: {
1750
+ width: 266,
1751
+ height: 190
1752
+ }
1753
+ }
1754
+ },
1755
+ attributes: {}
1756
+ }
1757
+ },
1758
+ {
1759
+ "story-elements": [
1760
+ {
1761
+ description: "",
1762
+ "page-url": "/story/7afda60c-1360-4320-bbe2-d6e29a8bcb1d/element/10d364a0-ddf3-433b-ab07-235f29e21041",
1763
+ type: "text",
1764
+ "family-id": "cfc8d303-17cc-4e8f-9bf2-0815e840358c",
1765
+ title: "",
1766
+ id: "10d364a0-ddf3-433b-ab07-235f29e21041",
1767
+ metadata: {},
1768
+ subtype: null,
1769
+ text:
1770
+ "<p>a work of literature, a street sign, an arrangement of buildings on a city block, or styles of clothing. It is a coherent set of signs that transmits some kind of informative message.n literary theory, a text is any object that can be “read”, whether this object is a work of literature, a street sign, an arrangement of buildings on a city block, or styles of clothing. It is a coherent set of signs that transmits some kind of informative message.</p>"
1771
+ },
1772
+ {
1773
+ id: "00000000-0000-0000-0000-000000000000",
1774
+ description: "",
1775
+ title: "",
1776
+ subtype: null,
1777
+ type: "text",
1778
+ text: '<p>text <a href="https://ace-web.qtstage.io/">promotional</a> message</p>',
1779
+ metadata: {
1780
+ "promotional-message": true
1781
+ }
1782
+ }
1783
+ ],
1784
+ "card-updated-at": 1570786670702,
1785
+ "content-version-id": "c3a31b91-b606-4524-a36b-a35fbd174585",
1786
+ "card-added-at": 1570786670702,
1787
+ status: "draft",
1788
+ id: "f96ce2f4-550b-476a-889a-24e0b1b8d704",
1789
+ "content-id": "f96ce2f4-550b-476a-889a-24e0b1b8d704",
1790
+ version: 1,
1791
+ metadata: {
1792
+ "social-share": {
1793
+ shareable: false,
1794
+ title: "Subscribed story time stamp test",
1795
+ message: null,
1796
+ image: {
1797
+ key: "ace/2018-12/89a3fa9c-0b79-4140-b0ef-d1a35ea0b733/dog4.jpeg",
1798
+ url: null,
1799
+ attribution: "Bacardi test ",
1800
+ caption: "test image caption ",
1801
+ metadata: {
1802
+ width: 266,
1803
+ height: 190
1804
+ }
1805
+ }
1806
+ },
1807
+ attributes: {}
1808
+ }
1809
+ }
1810
+ ],
1811
+ url: "https://ace-web.qtstage.io/health/time-stamp-test",
1812
+ "story-version-id": "fd873d9b-5f08-4d8e-ac03-eb3f30eaf619",
1813
+ "content-type": "story",
1814
+ "content-updated-at": 1570786676934,
1815
+ "author-id": 187245,
1816
+ "owner-id": 187245,
1817
+ "linked-story-ids": ["39b60649-aa6f-49f6-8365-0981b799b3b7"],
1818
+ access: "subscription",
1819
+ "promotional-message": '<p>text <a href="https://ace-web.qtstage.io/">promotional</a> message</p>',
1820
+ "asana-project-id": null,
1821
+ "first-published-at": 1569910964399,
1822
+ "hero-image-caption": "test image caption ",
1823
+ version: 5,
1824
+ "story-template": "text",
1825
+ "sequence-no": null,
1826
+ "created-at": 1570786670689,
1827
+ authors: [
1828
+ {
1829
+ id: 187245,
1830
+ name: "Shreya Shukla",
1831
+ slug: "shreya-shukla-2",
1832
+ "avatar-url":
1833
+ "https://lh6.googleusercontent.com/-pBdJGAfN81c/AAAAAAAAAAI/AAAAAAAAAAA/ACHi3rfmrjS-gWdYzH3Gtmuib3KbVLdixw/photo.jpg",
1834
+ "avatar-s3-key": null,
1835
+ "twitter-handle": null,
1836
+ bio: null,
1837
+ "contributor-role": {
1838
+ id: 873,
1839
+ name: "Author"
1840
+ }
1841
+ }
1842
+ ],
1843
+ metadata: {
1844
+ "card-share": {
1845
+ shareable: false
1846
+ }
1847
+ },
1848
+ "publish-at": null,
1849
+ "assignee-name": "Shreya Shukla"
1850
+ }
1851
+ },
1852
+ {
1853
+ id: "f299b7e4-affa-4f22-8143-c700a736f1bd",
1854
+ "associated-metadata": {},
1855
+ type: "story",
1856
+ story: {
1857
+ "updated-at": 1570794627091,
1858
+ seo: {
1859
+ "claim-reviews": {
1860
+ story: null
1861
+ }
1862
+ },
1863
+ "assignee-id": 187245,
1864
+ "author-name": "Shreya Shukla",
1865
+ tags: [],
1866
+ headline: "Login demo story",
1867
+ "storyline-id": null,
1868
+ votes: {},
1869
+ "story-content-id": "f299b7e4-affa-4f22-8143-c700a736f1bd",
1870
+ slug: "parent-sec/child-sec/demo-story-2",
1871
+ "last-published-at": 1570794629699,
1872
+ subheadline: "demo story",
1873
+ alternative: {
1874
+ home: {
1875
+ default: {
1876
+ headline: "alternate story",
1877
+ "hero-image": null
1878
+ }
1879
+ }
1880
+ },
1881
+ sections: [
1882
+ {
1883
+ "domain-slug": null,
1884
+ slug: "child-sec",
1885
+ name: "child-sec",
1886
+ "section-url": "https://ace-web.qtstage.io/parent-sec/child-sec",
1887
+ id: 11825,
1888
+ "parent-id": 11824,
1889
+ "display-name": "child-sec",
1890
+ collection: {
1891
+ slug: "child-sec-parent-sec",
1892
+ name: "child-sec (parent-sec)",
1893
+ id: 17115
1894
+ },
1895
+ data: null
1896
+ }
1897
+ ],
1898
+ "story-audio": {
1899
+ "s3-key":
1900
+ "ace/story-audio/2019-10/f299b7e4-affa-4f22-8143-c700a736f1bd/.d60110cf-9fdd-4366-8e36-6f0cfb3956e7.mp3"
1901
+ },
1902
+ "access-level-value": null,
1903
+ "content-created-at": 1569826641547,
1904
+ "owner-name": "Shreya Shukla",
1905
+ "custom-slug": null,
1906
+ "push-notification": null,
1907
+ "publisher-id": 97,
1908
+ "hero-image-metadata": {
1909
+ width: 760,
1910
+ "mime-type": "image/jpeg",
1911
+ height: 506,
1912
+ "focus-point": [439, 232]
1913
+ },
1914
+ comments: null,
1915
+ entities: {},
1916
+ "published-at": 1570794629699,
1917
+ "breaking-news-linked-story-id": null,
1918
+ "storyline-title": null,
1919
+ summary: null,
1920
+ "push-notification-title": null,
1921
+ "external-id": null,
1922
+ "canonical-url": null,
1923
+ autotags: [],
1924
+ "linked-entities": [],
1925
+ status: "published",
1926
+ "hero-image-attribution": "happy panda",
1927
+ "bullet-type": "123",
1928
+ id: "f299b7e4-affa-4f22-8143-c700a736f1bd",
1929
+ "hero-image-s3-key": "ace/2019-05/8eb4b983-f33f-4fa4-926b-115b7dd60c21/panda.jpg",
1930
+ contributors: [],
1931
+ cards: [
1932
+ {
1933
+ "story-elements": [
1934
+ {
1935
+ description: "",
1936
+ "page-url": "/story/f299b7e4-affa-4f22-8143-c700a736f1bd/element/9c89611d-b826-48f4-9a26-bab2ddc0eb88",
1937
+ type: "text",
1938
+ "family-id": "3845f45a-f599-4a01-ba1d-4224318a13e8",
1939
+ title: "",
1940
+ id: "9c89611d-b826-48f4-9a26-bab2ddc0eb88",
1941
+ metadata: {},
1942
+ subtype: "summary",
1943
+ text: "<p>We're experiencing a problem here, our developers are on the case. Please try it later.</p>"
1944
+ }
1945
+ ],
1946
+ "card-updated-at": 1569826764243,
1947
+ "content-version-id": "f341dc46-b043-4c8d-ac8f-ec737e5f1c25",
1948
+ "card-added-at": 1569826743217,
1949
+ status: "draft",
1950
+ id: "92eb9283-6877-4b5e-a0f4-205415da4493",
1951
+ "content-id": "92eb9283-6877-4b5e-a0f4-205415da4493",
1952
+ version: 3,
1953
+ metadata: {
1954
+ "social-share": {
1955
+ shareable: false,
1956
+ title: "Login demo story",
1957
+ message: null,
1958
+ image: {
1959
+ key: "ace/2019-05/8eb4b983-f33f-4fa4-926b-115b7dd60c21/panda.jpg",
1960
+ url: null,
1961
+ attribution: "happy panda",
1962
+ caption: "panda",
1963
+ metadata: {
1964
+ width: 760,
1965
+ "mime-type": "image/jpeg",
1966
+ height: 506,
1967
+ "focus-point": [439, 232]
1968
+ }
1969
+ }
1970
+ },
1971
+ attributes: {}
1972
+ }
1973
+ },
1974
+ {
1975
+ "story-elements": [
1976
+ {
1977
+ description: "",
1978
+ "page-url": "/story/f299b7e4-affa-4f22-8143-c700a736f1bd/element/c7686ef5-2969-44b2-b1a8-6ad7935450e5",
1979
+ type: "text",
1980
+ "family-id": "16677d69-5bcf-4b66-a07a-460eb77b3384",
1981
+ title: "",
1982
+ id: "c7686ef5-2969-44b2-b1a8-6ad7935450e5",
1983
+ metadata: {},
1984
+ subtype: null,
1985
+ text: "<p>Card2</p>"
1986
+ }
1987
+ ],
1988
+ "card-updated-at": 1570794624997,
1989
+ "content-version-id": "51549b8a-6773-4566-8b94-7bde39b8a750",
1990
+ "card-added-at": 1570794624997,
1991
+ status: "draft",
1992
+ id: "ece586e2-eb7f-462c-841c-f74ac424fc50",
1993
+ "content-id": "ece586e2-eb7f-462c-841c-f74ac424fc50",
1994
+ version: 1,
1995
+ metadata: {
1996
+ "social-share": {
1997
+ shareable: false,
1998
+ title: "Login demo story",
1999
+ message: null,
2000
+ image: {
2001
+ key: "ace/2019-05/8eb4b983-f33f-4fa4-926b-115b7dd60c21/panda.jpg",
2002
+ url: null,
2003
+ attribution: "happy panda",
2004
+ caption: "panda",
2005
+ metadata: {
2006
+ width: 760,
2007
+ "mime-type": "image/jpeg",
2008
+ height: 506,
2009
+ "focus-point": [439, 232]
2010
+ }
2011
+ }
2012
+ },
2013
+ attributes: {}
2014
+ }
2015
+ },
2016
+ {
2017
+ "story-elements": [
2018
+ {
2019
+ description: "",
2020
+ "page-url": "/story/f299b7e4-affa-4f22-8143-c700a736f1bd/element/2ec760e4-9194-4ea2-86a0-6ab0070cb0dd",
2021
+ type: "text",
2022
+ "family-id": "a60e47f7-cd38-4a4b-819f-3485678ebdb9",
2023
+ title: "",
2024
+ id: "2ec760e4-9194-4ea2-86a0-6ab0070cb0dd",
2025
+ metadata: {},
2026
+ subtype: null,
2027
+ text: "<p>card 3</p>"
2028
+ },
2029
+ {
2030
+ id: "00000000-0000-0000-0000-000000000000",
2031
+ description: "",
2032
+ title: "",
2033
+ subtype: null,
2034
+ type: "text",
2035
+ text: '<p>text <a href="https://ace-web.qtstage.io/">promotional</a> message</p>',
2036
+ metadata: {
2037
+ "promotional-message": true
2038
+ }
2039
+ }
2040
+ ],
2041
+ "card-updated-at": 1570794624997,
2042
+ "content-version-id": "6ae26343-7c87-484f-a5a7-b4f41855b50c",
2043
+ "card-added-at": 1570794624997,
2044
+ status: "draft",
2045
+ id: "18a2fdb0-3e43-40f7-99e9-67ad0bf2bbca",
2046
+ "content-id": "18a2fdb0-3e43-40f7-99e9-67ad0bf2bbca",
2047
+ version: 1,
2048
+ metadata: {
2049
+ "social-share": {
2050
+ shareable: false,
2051
+ title: "Login demo story",
2052
+ message: null,
2053
+ image: {
2054
+ key: "ace/2019-05/8eb4b983-f33f-4fa4-926b-115b7dd60c21/panda.jpg",
2055
+ url: null,
2056
+ attribution: "happy panda",
2057
+ caption: "panda",
2058
+ metadata: {
2059
+ width: 760,
2060
+ "mime-type": "image/jpeg",
2061
+ height: 506,
2062
+ "focus-point": [439, 232]
2063
+ }
2064
+ }
2065
+ },
2066
+ attributes: {}
2067
+ }
2068
+ }
2069
+ ],
2070
+ url: "https://ace-web.qtstage.io/parent-sec/child-sec/demo-story-2",
2071
+ "story-version-id": "06320d9a-db59-4ff7-ad18-4b2e3649b1bb",
2072
+ "content-type": "story",
2073
+ "content-updated-at": 1570794629865,
2074
+ "author-id": 187245,
2075
+ "owner-id": 187245,
2076
+ "linked-story-ids": [],
2077
+ access: "login",
2078
+ "promotional-message": '<p>text <a href="https://ace-web.qtstage.io/">promotional</a> message</p>',
2079
+ "asana-project-id": null,
2080
+ "first-published-at": 1569826764621,
2081
+ "hero-image-caption": "panda",
2082
+ version: 9,
2083
+ "story-template": "text",
2084
+ "sequence-no": null,
2085
+ "created-at": 1570794624975,
2086
+ authors: [
2087
+ {
2088
+ id: 187245,
2089
+ name: "Shreya Shukla",
2090
+ slug: "shreya-shukla-2",
2091
+ "avatar-url":
2092
+ "https://lh6.googleusercontent.com/-pBdJGAfN81c/AAAAAAAAAAI/AAAAAAAAAAA/ACHi3rfmrjS-gWdYzH3Gtmuib3KbVLdixw/photo.jpg",
2093
+ "avatar-s3-key": null,
2094
+ "twitter-handle": null,
2095
+ bio: null,
2096
+ "contributor-role": {
2097
+ id: 873,
2098
+ name: "Author"
2099
+ }
2100
+ }
2101
+ ],
2102
+ metadata: {
2103
+ "card-share": {
2104
+ shareable: false
2105
+ }
2106
+ },
2107
+ "publish-at": null,
2108
+ "assignee-name": "Shreya Shukla"
2109
+ }
2110
+ },
2111
+ {
2112
+ id: "8ed73f9f-ac4e-453b-8508-1b5fbd99e71d",
2113
+ "associated-metadata": {},
2114
+ type: "story",
2115
+ story: {
2116
+ "updated-at": 1571032556498,
2117
+ seo: {
2118
+ "claim-reviews": {
2119
+ story: null
2120
+ }
2121
+ },
2122
+ "assignee-id": 187245,
2123
+ "author-name": "Shreya Shukla",
2124
+ tags: [],
2125
+ headline: "listicle with bullets.",
2126
+ "storyline-id": null,
2127
+ votes: {},
2128
+ "story-content-id": "8ed73f9f-ac4e-453b-8508-1b5fbd99e71d",
2129
+ slug: "lifestyle/listicle-with-reverse-count",
2130
+ "last-published-at": 1571032559396,
2131
+ subheadline: "listicle with reverse countlisticle with reverse countlisticle with reverse count",
2132
+ alternative: {},
2133
+ sections: [
2134
+ {
2135
+ "domain-slug": null,
2136
+ slug: "lifestyle",
2137
+ name: "Lifestyle",
2138
+ "section-url": "https://ace-web.qtstage.io/lifestyle",
2139
+ id: 5751,
2140
+ "parent-id": null,
2141
+ "display-name": "Lifestyle",
2142
+ collection: {
2143
+ slug: "lifestyle-updated-slug",
2144
+ name: "sports",
2145
+ id: 2728
2146
+ },
2147
+ data: null
2148
+ }
2149
+ ],
2150
+ "story-audio": {
2151
+ "s3-key":
2152
+ "ace/story-audio/2019-10/8ed73f9f-ac4e-453b-8508-1b5fbd99e71d/.f6427b6a-1695-4718-9ced-9c1eab9303e8.mp3"
2153
+ },
2154
+ "access-level-value": 100,
2155
+ "content-created-at": 1559584761098,
2156
+ "owner-name": "Shreya Shukla",
2157
+ "custom-slug": null,
2158
+ "push-notification": null,
2159
+ "publisher-id": 97,
2160
+ "hero-image-metadata": {
2161
+ width: 528,
2162
+ height: 350
2163
+ },
2164
+ comments: null,
2165
+ entities: {},
2166
+ "published-at": 1571032559396,
2167
+ "breaking-news-linked-story-id": null,
2168
+ "storyline-title": null,
2169
+ summary: null,
2170
+ "push-notification-title": null,
2171
+ "external-id": null,
2172
+ "canonical-url": null,
2173
+ autotags: [],
2174
+ "linked-entities": [],
2175
+ status: "published",
2176
+ "hero-image-attribution":
2177
+ "imagecaptiontestattributionimagecaptiontestattributionimagecaptiontestattributionimagecaptiontestattributionimagecaptiontestatt",
2178
+ "bullet-type": "bullets",
2179
+ id: "8ed73f9f-ac4e-453b-8508-1b5fbd99e71d",
2180
+ "hero-image-s3-key": "ace/2018-12/c19f080d-024d-4080-8bb0-13a2d85242a2/rose_blue_flower_rose_blooms_67636.jpeg",
2181
+ contributors: [],
2182
+ cards: [
2183
+ {
2184
+ "card-type": "introduction",
2185
+ "story-elements": [
2186
+ {
2187
+ description: "",
2188
+ "page-url": "/story/8ed73f9f-ac4e-453b-8508-1b5fbd99e71d/element/f4e0e915-046b-485f-99a2-b6627d2952c7",
2189
+ type: "text",
2190
+ "family-id": "f93b4a80-b160-47d9-bea6-8e8f6b9eb502",
2191
+ title: "",
2192
+ id: "f4e0e915-046b-485f-99a2-b6627d2952c7",
2193
+ metadata: {},
2194
+ subtype: null,
2195
+ text:
2196
+ "<p>Digital publishers often face margin squeeze on ads, and struggle with unproven revenue models, audience leakage to competition and rapidly changing technology. Overcome these problems effortlessly.Digital publishers often face margin squeeze on ads, and struggle with unproven revenue models, audience leakage to competition and rapidly changing technology. Overcome these problems effortlessly.</p>"
2197
+ }
2198
+ ],
2199
+ "card-updated-at": 1564139386962,
2200
+ "content-version-id": "7d8792eb-5e65-461b-b956-44ded3f0d24b",
2201
+ "card-added-at": 1559584761115,
2202
+ status: "draft",
2203
+ id: "442ab923-a0ee-46c6-8f2a-9d1e77897219",
2204
+ "content-id": "442ab923-a0ee-46c6-8f2a-9d1e77897219",
2205
+ version: 4,
2206
+ metadata: {
2207
+ "social-share": {
2208
+ shareable: false,
2209
+ title: "listicle with bullets.",
2210
+ message: null,
2211
+ image: {
2212
+ key: "ace/2018-12/c19f080d-024d-4080-8bb0-13a2d85242a2/rose_blue_flower_rose_blooms_67636.jpeg",
2213
+ url: null,
2214
+ attribution:
2215
+ "imagecaptiontestattributionimagecaptiontestattributionimagecaptiontestattributionimagecaptiontestattributionimagecaptiontestatt",
2216
+ caption:
2217
+ "imagecaptiontestattributionimagecaptiontestattributionimagecaptiontestattributionimagecaptiontestattributionimagecaptiontesta",
2218
+ metadata: {
2219
+ width: 528,
2220
+ height: 350
2221
+ }
2222
+ }
2223
+ },
2224
+ attributes: {}
2225
+ }
2226
+ },
2227
+ {
2228
+ "story-elements": [
2229
+ {
2230
+ description: "",
2231
+ "page-url": "/story/8ed73f9f-ac4e-453b-8508-1b5fbd99e71d/element/5368bde6-ccb6-4982-8d55-11847b9f3154",
2232
+ type: "title",
2233
+ "family-id": "6ac7aefc-ca88-40d3-b44d-d17df2f0d399",
2234
+ title: "",
2235
+ id: "5368bde6-ccb6-4982-8d55-11847b9f3154",
2236
+ metadata: {},
2237
+ subtype: null,
2238
+ text: "hello i am first carddfghjkljhgfdfghj"
2239
+ },
2240
+ {
2241
+ description: "",
2242
+ "page-url": "/story/8ed73f9f-ac4e-453b-8508-1b5fbd99e71d/element/772acc11-18a5-4708-9bbf-358e49cd74ce",
2243
+ type: "text",
2244
+ "family-id": "b95f7938-cba5-4f24-a2b0-8d9a7916e5a7",
2245
+ title: "",
2246
+ id: "772acc11-18a5-4708-9bbf-358e49cd74ce",
2247
+ metadata: {},
2248
+ subtype: null,
2249
+ text:
2250
+ "<p>Digital publishers often face margin squeeze on ads, and struggle with unproven revenue models, audience leakage to competition and rapidly changing technology. Overcome these problems effortlessly.Digital publishers often face margin squeeze on ads, and struggle with unproven revenue models, audience leakage to competition and rapidly changing technology. Overcome these problems effortlessly.</p>"
2251
+ },
2252
+ {
2253
+ description: "",
2254
+ "page-url": "/story/8ed73f9f-ac4e-453b-8508-1b5fbd99e71d/element/1c9a67ee-4dd9-46ef-9302-d1e8287761f0",
2255
+ type: "text",
2256
+ "family-id": "9b455959-c6bb-4f1d-b632-44302281455f",
2257
+ title: "",
2258
+ id: "1c9a67ee-4dd9-46ef-9302-d1e8287761f0",
2259
+ metadata: {},
2260
+ subtype: null,
2261
+ text: "<p>hello</p>"
2262
+ }
2263
+ ],
2264
+ "card-updated-at": 1571032554331,
2265
+ "content-version-id": "1ed6c4b7-bcc0-4a86-827d-35dc78d60ecb",
2266
+ "card-added-at": 1559584761115,
2267
+ status: "draft",
2268
+ id: "c1fbebd8-b22e-48e4-a4bc-2238295be273",
2269
+ "content-id": "c1fbebd8-b22e-48e4-a4bc-2238295be273",
2270
+ version: 4,
2271
+ metadata: {
2272
+ "social-share": {
2273
+ shareable: false,
2274
+ title: "listicle with bullets.",
2275
+ message: null,
2276
+ image: {
2277
+ key: "ace/2018-12/c19f080d-024d-4080-8bb0-13a2d85242a2/rose_blue_flower_rose_blooms_67636.jpeg",
2278
+ url: null,
2279
+ attribution:
2280
+ "imagecaptiontestattributionimagecaptiontestattributionimagecaptiontestattributionimagecaptiontestattributionimagecaptiontestatt",
2281
+ caption:
2282
+ "imagecaptiontestattributionimagecaptiontestattributionimagecaptiontestattributionimagecaptiontestattributionimagecaptiontesta",
2283
+ metadata: {
2284
+ width: 528,
2285
+ height: 350
2286
+ }
2287
+ }
2288
+ },
2289
+ attributes: {}
2290
+ }
2291
+ },
2292
+ {
2293
+ "story-elements": [
2294
+ {
2295
+ description: "",
2296
+ "page-url": "/story/8ed73f9f-ac4e-453b-8508-1b5fbd99e71d/element/8295725e-fc67-45ad-8a97-5df01700b9c5",
2297
+ type: "title",
2298
+ "family-id": "8c7bc2d4-f2dd-474a-b512-4bd4d5468922",
2299
+ title: "",
2300
+ id: "8295725e-fc67-45ad-8a97-5df01700b9c5",
2301
+ metadata: {},
2302
+ subtype: null,
2303
+ text: "hello i am second card "
2304
+ },
2305
+ {
2306
+ description: "",
2307
+ "page-url": "/story/8ed73f9f-ac4e-453b-8508-1b5fbd99e71d/element/27475841-6f66-49c8-a90a-1f03cd4b96a6",
2308
+ type: "text",
2309
+ "family-id": "eb7f0486-93f7-4264-8bc2-1412293972e7",
2310
+ title: "",
2311
+ id: "27475841-6f66-49c8-a90a-1f03cd4b96a6",
2312
+ metadata: {},
2313
+ subtype: null,
2314
+ text:
2315
+ "<p>Digital publishers often face margin squeeze on ads, and struggle with unproven revenue models, audience leakage to competition and rapidly changing technology. Overcome these problems effortlessly.Digital publishers often face margin squeeze on ads, and struggle with unproven revenue models, audience leakage to competition and rapidly changing technology. Overcome these problems effortlessly.</p>"
2316
+ },
2317
+ {
2318
+ description: "",
2319
+ "page-url": "/story/8ed73f9f-ac4e-453b-8508-1b5fbd99e71d/element/d6aaf29f-5009-4855-af3f-97db32afd742",
2320
+ type: "text",
2321
+ "family-id": "5b8cf546-9619-4aa1-8e50-c3cd7f4edcb2",
2322
+ title: "",
2323
+ id: "d6aaf29f-5009-4855-af3f-97db32afd742",
2324
+ metadata: {},
2325
+ subtype: "summary",
2326
+ text:
2327
+ "<p>Digital publishers often face margin squeeze on ads, and struggle with unproven revenue models, audience leakage to competition and rapidly changing technology. Overcome these problems effortlessly.</p>"
2328
+ }
2329
+ ],
2330
+ "card-updated-at": 1559584934935,
2331
+ "content-version-id": "879d8715-b71a-439c-a222-cb568e0a9870",
2332
+ "card-added-at": 1559584761115,
2333
+ status: "draft",
2334
+ id: "677afe0a-76af-4d72-825b-3aa815e912f3",
2335
+ "content-id": "677afe0a-76af-4d72-825b-3aa815e912f3",
2336
+ version: 2,
2337
+ metadata: {
2338
+ "social-share": {
2339
+ shareable: false,
2340
+ title: "listicle with bullets.",
2341
+ message: null,
2342
+ image: {
2343
+ key: "ace/2018-12/c19f080d-024d-4080-8bb0-13a2d85242a2/rose_blue_flower_rose_blooms_67636.jpeg",
2344
+ url: null,
2345
+ attribution:
2346
+ "imagecaptiontestattributionimagecaptiontestattributionimagecaptiontestattributionimagecaptiontestattributionimagecaptiontestatt",
2347
+ caption:
2348
+ "imagecaptiontestattributionimagecaptiontestattributionimagecaptiontestattributionimagecaptiontestattributionimagecaptiontesta",
2349
+ metadata: {
2350
+ width: 528,
2351
+ height: 350
2352
+ }
2353
+ }
2354
+ }
2355
+ }
2356
+ },
2357
+ {
2358
+ "story-elements": [
2359
+ {
2360
+ description: "",
2361
+ "page-url": "/story/8ed73f9f-ac4e-453b-8508-1b5fbd99e71d/element/52f3c740-4060-4151-962a-fbe6cba30e4f",
2362
+ type: "title",
2363
+ "family-id": "4bb2a1d1-2f09-40f9-a872-f2459b56932f",
2364
+ title: "",
2365
+ id: "52f3c740-4060-4151-962a-fbe6cba30e4f",
2366
+ metadata: {},
2367
+ subtype: null,
2368
+ text: "hello i am third card "
2369
+ },
2370
+ {
2371
+ description: "",
2372
+ "page-url": "/story/8ed73f9f-ac4e-453b-8508-1b5fbd99e71d/element/6e3384be-dd15-4e1d-b4cc-2c6c9de35750",
2373
+ type: "text",
2374
+ "family-id": "8f1fd420-05a4-4a31-ab3f-57a4db8d40e2",
2375
+ title: "",
2376
+ id: "6e3384be-dd15-4e1d-b4cc-2c6c9de35750",
2377
+ metadata: {
2378
+ content:
2379
+ "Digital publishers often face margin squeeze on ads, and struggle with unproven revenue models, audience leakage to competition and rapidly changing technology. Overcome these problems effortlessly.",
2380
+ attribution: "someone"
2381
+ },
2382
+ subtype: "blockquote",
2383
+ text:
2384
+ '<div><blockquote>Digital publishers often face margin squeeze on ads, and struggle with unproven revenue models, audience leakage to competition and rapidly changing technology. Overcome these problems effortlessly.</blockquote><span class="attribution">someone</span></div>'
2385
+ },
2386
+ {
2387
+ description: "",
2388
+ "page-url": "/story/8ed73f9f-ac4e-453b-8508-1b5fbd99e71d/element/f62b1a72-ee36-4eed-a730-e484d82e3678",
2389
+ type: "text",
2390
+ "family-id": "a6c12069-9003-46c4-8aa9-15997232c48e",
2391
+ title: "",
2392
+ id: "f62b1a72-ee36-4eed-a730-e484d82e3678",
2393
+ metadata: {},
2394
+ subtype: null,
2395
+ text:
2396
+ "<p>Digital publishers often face margin squeeze on ads, and struggle with unproven revenue models, audience leakage to competition and rapidly changing technology. Overcome these problems effortlessly.Digital publishers often face margin squeeze on ads, and struggle with unproven revenue models, audience leakage to competition and rapidly changing technology. Overcome these problems effortlessly.Digital publishers often face margin squeeze on ads, and struggle with unproven revenue models, audience leakage to competition and rapidly changing technology. Overcome these problems effortlessly.Digital publishers often face margin squeeze on ads, and struggle with unproven revenue models, audience leakage to competition and rapidly changing technology. Overcome these problems effortlessly.Digital publishers often face margin squeeze on ads, and struggle with unproven revenue models, audience leakage to competition and rapidly changing technology. Overcome these problems effortlessly.Digital publishers often face margin squeeze on ads, and struggle with unproven revenue models, audience leakage to competition and rapidly changing technology. Overcome these problems effortlessly.Digital publishers often face margin squeeze on ads, and struggle with unproven revenue models, audience leakage to competition and rapidly changing technology. Overcome these problems effortlessly.</p>"
2397
+ }
2398
+ ],
2399
+ "card-updated-at": 1559584934935,
2400
+ "content-version-id": "d65bf540-af25-47ab-b438-2cad006de1ac",
2401
+ "card-added-at": 1559584761115,
2402
+ status: "draft",
2403
+ id: "427b4e00-f182-4fc9-8e7e-ca10a56b5e9f",
2404
+ "content-id": "427b4e00-f182-4fc9-8e7e-ca10a56b5e9f",
2405
+ version: 2,
2406
+ metadata: {
2407
+ "social-share": {
2408
+ shareable: false,
2409
+ title: "listicle with bullets.",
2410
+ message: null,
2411
+ image: {
2412
+ key: "ace/2018-12/c19f080d-024d-4080-8bb0-13a2d85242a2/rose_blue_flower_rose_blooms_67636.jpeg",
2413
+ url: null,
2414
+ attribution:
2415
+ "imagecaptiontestattributionimagecaptiontestattributionimagecaptiontestattributionimagecaptiontestattributionimagecaptiontestatt",
2416
+ caption:
2417
+ "imagecaptiontestattributionimagecaptiontestattributionimagecaptiontestattributionimagecaptiontestattributionimagecaptiontesta",
2418
+ metadata: {
2419
+ width: 528,
2420
+ height: 350
2421
+ }
2422
+ }
2423
+ }
2424
+ }
2425
+ },
2426
+ {
2427
+ "story-elements": [
2428
+ {
2429
+ description: "",
2430
+ "page-url": "/story/8ed73f9f-ac4e-453b-8508-1b5fbd99e71d/element/b50cd4c2-8e64-40f1-8825-05888179be4f",
2431
+ type: "title",
2432
+ "family-id": "9c4762e0-41f1-45c2-8a6b-1f49b16adaa3",
2433
+ title: "",
2434
+ id: "b50cd4c2-8e64-40f1-8825-05888179be4f",
2435
+ metadata: {},
2436
+ subtype: null,
2437
+ text: "This is 4th card"
2438
+ },
2439
+ {
2440
+ description: "",
2441
+ "image-metadata": {
2442
+ "mime-type": "image/jpeg",
2443
+ width: 276,
2444
+ height: 182
2445
+ },
2446
+ "page-url": "/story/8ed73f9f-ac4e-453b-8508-1b5fbd99e71d/element/2a6ccb57-a1ee-4133-aae9-b6781e6f5c2c",
2447
+ type: "image",
2448
+ "family-id": "16589660-75c6-4fc7-8e73-61de136d04b9",
2449
+ "image-attribution": "",
2450
+ title: "",
2451
+ id: "2a6ccb57-a1ee-4133-aae9-b6781e6f5c2c",
2452
+ "image-s3-key": "ace/2019-02/45734b07-c503-4e8a-b7f3-017aed5ba1d7/images.jpeg",
2453
+ metadata: {},
2454
+ subtype: null,
2455
+ hyperlink: "https://www.google.com/"
2456
+ }
2457
+ ],
2458
+ "card-updated-at": 1561458187551,
2459
+ "content-version-id": "1380eb36-9c21-4879-be8c-3e6e3ed8d6da",
2460
+ "card-added-at": 1561458183510,
2461
+ status: "draft",
2462
+ id: "301503ba-6962-4e12-9811-e3981e787813",
2463
+ "content-id": "301503ba-6962-4e12-9811-e3981e787813",
2464
+ version: 2,
2465
+ metadata: {
2466
+ "social-share": {
2467
+ shareable: false,
2468
+ title: "listicle with bullets.",
2469
+ message: null,
2470
+ image: {
2471
+ key: "ace/2019-02/45734b07-c503-4e8a-b7f3-017aed5ba1d7/images.jpeg",
2472
+ url: null,
2473
+ attribution: "",
2474
+ caption: null,
2475
+ metadata: {
2476
+ "mime-type": "image/jpeg",
2477
+ width: 276,
2478
+ height: 182
2479
+ }
2480
+ }
2481
+ },
2482
+ attributes: {}
2483
+ }
2484
+ },
2485
+ {
2486
+ "story-elements": [
2487
+ {
2488
+ description: "",
2489
+ "page-url": "/story/8ed73f9f-ac4e-453b-8508-1b5fbd99e71d/element/5d399d4b-4194-4deb-b2df-97d8b49d3323",
2490
+ type: "title",
2491
+ "family-id": "d51bfda1-54c6-4da2-a23d-e4451e5f0c05",
2492
+ title: "",
2493
+ id: "5d399d4b-4194-4deb-b2df-97d8b49d3323",
2494
+ metadata: {},
2495
+ subtype: null,
2496
+ text: "This is fifth card"
2497
+ },
2498
+ {
2499
+ description: "",
2500
+ "image-metadata": {
2501
+ width: 1024,
2502
+ "mime-type": "image/jpeg",
2503
+ height: 768
2504
+ },
2505
+ "page-url": "/story/8ed73f9f-ac4e-453b-8508-1b5fbd99e71d/element/717d2b94-43dd-42a0-af5c-840c8d4e22fb",
2506
+ type: "image",
2507
+ "family-id": "f17adad4-8762-4f98-905e-130ceacb2711",
2508
+ "image-attribution": "",
2509
+ title: "",
2510
+ id: "717d2b94-43dd-42a0-af5c-840c8d4e22fb",
2511
+ "image-s3-key": "ace/2019-02/45b42adb-8eb6-4f96-8fde-2138e319a39f/jpeg_43.jpg",
2512
+ metadata: {},
2513
+ subtype: null,
2514
+ hyperlink: "https://www.google.com/"
2515
+ },
2516
+ {
2517
+ id: "00000000-0000-0000-0000-000000000000",
2518
+ description: "",
2519
+ title: "",
2520
+ subtype: null,
2521
+ type: "text",
2522
+ text: '<p>text <a href="https://ace-web.qtstage.io/">promotional</a> message</p>',
2523
+ metadata: {
2524
+ "promotional-message": true
2525
+ }
2526
+ }
2527
+ ],
2528
+ "card-updated-at": 1561458187551,
2529
+ "content-version-id": "f9574387-5fbe-4c45-b918-86f2d72736e9",
2530
+ "card-added-at": 1561458183510,
2531
+ status: "draft",
2532
+ id: "88cbfa23-98be-46b6-a47a-168399a45e76",
2533
+ "content-id": "88cbfa23-98be-46b6-a47a-168399a45e76",
2534
+ version: 2,
2535
+ metadata: {
2536
+ "social-share": {
2537
+ shareable: false,
2538
+ title: "listicle with bullets.",
2539
+ message: null,
2540
+ image: {
2541
+ key: "ace/2019-02/45b42adb-8eb6-4f96-8fde-2138e319a39f/jpeg_43.jpg",
2542
+ url: null,
2543
+ attribution: "",
2544
+ caption: null,
2545
+ metadata: {
2546
+ width: 1024,
2547
+ "mime-type": "image/jpeg",
2548
+ height: 768
2549
+ }
2550
+ }
2551
+ },
2552
+ attributes: {}
2553
+ }
2554
+ }
2555
+ ],
2556
+ url: "https://ace-web.qtstage.io/lifestyle/listicle-with-reverse-count",
2557
+ "story-version-id": "de2bbceb-432e-4c1b-ad47-3ee517cd3c61",
2558
+ "content-type": "story",
2559
+ "content-updated-at": 1571032559605,
2560
+ "author-id": 187245,
2561
+ "owner-id": 187245,
2562
+ "linked-story-ids": [],
2563
+ access: "subscription",
2564
+ "promotional-message": '<p>text <a href="https://ace-web.qtstage.io/">promotional</a> message</p>',
2565
+ "asana-project-id": null,
2566
+ "first-published-at": 1559584940824,
2567
+ "hero-image-caption":
2568
+ "imagecaptiontestattributionimagecaptiontestattributionimagecaptiontestattributionimagecaptiontestattributionimagecaptiontesta",
2569
+ version: 21,
2570
+ "story-template": "listicle",
2571
+ "sequence-no": null,
2572
+ "created-at": 1571032554310,
2573
+ authors: [
2574
+ {
2575
+ id: 187245,
2576
+ name: "Shreya Shukla",
2577
+ slug: "shreya-shukla-2",
2578
+ "avatar-url":
2579
+ "https://lh6.googleusercontent.com/-pBdJGAfN81c/AAAAAAAAAAI/AAAAAAAAAAA/ACHi3rfmrjS-gWdYzH3Gtmuib3KbVLdixw/photo.jpg",
2580
+ "avatar-s3-key": null,
2581
+ "twitter-handle": null,
2582
+ bio: null,
2583
+ "contributor-role": {
2584
+ id: 873,
2585
+ name: "Author"
2586
+ }
2587
+ }
2588
+ ],
2589
+ metadata: {
2590
+ "card-share": {
2591
+ shareable: false
2592
+ }
2593
+ },
2594
+ "publish-at": null,
2595
+ "assignee-name": "Shreya Shukla"
2596
+ }
2597
+ },
2598
+ {
2599
+ id: "f8803324-6cdf-434c-b9a7-b89cc5309ed7",
2600
+ "associated-metadata": {},
2601
+ type: "story",
2602
+ story: {
2603
+ "updated-at": 1571034606062,
2604
+ seo: {
2605
+ "claim-reviews": {
2606
+ story: null
2607
+ }
2608
+ },
2609
+ "assignee-id": 331449,
2610
+ "author-name": "Ekta Patnaik",
2611
+ tags: [],
2612
+ headline: "live blog test hero image",
2613
+ "storyline-id": null,
2614
+ votes: {},
2615
+ "story-content-id": "f8803324-6cdf-434c-b9a7-b89cc5309ed7",
2616
+ slug: "elections-2018/live-blog-test-hero-image",
2617
+ "last-published-at": 1571034606123,
2618
+ subheadline: "subtile test for cat",
2619
+ alternative: {},
2620
+ sections: [
2621
+ {
2622
+ "domain-slug": null,
2623
+ slug: "elections-2018",
2624
+ name: "Elections 2018",
2625
+ "section-url": "https://ace-web.qtstage.io/elections-2018",
2626
+ id: 18454,
2627
+ "parent-id": null,
2628
+ "display-name": "Elections 2018",
2629
+ collection: {
2630
+ slug: "elections-2018",
2631
+ name: "Elections 2018",
2632
+ id: 23928
2633
+ },
2634
+ data: {
2635
+ color: "#7b4f4f"
2636
+ }
2637
+ }
2638
+ ],
2639
+ "story-audio": {
2640
+ "s3-key": null
2641
+ },
2642
+ "access-level-value": null,
2643
+ "content-created-at": 1569328762732,
2644
+ "owner-name": "Ekta Patnaik",
2645
+ "custom-slug": null,
2646
+ "push-notification": null,
2647
+ "publisher-id": 97,
2648
+ "hero-image-metadata": {
2649
+ width: 586,
2650
+ height: 781
2651
+ },
2652
+ comments: null,
2653
+ entities: {},
2654
+ "published-at": 1571034606123,
2655
+ "breaking-news-linked-story-id": null,
2656
+ "storyline-title": null,
2657
+ summary: null,
2658
+ "push-notification-title": null,
2659
+ "external-id": null,
2660
+ "canonical-url": null,
2661
+ autotags: [],
2662
+ "linked-entities": [],
2663
+ status: "published",
2664
+ "hero-image-attribution": null,
2665
+ "bullet-type": "123",
2666
+ id: "f8803324-6cdf-434c-b9a7-b89cc5309ed7",
2667
+ "hero-image-s3-key": "ace/2019-09/8c6a7163-a978-42ef-8796-ef10d47a6f22/Taz_332.jpg",
2668
+ contributors: [],
2669
+ cards: [
2670
+ {
2671
+ "story-elements": [
2672
+ {
2673
+ description: "",
2674
+ "image-url":
2675
+ "https://thumbor-stg.assettype.com/ace/2019-09/8c6a7163-a978-42ef-8796-ef10d47a6f22/Taz_332.jpg",
2676
+ "member-id": 94985,
2677
+ "image-metadata": {
2678
+ width: 586,
2679
+ height: 781
2680
+ },
2681
+ "uploaded-at": 1567659556059,
2682
+ "page-url": "/story/f8803324-6cdf-434c-b9a7-b89cc5309ed7/element/2e9023af-9273-4f0b-ba9c-3e769fc8e3a0",
2683
+ type: "image",
2684
+ "family-id": "15f35589-5213-4f3b-8c6e-6c61ad9fd1d4",
2685
+ "image-attribution": "",
2686
+ title: "",
2687
+ id: "2e9023af-9273-4f0b-ba9c-3e769fc8e3a0",
2688
+ "image-s3-key": "ace/2019-09/8c6a7163-a978-42ef-8796-ef10d47a6f22/Taz_332.jpg",
2689
+ metadata: {},
2690
+ subtype: null,
2691
+ hyperlink: "https://www.google.com/"
2692
+ },
2693
+ {
2694
+ id: "00000000-0000-0000-0000-000000000000",
2695
+ description: "",
2696
+ title: "",
2697
+ subtype: null,
2698
+ type: "text",
2699
+ text: '<p>text <a href="https://ace-web.qtstage.io/">promotional</a> message</p>',
2700
+ metadata: {
2701
+ "promotional-message": true
2702
+ }
2703
+ }
2704
+ ],
2705
+ "card-updated-at": 1569328777159,
2706
+ "content-version-id": "1793fbc8-a4eb-4681-8688-538a34206d0f",
2707
+ "card-added-at": 1569328762738,
2708
+ status: "draft",
2709
+ id: "0524a15f-e668-4ec4-a66e-811f1ef87d6b",
2710
+ "content-id": "0524a15f-e668-4ec4-a66e-811f1ef87d6b",
2711
+ version: 3,
2712
+ metadata: {
2713
+ "social-share": {
2714
+ shareable: false,
2715
+ title: "live blog test hero image",
2716
+ message: null,
2717
+ image: {
2718
+ key: "ace/2019-09/8c6a7163-a978-42ef-8796-ef10d47a6f22/Taz_332.jpg",
2719
+ url: "https://thumbor-stg.assettype.com/ace/2019-09/8c6a7163-a978-42ef-8796-ef10d47a6f22/Taz_332.jpg",
2720
+ attribution: "",
2721
+ caption: null,
2722
+ metadata: {
2723
+ width: 586,
2724
+ height: 781
2725
+ }
2726
+ }
2727
+ },
2728
+ attributes: {}
2729
+ }
2730
+ }
2731
+ ],
2732
+ url: "https://ace-web.qtstage.io/elections-2018/live-blog-test-hero-image",
2733
+ "story-version-id": "a97d774a-eca5-4fab-8fb8-722c11dafa21",
2734
+ "content-type": "story",
2735
+ "content-updated-at": 1571034606198,
2736
+ "author-id": 331449,
2737
+ "owner-id": 331449,
2738
+ "linked-story-ids": [],
2739
+ access: null,
2740
+ "promotional-message": '<p>text <a href="https://ace-web.qtstage.io/">promotional</a> message</p>',
2741
+ "asana-project-id": null,
2742
+ "first-published-at": 1569328777608,
2743
+ "hero-image-caption": null,
2744
+ version: 5,
2745
+ "story-template": "live-blog",
2746
+ "sequence-no": null,
2747
+ "created-at": 1571034606062,
2748
+ authors: [
2749
+ {
2750
+ id: 331449,
2751
+ name: "Ekta Patnaik",
2752
+ slug: "ekta-patnaik",
2753
+ "avatar-url":
2754
+ "https://lh4.googleusercontent.com/-dsCFV4xALkk/AAAAAAAAAAI/AAAAAAAAAA8/UrIF-fDvZYU/photo.jpg",
2755
+ "avatar-s3-key": "ace/2019-07/8c418178-ede3-4e8e-995d-9b703cb589e7/IMG_20190502_000217.jpg",
2756
+ "twitter-handle": null,
2757
+ bio: null,
2758
+ "contributor-role": {
2759
+ id: 873,
2760
+ name: "Author"
2761
+ }
2762
+ }
2763
+ ],
2764
+ metadata: {
2765
+ "card-share": {
2766
+ shareable: false
2767
+ }
2768
+ },
2769
+ "hero-image-url":
2770
+ "https://thumbor-stg.assettype.com/ace/2019-09/8c6a7163-a978-42ef-8796-ef10d47a6f22/Taz_332.jpg",
2771
+ "publish-at": null,
2772
+ "assignee-name": "Ekta Patnaik"
2773
+ }
2774
+ }
2775
+ ],
2776
+ "created-at": 1571041151571,
2777
+ metadata: {
2778
+ "cover-image": {
2779
+ "cover-image-s3-key": "ace/2019-09/8c6a7163-a978-42ef-8796-ef10d47a6f22/Taz_332.jpg",
2780
+ "cover-image-metadata": {
2781
+ width: 586,
2782
+ height: 781,
2783
+ "focus-point": [293, 391]
2784
+ },
2785
+ caption: "",
2786
+ "cover-image-url":
2787
+ "https://thumbor-stg.assettype.com/ace/2019-09/8c6a7163-a978-42ef-8796-ef10d47a6f22/Taz_332.jpg"
2788
+ }
2789
+ }
2790
+ };