pds-dev-kit-web-test 2.5.592 → 2.5.594

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 (579) hide show
  1. package/dist/index.d.ts +6 -6
  2. package/dist/index.js +12 -3
  3. package/dist/scripts/copy-tinymce.d.ts +1 -0
  4. package/dist/scripts/copy-tinymce.js +32 -0
  5. package/dist/src/common/assets/icons/fill/Translate.d.ts +4 -0
  6. package/dist/src/common/assets/icons/fill/Translate.js +30 -0
  7. package/dist/src/common/assets/icons/fill/index.d.ts +1 -0
  8. package/dist/src/common/assets/icons/fill/index.js +2 -0
  9. package/dist/src/common/assets/icons/line/Translate.d.ts +4 -0
  10. package/dist/src/common/assets/icons/line/Translate.js +30 -0
  11. package/dist/src/common/assets/icons/line/index.d.ts +1 -0
  12. package/dist/src/common/assets/icons/line/index.js +2 -0
  13. package/dist/src/common/hooks/useParentResizeObserver.d.ts +2 -0
  14. package/dist/src/common/hooks/useParentResizeObserver.js +20 -0
  15. package/dist/src/common/hooks/useResizeObserver.d.ts +3 -0
  16. package/dist/src/common/hooks/useResizeObserver.js +27 -0
  17. package/dist/src/common/hooks/useTooltip.js +1 -1
  18. package/dist/src/common/hooks/useWindowSize.d.ts +4 -0
  19. package/dist/src/common/hooks/useWindowSize.js +22 -0
  20. package/dist/src/common/index.d.ts +1 -1
  21. package/dist/src/common/services/i18n/resources/en.json +61 -1
  22. package/dist/src/common/services/i18n/resources/es.json +61 -1
  23. package/dist/src/common/services/i18n/resources/fil.json +61 -1
  24. package/dist/src/common/services/i18n/resources/index.d.ts +421 -0
  25. package/dist/src/common/services/i18n/resources/ja.json +61 -1
  26. package/dist/src/common/services/i18n/resources/ko.json +62 -1
  27. package/dist/src/common/services/i18n/resources/zh-cn.json +61 -1
  28. package/dist/src/common/services/i18n/resources/zh-tw.json +61 -1
  29. package/dist/src/common/styles/colorSet/PaletteColor_Dark.json +4 -1
  30. package/dist/src/common/styles/colorSet/PaletteColor_light.json +4 -1
  31. package/dist/src/common/styles/colorSet/UIColor.json +5 -1
  32. package/dist/src/common/styles/colorSet/index.d.ts +10 -0
  33. package/dist/src/common/styles/colorSet/ui-type.d.ts +4 -0
  34. package/dist/src/common/styles/editorContentStyle.d.ts +1 -0
  35. package/dist/src/common/styles/editorContentStyle.js +76 -0
  36. package/dist/src/common/types/components.d.ts +9 -0
  37. package/dist/src/common/types/components.js +8 -0
  38. package/dist/src/common/types/index.d.ts +1 -1
  39. package/dist/src/common/types/index.js +1 -1
  40. package/dist/src/common/types/multilingual.d.ts +16 -0
  41. package/dist/src/common/types/text.d.ts +2 -0
  42. package/dist/src/common/utils/SystemUIPositionGenerator/hoverTypeSystemUICssGenerator.js +1 -1
  43. package/dist/src/common/utils/dateHelper.d.ts +3 -0
  44. package/dist/src/common/utils/dateHelper.js +37 -0
  45. package/dist/src/core/pricing/formatter.d.ts +4 -0
  46. package/dist/src/core/pricing/formatter.js +18 -0
  47. package/dist/src/core/pricing/index.d.ts +2 -0
  48. package/dist/src/core/pricing/index.js +18 -0
  49. package/dist/src/core/pricing/policy.d.ts +26 -0
  50. package/dist/src/core/pricing/policy.js +98 -0
  51. package/dist/src/core/pricing/service.d.ts +62 -0
  52. package/dist/src/core/pricing/service.js +157 -0
  53. package/dist/src/core/pricing/translator.d.ts +27 -0
  54. package/dist/src/core/pricing/translator.js +54 -0
  55. package/dist/src/core/pricing/types.d.ts +19 -0
  56. package/dist/src/core/pricing/types.js +31 -0
  57. package/dist/src/core/pricing/validator.d.ts +29 -0
  58. package/dist/src/core/pricing/validator.js +105 -0
  59. package/dist/src/desktop/common/components/TextFieldBase/TextFieldBase.d.ts +4 -1
  60. package/dist/src/desktop/common/components/TextFieldBase/TextFieldBase.js +32 -23
  61. package/dist/src/desktop/components/AdminList/AdminList.js +15 -17
  62. package/dist/src/desktop/components/BasicButtonGroup/BasicButtonGroup.js +1 -1
  63. package/dist/src/desktop/components/BasicFormGroup/BasicFormGroup.d.ts +8 -2
  64. package/dist/src/desktop/components/BasicFormGroup/BasicFormGroup.js +67 -6
  65. package/dist/src/desktop/components/BodyTextGroup/BodyTextGroup.d.ts +6 -1
  66. package/dist/src/desktop/components/BodyTextGroup/BodyTextGroup.js +70 -2
  67. package/dist/src/desktop/components/BoxItem/BoxItem.d.ts +67 -0
  68. package/dist/src/desktop/components/BoxItem/BoxItem.js +107 -0
  69. package/dist/src/desktop/components/BoxItem/LeftBox/Checkbox.d.ts +7 -0
  70. package/dist/src/desktop/components/BoxItem/LeftBox/Checkbox.js +9 -0
  71. package/dist/src/desktop/components/BoxItem/LeftBox/Image.d.ts +11 -0
  72. package/dist/src/desktop/components/BoxItem/LeftBox/Image.js +9 -0
  73. package/dist/src/desktop/components/BoxItem/LeftBox/LeftBox.d.ts +11 -0
  74. package/dist/src/desktop/components/BoxItem/LeftBox/LeftBox.js +36 -0
  75. package/dist/src/desktop/components/BoxItem/LeftBox/index.d.ts +2 -0
  76. package/dist/src/{sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner → desktop/components/BoxItem/LeftBox}/index.js +3 -3
  77. package/dist/src/desktop/components/BoxItem/index.d.ts +1 -0
  78. package/dist/src/desktop/components/BoxItem/index.js +8 -0
  79. package/dist/src/desktop/components/Calendar/AllDaySchedulesSection.d.ts +12 -0
  80. package/dist/src/desktop/components/Calendar/AllDaySchedulesSection.js +134 -0
  81. package/dist/src/desktop/components/Calendar/Calendar.d.ts +4 -0
  82. package/dist/src/desktop/components/Calendar/Calendar.js +399 -0
  83. package/dist/src/desktop/components/Calendar/CalendarContext.d.ts +51 -0
  84. package/dist/src/desktop/components/Calendar/CalendarContext.js +76 -0
  85. package/dist/src/desktop/components/Calendar/CurrentTimeIndicator.d.ts +7 -0
  86. package/dist/src/desktop/components/Calendar/CurrentTimeIndicator.js +48 -0
  87. package/dist/src/desktop/components/Calendar/DailyView.d.ts +2 -0
  88. package/dist/src/desktop/components/Calendar/DailyView.js +91 -0
  89. package/dist/src/desktop/components/Calendar/MonthlyView.d.ts +28 -0
  90. package/dist/src/desktop/components/Calendar/MonthlyView.js +419 -0
  91. package/dist/src/desktop/components/Calendar/MultiWeekSchedulesLayer.d.ts +21 -0
  92. package/dist/src/desktop/components/Calendar/MultiWeekSchedulesLayer.js +186 -0
  93. package/dist/src/desktop/components/Calendar/ScheduleItem.d.ts +25 -0
  94. package/dist/src/desktop/components/Calendar/ScheduleItem.js +56 -0
  95. package/dist/src/desktop/components/Calendar/TimeBasedScheduleItem.d.ts +12 -0
  96. package/dist/src/desktop/components/Calendar/TimeBasedScheduleItem.js +184 -0
  97. package/dist/src/desktop/components/Calendar/WeeklyView.d.ts +6 -0
  98. package/dist/src/desktop/components/Calendar/WeeklyView.js +114 -0
  99. package/dist/src/desktop/components/Calendar/YearlyView.d.ts +13 -0
  100. package/dist/src/desktop/components/Calendar/YearlyView.js +76 -0
  101. package/dist/src/desktop/components/Calendar/calendarUtils.d.ts +24 -0
  102. package/dist/src/desktop/components/Calendar/calendarUtils.js +87 -0
  103. package/dist/src/desktop/components/Calendar/constants.d.ts +1 -0
  104. package/dist/src/desktop/components/Calendar/constants.js +31 -0
  105. package/dist/src/desktop/components/Calendar/index.d.ts +14 -0
  106. package/dist/src/desktop/components/Calendar/index.js +42 -0
  107. package/dist/src/desktop/components/Calendar/timeFormatUtils.d.ts +18 -0
  108. package/dist/src/desktop/components/Calendar/timeFormatUtils.js +59 -0
  109. package/dist/src/desktop/components/Calendar/types.d.ts +61 -0
  110. package/dist/src/desktop/components/ChatBubbleListItem/ChatBubbleListItem.d.ts +2 -3
  111. package/dist/src/desktop/components/ChatBubbleListItem/ChatBubbleListItem.js +3 -8
  112. package/dist/src/desktop/components/ChatList/Body.d.ts +1 -1
  113. package/dist/src/desktop/components/PriceTextField/PriceTextField.d.ts +43 -0
  114. package/dist/src/desktop/components/PriceTextField/PriceTextField.js +604 -0
  115. package/dist/src/desktop/components/PriceTextField/index.d.ts +1 -0
  116. package/dist/src/desktop/components/PriceTextField/index.js +8 -0
  117. package/dist/src/desktop/components/PriceTextLabel/PriceTextLabel.d.ts +14 -0
  118. package/dist/src/desktop/components/PriceTextLabel/PriceTextLabel.js +47 -0
  119. package/dist/src/desktop/components/PriceTextLabel/index.d.ts +1 -0
  120. package/dist/src/desktop/components/PriceTextLabel/index.js +8 -0
  121. package/dist/src/desktop/components/RichTextEditor/RichTextEditor.d.ts +34 -0
  122. package/dist/src/desktop/components/RichTextEditor/RichTextEditor.js +247 -0
  123. package/dist/src/desktop/components/RichTextEditor/index.d.ts +2 -0
  124. package/dist/src/desktop/components/RichTextEditor/index.js +8 -0
  125. package/dist/src/desktop/components/Snackbar/Snackbar.d.ts +17 -0
  126. package/dist/src/desktop/components/Snackbar/Snackbar.js +221 -0
  127. package/dist/src/desktop/components/Snackbar/index.d.ts +1 -0
  128. package/dist/src/desktop/components/Snackbar/index.js +8 -0
  129. package/dist/src/desktop/components/Snackbar/provider.d.ts +11 -0
  130. package/dist/src/desktop/components/Snackbar/provider.js +43 -0
  131. package/dist/src/desktop/components/TextButton/TextButton.d.ts +6 -3
  132. package/dist/src/desktop/components/TextButton/TextButton.js +67 -40
  133. package/dist/src/desktop/components/TextField/TextField.d.ts +2 -1
  134. package/dist/src/desktop/components/TextField/TextField.js +7 -7
  135. package/dist/src/desktop/components/TextLabel/TextLabel.d.ts +3 -3
  136. package/dist/src/desktop/components/UploadTextButton/UploadTextButton.d.ts +1 -1
  137. package/dist/src/desktop/components/UploadTextButton/UploadTextButton.js +56 -39
  138. package/dist/src/desktop/components/index.d.ts +7 -1
  139. package/dist/src/desktop/components/index.js +14 -1
  140. package/dist/src/desktop/index.d.ts +1 -1
  141. package/dist/src/desktop/index.js +8 -2
  142. package/dist/src/desktop/layout/LayoutWF/Containers/ContentsContainer/variation/WFA.js +1 -1
  143. package/dist/src/desktop/layout/LayoutWF/Containers/ContentsContainer/variation/WFB.js +1 -1
  144. package/dist/src/desktop/layout/LayoutWF/Containers/ContentsContainer/variation/WFE.js +1 -1
  145. package/dist/src/desktop/layout/LayoutWF/Containers/ContentsContainer/variation/WFL.js +8 -5
  146. package/dist/src/desktop/panels/DesktopHeadlessModal/DesktopHeadlessModal.d.ts +17 -2
  147. package/dist/src/desktop/panels/DesktopHeadlessModal/DesktopHeadlessModal.js +37 -6
  148. package/dist/src/desktop/panels/MultilingualModal/MultilingualModal.d.ts +13 -0
  149. package/dist/src/desktop/panels/MultilingualModal/MultilingualModal.js +213 -0
  150. package/dist/src/desktop/panels/MultilingualModal/index.d.ts +1 -0
  151. package/dist/src/{sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList → desktop/panels/MultilingualModal}/index.js +3 -3
  152. package/dist/src/desktop/panels/index.d.ts +2 -1
  153. package/dist/src/desktop/panels/index.js +6 -1
  154. package/dist/src/hybrid/components/Divider/Divider.d.ts +3 -1
  155. package/dist/src/hybrid/components/Divider/Divider.js +9 -7
  156. package/dist/src/mobile/common/components/TextFieldBase/TextFieldBase.d.ts +3 -1
  157. package/dist/src/mobile/common/components/TextFieldBase/TextFieldBase.js +26 -22
  158. package/dist/src/mobile/components/BoxItem/BoxItem.d.ts +67 -0
  159. package/dist/src/mobile/components/BoxItem/BoxItem.js +106 -0
  160. package/dist/src/mobile/components/BoxItem/LeftBox/Checkbox.d.ts +7 -0
  161. package/dist/src/mobile/components/BoxItem/LeftBox/Checkbox.js +9 -0
  162. package/dist/src/mobile/components/BoxItem/LeftBox/Image.d.ts +11 -0
  163. package/dist/src/mobile/components/BoxItem/LeftBox/Image.js +9 -0
  164. package/dist/src/mobile/components/BoxItem/LeftBox/LeftBox.d.ts +11 -0
  165. package/dist/src/mobile/components/BoxItem/LeftBox/LeftBox.js +36 -0
  166. package/dist/src/mobile/components/BoxItem/LeftBox/index.d.ts +2 -0
  167. package/dist/src/mobile/components/BoxItem/LeftBox/index.js +8 -0
  168. package/dist/src/mobile/components/BoxItem/index.d.ts +1 -0
  169. package/dist/src/mobile/components/BoxItem/index.js +8 -0
  170. package/dist/src/mobile/components/ChatBubbleListItem/ChatBubbleListItem.d.ts +2 -3
  171. package/dist/src/mobile/components/ChatBubbleListItem/ChatBubbleListItem.js +3 -8
  172. package/dist/src/mobile/components/ChatList/Body.d.ts +1 -1
  173. package/dist/src/mobile/components/PriceTextField/PriceTextField.d.ts +42 -0
  174. package/dist/src/mobile/components/PriceTextField/PriceTextField.js +591 -0
  175. package/dist/src/mobile/components/PriceTextField/index.d.ts +1 -0
  176. package/dist/src/mobile/components/PriceTextField/index.js +8 -0
  177. package/dist/src/mobile/components/PriceTextLabel/PriceTextLabel.d.ts +14 -0
  178. package/dist/src/mobile/components/PriceTextLabel/PriceTextLabel.js +47 -0
  179. package/dist/src/mobile/components/PriceTextLabel/index.d.ts +1 -0
  180. package/dist/src/mobile/components/PriceTextLabel/index.js +8 -0
  181. package/dist/src/mobile/components/RichTextEditor/RichTextEditor.d.ts +34 -0
  182. package/dist/src/mobile/components/RichTextEditor/RichTextEditor.js +253 -0
  183. package/dist/src/mobile/components/RichTextEditor/index.d.ts +2 -0
  184. package/dist/src/mobile/components/RichTextEditor/index.js +8 -0
  185. package/dist/src/mobile/components/Snackbar/Snackbar.d.ts +17 -0
  186. package/dist/src/mobile/components/Snackbar/Snackbar.js +221 -0
  187. package/dist/src/mobile/components/Snackbar/index.d.ts +1 -0
  188. package/dist/src/mobile/components/Snackbar/index.js +8 -0
  189. package/dist/src/mobile/components/Snackbar/provider.d.ts +11 -0
  190. package/dist/src/mobile/components/Snackbar/provider.js +43 -0
  191. package/dist/src/mobile/components/TextButton/TextButton.d.ts +6 -3
  192. package/dist/src/mobile/components/TextButton/TextButton.js +55 -31
  193. package/dist/src/mobile/components/TextField/TextField.d.ts +2 -1
  194. package/dist/src/mobile/components/TextField/TextField.js +7 -7
  195. package/dist/src/mobile/components/TextLabel/TextLabel.d.ts +3 -3
  196. package/dist/src/mobile/components/UploadTextButton/UploadTextButton.d.ts +1 -1
  197. package/dist/src/mobile/components/UploadTextButton/UploadTextButton.js +44 -30
  198. package/dist/src/mobile/components/index.d.ts +6 -1
  199. package/dist/src/mobile/components/index.js +11 -1
  200. package/dist/src/mobile/index.d.ts +1 -1
  201. package/dist/src/mobile/index.js +7 -2
  202. package/dist/src/sub/AdminList/AdminList/AdminList.js +18 -17
  203. package/dist/src/sub/DynamicLayout/CompositionRenderer/ComponentBlockMatcher.js +1 -4
  204. package/dist/src/sub/DynamicLayout/CompositionRenderer/Composition.d.ts +3 -5
  205. package/dist/src/sub/DynamicLayout/CompositionRenderer/Composition.js +54 -54
  206. package/dist/src/sub/DynamicLayout/CompositionRenderer/CompositionRenderer.d.ts +6 -0
  207. package/dist/src/sub/DynamicLayout/CompositionRenderer/CompositionRenderer.js +27 -0
  208. package/dist/src/sub/DynamicLayout/DynamicLayout.d.ts +1 -1
  209. package/dist/src/sub/DynamicLayout/DynamicLayout.js +2 -4
  210. package/dist/src/sub/DynamicLayout/components/Section/components/CustomSectionBackgroundMedia.js +2 -24
  211. package/dist/src/sub/DynamicLayout/components/Section/sectionContext.d.ts +2 -2
  212. package/dist/src/sub/DynamicLayout/components/Section/util/parseSectionBackgroundMediaData.js +1 -3
  213. package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/index.d.ts +0 -40
  214. package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/index.js +177 -36
  215. package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/styles/colorSet/PaletteColor_Dark.json +4 -152
  216. package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/styles/colorSet/PaletteColor_light.json +2 -150
  217. package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/styles/colorSet/SemanticColor.json +1 -45
  218. package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/styles/colorSet/UIColor.json +9 -262
  219. package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/styles/colorSet/index.d.ts +0 -593
  220. package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/styles/colorSet/ui-type.d.ts +0 -253
  221. package/dist/src/sub/DynamicLayout/components/pdsOriginal/desktop/IconButton/IconButton.d.ts +1 -3
  222. package/dist/src/sub/DynamicLayout/components/pdsOriginal/desktop/IconButton/IconButton.js +3 -5
  223. package/dist/src/sub/DynamicLayout/components/pdsOriginal/hybrid/Icon/Icon.d.ts +1 -2
  224. package/dist/src/sub/DynamicLayout/components/pdsOriginal/hybrid/Icon/Icon.js +2 -9
  225. package/dist/src/sub/DynamicLayout/mock_video_cb.d.ts +1 -0
  226. package/dist/src/sub/DynamicLayout/mock_video_cb.js +5 -4
  227. package/dist/src/sub/DynamicLayout/mocks.d.ts +961 -8
  228. package/dist/src/sub/DynamicLayout/mocks.js +4239 -55
  229. package/dist/src/sub/DynamicLayout/sectionActionTypes.d.ts +4 -4
  230. package/dist/src/sub/DynamicLayout/sections/CustomSection/CustomSection.d.ts +1 -1
  231. package/dist/src/sub/DynamicLayout/sections/CustomSection/CustomSection.js +7 -7
  232. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/ComponentBlockMatcher.js +3 -13
  233. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Button/Button.js +2 -18
  234. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/ContentsCarousel.d.ts +4 -10
  235. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/ContentsCarousel.js +3 -134
  236. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Image/Image.js +3 -39
  237. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Text/Text.js +8 -49
  238. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/VideoPlayer/VideoPlayer.js +28 -3
  239. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/VideoPlayer/helper.d.ts +1 -0
  240. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/VideoPlayer/helper.js +15 -5
  241. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/types.d.ts +3 -55
  242. package/dist/src/sub/DynamicLayout/sections/CustomSection/newUtils/group.d.ts +1 -1
  243. package/dist/src/sub/DynamicLayout/sections/CustomSection/newUtils/replaceUndefinedValues.js +1 -1
  244. package/dist/src/sub/DynamicLayout/sections/CustomSection/types.d.ts +10 -27
  245. package/dist/src/sub/DynamicLayout/sections/CustomSection/types.js +1 -3
  246. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/effectPropParsers/parseEffectPropEntAnim.d.ts +4 -4
  247. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/layoutPropParsers/parseLayoutPropPadding.d.ts +2 -2
  248. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/parseJsonProperties.d.ts +2 -2
  249. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/parsePlacement.d.ts +2 -7
  250. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/parsePlacement.js +5 -10
  251. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/parseProperties.d.ts +2 -2
  252. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/stylePropParsers/parseStylePropTextSpec.js +0 -2
  253. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/types.d.ts +3 -53
  254. package/dist/src/sub/DynamicLayout/sections/FlexGridCustomSection.d.ts +1 -1
  255. package/dist/src/sub/DynamicLayout/sections/FlexGridCustomSection.js +0 -1
  256. package/dist/src/sub/DynamicLayout/types.d.ts +17 -64
  257. package/dist/tinymce/CHANGELOG.md +3453 -0
  258. package/dist/tinymce/README.md +73 -0
  259. package/dist/tinymce/bower.json +27 -0
  260. package/dist/tinymce/composer.json +52 -0
  261. package/dist/tinymce/icons/default/icons.js +194 -0
  262. package/dist/tinymce/icons/default/icons.min.js +1 -0
  263. package/dist/tinymce/icons/default/index.js +7 -0
  264. package/dist/tinymce/license.txt +21 -0
  265. package/dist/tinymce/models/dom/index.js +7 -0
  266. package/dist/tinymce/models/dom/model.js +8040 -0
  267. package/dist/tinymce/models/dom/model.min.js +1 -0
  268. package/dist/tinymce/notices.txt +21 -0
  269. package/dist/tinymce/package.json +32 -0
  270. package/dist/tinymce/plugins/accordion/index.js +7 -0
  271. package/dist/tinymce/plugins/accordion/plugin.js +1054 -0
  272. package/dist/tinymce/plugins/accordion/plugin.min.js +5 -0
  273. package/dist/tinymce/plugins/advlist/index.js +7 -0
  274. package/dist/tinymce/plugins/advlist/plugin.js +259 -0
  275. package/dist/tinymce/plugins/advlist/plugin.min.js +5 -0
  276. package/dist/tinymce/plugins/anchor/index.js +7 -0
  277. package/dist/tinymce/plugins/anchor/plugin.js +214 -0
  278. package/dist/tinymce/plugins/anchor/plugin.min.js +5 -0
  279. package/dist/tinymce/plugins/autolink/index.js +7 -0
  280. package/dist/tinymce/plugins/autolink/plugin.js +228 -0
  281. package/dist/tinymce/plugins/autolink/plugin.min.js +5 -0
  282. package/dist/tinymce/plugins/autoresize/index.js +7 -0
  283. package/dist/tinymce/plugins/autoresize/plugin.js +192 -0
  284. package/dist/tinymce/plugins/autoresize/plugin.min.js +5 -0
  285. package/dist/tinymce/plugins/autosave/index.js +7 -0
  286. package/dist/tinymce/plugins/autosave/plugin.js +233 -0
  287. package/dist/tinymce/plugins/autosave/plugin.min.js +5 -0
  288. package/dist/tinymce/plugins/charmap/index.js +7 -0
  289. package/dist/tinymce/plugins/charmap/plugin.js +1658 -0
  290. package/dist/tinymce/plugins/charmap/plugin.min.js +5 -0
  291. package/dist/tinymce/plugins/code/index.js +7 -0
  292. package/dist/tinymce/plugins/code/plugin.js +85 -0
  293. package/dist/tinymce/plugins/code/plugin.min.js +5 -0
  294. package/dist/tinymce/plugins/codesample/index.js +7 -0
  295. package/dist/tinymce/plugins/codesample/plugin.js +2471 -0
  296. package/dist/tinymce/plugins/codesample/plugin.min.js +13 -0
  297. package/dist/tinymce/plugins/directionality/index.js +7 -0
  298. package/dist/tinymce/plugins/directionality/plugin.js +395 -0
  299. package/dist/tinymce/plugins/directionality/plugin.min.js +5 -0
  300. package/dist/tinymce/plugins/emoticons/index.js +7 -0
  301. package/dist/tinymce/plugins/emoticons/js/emojiimages.js +1 -0
  302. package/dist/tinymce/plugins/emoticons/js/emojiimages.min.js +1 -0
  303. package/dist/tinymce/plugins/emoticons/js/emojis.js +1 -0
  304. package/dist/tinymce/plugins/emoticons/js/emojis.min.js +1 -0
  305. package/dist/tinymce/plugins/emoticons/plugin.js +595 -0
  306. package/dist/tinymce/plugins/emoticons/plugin.min.js +5 -0
  307. package/dist/tinymce/plugins/fullscreen/index.js +7 -0
  308. package/dist/tinymce/plugins/fullscreen/plugin.js +1249 -0
  309. package/dist/tinymce/plugins/fullscreen/plugin.min.js +5 -0
  310. package/dist/tinymce/plugins/help/index.js +7 -0
  311. package/dist/tinymce/plugins/help/js/i18n/keynav/ar.js +90 -0
  312. package/dist/tinymce/plugins/help/js/i18n/keynav/bg_BG.js +90 -0
  313. package/dist/tinymce/plugins/help/js/i18n/keynav/ca.js +90 -0
  314. package/dist/tinymce/plugins/help/js/i18n/keynav/cs.js +90 -0
  315. package/dist/tinymce/plugins/help/js/i18n/keynav/da.js +90 -0
  316. package/dist/tinymce/plugins/help/js/i18n/keynav/de.js +90 -0
  317. package/dist/tinymce/plugins/help/js/i18n/keynav/el.js +90 -0
  318. package/dist/tinymce/plugins/help/js/i18n/keynav/en.js +90 -0
  319. package/dist/tinymce/plugins/help/js/i18n/keynav/es.js +90 -0
  320. package/dist/tinymce/plugins/help/js/i18n/keynav/eu.js +90 -0
  321. package/dist/tinymce/plugins/help/js/i18n/keynav/fa.js +90 -0
  322. package/dist/tinymce/plugins/help/js/i18n/keynav/fi.js +90 -0
  323. package/dist/tinymce/plugins/help/js/i18n/keynav/fr_FR.js +90 -0
  324. package/dist/tinymce/plugins/help/js/i18n/keynav/he_IL.js +90 -0
  325. package/dist/tinymce/plugins/help/js/i18n/keynav/hi.js +90 -0
  326. package/dist/tinymce/plugins/help/js/i18n/keynav/hr.js +90 -0
  327. package/dist/tinymce/plugins/help/js/i18n/keynav/hu_HU.js +90 -0
  328. package/dist/tinymce/plugins/help/js/i18n/keynav/id.js +90 -0
  329. package/dist/tinymce/plugins/help/js/i18n/keynav/it.js +90 -0
  330. package/dist/tinymce/plugins/help/js/i18n/keynav/ja.js +90 -0
  331. package/dist/tinymce/plugins/help/js/i18n/keynav/kk.js +90 -0
  332. package/dist/tinymce/plugins/help/js/i18n/keynav/ko_KR.js +90 -0
  333. package/dist/tinymce/plugins/help/js/i18n/keynav/ms.js +90 -0
  334. package/dist/tinymce/plugins/help/js/i18n/keynav/nb_NO.js +90 -0
  335. package/dist/tinymce/plugins/help/js/i18n/keynav/nl.js +90 -0
  336. package/dist/tinymce/plugins/help/js/i18n/keynav/pl.js +90 -0
  337. package/dist/tinymce/plugins/help/js/i18n/keynav/pt_BR.js +90 -0
  338. package/dist/tinymce/plugins/help/js/i18n/keynav/pt_PT.js +90 -0
  339. package/dist/tinymce/plugins/help/js/i18n/keynav/ro.js +90 -0
  340. package/dist/tinymce/plugins/help/js/i18n/keynav/ru.js +90 -0
  341. package/dist/tinymce/plugins/help/js/i18n/keynav/sk.js +90 -0
  342. package/dist/tinymce/plugins/help/js/i18n/keynav/sl_SI.js +90 -0
  343. package/dist/tinymce/plugins/help/js/i18n/keynav/sv_SE.js +90 -0
  344. package/dist/tinymce/plugins/help/js/i18n/keynav/th_TH.js +90 -0
  345. package/dist/tinymce/plugins/help/js/i18n/keynav/tr.js +90 -0
  346. package/dist/tinymce/plugins/help/js/i18n/keynav/uk.js +90 -0
  347. package/dist/tinymce/plugins/help/js/i18n/keynav/vi.js +90 -0
  348. package/dist/tinymce/plugins/help/js/i18n/keynav/zh_CN.js +84 -0
  349. package/dist/tinymce/plugins/help/js/i18n/keynav/zh_TW.js +90 -0
  350. package/dist/tinymce/plugins/help/plugin.js +898 -0
  351. package/dist/tinymce/plugins/help/plugin.min.js +5 -0
  352. package/dist/tinymce/plugins/image/index.js +7 -0
  353. package/dist/tinymce/plugins/image/plugin.js +1505 -0
  354. package/dist/tinymce/plugins/image/plugin.min.js +5 -0
  355. package/dist/tinymce/plugins/importcss/index.js +7 -0
  356. package/dist/tinymce/plugins/importcss/plugin.js +344 -0
  357. package/dist/tinymce/plugins/importcss/plugin.min.js +5 -0
  358. package/dist/tinymce/plugins/insertdatetime/index.js +7 -0
  359. package/dist/tinymce/plugins/insertdatetime/plugin.js +187 -0
  360. package/dist/tinymce/plugins/insertdatetime/plugin.min.js +5 -0
  361. package/dist/tinymce/plugins/link/index.js +7 -0
  362. package/dist/tinymce/plugins/link/plugin.js +1242 -0
  363. package/dist/tinymce/plugins/link/plugin.min.js +5 -0
  364. package/dist/tinymce/plugins/lists/index.js +7 -0
  365. package/dist/tinymce/plugins/lists/plugin.js +2172 -0
  366. package/dist/tinymce/plugins/lists/plugin.min.js +5 -0
  367. package/dist/tinymce/plugins/media/index.js +7 -0
  368. package/dist/tinymce/plugins/media/plugin.js +1217 -0
  369. package/dist/tinymce/plugins/media/plugin.min.js +5 -0
  370. package/dist/tinymce/plugins/nonbreaking/index.js +7 -0
  371. package/dist/tinymce/plugins/nonbreaking/plugin.js +123 -0
  372. package/dist/tinymce/plugins/nonbreaking/plugin.min.js +5 -0
  373. package/dist/tinymce/plugins/pagebreak/index.js +7 -0
  374. package/dist/tinymce/plugins/pagebreak/plugin.js +117 -0
  375. package/dist/tinymce/plugins/pagebreak/plugin.min.js +5 -0
  376. package/dist/tinymce/plugins/preview/index.js +7 -0
  377. package/dist/tinymce/plugins/preview/plugin.js +97 -0
  378. package/dist/tinymce/plugins/preview/plugin.min.js +5 -0
  379. package/dist/tinymce/plugins/quickbars/index.js +7 -0
  380. package/dist/tinymce/plugins/quickbars/plugin.js +447 -0
  381. package/dist/tinymce/plugins/quickbars/plugin.min.js +5 -0
  382. package/dist/tinymce/plugins/save/index.js +7 -0
  383. package/dist/tinymce/plugins/save/plugin.js +118 -0
  384. package/dist/tinymce/plugins/save/plugin.min.js +5 -0
  385. package/dist/tinymce/plugins/searchreplace/index.js +7 -0
  386. package/dist/tinymce/plugins/searchreplace/plugin.js +1093 -0
  387. package/dist/tinymce/plugins/searchreplace/plugin.min.js +5 -0
  388. package/dist/tinymce/plugins/table/index.js +7 -0
  389. package/dist/tinymce/plugins/table/plugin.js +3462 -0
  390. package/dist/tinymce/plugins/table/plugin.min.js +5 -0
  391. package/dist/tinymce/plugins/template/index.js +7 -0
  392. package/dist/tinymce/plugins/template/plugin.js +567 -0
  393. package/dist/tinymce/plugins/template/plugin.min.js +5 -0
  394. package/dist/tinymce/plugins/visualblocks/index.js +7 -0
  395. package/dist/tinymce/plugins/visualblocks/plugin.js +98 -0
  396. package/dist/tinymce/plugins/visualblocks/plugin.min.js +5 -0
  397. package/dist/tinymce/plugins/visualchars/index.js +7 -0
  398. package/dist/tinymce/plugins/visualchars/plugin.js +560 -0
  399. package/dist/tinymce/plugins/visualchars/plugin.min.js +5 -0
  400. package/dist/tinymce/plugins/wordcount/index.js +7 -0
  401. package/dist/tinymce/plugins/wordcount/plugin.js +405 -0
  402. package/dist/tinymce/plugins/wordcount/plugin.min.js +5 -0
  403. package/dist/tinymce/skins/content/dark/content.css +79 -0
  404. package/dist/tinymce/skins/content/dark/content.js +15 -0
  405. package/dist/tinymce/skins/content/dark/content.min.css +14 -0
  406. package/dist/tinymce/skins/content/default/content.css +74 -0
  407. package/dist/tinymce/skins/content/default/content.js +15 -0
  408. package/dist/tinymce/skins/content/default/content.min.css +14 -0
  409. package/dist/tinymce/skins/content/document/content.css +79 -0
  410. package/dist/tinymce/skins/content/document/content.js +15 -0
  411. package/dist/tinymce/skins/content/document/content.min.css +14 -0
  412. package/dist/tinymce/skins/content/tinymce-5/content.css +74 -0
  413. package/dist/tinymce/skins/content/tinymce-5/content.js +15 -0
  414. package/dist/tinymce/skins/content/tinymce-5/content.min.css +14 -0
  415. package/dist/tinymce/skins/content/tinymce-5-dark/content.css +79 -0
  416. package/dist/tinymce/skins/content/tinymce-5-dark/content.js +15 -0
  417. package/dist/tinymce/skins/content/tinymce-5-dark/content.min.css +14 -0
  418. package/dist/tinymce/skins/content/writer/content.css +75 -0
  419. package/dist/tinymce/skins/content/writer/content.js +15 -0
  420. package/dist/tinymce/skins/content/writer/content.min.css +14 -0
  421. package/dist/tinymce/skins/ui/oxide/content.css +798 -0
  422. package/dist/tinymce/skins/ui/oxide/content.inline.css +792 -0
  423. package/dist/tinymce/skins/ui/oxide/content.inline.js +15 -0
  424. package/dist/tinymce/skins/ui/oxide/content.inline.min.css +14 -0
  425. package/dist/tinymce/skins/ui/oxide/content.js +15 -0
  426. package/dist/tinymce/skins/ui/oxide/content.min.css +14 -0
  427. package/dist/tinymce/skins/ui/oxide/skin.css +3763 -0
  428. package/dist/tinymce/skins/ui/oxide/skin.js +2 -0
  429. package/dist/tinymce/skins/ui/oxide/skin.min.css +1 -0
  430. package/dist/tinymce/skins/ui/oxide/skin.shadowdom.css +30 -0
  431. package/dist/tinymce/skins/ui/oxide/skin.shadowdom.js +2 -0
  432. package/dist/tinymce/skins/ui/oxide/skin.shadowdom.min.css +1 -0
  433. package/dist/tinymce/skins/ui/oxide-dark/content.css +779 -0
  434. package/dist/tinymce/skins/ui/oxide-dark/content.inline.css +792 -0
  435. package/dist/tinymce/skins/ui/oxide-dark/content.inline.js +15 -0
  436. package/dist/tinymce/skins/ui/oxide-dark/content.inline.min.css +14 -0
  437. package/dist/tinymce/skins/ui/oxide-dark/content.js +15 -0
  438. package/dist/tinymce/skins/ui/oxide-dark/content.min.css +14 -0
  439. package/dist/tinymce/skins/ui/oxide-dark/skin.css +3766 -0
  440. package/dist/tinymce/skins/ui/oxide-dark/skin.js +2 -0
  441. package/dist/tinymce/skins/ui/oxide-dark/skin.min.css +1 -0
  442. package/dist/tinymce/skins/ui/oxide-dark/skin.shadowdom.css +30 -0
  443. package/dist/tinymce/skins/ui/oxide-dark/skin.shadowdom.js +2 -0
  444. package/dist/tinymce/skins/ui/oxide-dark/skin.shadowdom.min.css +1 -0
  445. package/dist/tinymce/skins/ui/tinymce-5/content.css +798 -0
  446. package/dist/tinymce/skins/ui/tinymce-5/content.inline.css +792 -0
  447. package/dist/tinymce/skins/ui/tinymce-5/content.inline.js +15 -0
  448. package/dist/tinymce/skins/ui/tinymce-5/content.inline.min.css +14 -0
  449. package/dist/tinymce/skins/ui/tinymce-5/content.js +15 -0
  450. package/dist/tinymce/skins/ui/tinymce-5/content.min.css +14 -0
  451. package/dist/tinymce/skins/ui/tinymce-5/skin.css +3857 -0
  452. package/dist/tinymce/skins/ui/tinymce-5/skin.js +2 -0
  453. package/dist/tinymce/skins/ui/tinymce-5/skin.min.css +1 -0
  454. package/dist/tinymce/skins/ui/tinymce-5/skin.shadowdom.css +30 -0
  455. package/dist/tinymce/skins/ui/tinymce-5/skin.shadowdom.js +2 -0
  456. package/dist/tinymce/skins/ui/tinymce-5/skin.shadowdom.min.css +1 -0
  457. package/dist/tinymce/skins/ui/tinymce-5-dark/content.css +779 -0
  458. package/dist/tinymce/skins/ui/tinymce-5-dark/content.inline.css +792 -0
  459. package/dist/tinymce/skins/ui/tinymce-5-dark/content.inline.js +15 -0
  460. package/dist/tinymce/skins/ui/tinymce-5-dark/content.inline.min.css +14 -0
  461. package/dist/tinymce/skins/ui/tinymce-5-dark/content.js +15 -0
  462. package/dist/tinymce/skins/ui/tinymce-5-dark/content.min.css +14 -0
  463. package/dist/tinymce/skins/ui/tinymce-5-dark/skin.css +3857 -0
  464. package/dist/tinymce/skins/ui/tinymce-5-dark/skin.js +2 -0
  465. package/dist/tinymce/skins/ui/tinymce-5-dark/skin.min.css +1 -0
  466. package/dist/tinymce/skins/ui/tinymce-5-dark/skin.shadowdom.css +30 -0
  467. package/dist/tinymce/skins/ui/tinymce-5-dark/skin.shadowdom.js +2 -0
  468. package/dist/tinymce/skins/ui/tinymce-5-dark/skin.shadowdom.min.css +1 -0
  469. package/dist/tinymce/themes/silver/index.js +7 -0
  470. package/dist/tinymce/themes/silver/theme.js +30775 -0
  471. package/dist/tinymce/themes/silver/theme.min.js +1 -0
  472. package/dist/tinymce/tinymce.d.ts +3238 -0
  473. package/dist/tinymce/tinymce.js +31779 -0
  474. package/dist/tinymce/tinymce.min.js +11 -0
  475. package/package.json +8 -4
  476. package/release-note.md +2 -2
  477. package/scripts/copy-tinymce.js +37 -0
  478. package/dist/src/common/types/form.d.ts +0 -9
  479. package/dist/src/common/types/form.js +0 -10
  480. package/dist/src/sub/DynamicLayout/CompositionEditor/CompositionEditor.d.ts +0 -22
  481. package/dist/src/sub/DynamicLayout/CompositionEditor/CompositionEditor.js +0 -1133
  482. package/dist/src/sub/DynamicLayout/CompositionRenderer/CompositionBackground.d.ts +0 -11
  483. package/dist/src/sub/DynamicLayout/CompositionRenderer/CompositionBackground.js +0 -45
  484. package/dist/src/sub/DynamicLayout/CompositionRenderer/createCompositions.d.ts +0 -10
  485. package/dist/src/sub/DynamicLayout/CompositionRenderer/createCompositions.js +0 -79
  486. package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/editorNavigationIcons/downIcons.d.ts +0 -12
  487. package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/editorNavigationIcons/downIcons.js +0 -76
  488. package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/editorNavigationIcons/index.d.ts +0 -4
  489. package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/editorNavigationIcons/index.js +0 -47
  490. package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/editorNavigationIcons/leftIcons.d.ts +0 -12
  491. package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/editorNavigationIcons/leftIcons.js +0 -76
  492. package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/editorNavigationIcons/rightIcons.d.ts +0 -12
  493. package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/editorNavigationIcons/rightIcons.js +0 -76
  494. package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/editorNavigationIcons/upIcons.d.ts +0 -12
  495. package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/editorNavigationIcons/upIcons.js +0 -76
  496. package/dist/src/sub/DynamicLayout/compositionActionTypes.d.ts +0 -139
  497. package/dist/src/sub/DynamicLayout/compositionQueryContext.d.ts +0 -8
  498. package/dist/src/sub/DynamicLayout/compositionQueryContext.js +0 -14
  499. package/dist/src/sub/DynamicLayout/mock_componentBlocks.d.ts +0 -911
  500. package/dist/src/sub/DynamicLayout/mock_componentBlocks.js +0 -4238
  501. package/dist/src/sub/DynamicLayout/mock_composition.d.ts +0 -3
  502. package/dist/src/sub/DynamicLayout/mock_composition.js +0 -1607
  503. package/dist/src/sub/DynamicLayout/mock_contentsCarousel.d.ts +0 -1
  504. package/dist/src/sub/DynamicLayout/mock_contentsCarousel.js +0 -1111
  505. package/dist/src/sub/DynamicLayout/mock_contentsList.d.ts +0 -1
  506. package/dist/src/sub/DynamicLayout/mock_contentsList.js +0 -1091
  507. package/dist/src/sub/DynamicLayout/mock_queryData.d.ts +0 -96
  508. package/dist/src/sub/DynamicLayout/mock_queryData.js +0 -2639
  509. package/dist/src/sub/DynamicLayout/mock_slideBanner.d.ts +0 -842
  510. package/dist/src/sub/DynamicLayout/mock_slideBanner.js +0 -854
  511. package/dist/src/sub/DynamicLayout/mock_video.d.ts +0 -368
  512. package/dist/src/sub/DynamicLayout/mock_video.js +0 -371
  513. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/ContentsCarouselCore.d.ts +0 -12
  514. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/ContentsCarouselCore.js +0 -61
  515. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/CustomNavigationNextBtn.d.ts +0 -15
  516. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/CustomNavigationNextBtn.js +0 -69
  517. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/CustomNavigationPrevBtn.d.ts +0 -15
  518. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/CustomNavigationPrevBtn.js +0 -69
  519. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/CustomProgressbar.d.ts +0 -9
  520. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/CustomProgressbar.js +0 -87
  521. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/navigationConfigs.d.ts +0 -4
  522. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/navigationConfigs.js +0 -849
  523. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/progressConfigs.d.ts +0 -43
  524. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/progressConfigs.js +0 -162
  525. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/contentsCarouselUtils.d.ts +0 -39
  526. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/contentsCarouselUtils.js +0 -182
  527. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/hooks/useFlexGridLayout.d.ts +0 -18
  528. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/hooks/useFlexGridLayout.js +0 -229
  529. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/hooks/useSwiper.d.ts +0 -14
  530. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/hooks/useSwiper.js +0 -46
  531. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/index.d.ts +0 -1
  532. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/index.js +0 -8
  533. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/types.d.ts +0 -139
  534. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/ContentsList.d.ts +0 -14
  535. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/ContentsList.js +0 -214
  536. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/ContentsListCore.d.ts +0 -17
  537. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/ContentsListCore.js +0 -39
  538. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/components/CustomPagination.d.ts +0 -10
  539. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/components/CustomPagination.js +0 -85
  540. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/components/paginationConfigs.d.ts +0 -25
  541. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/components/paginationConfigs.js +0 -183
  542. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/contentsListUtils.d.ts +0 -29
  543. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/contentsListUtils.js +0 -130
  544. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/hooks/useFlexGridLayout.d.ts +0 -18
  545. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/hooks/useFlexGridLayout.js +0 -229
  546. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/index.d.ts +0 -1
  547. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/types.d.ts +0 -67
  548. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/types.js +0 -2
  549. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/SlideBanner.d.ts +0 -14
  550. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/SlideBanner.js +0 -151
  551. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/SlideBannerCore.d.ts +0 -12
  552. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/SlideBannerCore.js +0 -39
  553. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/CustomNavigationNextBtn.d.ts +0 -15
  554. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/CustomNavigationNextBtn.js +0 -69
  555. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/CustomNavigationPrevBtn.d.ts +0 -15
  556. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/CustomNavigationPrevBtn.js +0 -69
  557. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/CustomPagination.d.ts +0 -20
  558. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/CustomPagination.js +0 -173
  559. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/CustomProgressbar.d.ts +0 -9
  560. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/CustomProgressbar.js +0 -87
  561. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/navigationConfigs.d.ts +0 -4
  562. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/navigationConfigs.js +0 -849
  563. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/progressConfigs.d.ts +0 -43
  564. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/progressConfigs.js +0 -162
  565. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/hooks/useFlexGridLayout.d.ts +0 -18
  566. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/hooks/useFlexGridLayout.js +0 -229
  567. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/hooks/useSwiper.d.ts +0 -16
  568. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/hooks/useSwiper.js +0 -63
  569. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/index.d.ts +0 -1
  570. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/slideBannerUtils.d.ts +0 -46
  571. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/slideBannerUtils.js +0 -186
  572. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/types.d.ts +0 -163
  573. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/types.js +0 -2
  574. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Text/textSpecFormatOptions.d.ts +0 -7
  575. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Text/textSpecFormatOptions.js +0 -211
  576. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/parseCompositionPlacement.d.ts +0 -14
  577. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/parseCompositionPlacement.js +0 -26
  578. /package/dist/src/{sub/DynamicLayout/compositionActionTypes.js → common/types/multilingual.js} +0 -0
  579. /package/dist/src/{sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel → desktop/components/Calendar}/types.js +0 -0
@@ -1,2639 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.queryDataMock = void 0;
4
- exports.queryDataMock = {
5
- 'PAPPQUERY_C00007_VOD_CLASS_TOTAL/PAPPQUERY_FILTERING_CREATED_DATE_UPPER/2000-01-01': [
6
- {
7
- discountRate: '0',
8
- lowestPointWithShipping: null,
9
- conversionLinkUri: null,
10
- customVideo1: null,
11
- itemPreviewImgs: null,
12
- genre: null,
13
- commentCount: null,
14
- ratingCount: '6',
15
- categoryTitle: null,
16
- customVideo0: null,
17
- subCreator: null,
18
- sourceImg: 'https://static.publ.site/channel_default_prifile.png',
19
- reviewFeatured: null,
20
- pointName: '시청권',
21
- releasedDate: null,
22
- rank: null,
23
- updatedDate: '2024-12-10 13:39:46',
24
- sourceFeatured: null,
25
- seriesLogo: null,
26
- itemTitle: 'Class 4. How to Make Money with PDFs',
27
- reviewCount: '6',
28
- pinned: null,
29
- itemConversionLink: '/C00007/classes/5119/information',
30
- discountPoint: '0',
31
- sourceDesc: null,
32
- shippingPrice: null,
33
- customImg2: null,
34
- originalPoint: '0',
35
- originalPriceWithShipping: null,
36
- purchaserCount: null,
37
- lowestPriceWithShipping: null,
38
- sourceConversionLink: null,
39
- ratingAvgPoint: '3.0',
40
- customUri1: null,
41
- commentFeatured: null,
42
- shippingPoint: null,
43
- nation: null,
44
- instructor: null,
45
- paid: '',
46
- creator: null,
47
- actor: null,
48
- discountPrice: '0',
49
- ageGradeName: '',
50
- viewCount: '',
51
- currency: 'KRW',
52
- conversionLinkName: null,
53
- order: null,
54
- conversionLinkDesc: null,
55
- itemThumbnail: 'https://publ-upload-prod.s3.ap-northeast-2.amazonaws.com/86948e45-8918-47a8-a760-7d9aef495b60',
56
- originalPrice: '0',
57
- reactionCount: null,
58
- lowestPoint: '0',
59
- categoryConversionLink: null,
60
- seriesTitles: null,
61
- createdDate: '2023-11-13 13:18:10',
62
- originalPointWithShipping: null,
63
- customString3: null,
64
- customString2: null,
65
- customString4: null,
66
- customString1: null,
67
- dislikeCount: null,
68
- contentsCount: '6',
69
- itemAttachmentUri: null,
70
- commentFeaturedConversionLink: null,
71
- level: null,
72
- labels: null,
73
- customString0: null,
74
- publishedDate: '2023-02-24 02:41:24',
75
- itemAttachmentName: null,
76
- seriesConversionLink: null,
77
- director: null,
78
- discountName: '',
79
- pointImg: 'https://static.publ.site/brandedpoint_icon/ic_brandedpoint_3d_ticket_01.png',
80
- likeCount: null,
81
- itemOverview: '',
82
- itemPreviewVideo: null,
83
- reviewFeaturedConversionLink: null,
84
- resourceAttachmentFiles: null,
85
- bookmarkCount: '',
86
- sourceName: '123123',
87
- customUri0: null,
88
- customUri2: null,
89
- customImg0: null,
90
- gradeName: null,
91
- itemAttachmentImg: null,
92
- itemDesc: '1. How to Create and Sell Digital Products with PDFs: This lecture will cover how to create and sell...',
93
- customImg1: null,
94
- conversionLinkThumbnail: null,
95
- logo: null,
96
- lowestPrice: '0',
97
- synopsis: null,
98
- customVideo2: null
99
- },
100
- {
101
- discountRate: '0',
102
- lowestPointWithShipping: null,
103
- conversionLinkUri: null,
104
- customVideo1: null,
105
- itemPreviewImgs: null,
106
- genre: null,
107
- commentCount: null,
108
- ratingCount: '2',
109
- categoryTitle: null,
110
- customVideo0: null,
111
- subCreator: null,
112
- sourceImg: 'https://static.publ.site/channel_default_prifile.png',
113
- reviewFeatured: null,
114
- pointName: '시청권',
115
- releasedDate: null,
116
- rank: null,
117
- updatedDate: '2024-12-10 13:39:46',
118
- sourceFeatured: null,
119
- seriesLogo: null,
120
- itemTitle: 'Class 3. Smart Store',
121
- reviewCount: '2',
122
- pinned: null,
123
- itemConversionLink: '/C00007/classes/5120/information',
124
- discountPoint: '0',
125
- sourceDesc: null,
126
- shippingPrice: null,
127
- customImg2: null,
128
- originalPoint: '0',
129
- originalPriceWithShipping: null,
130
- purchaserCount: null,
131
- lowestPriceWithShipping: null,
132
- sourceConversionLink: null,
133
- ratingAvgPoint: '1.5',
134
- customUri1: null,
135
- commentFeatured: null,
136
- shippingPoint: null,
137
- nation: null,
138
- instructor: null,
139
- paid: '',
140
- creator: null,
141
- actor: null,
142
- discountPrice: '0',
143
- ageGradeName: '',
144
- viewCount: '',
145
- currency: 'KRW',
146
- conversionLinkName: null,
147
- order: null,
148
- conversionLinkDesc: null,
149
- itemThumbnail: 'https://publ-upload-prod.s3.ap-northeast-2.amazonaws.com/5d614bb4-a1fc-4dde-b784-c869bc5bf95c',
150
- originalPrice: '0',
151
- reactionCount: null,
152
- lowestPoint: '0',
153
- categoryConversionLink: null,
154
- seriesTitles: null,
155
- createdDate: '2023-11-13 13:18:10',
156
- originalPointWithShipping: null,
157
- customString3: null,
158
- customString2: null,
159
- customString4: null,
160
- customString1: null,
161
- dislikeCount: null,
162
- contentsCount: '5',
163
- itemAttachmentUri: null,
164
- commentFeaturedConversionLink: null,
165
- level: null,
166
- labels: null,
167
- customString0: null,
168
- publishedDate: '2023-02-24 02:41:28',
169
- itemAttachmentName: null,
170
- seriesConversionLink: null,
171
- director: null,
172
- discountName: '',
173
- pointImg: 'https://static.publ.site/brandedpoint_icon/ic_brandedpoint_3d_ticket_01.png',
174
- likeCount: null,
175
- itemOverview: '',
176
- itemPreviewVideo: null,
177
- reviewFeaturedConversionLink: null,
178
- resourceAttachmentFiles: null,
179
- bookmarkCount: '',
180
- sourceName: '123123',
181
- customUri0: null,
182
- customUri2: null,
183
- customImg0: null,
184
- gradeName: null,
185
- itemAttachmentImg: null,
186
- itemDesc: '1. Smart Store Basics: This class aims to teach the basics of operating a smart store. It covers top...',
187
- customImg1: null,
188
- conversionLinkThumbnail: null,
189
- logo: null,
190
- lowestPrice: '0',
191
- synopsis: null,
192
- customVideo2: null
193
- },
194
- {
195
- discountRate: '0',
196
- lowestPointWithShipping: null,
197
- conversionLinkUri: null,
198
- customVideo1: null,
199
- itemPreviewImgs: null,
200
- genre: null,
201
- commentCount: null,
202
- ratingCount: '7',
203
- categoryTitle: null,
204
- customVideo0: null,
205
- subCreator: null,
206
- sourceImg: 'https://static.publ.site/channel_default_prifile.png',
207
- reviewFeatured: null,
208
- pointName: '시청권',
209
- releasedDate: null,
210
- rank: null,
211
- updatedDate: '2024-12-10 13:39:46',
212
- sourceFeatured: null,
213
- seriesLogo: null,
214
- itemTitle: 'Class 2. How to make Figures',
215
- reviewCount: '7',
216
- pinned: null,
217
- itemConversionLink: '/C00007/classes/5121/information',
218
- discountPoint: '0',
219
- sourceDesc: null,
220
- shippingPrice: null,
221
- customImg2: null,
222
- originalPoint: '0',
223
- originalPriceWithShipping: null,
224
- purchaserCount: null,
225
- lowestPriceWithShipping: null,
226
- sourceConversionLink: null,
227
- ratingAvgPoint: '2.0',
228
- customUri1: null,
229
- commentFeatured: null,
230
- shippingPoint: null,
231
- nation: null,
232
- instructor: null,
233
- paid: '',
234
- creator: null,
235
- actor: null,
236
- discountPrice: '0',
237
- ageGradeName: '',
238
- viewCount: '',
239
- currency: 'KRW',
240
- conversionLinkName: null,
241
- order: null,
242
- conversionLinkDesc: null,
243
- itemThumbnail: 'https://publ-upload-prod.s3.ap-northeast-2.amazonaws.com/7ecfacd3-51e6-41b1-9f17-d479a638acb5',
244
- originalPrice: '0',
245
- reactionCount: null,
246
- lowestPoint: '0',
247
- categoryConversionLink: null,
248
- seriesTitles: null,
249
- createdDate: '2023-11-13 13:18:10',
250
- originalPointWithShipping: null,
251
- customString3: null,
252
- customString2: null,
253
- customString4: null,
254
- customString1: null,
255
- dislikeCount: null,
256
- contentsCount: '5',
257
- itemAttachmentUri: null,
258
- commentFeaturedConversionLink: null,
259
- level: null,
260
- labels: null,
261
- customString0: null,
262
- publishedDate: '2023-02-24 02:41:35',
263
- itemAttachmentName: null,
264
- seriesConversionLink: null,
265
- director: null,
266
- discountName: '',
267
- pointImg: 'https://static.publ.site/brandedpoint_icon/ic_brandedpoint_3d_ticket_01.png',
268
- likeCount: null,
269
- itemOverview: '',
270
- itemPreviewVideo: null,
271
- reviewFeaturedConversionLink: null,
272
- resourceAttachmentFiles: null,
273
- bookmarkCount: '',
274
- sourceName: '123123',
275
- customUri0: null,
276
- customUri2: null,
277
- customImg0: null,
278
- gradeName: null,
279
- itemAttachmentImg: null,
280
- itemDesc: '1. Figure Making for Beginners: This class is aimed at people who are making figures for the first t...',
281
- customImg1: null,
282
- conversionLinkThumbnail: null,
283
- logo: null,
284
- lowestPrice: '0',
285
- synopsis: null,
286
- customVideo2: null
287
- },
288
- {
289
- discountRate: '94',
290
- lowestPointWithShipping: null,
291
- conversionLinkUri: null,
292
- customVideo1: null,
293
- itemPreviewImgs: null,
294
- genre: null,
295
- commentCount: null,
296
- ratingCount: '8',
297
- categoryTitle: null,
298
- customVideo0: null,
299
- subCreator: null,
300
- sourceImg: 'https://static.publ.site/channel_default_prifile.png',
301
- reviewFeatured: null,
302
- pointName: '시청권',
303
- releasedDate: null,
304
- rank: null,
305
- updatedDate: '2024-12-10 13:39:46',
306
- sourceFeatured: null,
307
- seriesLogo: null,
308
- itemTitle: 'Class 1. How to Make Cookies',
309
- reviewCount: '8',
310
- pinned: null,
311
- itemConversionLink: '/C00007/classes/5122/information',
312
- discountPoint: '47',
313
- sourceDesc: null,
314
- shippingPrice: null,
315
- customImg2: null,
316
- originalPoint: '50',
317
- originalPriceWithShipping: null,
318
- purchaserCount: null,
319
- lowestPriceWithShipping: null,
320
- sourceConversionLink: null,
321
- ratingAvgPoint: '1.5',
322
- customUri1: null,
323
- commentFeatured: null,
324
- shippingPoint: null,
325
- nation: null,
326
- instructor: null,
327
- paid: 'paid',
328
- creator: null,
329
- actor: null,
330
- discountPrice: '4700',
331
- ageGradeName: '',
332
- viewCount: '',
333
- currency: 'KRW',
334
- conversionLinkName: null,
335
- order: null,
336
- conversionLinkDesc: null,
337
- itemThumbnail: 'https://publ-upload-prod.s3.ap-northeast-2.amazonaws.com/36df6dba-d20d-430e-abed-e696d054339a',
338
- originalPrice: '5000',
339
- reactionCount: null,
340
- lowestPoint: '3',
341
- categoryConversionLink: null,
342
- seriesTitles: null,
343
- createdDate: '2023-11-13 13:18:10',
344
- originalPointWithShipping: null,
345
- customString3: null,
346
- customString2: null,
347
- customString4: null,
348
- customString1: null,
349
- dislikeCount: null,
350
- contentsCount: '14',
351
- itemAttachmentUri: null,
352
- commentFeaturedConversionLink: null,
353
- level: null,
354
- labels: null,
355
- customString0: null,
356
- publishedDate: '2023-02-24 02:41:40',
357
- itemAttachmentName: null,
358
- seriesConversionLink: null,
359
- director: null,
360
- discountName: '',
361
- pointImg: 'https://static.publ.site/brandedpoint_icon/ic_brandedpoint_3d_ticket_01.png',
362
- likeCount: null,
363
- itemOverview: '',
364
- itemPreviewVideo: null,
365
- reviewFeaturedConversionLink: null,
366
- resourceAttachmentFiles: null,
367
- bookmarkCount: '',
368
- sourceName: '123123',
369
- customUri0: null,
370
- customUri2: null,
371
- customImg0: null,
372
- gradeName: null,
373
- itemAttachmentImg: null,
374
- itemDesc: '1. Cookie Making for Beginners: This class is aimed at those who are making cookies for the first ti...',
375
- customImg1: null,
376
- conversionLinkThumbnail: null,
377
- logo: null,
378
- lowestPrice: '300',
379
- synopsis: null,
380
- customVideo2: null
381
- },
382
- {
383
- discountRate: '94',
384
- lowestPointWithShipping: null,
385
- conversionLinkUri: null,
386
- customVideo1: null,
387
- itemPreviewImgs: null,
388
- genre: null,
389
- commentCount: null,
390
- ratingCount: '6',
391
- categoryTitle: null,
392
- customVideo0: null,
393
- subCreator: null,
394
- sourceImg: 'https://static.publ.site/channel_default_prifile.png',
395
- reviewFeatured: null,
396
- pointName: '시청권',
397
- releasedDate: null,
398
- rank: null,
399
- updatedDate: '2024-12-10 13:39:46',
400
- sourceFeatured: null,
401
- seriesLogo: null,
402
- itemTitle: '[퍼블 아카데미 미리보기] pApp 기초 클래스',
403
- reviewCount: '6',
404
- pinned: null,
405
- itemConversionLink: '/C00007/classes/9266/information',
406
- discountPoint: '47',
407
- sourceDesc: null,
408
- shippingPrice: null,
409
- customImg2: null,
410
- originalPoint: '50',
411
- originalPriceWithShipping: null,
412
- purchaserCount: null,
413
- lowestPriceWithShipping: null,
414
- sourceConversionLink: null,
415
- ratingAvgPoint: '2.7',
416
- customUri1: null,
417
- commentFeatured: null,
418
- shippingPoint: null,
419
- nation: null,
420
- instructor: null,
421
- paid: 'paid',
422
- creator: null,
423
- actor: null,
424
- discountPrice: '4700',
425
- ageGradeName: '',
426
- viewCount: '',
427
- currency: 'KRW',
428
- conversionLinkName: null,
429
- order: null,
430
- conversionLinkDesc: null,
431
- itemThumbnail: 'https://publ-upload-local.s3.ap-northeast-2.amazonaws.com/11ccc848-0ae7-460d-8c8a-92d633b32be1',
432
- originalPrice: '5000',
433
- reactionCount: null,
434
- lowestPoint: '3',
435
- categoryConversionLink: null,
436
- seriesTitles: null,
437
- createdDate: '2024-06-13 05:08:50',
438
- originalPointWithShipping: null,
439
- customString3: null,
440
- customString2: null,
441
- customString4: null,
442
- customString1: null,
443
- dislikeCount: null,
444
- contentsCount: '3',
445
- itemAttachmentUri: null,
446
- commentFeaturedConversionLink: null,
447
- level: null,
448
- labels: null,
449
- customString0: null,
450
- publishedDate: '2024-06-13 05:08:50',
451
- itemAttachmentName: null,
452
- seriesConversionLink: null,
453
- director: null,
454
- discountName: '',
455
- pointImg: 'https://static.publ.site/brandedpoint_icon/ic_brandedpoint_3d_ticket_01.png',
456
- likeCount: null,
457
- itemOverview: '',
458
- itemPreviewVideo: null,
459
- reviewFeaturedConversionLink: null,
460
- resourceAttachmentFiles: null,
461
- bookmarkCount: '',
462
- sourceName: '이름바꾼셀러',
463
- customUri0: null,
464
- customUri2: null,
465
- customImg0: null,
466
- gradeName: null,
467
- itemAttachmentImg: null,
468
- itemDesc: '',
469
- customImg1: null,
470
- conversionLinkThumbnail: null,
471
- logo: null,
472
- lowestPrice: '300',
473
- synopsis: null,
474
- customVideo2: null
475
- },
476
- {
477
- discountRate: '0',
478
- lowestPointWithShipping: null,
479
- conversionLinkUri: null,
480
- customVideo1: null,
481
- itemPreviewImgs: null,
482
- genre: null,
483
- commentCount: null,
484
- ratingCount: '7',
485
- categoryTitle: null,
486
- customVideo0: null,
487
- subCreator: null,
488
- sourceImg: 'https://static.publ.site/channel_default_prifile.png',
489
- reviewFeatured: null,
490
- pointName: '시청권',
491
- releasedDate: null,
492
- rank: null,
493
- updatedDate: '2024-12-10 13:39:46',
494
- sourceFeatured: null,
495
- seriesLogo: null,
496
- itemTitle: '차원이 다른 연구 프로세스 : 연구자를 위한 AI툴 활용법',
497
- reviewCount: '7',
498
- pinned: null,
499
- itemConversionLink: '/C00007/classes/9267/information',
500
- discountPoint: '0',
501
- sourceDesc: null,
502
- shippingPrice: null,
503
- customImg2: null,
504
- originalPoint: '0',
505
- originalPriceWithShipping: null,
506
- purchaserCount: null,
507
- lowestPriceWithShipping: null,
508
- sourceConversionLink: null,
509
- ratingAvgPoint: '2.3',
510
- customUri1: null,
511
- commentFeatured: null,
512
- shippingPoint: null,
513
- nation: null,
514
- instructor: null,
515
- paid: '',
516
- creator: null,
517
- actor: null,
518
- discountPrice: '0',
519
- ageGradeName: '',
520
- viewCount: '',
521
- currency: 'KRW',
522
- conversionLinkName: null,
523
- order: null,
524
- conversionLinkDesc: null,
525
- itemThumbnail: 'https://publ-upload-local.s3.ap-northeast-2.amazonaws.com/ab205601-cabc-408c-bec4-bb51114f3d3f',
526
- originalPrice: '0',
527
- reactionCount: null,
528
- lowestPoint: '0',
529
- categoryConversionLink: null,
530
- seriesTitles: null,
531
- createdDate: '2024-06-13 05:17:43',
532
- originalPointWithShipping: null,
533
- customString3: null,
534
- customString2: null,
535
- customString4: null,
536
- customString1: null,
537
- dislikeCount: null,
538
- contentsCount: '4',
539
- itemAttachmentUri: null,
540
- commentFeaturedConversionLink: null,
541
- level: null,
542
- labels: null,
543
- customString0: null,
544
- publishedDate: '2024-06-13 05:17:43',
545
- itemAttachmentName: null,
546
- seriesConversionLink: null,
547
- director: null,
548
- discountName: '',
549
- pointImg: 'https://static.publ.site/brandedpoint_icon/ic_brandedpoint_3d_ticket_01.png',
550
- likeCount: null,
551
- itemOverview: '',
552
- itemPreviewVideo: null,
553
- reviewFeaturedConversionLink: null,
554
- resourceAttachmentFiles: null,
555
- bookmarkCount: '',
556
- sourceName: '이름바꾼셀러',
557
- customUri0: null,
558
- customUri2: null,
559
- customImg0: null,
560
- gradeName: null,
561
- itemAttachmentImg: null,
562
- itemDesc: '',
563
- customImg1: null,
564
- conversionLinkThumbnail: null,
565
- logo: null,
566
- lowestPrice: '0',
567
- synopsis: null,
568
- customVideo2: null
569
- },
570
- {
571
- discountRate: '0',
572
- lowestPointWithShipping: null,
573
- conversionLinkUri: null,
574
- customVideo1: null,
575
- itemPreviewImgs: null,
576
- genre: null,
577
- commentCount: null,
578
- ratingCount: '8',
579
- categoryTitle: null,
580
- customVideo0: null,
581
- subCreator: null,
582
- sourceImg: 'https://static.publ.site/channel_default_prifile.png',
583
- reviewFeatured: null,
584
- pointName: '시청권',
585
- releasedDate: null,
586
- rank: null,
587
- updatedDate: '2025-05-14 08:52:55',
588
- sourceFeatured: null,
589
- seriesLogo: null,
590
- itemTitle: '퍼블 디자인팀을 이끄는 김혜진 리드의 AI 시대, 고객을 사로잡는 브랜딩 자산 구축',
591
- reviewCount: '8',
592
- pinned: null,
593
- itemConversionLink: '/C00007/classes/9269/information',
594
- discountPoint: '0',
595
- sourceDesc: null,
596
- shippingPrice: null,
597
- customImg2: null,
598
- originalPoint: '0',
599
- originalPriceWithShipping: null,
600
- purchaserCount: null,
601
- lowestPriceWithShipping: null,
602
- sourceConversionLink: null,
603
- ratingAvgPoint: '2.6',
604
- customUri1: null,
605
- commentFeatured: null,
606
- shippingPoint: null,
607
- nation: null,
608
- instructor: null,
609
- paid: '',
610
- creator: null,
611
- actor: null,
612
- discountPrice: '0',
613
- ageGradeName: '경력',
614
- viewCount: '',
615
- currency: 'KRW',
616
- conversionLinkName: null,
617
- order: null,
618
- conversionLinkDesc: null,
619
- itemThumbnail: 'https://publ-upload-local.s3.ap-northeast-2.amazonaws.com/165de33b-b3c2-4265-8be5-1865479d8ba5',
620
- originalPrice: '0',
621
- reactionCount: null,
622
- lowestPoint: '0',
623
- categoryConversionLink: null,
624
- seriesTitles: null,
625
- createdDate: '2024-06-13 05:48:43',
626
- originalPointWithShipping: null,
627
- customString3: null,
628
- customString2: null,
629
- customString4: null,
630
- customString1: null,
631
- dislikeCount: null,
632
- contentsCount: '1',
633
- itemAttachmentUri: null,
634
- commentFeaturedConversionLink: null,
635
- level: null,
636
- labels: null,
637
- customString0: null,
638
- publishedDate: '2024-06-13 05:48:43',
639
- itemAttachmentName: null,
640
- seriesConversionLink: null,
641
- director: null,
642
- discountName: '',
643
- pointImg: 'https://static.publ.site/brandedpoint_icon/ic_brandedpoint_3d_ticket_01.png',
644
- likeCount: null,
645
- itemOverview: '',
646
- itemPreviewVideo: null,
647
- reviewFeaturedConversionLink: null,
648
- resourceAttachmentFiles: null,
649
- bookmarkCount: '',
650
- sourceName: '이름바꾼셀러',
651
- customUri0: null,
652
- customUri2: null,
653
- customImg0: null,
654
- gradeName: null,
655
- itemAttachmentImg: null,
656
- itemDesc: '<p><video controls="controls" width="300" height="150">\n<source src="https://publ-sw-core-image.s3.a...',
657
- customImg1: null,
658
- conversionLinkThumbnail: null,
659
- logo: null,
660
- lowestPrice: '0',
661
- synopsis: null,
662
- customVideo2: null
663
- },
664
- {
665
- discountRate: '0',
666
- lowestPointWithShipping: null,
667
- conversionLinkUri: null,
668
- customVideo1: null,
669
- itemPreviewImgs: null,
670
- genre: null,
671
- commentCount: null,
672
- ratingCount: '6',
673
- categoryTitle: null,
674
- customVideo0: null,
675
- subCreator: null,
676
- sourceImg: 'https://static.publ.site/channel_default_prifile.png',
677
- reviewFeatured: null,
678
- pointName: '시청권',
679
- releasedDate: null,
680
- rank: null,
681
- updatedDate: '2024-12-10 13:39:46',
682
- sourceFeatured: null,
683
- seriesLogo: null,
684
- itemTitle: 'Class 4. How to Make Money with PDFs',
685
- reviewCount: '6',
686
- pinned: null,
687
- itemConversionLink: '/C00007/classes/5119/information',
688
- discountPoint: '0',
689
- sourceDesc: null,
690
- shippingPrice: null,
691
- customImg2: null,
692
- originalPoint: '0',
693
- originalPriceWithShipping: null,
694
- purchaserCount: null,
695
- lowestPriceWithShipping: null,
696
- sourceConversionLink: null,
697
- ratingAvgPoint: '3.0',
698
- customUri1: null,
699
- commentFeatured: null,
700
- shippingPoint: null,
701
- nation: null,
702
- instructor: null,
703
- paid: '',
704
- creator: null,
705
- actor: null,
706
- discountPrice: '0',
707
- ageGradeName: '',
708
- viewCount: '',
709
- currency: 'KRW',
710
- conversionLinkName: null,
711
- order: null,
712
- conversionLinkDesc: null,
713
- itemThumbnail: 'https://publ-upload-prod.s3.ap-northeast-2.amazonaws.com/86948e45-8918-47a8-a760-7d9aef495b60',
714
- originalPrice: '0',
715
- reactionCount: null,
716
- lowestPoint: '0',
717
- categoryConversionLink: null,
718
- seriesTitles: null,
719
- createdDate: '2023-11-13 13:18:10',
720
- originalPointWithShipping: null,
721
- customString3: null,
722
- customString2: null,
723
- customString4: null,
724
- customString1: null,
725
- dislikeCount: null,
726
- contentsCount: '6',
727
- itemAttachmentUri: null,
728
- commentFeaturedConversionLink: null,
729
- level: null,
730
- labels: null,
731
- customString0: null,
732
- publishedDate: '2023-02-24 02:41:24',
733
- itemAttachmentName: null,
734
- seriesConversionLink: null,
735
- director: null,
736
- discountName: '',
737
- pointImg: 'https://static.publ.site/brandedpoint_icon/ic_brandedpoint_3d_ticket_01.png',
738
- likeCount: null,
739
- itemOverview: '',
740
- itemPreviewVideo: null,
741
- reviewFeaturedConversionLink: null,
742
- resourceAttachmentFiles: null,
743
- bookmarkCount: '',
744
- sourceName: '123123',
745
- customUri0: null,
746
- customUri2: null,
747
- customImg0: null,
748
- gradeName: null,
749
- itemAttachmentImg: null,
750
- itemDesc: '1. How to Create and Sell Digital Products with PDFs: This lecture will cover how to create and sell...',
751
- customImg1: null,
752
- conversionLinkThumbnail: null,
753
- logo: null,
754
- lowestPrice: '0',
755
- synopsis: null,
756
- customVideo2: null
757
- },
758
- {
759
- discountRate: '0',
760
- lowestPointWithShipping: null,
761
- conversionLinkUri: null,
762
- customVideo1: null,
763
- itemPreviewImgs: null,
764
- genre: null,
765
- commentCount: null,
766
- ratingCount: '2',
767
- categoryTitle: null,
768
- customVideo0: null,
769
- subCreator: null,
770
- sourceImg: 'https://static.publ.site/channel_default_prifile.png',
771
- reviewFeatured: null,
772
- pointName: '시청권',
773
- releasedDate: null,
774
- rank: null,
775
- updatedDate: '2024-12-10 13:39:46',
776
- sourceFeatured: null,
777
- seriesLogo: null,
778
- itemTitle: 'Class 3. Smart Store',
779
- reviewCount: '2',
780
- pinned: null,
781
- itemConversionLink: '/C00007/classes/5120/information',
782
- discountPoint: '0',
783
- sourceDesc: null,
784
- shippingPrice: null,
785
- customImg2: null,
786
- originalPoint: '0',
787
- originalPriceWithShipping: null,
788
- purchaserCount: null,
789
- lowestPriceWithShipping: null,
790
- sourceConversionLink: null,
791
- ratingAvgPoint: '1.5',
792
- customUri1: null,
793
- commentFeatured: null,
794
- shippingPoint: null,
795
- nation: null,
796
- instructor: null,
797
- paid: '',
798
- creator: null,
799
- actor: null,
800
- discountPrice: '0',
801
- ageGradeName: '',
802
- viewCount: '',
803
- currency: 'KRW',
804
- conversionLinkName: null,
805
- order: null,
806
- conversionLinkDesc: null,
807
- itemThumbnail: 'https://publ-upload-prod.s3.ap-northeast-2.amazonaws.com/5d614bb4-a1fc-4dde-b784-c869bc5bf95c',
808
- originalPrice: '0',
809
- reactionCount: null,
810
- lowestPoint: '0',
811
- categoryConversionLink: null,
812
- seriesTitles: null,
813
- createdDate: '2023-11-13 13:18:10',
814
- originalPointWithShipping: null,
815
- customString3: null,
816
- customString2: null,
817
- customString4: null,
818
- customString1: null,
819
- dislikeCount: null,
820
- contentsCount: '5',
821
- itemAttachmentUri: null,
822
- commentFeaturedConversionLink: null,
823
- level: null,
824
- labels: null,
825
- customString0: null,
826
- publishedDate: '2023-02-24 02:41:28',
827
- itemAttachmentName: null,
828
- seriesConversionLink: null,
829
- director: null,
830
- discountName: '',
831
- pointImg: 'https://static.publ.site/brandedpoint_icon/ic_brandedpoint_3d_ticket_01.png',
832
- likeCount: null,
833
- itemOverview: '',
834
- itemPreviewVideo: null,
835
- reviewFeaturedConversionLink: null,
836
- resourceAttachmentFiles: null,
837
- bookmarkCount: '',
838
- sourceName: '123123',
839
- customUri0: null,
840
- customUri2: null,
841
- customImg0: null,
842
- gradeName: null,
843
- itemAttachmentImg: null,
844
- itemDesc: '1. Smart Store Basics: This class aims to teach the basics of operating a smart store. It covers top...',
845
- customImg1: null,
846
- conversionLinkThumbnail: null,
847
- logo: null,
848
- lowestPrice: '0',
849
- synopsis: null,
850
- customVideo2: null
851
- },
852
- {
853
- discountRate: '0',
854
- lowestPointWithShipping: null,
855
- conversionLinkUri: null,
856
- customVideo1: null,
857
- itemPreviewImgs: null,
858
- genre: null,
859
- commentCount: null,
860
- ratingCount: '7',
861
- categoryTitle: null,
862
- customVideo0: null,
863
- subCreator: null,
864
- sourceImg: 'https://static.publ.site/channel_default_prifile.png',
865
- reviewFeatured: null,
866
- pointName: '시청권',
867
- releasedDate: null,
868
- rank: null,
869
- updatedDate: '2024-12-10 13:39:46',
870
- sourceFeatured: null,
871
- seriesLogo: null,
872
- itemTitle: 'Class 2. How to make Figures',
873
- reviewCount: '7',
874
- pinned: null,
875
- itemConversionLink: '/C00007/classes/5121/information',
876
- discountPoint: '0',
877
- sourceDesc: null,
878
- shippingPrice: null,
879
- customImg2: null,
880
- originalPoint: '0',
881
- originalPriceWithShipping: null,
882
- purchaserCount: null,
883
- lowestPriceWithShipping: null,
884
- sourceConversionLink: null,
885
- ratingAvgPoint: '2.0',
886
- customUri1: null,
887
- commentFeatured: null,
888
- shippingPoint: null,
889
- nation: null,
890
- instructor: null,
891
- paid: '',
892
- creator: null,
893
- actor: null,
894
- discountPrice: '0',
895
- ageGradeName: '',
896
- viewCount: '',
897
- currency: 'KRW',
898
- conversionLinkName: null,
899
- order: null,
900
- conversionLinkDesc: null,
901
- itemThumbnail: 'https://publ-upload-prod.s3.ap-northeast-2.amazonaws.com/7ecfacd3-51e6-41b1-9f17-d479a638acb5',
902
- originalPrice: '0',
903
- reactionCount: null,
904
- lowestPoint: '0',
905
- categoryConversionLink: null,
906
- seriesTitles: null,
907
- createdDate: '2023-11-13 13:18:10',
908
- originalPointWithShipping: null,
909
- customString3: null,
910
- customString2: null,
911
- customString4: null,
912
- customString1: null,
913
- dislikeCount: null,
914
- contentsCount: '5',
915
- itemAttachmentUri: null,
916
- commentFeaturedConversionLink: null,
917
- level: null,
918
- labels: null,
919
- customString0: null,
920
- publishedDate: '2023-02-24 02:41:35',
921
- itemAttachmentName: null,
922
- seriesConversionLink: null,
923
- director: null,
924
- discountName: '',
925
- pointImg: 'https://static.publ.site/brandedpoint_icon/ic_brandedpoint_3d_ticket_01.png',
926
- likeCount: null,
927
- itemOverview: '',
928
- itemPreviewVideo: null,
929
- reviewFeaturedConversionLink: null,
930
- resourceAttachmentFiles: null,
931
- bookmarkCount: '',
932
- sourceName: '123123',
933
- customUri0: null,
934
- customUri2: null,
935
- customImg0: null,
936
- gradeName: null,
937
- itemAttachmentImg: null,
938
- itemDesc: '1. Figure Making for Beginners: This class is aimed at people who are making figures for the first t...',
939
- customImg1: null,
940
- conversionLinkThumbnail: null,
941
- logo: null,
942
- lowestPrice: '0',
943
- synopsis: null,
944
- customVideo2: null
945
- },
946
- {
947
- discountRate: '94',
948
- lowestPointWithShipping: null,
949
- conversionLinkUri: null,
950
- customVideo1: null,
951
- itemPreviewImgs: null,
952
- genre: null,
953
- commentCount: null,
954
- ratingCount: '8',
955
- categoryTitle: null,
956
- customVideo0: null,
957
- subCreator: null,
958
- sourceImg: 'https://static.publ.site/channel_default_prifile.png',
959
- reviewFeatured: null,
960
- pointName: '시청권',
961
- releasedDate: null,
962
- rank: null,
963
- updatedDate: '2024-12-10 13:39:46',
964
- sourceFeatured: null,
965
- seriesLogo: null,
966
- itemTitle: 'Class 1. How to Make Cookies',
967
- reviewCount: '8',
968
- pinned: null,
969
- itemConversionLink: '/C00007/classes/5122/information',
970
- discountPoint: '47',
971
- sourceDesc: null,
972
- shippingPrice: null,
973
- customImg2: null,
974
- originalPoint: '50',
975
- originalPriceWithShipping: null,
976
- purchaserCount: null,
977
- lowestPriceWithShipping: null,
978
- sourceConversionLink: null,
979
- ratingAvgPoint: '1.5',
980
- customUri1: null,
981
- commentFeatured: null,
982
- shippingPoint: null,
983
- nation: null,
984
- instructor: null,
985
- paid: 'paid',
986
- creator: null,
987
- actor: null,
988
- discountPrice: '4700',
989
- ageGradeName: '',
990
- viewCount: '',
991
- currency: 'KRW',
992
- conversionLinkName: null,
993
- order: null,
994
- conversionLinkDesc: null,
995
- itemThumbnail: 'https://publ-upload-prod.s3.ap-northeast-2.amazonaws.com/36df6dba-d20d-430e-abed-e696d054339a',
996
- originalPrice: '5000',
997
- reactionCount: null,
998
- lowestPoint: '3',
999
- categoryConversionLink: null,
1000
- seriesTitles: null,
1001
- createdDate: '2023-11-13 13:18:10',
1002
- originalPointWithShipping: null,
1003
- customString3: null,
1004
- customString2: null,
1005
- customString4: null,
1006
- customString1: null,
1007
- dislikeCount: null,
1008
- contentsCount: '14',
1009
- itemAttachmentUri: null,
1010
- commentFeaturedConversionLink: null,
1011
- level: null,
1012
- labels: null,
1013
- customString0: null,
1014
- publishedDate: '2023-02-24 02:41:40',
1015
- itemAttachmentName: null,
1016
- seriesConversionLink: null,
1017
- director: null,
1018
- discountName: '',
1019
- pointImg: 'https://static.publ.site/brandedpoint_icon/ic_brandedpoint_3d_ticket_01.png',
1020
- likeCount: null,
1021
- itemOverview: '',
1022
- itemPreviewVideo: null,
1023
- reviewFeaturedConversionLink: null,
1024
- resourceAttachmentFiles: null,
1025
- bookmarkCount: '',
1026
- sourceName: '123123',
1027
- customUri0: null,
1028
- customUri2: null,
1029
- customImg0: null,
1030
- gradeName: null,
1031
- itemAttachmentImg: null,
1032
- itemDesc: '1. Cookie Making for Beginners: This class is aimed at those who are making cookies for the first ti...',
1033
- customImg1: null,
1034
- conversionLinkThumbnail: null,
1035
- logo: null,
1036
- lowestPrice: '300',
1037
- synopsis: null,
1038
- customVideo2: null
1039
- },
1040
- {
1041
- discountRate: '94',
1042
- lowestPointWithShipping: null,
1043
- conversionLinkUri: null,
1044
- customVideo1: null,
1045
- itemPreviewImgs: null,
1046
- genre: null,
1047
- commentCount: null,
1048
- ratingCount: '6',
1049
- categoryTitle: null,
1050
- customVideo0: null,
1051
- subCreator: null,
1052
- sourceImg: 'https://static.publ.site/channel_default_prifile.png',
1053
- reviewFeatured: null,
1054
- pointName: '시청권',
1055
- releasedDate: null,
1056
- rank: null,
1057
- updatedDate: '2024-12-10 13:39:46',
1058
- sourceFeatured: null,
1059
- seriesLogo: null,
1060
- itemTitle: '[퍼블 아카데미 미리보기] pApp 기초 클래스',
1061
- reviewCount: '6',
1062
- pinned: null,
1063
- itemConversionLink: '/C00007/classes/9266/information',
1064
- discountPoint: '47',
1065
- sourceDesc: null,
1066
- shippingPrice: null,
1067
- customImg2: null,
1068
- originalPoint: '50',
1069
- originalPriceWithShipping: null,
1070
- purchaserCount: null,
1071
- lowestPriceWithShipping: null,
1072
- sourceConversionLink: null,
1073
- ratingAvgPoint: '2.7',
1074
- customUri1: null,
1075
- commentFeatured: null,
1076
- shippingPoint: null,
1077
- nation: null,
1078
- instructor: null,
1079
- paid: 'paid',
1080
- creator: null,
1081
- actor: null,
1082
- discountPrice: '4700',
1083
- ageGradeName: '',
1084
- viewCount: '',
1085
- currency: 'KRW',
1086
- conversionLinkName: null,
1087
- order: null,
1088
- conversionLinkDesc: null,
1089
- itemThumbnail: 'https://publ-upload-local.s3.ap-northeast-2.amazonaws.com/11ccc848-0ae7-460d-8c8a-92d633b32be1',
1090
- originalPrice: '5000',
1091
- reactionCount: null,
1092
- lowestPoint: '3',
1093
- categoryConversionLink: null,
1094
- seriesTitles: null,
1095
- createdDate: '2024-06-13 05:08:50',
1096
- originalPointWithShipping: null,
1097
- customString3: null,
1098
- customString2: null,
1099
- customString4: null,
1100
- customString1: null,
1101
- dislikeCount: null,
1102
- contentsCount: '3',
1103
- itemAttachmentUri: null,
1104
- commentFeaturedConversionLink: null,
1105
- level: null,
1106
- labels: null,
1107
- customString0: null,
1108
- publishedDate: '2024-06-13 05:08:50',
1109
- itemAttachmentName: null,
1110
- seriesConversionLink: null,
1111
- director: null,
1112
- discountName: '',
1113
- pointImg: 'https://static.publ.site/brandedpoint_icon/ic_brandedpoint_3d_ticket_01.png',
1114
- likeCount: null,
1115
- itemOverview: '',
1116
- itemPreviewVideo: null,
1117
- reviewFeaturedConversionLink: null,
1118
- resourceAttachmentFiles: null,
1119
- bookmarkCount: '',
1120
- sourceName: '이름바꾼셀러',
1121
- customUri0: null,
1122
- customUri2: null,
1123
- customImg0: null,
1124
- gradeName: null,
1125
- itemAttachmentImg: null,
1126
- itemDesc: '',
1127
- customImg1: null,
1128
- conversionLinkThumbnail: null,
1129
- logo: null,
1130
- lowestPrice: '300',
1131
- synopsis: null,
1132
- customVideo2: null
1133
- },
1134
- {
1135
- discountRate: '0',
1136
- lowestPointWithShipping: null,
1137
- conversionLinkUri: null,
1138
- customVideo1: null,
1139
- itemPreviewImgs: null,
1140
- genre: null,
1141
- commentCount: null,
1142
- ratingCount: '7',
1143
- categoryTitle: null,
1144
- customVideo0: null,
1145
- subCreator: null,
1146
- sourceImg: 'https://static.publ.site/channel_default_prifile.png',
1147
- reviewFeatured: null,
1148
- pointName: '시청권',
1149
- releasedDate: null,
1150
- rank: null,
1151
- updatedDate: '2024-12-10 13:39:46',
1152
- sourceFeatured: null,
1153
- seriesLogo: null,
1154
- itemTitle: '차원이 다른 연구 프로세스 : 연구자를 위한 AI툴 활용법',
1155
- reviewCount: '7',
1156
- pinned: null,
1157
- itemConversionLink: '/C00007/classes/9267/information',
1158
- discountPoint: '0',
1159
- sourceDesc: null,
1160
- shippingPrice: null,
1161
- customImg2: null,
1162
- originalPoint: '0',
1163
- originalPriceWithShipping: null,
1164
- purchaserCount: null,
1165
- lowestPriceWithShipping: null,
1166
- sourceConversionLink: null,
1167
- ratingAvgPoint: '2.3',
1168
- customUri1: null,
1169
- commentFeatured: null,
1170
- shippingPoint: null,
1171
- nation: null,
1172
- instructor: null,
1173
- paid: '',
1174
- creator: null,
1175
- actor: null,
1176
- discountPrice: '0',
1177
- ageGradeName: '',
1178
- viewCount: '',
1179
- currency: 'KRW',
1180
- conversionLinkName: null,
1181
- order: null,
1182
- conversionLinkDesc: null,
1183
- itemThumbnail: 'https://publ-upload-local.s3.ap-northeast-2.amazonaws.com/ab205601-cabc-408c-bec4-bb51114f3d3f',
1184
- originalPrice: '0',
1185
- reactionCount: null,
1186
- lowestPoint: '0',
1187
- categoryConversionLink: null,
1188
- seriesTitles: null,
1189
- createdDate: '2024-06-13 05:17:43',
1190
- originalPointWithShipping: null,
1191
- customString3: null,
1192
- customString2: null,
1193
- customString4: null,
1194
- customString1: null,
1195
- dislikeCount: null,
1196
- contentsCount: '4',
1197
- itemAttachmentUri: null,
1198
- commentFeaturedConversionLink: null,
1199
- level: null,
1200
- labels: null,
1201
- customString0: null,
1202
- publishedDate: '2024-06-13 05:17:43',
1203
- itemAttachmentName: null,
1204
- seriesConversionLink: null,
1205
- director: null,
1206
- discountName: '',
1207
- pointImg: 'https://static.publ.site/brandedpoint_icon/ic_brandedpoint_3d_ticket_01.png',
1208
- likeCount: null,
1209
- itemOverview: '',
1210
- itemPreviewVideo: null,
1211
- reviewFeaturedConversionLink: null,
1212
- resourceAttachmentFiles: null,
1213
- bookmarkCount: '',
1214
- sourceName: '이름바꾼셀러',
1215
- customUri0: null,
1216
- customUri2: null,
1217
- customImg0: null,
1218
- gradeName: null,
1219
- itemAttachmentImg: null,
1220
- itemDesc: '',
1221
- customImg1: null,
1222
- conversionLinkThumbnail: null,
1223
- logo: null,
1224
- lowestPrice: '0',
1225
- synopsis: null,
1226
- customVideo2: null
1227
- },
1228
- {
1229
- discountRate: '0',
1230
- lowestPointWithShipping: null,
1231
- conversionLinkUri: null,
1232
- customVideo1: null,
1233
- itemPreviewImgs: null,
1234
- genre: null,
1235
- commentCount: null,
1236
- ratingCount: '8',
1237
- categoryTitle: null,
1238
- customVideo0: null,
1239
- subCreator: null,
1240
- sourceImg: 'https://static.publ.site/channel_default_prifile.png',
1241
- reviewFeatured: null,
1242
- pointName: '시청권',
1243
- releasedDate: null,
1244
- rank: null,
1245
- updatedDate: '2025-05-14 08:52:55',
1246
- sourceFeatured: null,
1247
- seriesLogo: null,
1248
- itemTitle: '퍼블 디자인팀을 이끄는 김혜진 리드의 AI 시대, 고객을 사로잡는 브랜딩 자산 구축',
1249
- reviewCount: '8',
1250
- pinned: null,
1251
- itemConversionLink: '/C00007/classes/9269/information',
1252
- discountPoint: '0',
1253
- sourceDesc: null,
1254
- shippingPrice: null,
1255
- customImg2: null,
1256
- originalPoint: '0',
1257
- originalPriceWithShipping: null,
1258
- purchaserCount: null,
1259
- lowestPriceWithShipping: null,
1260
- sourceConversionLink: null,
1261
- ratingAvgPoint: '2.6',
1262
- customUri1: null,
1263
- commentFeatured: null,
1264
- shippingPoint: null,
1265
- nation: null,
1266
- instructor: null,
1267
- paid: '',
1268
- creator: null,
1269
- actor: null,
1270
- discountPrice: '0',
1271
- ageGradeName: '경력',
1272
- viewCount: '',
1273
- currency: 'KRW',
1274
- conversionLinkName: null,
1275
- order: null,
1276
- conversionLinkDesc: null,
1277
- itemThumbnail: 'https://publ-upload-local.s3.ap-northeast-2.amazonaws.com/165de33b-b3c2-4265-8be5-1865479d8ba5',
1278
- originalPrice: '0',
1279
- reactionCount: null,
1280
- lowestPoint: '0',
1281
- categoryConversionLink: null,
1282
- seriesTitles: null,
1283
- createdDate: '2024-06-13 05:48:43',
1284
- originalPointWithShipping: null,
1285
- customString3: null,
1286
- customString2: null,
1287
- customString4: null,
1288
- customString1: null,
1289
- dislikeCount: null,
1290
- contentsCount: '1',
1291
- itemAttachmentUri: null,
1292
- commentFeaturedConversionLink: null,
1293
- level: null,
1294
- labels: null,
1295
- customString0: null,
1296
- publishedDate: '2024-06-13 05:48:43',
1297
- itemAttachmentName: null,
1298
- seriesConversionLink: null,
1299
- director: null,
1300
- discountName: '',
1301
- pointImg: 'https://static.publ.site/brandedpoint_icon/ic_brandedpoint_3d_ticket_01.png',
1302
- likeCount: null,
1303
- itemOverview: '',
1304
- itemPreviewVideo: null,
1305
- reviewFeaturedConversionLink: null,
1306
- resourceAttachmentFiles: null,
1307
- bookmarkCount: '',
1308
- sourceName: '이름바꾼셀러',
1309
- customUri0: null,
1310
- customUri2: null,
1311
- customImg0: null,
1312
- gradeName: null,
1313
- itemAttachmentImg: null,
1314
- itemDesc: '<p><video controls="controls" width="300" height="150">\n<source src="https://publ-sw-core-image.s3.a...',
1315
- customImg1: null,
1316
- conversionLinkThumbnail: null,
1317
- logo: null,
1318
- lowestPrice: '0',
1319
- synopsis: null,
1320
- customVideo2: null
1321
- },
1322
- {
1323
- discountRate: '0',
1324
- lowestPointWithShipping: null,
1325
- conversionLinkUri: null,
1326
- customVideo1: null,
1327
- itemPreviewImgs: null,
1328
- genre: null,
1329
- commentCount: null,
1330
- ratingCount: '6',
1331
- categoryTitle: null,
1332
- customVideo0: null,
1333
- subCreator: null,
1334
- sourceImg: 'https://static.publ.site/channel_default_prifile.png',
1335
- reviewFeatured: null,
1336
- pointName: '시청권',
1337
- releasedDate: null,
1338
- rank: null,
1339
- updatedDate: '2024-12-10 13:39:46',
1340
- sourceFeatured: null,
1341
- seriesLogo: null,
1342
- itemTitle: 'Class 4. How to Make Money with PDFs',
1343
- reviewCount: '6',
1344
- pinned: null,
1345
- itemConversionLink: '/C00007/classes/5119/information',
1346
- discountPoint: '0',
1347
- sourceDesc: null,
1348
- shippingPrice: null,
1349
- customImg2: null,
1350
- originalPoint: '0',
1351
- originalPriceWithShipping: null,
1352
- purchaserCount: null,
1353
- lowestPriceWithShipping: null,
1354
- sourceConversionLink: null,
1355
- ratingAvgPoint: '3.0',
1356
- customUri1: null,
1357
- commentFeatured: null,
1358
- shippingPoint: null,
1359
- nation: null,
1360
- instructor: null,
1361
- paid: '',
1362
- creator: null,
1363
- actor: null,
1364
- discountPrice: '0',
1365
- ageGradeName: '',
1366
- viewCount: '',
1367
- currency: 'KRW',
1368
- conversionLinkName: null,
1369
- order: null,
1370
- conversionLinkDesc: null,
1371
- itemThumbnail: 'https://publ-upload-prod.s3.ap-northeast-2.amazonaws.com/86948e45-8918-47a8-a760-7d9aef495b60',
1372
- originalPrice: '0',
1373
- reactionCount: null,
1374
- lowestPoint: '0',
1375
- categoryConversionLink: null,
1376
- seriesTitles: null,
1377
- createdDate: '2023-11-13 13:18:10',
1378
- originalPointWithShipping: null,
1379
- customString3: null,
1380
- customString2: null,
1381
- customString4: null,
1382
- customString1: null,
1383
- dislikeCount: null,
1384
- contentsCount: '6',
1385
- itemAttachmentUri: null,
1386
- commentFeaturedConversionLink: null,
1387
- level: null,
1388
- labels: null,
1389
- customString0: null,
1390
- publishedDate: '2023-02-24 02:41:24',
1391
- itemAttachmentName: null,
1392
- seriesConversionLink: null,
1393
- director: null,
1394
- discountName: '',
1395
- pointImg: 'https://static.publ.site/brandedpoint_icon/ic_brandedpoint_3d_ticket_01.png',
1396
- likeCount: null,
1397
- itemOverview: '',
1398
- itemPreviewVideo: null,
1399
- reviewFeaturedConversionLink: null,
1400
- resourceAttachmentFiles: null,
1401
- bookmarkCount: '',
1402
- sourceName: '123123',
1403
- customUri0: null,
1404
- customUri2: null,
1405
- customImg0: null,
1406
- gradeName: null,
1407
- itemAttachmentImg: null,
1408
- itemDesc: '1. How to Create and Sell Digital Products with PDFs: This lecture will cover how to create and sell...',
1409
- customImg1: null,
1410
- conversionLinkThumbnail: null,
1411
- logo: null,
1412
- lowestPrice: '0',
1413
- synopsis: null,
1414
- customVideo2: null
1415
- },
1416
- {
1417
- discountRate: '0',
1418
- lowestPointWithShipping: null,
1419
- conversionLinkUri: null,
1420
- customVideo1: null,
1421
- itemPreviewImgs: null,
1422
- genre: null,
1423
- commentCount: null,
1424
- ratingCount: '2',
1425
- categoryTitle: null,
1426
- customVideo0: null,
1427
- subCreator: null,
1428
- sourceImg: 'https://static.publ.site/channel_default_prifile.png',
1429
- reviewFeatured: null,
1430
- pointName: '시청권',
1431
- releasedDate: null,
1432
- rank: null,
1433
- updatedDate: '2024-12-10 13:39:46',
1434
- sourceFeatured: null,
1435
- seriesLogo: null,
1436
- itemTitle: 'Class 3. Smart Store',
1437
- reviewCount: '2',
1438
- pinned: null,
1439
- itemConversionLink: '/C00007/classes/5120/information',
1440
- discountPoint: '0',
1441
- sourceDesc: null,
1442
- shippingPrice: null,
1443
- customImg2: null,
1444
- originalPoint: '0',
1445
- originalPriceWithShipping: null,
1446
- purchaserCount: null,
1447
- lowestPriceWithShipping: null,
1448
- sourceConversionLink: null,
1449
- ratingAvgPoint: '1.5',
1450
- customUri1: null,
1451
- commentFeatured: null,
1452
- shippingPoint: null,
1453
- nation: null,
1454
- instructor: null,
1455
- paid: '',
1456
- creator: null,
1457
- actor: null,
1458
- discountPrice: '0',
1459
- ageGradeName: '',
1460
- viewCount: '',
1461
- currency: 'KRW',
1462
- conversionLinkName: null,
1463
- order: null,
1464
- conversionLinkDesc: null,
1465
- itemThumbnail: 'https://publ-upload-prod.s3.ap-northeast-2.amazonaws.com/5d614bb4-a1fc-4dde-b784-c869bc5bf95c',
1466
- originalPrice: '0',
1467
- reactionCount: null,
1468
- lowestPoint: '0',
1469
- categoryConversionLink: null,
1470
- seriesTitles: null,
1471
- createdDate: '2023-11-13 13:18:10',
1472
- originalPointWithShipping: null,
1473
- customString3: null,
1474
- customString2: null,
1475
- customString4: null,
1476
- customString1: null,
1477
- dislikeCount: null,
1478
- contentsCount: '5',
1479
- itemAttachmentUri: null,
1480
- commentFeaturedConversionLink: null,
1481
- level: null,
1482
- labels: null,
1483
- customString0: null,
1484
- publishedDate: '2023-02-24 02:41:28',
1485
- itemAttachmentName: null,
1486
- seriesConversionLink: null,
1487
- director: null,
1488
- discountName: '',
1489
- pointImg: 'https://static.publ.site/brandedpoint_icon/ic_brandedpoint_3d_ticket_01.png',
1490
- likeCount: null,
1491
- itemOverview: '',
1492
- itemPreviewVideo: null,
1493
- reviewFeaturedConversionLink: null,
1494
- resourceAttachmentFiles: null,
1495
- bookmarkCount: '',
1496
- sourceName: '123123',
1497
- customUri0: null,
1498
- customUri2: null,
1499
- customImg0: null,
1500
- gradeName: null,
1501
- itemAttachmentImg: null,
1502
- itemDesc: '1. Smart Store Basics: This class aims to teach the basics of operating a smart store. It covers top...',
1503
- customImg1: null,
1504
- conversionLinkThumbnail: null,
1505
- logo: null,
1506
- lowestPrice: '0',
1507
- synopsis: null,
1508
- customVideo2: null
1509
- },
1510
- {
1511
- discountRate: '0',
1512
- lowestPointWithShipping: null,
1513
- conversionLinkUri: null,
1514
- customVideo1: null,
1515
- itemPreviewImgs: null,
1516
- genre: null,
1517
- commentCount: null,
1518
- ratingCount: '7',
1519
- categoryTitle: null,
1520
- customVideo0: null,
1521
- subCreator: null,
1522
- sourceImg: 'https://static.publ.site/channel_default_prifile.png',
1523
- reviewFeatured: null,
1524
- pointName: '시청권',
1525
- releasedDate: null,
1526
- rank: null,
1527
- updatedDate: '2024-12-10 13:39:46',
1528
- sourceFeatured: null,
1529
- seriesLogo: null,
1530
- itemTitle: 'Class 2. How to make Figures',
1531
- reviewCount: '7',
1532
- pinned: null,
1533
- itemConversionLink: '/C00007/classes/5121/information',
1534
- discountPoint: '0',
1535
- sourceDesc: null,
1536
- shippingPrice: null,
1537
- customImg2: null,
1538
- originalPoint: '0',
1539
- originalPriceWithShipping: null,
1540
- purchaserCount: null,
1541
- lowestPriceWithShipping: null,
1542
- sourceConversionLink: null,
1543
- ratingAvgPoint: '2.0',
1544
- customUri1: null,
1545
- commentFeatured: null,
1546
- shippingPoint: null,
1547
- nation: null,
1548
- instructor: null,
1549
- paid: '',
1550
- creator: null,
1551
- actor: null,
1552
- discountPrice: '0',
1553
- ageGradeName: '',
1554
- viewCount: '',
1555
- currency: 'KRW',
1556
- conversionLinkName: null,
1557
- order: null,
1558
- conversionLinkDesc: null,
1559
- itemThumbnail: 'https://publ-upload-prod.s3.ap-northeast-2.amazonaws.com/7ecfacd3-51e6-41b1-9f17-d479a638acb5',
1560
- originalPrice: '0',
1561
- reactionCount: null,
1562
- lowestPoint: '0',
1563
- categoryConversionLink: null,
1564
- seriesTitles: null,
1565
- createdDate: '2023-11-13 13:18:10',
1566
- originalPointWithShipping: null,
1567
- customString3: null,
1568
- customString2: null,
1569
- customString4: null,
1570
- customString1: null,
1571
- dislikeCount: null,
1572
- contentsCount: '5',
1573
- itemAttachmentUri: null,
1574
- commentFeaturedConversionLink: null,
1575
- level: null,
1576
- labels: null,
1577
- customString0: null,
1578
- publishedDate: '2023-02-24 02:41:35',
1579
- itemAttachmentName: null,
1580
- seriesConversionLink: null,
1581
- director: null,
1582
- discountName: '',
1583
- pointImg: 'https://static.publ.site/brandedpoint_icon/ic_brandedpoint_3d_ticket_01.png',
1584
- likeCount: null,
1585
- itemOverview: '',
1586
- itemPreviewVideo: null,
1587
- reviewFeaturedConversionLink: null,
1588
- resourceAttachmentFiles: null,
1589
- bookmarkCount: '',
1590
- sourceName: '123123',
1591
- customUri0: null,
1592
- customUri2: null,
1593
- customImg0: null,
1594
- gradeName: null,
1595
- itemAttachmentImg: null,
1596
- itemDesc: '1. Figure Making for Beginners: This class is aimed at people who are making figures for the first t...',
1597
- customImg1: null,
1598
- conversionLinkThumbnail: null,
1599
- logo: null,
1600
- lowestPrice: '0',
1601
- synopsis: null,
1602
- customVideo2: null
1603
- },
1604
- {
1605
- discountRate: '94',
1606
- lowestPointWithShipping: null,
1607
- conversionLinkUri: null,
1608
- customVideo1: null,
1609
- itemPreviewImgs: null,
1610
- genre: null,
1611
- commentCount: null,
1612
- ratingCount: '8',
1613
- categoryTitle: null,
1614
- customVideo0: null,
1615
- subCreator: null,
1616
- sourceImg: 'https://static.publ.site/channel_default_prifile.png',
1617
- reviewFeatured: null,
1618
- pointName: '시청권',
1619
- releasedDate: null,
1620
- rank: null,
1621
- updatedDate: '2024-12-10 13:39:46',
1622
- sourceFeatured: null,
1623
- seriesLogo: null,
1624
- itemTitle: 'Class 1. How to Make Cookies',
1625
- reviewCount: '8',
1626
- pinned: null,
1627
- itemConversionLink: '/C00007/classes/5122/information',
1628
- discountPoint: '47',
1629
- sourceDesc: null,
1630
- shippingPrice: null,
1631
- customImg2: null,
1632
- originalPoint: '50',
1633
- originalPriceWithShipping: null,
1634
- purchaserCount: null,
1635
- lowestPriceWithShipping: null,
1636
- sourceConversionLink: null,
1637
- ratingAvgPoint: '1.5',
1638
- customUri1: null,
1639
- commentFeatured: null,
1640
- shippingPoint: null,
1641
- nation: null,
1642
- instructor: null,
1643
- paid: 'paid',
1644
- creator: null,
1645
- actor: null,
1646
- discountPrice: '4700',
1647
- ageGradeName: '',
1648
- viewCount: '',
1649
- currency: 'KRW',
1650
- conversionLinkName: null,
1651
- order: null,
1652
- conversionLinkDesc: null,
1653
- itemThumbnail: 'https://publ-upload-prod.s3.ap-northeast-2.amazonaws.com/36df6dba-d20d-430e-abed-e696d054339a',
1654
- originalPrice: '5000',
1655
- reactionCount: null,
1656
- lowestPoint: '3',
1657
- categoryConversionLink: null,
1658
- seriesTitles: null,
1659
- createdDate: '2023-11-13 13:18:10',
1660
- originalPointWithShipping: null,
1661
- customString3: null,
1662
- customString2: null,
1663
- customString4: null,
1664
- customString1: null,
1665
- dislikeCount: null,
1666
- contentsCount: '14',
1667
- itemAttachmentUri: null,
1668
- commentFeaturedConversionLink: null,
1669
- level: null,
1670
- labels: null,
1671
- customString0: null,
1672
- publishedDate: '2023-02-24 02:41:40',
1673
- itemAttachmentName: null,
1674
- seriesConversionLink: null,
1675
- director: null,
1676
- discountName: '',
1677
- pointImg: 'https://static.publ.site/brandedpoint_icon/ic_brandedpoint_3d_ticket_01.png',
1678
- likeCount: null,
1679
- itemOverview: '',
1680
- itemPreviewVideo: null,
1681
- reviewFeaturedConversionLink: null,
1682
- resourceAttachmentFiles: null,
1683
- bookmarkCount: '',
1684
- sourceName: '123123',
1685
- customUri0: null,
1686
- customUri2: null,
1687
- customImg0: null,
1688
- gradeName: null,
1689
- itemAttachmentImg: null,
1690
- itemDesc: '1. Cookie Making for Beginners: This class is aimed at those who are making cookies for the first ti...',
1691
- customImg1: null,
1692
- conversionLinkThumbnail: null,
1693
- logo: null,
1694
- lowestPrice: '300',
1695
- synopsis: null,
1696
- customVideo2: null
1697
- },
1698
- {
1699
- discountRate: '94',
1700
- lowestPointWithShipping: null,
1701
- conversionLinkUri: null,
1702
- customVideo1: null,
1703
- itemPreviewImgs: null,
1704
- genre: null,
1705
- commentCount: null,
1706
- ratingCount: '6',
1707
- categoryTitle: null,
1708
- customVideo0: null,
1709
- subCreator: null,
1710
- sourceImg: 'https://static.publ.site/channel_default_prifile.png',
1711
- reviewFeatured: null,
1712
- pointName: '시청권',
1713
- releasedDate: null,
1714
- rank: null,
1715
- updatedDate: '2024-12-10 13:39:46',
1716
- sourceFeatured: null,
1717
- seriesLogo: null,
1718
- itemTitle: '[퍼블 아카데미 미리보기] pApp 기초 클래스',
1719
- reviewCount: '6',
1720
- pinned: null,
1721
- itemConversionLink: '/C00007/classes/9266/information',
1722
- discountPoint: '47',
1723
- sourceDesc: null,
1724
- shippingPrice: null,
1725
- customImg2: null,
1726
- originalPoint: '50',
1727
- originalPriceWithShipping: null,
1728
- purchaserCount: null,
1729
- lowestPriceWithShipping: null,
1730
- sourceConversionLink: null,
1731
- ratingAvgPoint: '2.7',
1732
- customUri1: null,
1733
- commentFeatured: null,
1734
- shippingPoint: null,
1735
- nation: null,
1736
- instructor: null,
1737
- paid: 'paid',
1738
- creator: null,
1739
- actor: null,
1740
- discountPrice: '4700',
1741
- ageGradeName: '',
1742
- viewCount: '',
1743
- currency: 'KRW',
1744
- conversionLinkName: null,
1745
- order: null,
1746
- conversionLinkDesc: null,
1747
- itemThumbnail: 'https://publ-upload-local.s3.ap-northeast-2.amazonaws.com/11ccc848-0ae7-460d-8c8a-92d633b32be1',
1748
- originalPrice: '5000',
1749
- reactionCount: null,
1750
- lowestPoint: '3',
1751
- categoryConversionLink: null,
1752
- seriesTitles: null,
1753
- createdDate: '2024-06-13 05:08:50',
1754
- originalPointWithShipping: null,
1755
- customString3: null,
1756
- customString2: null,
1757
- customString4: null,
1758
- customString1: null,
1759
- dislikeCount: null,
1760
- contentsCount: '3',
1761
- itemAttachmentUri: null,
1762
- commentFeaturedConversionLink: null,
1763
- level: null,
1764
- labels: null,
1765
- customString0: null,
1766
- publishedDate: '2024-06-13 05:08:50',
1767
- itemAttachmentName: null,
1768
- seriesConversionLink: null,
1769
- director: null,
1770
- discountName: '',
1771
- pointImg: 'https://static.publ.site/brandedpoint_icon/ic_brandedpoint_3d_ticket_01.png',
1772
- likeCount: null,
1773
- itemOverview: '',
1774
- itemPreviewVideo: null,
1775
- reviewFeaturedConversionLink: null,
1776
- resourceAttachmentFiles: null,
1777
- bookmarkCount: '',
1778
- sourceName: '이름바꾼셀러',
1779
- customUri0: null,
1780
- customUri2: null,
1781
- customImg0: null,
1782
- gradeName: null,
1783
- itemAttachmentImg: null,
1784
- itemDesc: '',
1785
- customImg1: null,
1786
- conversionLinkThumbnail: null,
1787
- logo: null,
1788
- lowestPrice: '300',
1789
- synopsis: null,
1790
- customVideo2: null
1791
- },
1792
- {
1793
- discountRate: '0',
1794
- lowestPointWithShipping: null,
1795
- conversionLinkUri: null,
1796
- customVideo1: null,
1797
- itemPreviewImgs: null,
1798
- genre: null,
1799
- commentCount: null,
1800
- ratingCount: '7',
1801
- categoryTitle: null,
1802
- customVideo0: null,
1803
- subCreator: null,
1804
- sourceImg: 'https://static.publ.site/channel_default_prifile.png',
1805
- reviewFeatured: null,
1806
- pointName: '시청권',
1807
- releasedDate: null,
1808
- rank: null,
1809
- updatedDate: '2024-12-10 13:39:46',
1810
- sourceFeatured: null,
1811
- seriesLogo: null,
1812
- itemTitle: '차원이 다른 연구 프로세스 : 연구자를 위한 AI툴 활용법',
1813
- reviewCount: '7',
1814
- pinned: null,
1815
- itemConversionLink: '/C00007/classes/9267/information',
1816
- discountPoint: '0',
1817
- sourceDesc: null,
1818
- shippingPrice: null,
1819
- customImg2: null,
1820
- originalPoint: '0',
1821
- originalPriceWithShipping: null,
1822
- purchaserCount: null,
1823
- lowestPriceWithShipping: null,
1824
- sourceConversionLink: null,
1825
- ratingAvgPoint: '2.3',
1826
- customUri1: null,
1827
- commentFeatured: null,
1828
- shippingPoint: null,
1829
- nation: null,
1830
- instructor: null,
1831
- paid: '',
1832
- creator: null,
1833
- actor: null,
1834
- discountPrice: '0',
1835
- ageGradeName: '',
1836
- viewCount: '',
1837
- currency: 'KRW',
1838
- conversionLinkName: null,
1839
- order: null,
1840
- conversionLinkDesc: null,
1841
- itemThumbnail: 'https://publ-upload-local.s3.ap-northeast-2.amazonaws.com/ab205601-cabc-408c-bec4-bb51114f3d3f',
1842
- originalPrice: '0',
1843
- reactionCount: null,
1844
- lowestPoint: '0',
1845
- categoryConversionLink: null,
1846
- seriesTitles: null,
1847
- createdDate: '2024-06-13 05:17:43',
1848
- originalPointWithShipping: null,
1849
- customString3: null,
1850
- customString2: null,
1851
- customString4: null,
1852
- customString1: null,
1853
- dislikeCount: null,
1854
- contentsCount: '4',
1855
- itemAttachmentUri: null,
1856
- commentFeaturedConversionLink: null,
1857
- level: null,
1858
- labels: null,
1859
- customString0: null,
1860
- publishedDate: '2024-06-13 05:17:43',
1861
- itemAttachmentName: null,
1862
- seriesConversionLink: null,
1863
- director: null,
1864
- discountName: '',
1865
- pointImg: 'https://static.publ.site/brandedpoint_icon/ic_brandedpoint_3d_ticket_01.png',
1866
- likeCount: null,
1867
- itemOverview: '',
1868
- itemPreviewVideo: null,
1869
- reviewFeaturedConversionLink: null,
1870
- resourceAttachmentFiles: null,
1871
- bookmarkCount: '',
1872
- sourceName: '이름바꾼셀러',
1873
- customUri0: null,
1874
- customUri2: null,
1875
- customImg0: null,
1876
- gradeName: null,
1877
- itemAttachmentImg: null,
1878
- itemDesc: '',
1879
- customImg1: null,
1880
- conversionLinkThumbnail: null,
1881
- logo: null,
1882
- lowestPrice: '0',
1883
- synopsis: null,
1884
- customVideo2: null
1885
- },
1886
- {
1887
- discountRate: '0',
1888
- lowestPointWithShipping: null,
1889
- conversionLinkUri: null,
1890
- customVideo1: null,
1891
- itemPreviewImgs: null,
1892
- genre: null,
1893
- commentCount: null,
1894
- ratingCount: '8',
1895
- categoryTitle: null,
1896
- customVideo0: null,
1897
- subCreator: null,
1898
- sourceImg: 'https://static.publ.site/channel_default_prifile.png',
1899
- reviewFeatured: null,
1900
- pointName: '시청권',
1901
- releasedDate: null,
1902
- rank: null,
1903
- updatedDate: '2025-05-14 08:52:55',
1904
- sourceFeatured: null,
1905
- seriesLogo: null,
1906
- itemTitle: '퍼블 디자인팀을 이끄는 김혜진 리드의 AI 시대, 고객을 사로잡는 브랜딩 자산 구축',
1907
- reviewCount: '8',
1908
- pinned: null,
1909
- itemConversionLink: '/C00007/classes/9269/information',
1910
- discountPoint: '0',
1911
- sourceDesc: null,
1912
- shippingPrice: null,
1913
- customImg2: null,
1914
- originalPoint: '0',
1915
- originalPriceWithShipping: null,
1916
- purchaserCount: null,
1917
- lowestPriceWithShipping: null,
1918
- sourceConversionLink: null,
1919
- ratingAvgPoint: '2.6',
1920
- customUri1: null,
1921
- commentFeatured: null,
1922
- shippingPoint: null,
1923
- nation: null,
1924
- instructor: null,
1925
- paid: '',
1926
- creator: null,
1927
- actor: null,
1928
- discountPrice: '0',
1929
- ageGradeName: '경력',
1930
- viewCount: '',
1931
- currency: 'KRW',
1932
- conversionLinkName: null,
1933
- order: null,
1934
- conversionLinkDesc: null,
1935
- itemThumbnail: 'https://publ-upload-local.s3.ap-northeast-2.amazonaws.com/165de33b-b3c2-4265-8be5-1865479d8ba5',
1936
- originalPrice: '0',
1937
- reactionCount: null,
1938
- lowestPoint: '0',
1939
- categoryConversionLink: null,
1940
- seriesTitles: null,
1941
- createdDate: '2024-06-13 05:48:43',
1942
- originalPointWithShipping: null,
1943
- customString3: null,
1944
- customString2: null,
1945
- customString4: null,
1946
- customString1: null,
1947
- dislikeCount: null,
1948
- contentsCount: '1',
1949
- itemAttachmentUri: null,
1950
- commentFeaturedConversionLink: null,
1951
- level: null,
1952
- labels: null,
1953
- customString0: null,
1954
- publishedDate: '2024-06-13 05:48:43',
1955
- itemAttachmentName: null,
1956
- seriesConversionLink: null,
1957
- director: null,
1958
- discountName: '',
1959
- pointImg: 'https://static.publ.site/brandedpoint_icon/ic_brandedpoint_3d_ticket_01.png',
1960
- likeCount: null,
1961
- itemOverview: '',
1962
- itemPreviewVideo: null,
1963
- reviewFeaturedConversionLink: null,
1964
- resourceAttachmentFiles: null,
1965
- bookmarkCount: '',
1966
- sourceName: '이름바꾼셀러',
1967
- customUri0: null,
1968
- customUri2: null,
1969
- customImg0: null,
1970
- gradeName: null,
1971
- itemAttachmentImg: null,
1972
- itemDesc: '<p><video controls="controls" width="300" height="150">\n<source src="https://publ-sw-core-image.s3.a...',
1973
- customImg1: null,
1974
- conversionLinkThumbnail: null,
1975
- logo: null,
1976
- lowestPrice: '0',
1977
- synopsis: null,
1978
- customVideo2: null
1979
- },
1980
- {
1981
- discountRate: '0',
1982
- lowestPointWithShipping: null,
1983
- conversionLinkUri: null,
1984
- customVideo1: null,
1985
- itemPreviewImgs: null,
1986
- genre: null,
1987
- commentCount: null,
1988
- ratingCount: '6',
1989
- categoryTitle: null,
1990
- customVideo0: null,
1991
- subCreator: null,
1992
- sourceImg: 'https://static.publ.site/channel_default_prifile.png',
1993
- reviewFeatured: null,
1994
- pointName: '시청권',
1995
- releasedDate: null,
1996
- rank: null,
1997
- updatedDate: '2024-12-10 13:39:46',
1998
- sourceFeatured: null,
1999
- seriesLogo: null,
2000
- itemTitle: 'Class 4. How to Make Money with PDFs',
2001
- reviewCount: '6',
2002
- pinned: null,
2003
- itemConversionLink: '/C00007/classes/5119/information',
2004
- discountPoint: '0',
2005
- sourceDesc: null,
2006
- shippingPrice: null,
2007
- customImg2: null,
2008
- originalPoint: '0',
2009
- originalPriceWithShipping: null,
2010
- purchaserCount: null,
2011
- lowestPriceWithShipping: null,
2012
- sourceConversionLink: null,
2013
- ratingAvgPoint: '3.0',
2014
- customUri1: null,
2015
- commentFeatured: null,
2016
- shippingPoint: null,
2017
- nation: null,
2018
- instructor: null,
2019
- paid: '',
2020
- creator: null,
2021
- actor: null,
2022
- discountPrice: '0',
2023
- ageGradeName: '',
2024
- viewCount: '',
2025
- currency: 'KRW',
2026
- conversionLinkName: null,
2027
- order: null,
2028
- conversionLinkDesc: null,
2029
- itemThumbnail: 'https://publ-upload-prod.s3.ap-northeast-2.amazonaws.com/86948e45-8918-47a8-a760-7d9aef495b60',
2030
- originalPrice: '0',
2031
- reactionCount: null,
2032
- lowestPoint: '0',
2033
- categoryConversionLink: null,
2034
- seriesTitles: null,
2035
- createdDate: '2023-11-13 13:18:10',
2036
- originalPointWithShipping: null,
2037
- customString3: null,
2038
- customString2: null,
2039
- customString4: null,
2040
- customString1: null,
2041
- dislikeCount: null,
2042
- contentsCount: '6',
2043
- itemAttachmentUri: null,
2044
- commentFeaturedConversionLink: null,
2045
- level: null,
2046
- labels: null,
2047
- customString0: null,
2048
- publishedDate: '2023-02-24 02:41:24',
2049
- itemAttachmentName: null,
2050
- seriesConversionLink: null,
2051
- director: null,
2052
- discountName: '',
2053
- pointImg: 'https://static.publ.site/brandedpoint_icon/ic_brandedpoint_3d_ticket_01.png',
2054
- likeCount: null,
2055
- itemOverview: '',
2056
- itemPreviewVideo: null,
2057
- reviewFeaturedConversionLink: null,
2058
- resourceAttachmentFiles: null,
2059
- bookmarkCount: '',
2060
- sourceName: '123123',
2061
- customUri0: null,
2062
- customUri2: null,
2063
- customImg0: null,
2064
- gradeName: null,
2065
- itemAttachmentImg: null,
2066
- itemDesc: '1. How to Create and Sell Digital Products with PDFs: This lecture will cover how to create and sell...',
2067
- customImg1: null,
2068
- conversionLinkThumbnail: null,
2069
- logo: null,
2070
- lowestPrice: '0',
2071
- synopsis: null,
2072
- customVideo2: null
2073
- },
2074
- {
2075
- discountRate: '0',
2076
- lowestPointWithShipping: null,
2077
- conversionLinkUri: null,
2078
- customVideo1: null,
2079
- itemPreviewImgs: null,
2080
- genre: null,
2081
- commentCount: null,
2082
- ratingCount: '2',
2083
- categoryTitle: null,
2084
- customVideo0: null,
2085
- subCreator: null,
2086
- sourceImg: 'https://static.publ.site/channel_default_prifile.png',
2087
- reviewFeatured: null,
2088
- pointName: '시청권',
2089
- releasedDate: null,
2090
- rank: null,
2091
- updatedDate: '2024-12-10 13:39:46',
2092
- sourceFeatured: null,
2093
- seriesLogo: null,
2094
- itemTitle: 'Class 3. Smart Store',
2095
- reviewCount: '2',
2096
- pinned: null,
2097
- itemConversionLink: '/C00007/classes/5120/information',
2098
- discountPoint: '0',
2099
- sourceDesc: null,
2100
- shippingPrice: null,
2101
- customImg2: null,
2102
- originalPoint: '0',
2103
- originalPriceWithShipping: null,
2104
- purchaserCount: null,
2105
- lowestPriceWithShipping: null,
2106
- sourceConversionLink: null,
2107
- ratingAvgPoint: '1.5',
2108
- customUri1: null,
2109
- commentFeatured: null,
2110
- shippingPoint: null,
2111
- nation: null,
2112
- instructor: null,
2113
- paid: '',
2114
- creator: null,
2115
- actor: null,
2116
- discountPrice: '0',
2117
- ageGradeName: '',
2118
- viewCount: '',
2119
- currency: 'KRW',
2120
- conversionLinkName: null,
2121
- order: null,
2122
- conversionLinkDesc: null,
2123
- itemThumbnail: 'https://publ-upload-prod.s3.ap-northeast-2.amazonaws.com/5d614bb4-a1fc-4dde-b784-c869bc5bf95c',
2124
- originalPrice: '0',
2125
- reactionCount: null,
2126
- lowestPoint: '0',
2127
- categoryConversionLink: null,
2128
- seriesTitles: null,
2129
- createdDate: '2023-11-13 13:18:10',
2130
- originalPointWithShipping: null,
2131
- customString3: null,
2132
- customString2: null,
2133
- customString4: null,
2134
- customString1: null,
2135
- dislikeCount: null,
2136
- contentsCount: '5',
2137
- itemAttachmentUri: null,
2138
- commentFeaturedConversionLink: null,
2139
- level: null,
2140
- labels: null,
2141
- customString0: null,
2142
- publishedDate: '2023-02-24 02:41:28',
2143
- itemAttachmentName: null,
2144
- seriesConversionLink: null,
2145
- director: null,
2146
- discountName: '',
2147
- pointImg: 'https://static.publ.site/brandedpoint_icon/ic_brandedpoint_3d_ticket_01.png',
2148
- likeCount: null,
2149
- itemOverview: '',
2150
- itemPreviewVideo: null,
2151
- reviewFeaturedConversionLink: null,
2152
- resourceAttachmentFiles: null,
2153
- bookmarkCount: '',
2154
- sourceName: '123123',
2155
- customUri0: null,
2156
- customUri2: null,
2157
- customImg0: null,
2158
- gradeName: null,
2159
- itemAttachmentImg: null,
2160
- itemDesc: '1. Smart Store Basics: This class aims to teach the basics of operating a smart store. It covers top...',
2161
- customImg1: null,
2162
- conversionLinkThumbnail: null,
2163
- logo: null,
2164
- lowestPrice: '0',
2165
- synopsis: null,
2166
- customVideo2: null
2167
- },
2168
- {
2169
- discountRate: '0',
2170
- lowestPointWithShipping: null,
2171
- conversionLinkUri: null,
2172
- customVideo1: null,
2173
- itemPreviewImgs: null,
2174
- genre: null,
2175
- commentCount: null,
2176
- ratingCount: '7',
2177
- categoryTitle: null,
2178
- customVideo0: null,
2179
- subCreator: null,
2180
- sourceImg: 'https://static.publ.site/channel_default_prifile.png',
2181
- reviewFeatured: null,
2182
- pointName: '시청권',
2183
- releasedDate: null,
2184
- rank: null,
2185
- updatedDate: '2024-12-10 13:39:46',
2186
- sourceFeatured: null,
2187
- seriesLogo: null,
2188
- itemTitle: 'Class 2. How to make Figures',
2189
- reviewCount: '7',
2190
- pinned: null,
2191
- itemConversionLink: '/C00007/classes/5121/information',
2192
- discountPoint: '0',
2193
- sourceDesc: null,
2194
- shippingPrice: null,
2195
- customImg2: null,
2196
- originalPoint: '0',
2197
- originalPriceWithShipping: null,
2198
- purchaserCount: null,
2199
- lowestPriceWithShipping: null,
2200
- sourceConversionLink: null,
2201
- ratingAvgPoint: '2.0',
2202
- customUri1: null,
2203
- commentFeatured: null,
2204
- shippingPoint: null,
2205
- nation: null,
2206
- instructor: null,
2207
- paid: '',
2208
- creator: null,
2209
- actor: null,
2210
- discountPrice: '0',
2211
- ageGradeName: '',
2212
- viewCount: '',
2213
- currency: 'KRW',
2214
- conversionLinkName: null,
2215
- order: null,
2216
- conversionLinkDesc: null,
2217
- itemThumbnail: 'https://publ-upload-prod.s3.ap-northeast-2.amazonaws.com/7ecfacd3-51e6-41b1-9f17-d479a638acb5',
2218
- originalPrice: '0',
2219
- reactionCount: null,
2220
- lowestPoint: '0',
2221
- categoryConversionLink: null,
2222
- seriesTitles: null,
2223
- createdDate: '2023-11-13 13:18:10',
2224
- originalPointWithShipping: null,
2225
- customString3: null,
2226
- customString2: null,
2227
- customString4: null,
2228
- customString1: null,
2229
- dislikeCount: null,
2230
- contentsCount: '5',
2231
- itemAttachmentUri: null,
2232
- commentFeaturedConversionLink: null,
2233
- level: null,
2234
- labels: null,
2235
- customString0: null,
2236
- publishedDate: '2023-02-24 02:41:35',
2237
- itemAttachmentName: null,
2238
- seriesConversionLink: null,
2239
- director: null,
2240
- discountName: '',
2241
- pointImg: 'https://static.publ.site/brandedpoint_icon/ic_brandedpoint_3d_ticket_01.png',
2242
- likeCount: null,
2243
- itemOverview: '',
2244
- itemPreviewVideo: null,
2245
- reviewFeaturedConversionLink: null,
2246
- resourceAttachmentFiles: null,
2247
- bookmarkCount: '',
2248
- sourceName: '123123',
2249
- customUri0: null,
2250
- customUri2: null,
2251
- customImg0: null,
2252
- gradeName: null,
2253
- itemAttachmentImg: null,
2254
- itemDesc: '1. Figure Making for Beginners: This class is aimed at people who are making figures for the first t...',
2255
- customImg1: null,
2256
- conversionLinkThumbnail: null,
2257
- logo: null,
2258
- lowestPrice: '0',
2259
- synopsis: null,
2260
- customVideo2: null
2261
- },
2262
- {
2263
- discountRate: '94',
2264
- lowestPointWithShipping: null,
2265
- conversionLinkUri: null,
2266
- customVideo1: null,
2267
- itemPreviewImgs: null,
2268
- genre: null,
2269
- commentCount: null,
2270
- ratingCount: '8',
2271
- categoryTitle: null,
2272
- customVideo0: null,
2273
- subCreator: null,
2274
- sourceImg: 'https://static.publ.site/channel_default_prifile.png',
2275
- reviewFeatured: null,
2276
- pointName: '시청권',
2277
- releasedDate: null,
2278
- rank: null,
2279
- updatedDate: '2024-12-10 13:39:46',
2280
- sourceFeatured: null,
2281
- seriesLogo: null,
2282
- itemTitle: 'Class 1. How to Make Cookies',
2283
- reviewCount: '8',
2284
- pinned: null,
2285
- itemConversionLink: '/C00007/classes/5122/information',
2286
- discountPoint: '47',
2287
- sourceDesc: null,
2288
- shippingPrice: null,
2289
- customImg2: null,
2290
- originalPoint: '50',
2291
- originalPriceWithShipping: null,
2292
- purchaserCount: null,
2293
- lowestPriceWithShipping: null,
2294
- sourceConversionLink: null,
2295
- ratingAvgPoint: '1.5',
2296
- customUri1: null,
2297
- commentFeatured: null,
2298
- shippingPoint: null,
2299
- nation: null,
2300
- instructor: null,
2301
- paid: 'paid',
2302
- creator: null,
2303
- actor: null,
2304
- discountPrice: '4700',
2305
- ageGradeName: '',
2306
- viewCount: '',
2307
- currency: 'KRW',
2308
- conversionLinkName: null,
2309
- order: null,
2310
- conversionLinkDesc: null,
2311
- itemThumbnail: 'https://publ-upload-prod.s3.ap-northeast-2.amazonaws.com/36df6dba-d20d-430e-abed-e696d054339a',
2312
- originalPrice: '5000',
2313
- reactionCount: null,
2314
- lowestPoint: '3',
2315
- categoryConversionLink: null,
2316
- seriesTitles: null,
2317
- createdDate: '2023-11-13 13:18:10',
2318
- originalPointWithShipping: null,
2319
- customString3: null,
2320
- customString2: null,
2321
- customString4: null,
2322
- customString1: null,
2323
- dislikeCount: null,
2324
- contentsCount: '14',
2325
- itemAttachmentUri: null,
2326
- commentFeaturedConversionLink: null,
2327
- level: null,
2328
- labels: null,
2329
- customString0: null,
2330
- publishedDate: '2023-02-24 02:41:40',
2331
- itemAttachmentName: null,
2332
- seriesConversionLink: null,
2333
- director: null,
2334
- discountName: '',
2335
- pointImg: 'https://static.publ.site/brandedpoint_icon/ic_brandedpoint_3d_ticket_01.png',
2336
- likeCount: null,
2337
- itemOverview: '',
2338
- itemPreviewVideo: null,
2339
- reviewFeaturedConversionLink: null,
2340
- resourceAttachmentFiles: null,
2341
- bookmarkCount: '',
2342
- sourceName: '123123',
2343
- customUri0: null,
2344
- customUri2: null,
2345
- customImg0: null,
2346
- gradeName: null,
2347
- itemAttachmentImg: null,
2348
- itemDesc: '1. Cookie Making for Beginners: This class is aimed at those who are making cookies for the first ti...',
2349
- customImg1: null,
2350
- conversionLinkThumbnail: null,
2351
- logo: null,
2352
- lowestPrice: '300',
2353
- synopsis: null,
2354
- customVideo2: null
2355
- },
2356
- {
2357
- discountRate: '94',
2358
- lowestPointWithShipping: null,
2359
- conversionLinkUri: null,
2360
- customVideo1: null,
2361
- itemPreviewImgs: null,
2362
- genre: null,
2363
- commentCount: null,
2364
- ratingCount: '6',
2365
- categoryTitle: null,
2366
- customVideo0: null,
2367
- subCreator: null,
2368
- sourceImg: 'https://static.publ.site/channel_default_prifile.png',
2369
- reviewFeatured: null,
2370
- pointName: '시청권',
2371
- releasedDate: null,
2372
- rank: null,
2373
- updatedDate: '2024-12-10 13:39:46',
2374
- sourceFeatured: null,
2375
- seriesLogo: null,
2376
- itemTitle: '[퍼블 아카데미 미리보기] pApp 기초 클래스',
2377
- reviewCount: '6',
2378
- pinned: null,
2379
- itemConversionLink: '/C00007/classes/9266/information',
2380
- discountPoint: '47',
2381
- sourceDesc: null,
2382
- shippingPrice: null,
2383
- customImg2: null,
2384
- originalPoint: '50',
2385
- originalPriceWithShipping: null,
2386
- purchaserCount: null,
2387
- lowestPriceWithShipping: null,
2388
- sourceConversionLink: null,
2389
- ratingAvgPoint: '2.7',
2390
- customUri1: null,
2391
- commentFeatured: null,
2392
- shippingPoint: null,
2393
- nation: null,
2394
- instructor: null,
2395
- paid: 'paid',
2396
- creator: null,
2397
- actor: null,
2398
- discountPrice: '4700',
2399
- ageGradeName: '',
2400
- viewCount: '',
2401
- currency: 'KRW',
2402
- conversionLinkName: null,
2403
- order: null,
2404
- conversionLinkDesc: null,
2405
- itemThumbnail: 'https://publ-upload-local.s3.ap-northeast-2.amazonaws.com/11ccc848-0ae7-460d-8c8a-92d633b32be1',
2406
- originalPrice: '5000',
2407
- reactionCount: null,
2408
- lowestPoint: '3',
2409
- categoryConversionLink: null,
2410
- seriesTitles: null,
2411
- createdDate: '2024-06-13 05:08:50',
2412
- originalPointWithShipping: null,
2413
- customString3: null,
2414
- customString2: null,
2415
- customString4: null,
2416
- customString1: null,
2417
- dislikeCount: null,
2418
- contentsCount: '3',
2419
- itemAttachmentUri: null,
2420
- commentFeaturedConversionLink: null,
2421
- level: null,
2422
- labels: null,
2423
- customString0: null,
2424
- publishedDate: '2024-06-13 05:08:50',
2425
- itemAttachmentName: null,
2426
- seriesConversionLink: null,
2427
- director: null,
2428
- discountName: '',
2429
- pointImg: 'https://static.publ.site/brandedpoint_icon/ic_brandedpoint_3d_ticket_01.png',
2430
- likeCount: null,
2431
- itemOverview: '',
2432
- itemPreviewVideo: null,
2433
- reviewFeaturedConversionLink: null,
2434
- resourceAttachmentFiles: null,
2435
- bookmarkCount: '',
2436
- sourceName: '이름바꾼셀러',
2437
- customUri0: null,
2438
- customUri2: null,
2439
- customImg0: null,
2440
- gradeName: null,
2441
- itemAttachmentImg: null,
2442
- itemDesc: '',
2443
- customImg1: null,
2444
- conversionLinkThumbnail: null,
2445
- logo: null,
2446
- lowestPrice: '300',
2447
- synopsis: null,
2448
- customVideo2: null
2449
- },
2450
- {
2451
- discountRate: '0',
2452
- lowestPointWithShipping: null,
2453
- conversionLinkUri: null,
2454
- customVideo1: null,
2455
- itemPreviewImgs: null,
2456
- genre: null,
2457
- commentCount: null,
2458
- ratingCount: '7',
2459
- categoryTitle: null,
2460
- customVideo0: null,
2461
- subCreator: null,
2462
- sourceImg: 'https://static.publ.site/channel_default_prifile.png',
2463
- reviewFeatured: null,
2464
- pointName: '시청권',
2465
- releasedDate: null,
2466
- rank: null,
2467
- updatedDate: '2024-12-10 13:39:46',
2468
- sourceFeatured: null,
2469
- seriesLogo: null,
2470
- itemTitle: '차원이 다른 연구 프로세스 : 연구자를 위한 AI툴 활용법',
2471
- reviewCount: '7',
2472
- pinned: null,
2473
- itemConversionLink: '/C00007/classes/9267/information',
2474
- discountPoint: '0',
2475
- sourceDesc: null,
2476
- shippingPrice: null,
2477
- customImg2: null,
2478
- originalPoint: '0',
2479
- originalPriceWithShipping: null,
2480
- purchaserCount: null,
2481
- lowestPriceWithShipping: null,
2482
- sourceConversionLink: null,
2483
- ratingAvgPoint: '2.3',
2484
- customUri1: null,
2485
- commentFeatured: null,
2486
- shippingPoint: null,
2487
- nation: null,
2488
- instructor: null,
2489
- paid: '',
2490
- creator: null,
2491
- actor: null,
2492
- discountPrice: '0',
2493
- ageGradeName: '',
2494
- viewCount: '',
2495
- currency: 'KRW',
2496
- conversionLinkName: null,
2497
- order: null,
2498
- conversionLinkDesc: null,
2499
- itemThumbnail: 'https://publ-upload-local.s3.ap-northeast-2.amazonaws.com/ab205601-cabc-408c-bec4-bb51114f3d3f',
2500
- originalPrice: '0',
2501
- reactionCount: null,
2502
- lowestPoint: '0',
2503
- categoryConversionLink: null,
2504
- seriesTitles: null,
2505
- createdDate: '2024-06-13 05:17:43',
2506
- originalPointWithShipping: null,
2507
- customString3: null,
2508
- customString2: null,
2509
- customString4: null,
2510
- customString1: null,
2511
- dislikeCount: null,
2512
- contentsCount: '4',
2513
- itemAttachmentUri: null,
2514
- commentFeaturedConversionLink: null,
2515
- level: null,
2516
- labels: null,
2517
- customString0: null,
2518
- publishedDate: '2024-06-13 05:17:43',
2519
- itemAttachmentName: null,
2520
- seriesConversionLink: null,
2521
- director: null,
2522
- discountName: '',
2523
- pointImg: 'https://static.publ.site/brandedpoint_icon/ic_brandedpoint_3d_ticket_01.png',
2524
- likeCount: null,
2525
- itemOverview: '',
2526
- itemPreviewVideo: null,
2527
- reviewFeaturedConversionLink: null,
2528
- resourceAttachmentFiles: null,
2529
- bookmarkCount: '',
2530
- sourceName: '이름바꾼셀러',
2531
- customUri0: null,
2532
- customUri2: null,
2533
- customImg0: null,
2534
- gradeName: null,
2535
- itemAttachmentImg: null,
2536
- itemDesc: '',
2537
- customImg1: null,
2538
- conversionLinkThumbnail: null,
2539
- logo: null,
2540
- lowestPrice: '0',
2541
- synopsis: null,
2542
- customVideo2: null
2543
- },
2544
- {
2545
- discountRate: '0',
2546
- lowestPointWithShipping: null,
2547
- conversionLinkUri: null,
2548
- customVideo1: null,
2549
- itemPreviewImgs: null,
2550
- genre: null,
2551
- commentCount: null,
2552
- ratingCount: '8',
2553
- categoryTitle: null,
2554
- customVideo0: null,
2555
- subCreator: null,
2556
- sourceImg: 'https://static.publ.site/channel_default_prifile.png',
2557
- reviewFeatured: null,
2558
- pointName: '시청권',
2559
- releasedDate: null,
2560
- rank: null,
2561
- updatedDate: '2025-05-14 08:52:55',
2562
- sourceFeatured: null,
2563
- seriesLogo: null,
2564
- itemTitle: '퍼블 디자인팀을 이끄는 김혜진 리드의 AI 시대, 고객을 사로잡는 브랜딩 자산 구축',
2565
- reviewCount: '8',
2566
- pinned: null,
2567
- itemConversionLink: '/C00007/classes/9269/information',
2568
- discountPoint: '0',
2569
- sourceDesc: null,
2570
- shippingPrice: null,
2571
- customImg2: null,
2572
- originalPoint: '0',
2573
- originalPriceWithShipping: null,
2574
- purchaserCount: null,
2575
- lowestPriceWithShipping: null,
2576
- sourceConversionLink: null,
2577
- ratingAvgPoint: '2.6',
2578
- customUri1: null,
2579
- commentFeatured: null,
2580
- shippingPoint: null,
2581
- nation: null,
2582
- instructor: null,
2583
- paid: '',
2584
- creator: null,
2585
- actor: null,
2586
- discountPrice: '0',
2587
- ageGradeName: '경력',
2588
- viewCount: '',
2589
- currency: 'KRW',
2590
- conversionLinkName: null,
2591
- order: null,
2592
- conversionLinkDesc: null,
2593
- itemThumbnail: 'https://publ-upload-local.s3.ap-northeast-2.amazonaws.com/165de33b-b3c2-4265-8be5-1865479d8ba5',
2594
- originalPrice: '0',
2595
- reactionCount: null,
2596
- lowestPoint: '0',
2597
- categoryConversionLink: null,
2598
- seriesTitles: null,
2599
- createdDate: '2024-06-13 05:48:43',
2600
- originalPointWithShipping: null,
2601
- customString3: null,
2602
- customString2: null,
2603
- customString4: null,
2604
- customString1: null,
2605
- dislikeCount: null,
2606
- contentsCount: '1',
2607
- itemAttachmentUri: null,
2608
- commentFeaturedConversionLink: null,
2609
- level: null,
2610
- labels: null,
2611
- customString0: null,
2612
- publishedDate: '2024-06-13 05:48:43',
2613
- itemAttachmentName: null,
2614
- seriesConversionLink: null,
2615
- director: null,
2616
- discountName: '',
2617
- pointImg: 'https://static.publ.site/brandedpoint_icon/ic_brandedpoint_3d_ticket_01.png',
2618
- likeCount: null,
2619
- itemOverview: '',
2620
- itemPreviewVideo: null,
2621
- reviewFeaturedConversionLink: null,
2622
- resourceAttachmentFiles: null,
2623
- bookmarkCount: '',
2624
- sourceName: '이름바꾼셀러',
2625
- customUri0: null,
2626
- customUri2: null,
2627
- customImg0: null,
2628
- gradeName: null,
2629
- itemAttachmentImg: null,
2630
- itemDesc: '<p><video controls="controls" width="300" height="150">\n<source src="https://publ-sw-core-image.s3.a...',
2631
- customImg1: null,
2632
- conversionLinkThumbnail: null,
2633
- logo: null,
2634
- lowestPrice: '0',
2635
- synopsis: null,
2636
- customVideo2: null
2637
- }
2638
- ]
2639
- };