pds-dev-kit-web-test 0.1.10 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -12
- package/dist/index.d.ts +2 -2
- package/dist/src/common/assets/icons/line/Box.d.ts +4 -0
- package/dist/src/common/assets/icons/line/Box.js +30 -0
- package/dist/src/common/assets/icons/line/Cart.d.ts +4 -0
- package/dist/src/common/assets/icons/line/Cart.js +30 -0
- package/dist/src/common/assets/icons/line/Delivery.d.ts +4 -0
- package/dist/src/common/assets/icons/line/Delivery.js +30 -0
- package/dist/src/common/assets/icons/line/DottedCircle.d.ts +4 -0
- package/dist/src/common/assets/icons/line/DottedCircle.js +30 -0
- package/dist/src/common/assets/icons/line/Receipt.d.ts +4 -0
- package/dist/src/common/assets/icons/line/Receipt.js +30 -0
- package/dist/src/common/assets/icons/line/Shop.d.ts +4 -0
- package/dist/src/common/assets/icons/line/Shop.js +30 -0
- package/dist/src/common/assets/icons/line/Shoppingbag.d.ts +4 -0
- package/dist/src/common/assets/icons/line/Shoppingbag.js +30 -0
- package/dist/src/common/assets/icons/line/index.d.ts +7 -0
- package/dist/src/common/assets/icons/line/index.js +14 -0
- package/dist/src/common/services/i18n/resources/en.json +20 -1
- package/dist/src/common/services/i18n/resources/es.json +20 -1
- package/dist/src/common/services/i18n/resources/fil.json +20 -1
- package/dist/src/common/services/i18n/resources/index.d.ts +133 -0
- package/dist/src/common/services/i18n/resources/ja.json +20 -1
- package/dist/src/common/services/i18n/resources/ko.json +20 -1
- package/dist/src/common/services/i18n/resources/zh-cn.json +20 -1
- package/dist/src/common/services/i18n/resources/zh-tw.json +20 -1
- package/dist/src/common/styles/colorSet/PaletteColor_Dark.json +22 -3
- package/dist/src/common/styles/colorSet/PaletteColor_light.json +21 -2
- package/dist/src/common/styles/colorSet/SemanticColor.json +13 -1
- package/dist/src/common/styles/colorSet/UIColor.json +37 -1
- package/dist/src/common/styles/colorSet/index.d.ts +86 -0
- package/dist/src/common/styles/colorSet/ui-type.d.ts +36 -0
- package/dist/src/desktop/common/components/TextFieldBase/TextFieldBase.d.ts +4 -1
- package/dist/src/desktop/common/components/TextFieldBase/TextFieldBase.js +36 -11
- package/dist/src/desktop/common/components/TextFieldBase/constants.d.ts +1 -0
- package/dist/src/desktop/common/components/TextFieldBase/constants.js +4 -0
- package/dist/src/desktop/components/IconButton/IconButton.d.ts +4 -2
- package/dist/src/desktop/components/IconButton/IconButton.js +52 -4
- package/dist/src/desktop/components/IconButton/constants.d.ts +15 -0
- package/dist/src/desktop/components/IconButton/constants.js +19 -0
- package/dist/src/desktop/components/TextField/TextField.d.ts +3 -1
- package/dist/src/desktop/components/TextField/TextField.js +5 -5
- package/dist/src/desktop/layout/LayoutWS/Containers/ContentsContainer/ContentsContainer.d.ts +1 -1
- package/dist/src/desktop/layout/LayoutWS/Containers/ContentsContainer/ContentsContainer.js +2 -1
- package/dist/src/desktop/layout/LayoutWS/Containers/ContentsContainer/variation/WSG.js +57 -32
- package/dist/src/desktop/layout/LayoutWS/Containers/ContentsContainer/variation/WSI.d.ts +15 -0
- package/dist/src/desktop/layout/LayoutWS/Containers/ContentsContainer/variation/WSI.js +117 -0
- package/dist/src/desktop/layout/LayoutWS/Containers/ContentsContainer/variation/index.d.ts +1 -0
- package/dist/src/desktop/layout/LayoutWS/Containers/ContentsContainer/variation/index.js +3 -1
- package/dist/src/desktop/layout/LayoutWS/ContainersBox/ContainersBox.d.ts +1 -1
- package/dist/src/desktop/layout/LayoutWT/Containers/ContentsContainer/variation/WTA.js +1 -1
- package/dist/src/desktop/layout/LayoutWT/Containers/ContentsContainer/variation/WTK.js +1 -1
- package/dist/src/mobile/common/components/TextFieldBase/TextFieldBase.d.ts +4 -1
- package/dist/src/mobile/common/components/TextFieldBase/TextFieldBase.js +35 -10
- package/dist/src/mobile/common/components/TextFieldBase/constants.d.ts +1 -0
- package/dist/src/mobile/common/components/TextFieldBase/constants.js +4 -0
- package/dist/src/mobile/components/MobileHeaderBar/MobileHeaderBar.js +1 -1
- package/dist/src/mobile/components/TextField/TextField.d.ts +3 -1
- package/dist/src/mobile/components/TextField/TextField.js +5 -5
- package/dist/src/sub/AdminList/ToolBar/ToolBar.js +1 -1
- package/dist/src/sub/DynamicLayout/DynamicLayout.d.ts +1 -1
- package/dist/src/sub/DynamicLayout/DynamicLayout.js +9 -2
- package/dist/src/sub/DynamicLayout/components/ComponentBlocks/RichText/RichText.d.ts +7 -0
- package/dist/src/sub/DynamicLayout/components/ComponentBlocks/RichText/RichText.js +24 -0
- package/dist/src/sub/DynamicLayout/components/ComponentBlocks/RichText/index.d.ts +2 -0
- package/dist/src/sub/DynamicLayout/components/ComponentBlocks/RichText/index.js +8 -0
- package/dist/src/sub/DynamicLayout/components/ComponentBlocks/TwitterTimeline/TwitterTimeline.d.ts +78 -0
- package/dist/src/sub/DynamicLayout/components/ComponentBlocks/TwitterTimeline/TwitterTimeline.js +52 -0
- package/dist/src/sub/DynamicLayout/components/ComponentBlocks/TwitterTimeline/index.d.ts +2 -0
- package/dist/src/sub/DynamicLayout/components/ComponentBlocks/TwitterTimeline/index.js +8 -0
- package/dist/src/sub/DynamicLayout/components/ComponentBlocks/index.d.ts +3 -0
- package/dist/src/sub/DynamicLayout/components/ComponentBlocks/index.js +7 -0
- package/dist/src/sub/DynamicLayout/components/EditModeSectionMatcher/EditModeSectionMatcher.js +38 -2
- package/dist/src/sub/DynamicLayout/components/Section/Section.js +10 -2
- package/dist/src/sub/DynamicLayout/components/SectionMatcher/SectionMatcher.js +5 -0
- package/dist/src/sub/DynamicLayout/custonSectionSampleData.d.ts +173 -0
- package/dist/src/sub/DynamicLayout/custonSectionSampleData.js +167 -0
- package/dist/src/sub/DynamicLayout/mock_samplePage.d.ts +1 -0
- package/dist/src/sub/DynamicLayout/mock_samplePage.js +449 -16
- package/dist/src/sub/DynamicLayout/mock_storybook.d.ts +7 -0
- package/dist/src/sub/DynamicLayout/mock_storybook.js +2310 -0
- package/dist/src/sub/DynamicLayout/sectionActionTypes.d.ts +5 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/BlockMatcher.d.ts +11 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/BlockMatcher.js +65 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/Button.d.ts +8 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/Button.js +51 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/Divider.d.ts +7 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/Divider.js +29 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/Image.d.ts +7 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/Image.js +18 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/Instagram.d.ts +7 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/Instagram.js +19 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/RichText.d.ts +7 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/RichText.js +9 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/Text.d.ts +7 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/Text.js +29 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/Twitter.d.ts +7 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/Twitter.js +30 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/Youtube.d.ts +9 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/Youtube.js +38 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/index.d.ts +8 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/index.js +22 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/index.d.ts +1 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/index.js +8 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/CustomSection.d.ts +11 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/CustomSection.js +83 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/index.d.ts +2 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/index.js +8 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/types.d.ts +72 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/types.js +13 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/MembershipSection.d.ts +4 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/MembershipSection.js +79 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/index.d.ts +1 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/index.js +8 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateA/TemplateA.d.ts +5 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateA/TemplateA.js +25 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateA/desktop/D_TemplateA.d.ts +8 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateA/desktop/D_TemplateA.js +27 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateA/desktop/components/EmptyMembershipSheet.d.ts +3 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateA/desktop/components/EmptyMembershipSheet.js +35 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateA/desktop/components/MembershipBenefitInfo.d.ts +8 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateA/desktop/components/MembershipBenefitInfo.js +10 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateA/desktop/components/MembershipPlanSheet.d.ts +8 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateA/desktop/components/MembershipPlanSheet.js +85 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateA/desktop/components/MembershipSheet.d.ts +8 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateA/desktop/components/MembershipSheet.js +93 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateA/desktop/components/NarrowMembershipListView.d.ts +11 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateA/desktop/components/NarrowMembershipListView.js +174 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateA/desktop/components/SectionContents.d.ts +3 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateA/desktop/components/SectionContents.js +49 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateA/desktop/components/UnavailableMembershipPlanSheet.d.ts +7 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateA/desktop/components/UnavailableMembershipPlanSheet.js +33 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateA/desktop/components/WideMembershipListView.d.ts +11 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateA/desktop/components/WideMembershipListView.js +88 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateA/desktop/index.d.ts +1 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateA/desktop/index.js +8 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateA/index.d.ts +1 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateA/index.js +8 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateA/mobile/M_TemplateA.d.ts +7 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateA/mobile/M_TemplateA.js +28 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateA/mobile/components/EmptyMembershipSheet.d.ts +3 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateA/mobile/components/EmptyMembershipSheet.js +35 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateA/mobile/components/MembershipBenefitInfo.d.ts +8 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateA/mobile/components/MembershipBenefitInfo.js +11 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateA/mobile/components/MembershipContents.d.ts +7 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateA/mobile/components/MembershipContents.js +22 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateA/mobile/components/MembershipSectionSheet.d.ts +7 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateA/mobile/components/MembershipSectionSheet.js +51 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateA/mobile/components/SectionContents.d.ts +3 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateA/mobile/components/SectionContents.js +48 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateA/mobile/index.d.ts +1 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateA/mobile/index.js +8 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateB/TemplateB.d.ts +5 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateB/TemplateB.js +25 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateB/desktop/D_TemplateB.d.ts +8 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateB/desktop/D_TemplateB.js +25 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateB/desktop/components/EmptyMembershipSheet.d.ts +3 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateB/desktop/components/EmptyMembershipSheet.js +35 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateB/desktop/components/MembershipBenefitInfo.d.ts +8 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateB/desktop/components/MembershipBenefitInfo.js +10 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateB/desktop/components/MembershipCard.d.ts +7 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateB/desktop/components/MembershipCard.js +85 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateB/desktop/components/MembershipPlanSheet.d.ts +8 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateB/desktop/components/MembershipPlanSheet.js +85 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateB/desktop/components/MembershipSheet.d.ts +8 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateB/desktop/components/MembershipSheet.js +79 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateB/desktop/components/SectionContents.d.ts +3 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateB/desktop/components/SectionContents.js +48 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateB/desktop/components/UnavailableMembershipPlanSheet.d.ts +7 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateB/desktop/components/UnavailableMembershipPlanSheet.js +33 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateB/desktop/index.d.ts +1 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateB/desktop/index.js +8 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateB/index.d.ts +1 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateB/index.js +8 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateB/mobile/M_TemplateB.d.ts +7 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateB/mobile/M_TemplateB.js +28 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateB/mobile/components/EmptyMembershipSheet.d.ts +3 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateB/mobile/components/EmptyMembershipSheet.js +35 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateB/mobile/components/MembershipBenefitInfo.d.ts +8 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateB/mobile/components/MembershipBenefitInfo.js +11 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateB/mobile/components/MembershipContents.d.ts +7 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateB/mobile/components/MembershipContents.js +22 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateB/mobile/components/MembershipSectionSheet.d.ts +7 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateB/mobile/components/MembershipSectionSheet.js +51 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateB/mobile/components/SectionContents.d.ts +3 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateB/mobile/components/SectionContents.js +48 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateB/mobile/index.d.ts +1 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/TemplateB/mobile/index.js +8 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/index.d.ts +2 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/EditType/templates/index.js +7 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/NormalType/MembershipSection.d.ts +4 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/NormalType/MembershipSection.js +54 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/NormalType/index.d.ts +1 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/NormalType/index.js +8 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/NormalType/templates/TemplateA/TemplateA.d.ts +3 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/NormalType/templates/TemplateA/TemplateA.js +15 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/NormalType/templates/TemplateA/desktop/D_TemplateA.d.ts +3 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/NormalType/templates/TemplateA/desktop/D_TemplateA.js +30 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/NormalType/templates/TemplateA/desktop/components/SectionContents.d.ts +3 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/NormalType/templates/TemplateA/desktop/components/SectionContents.js +49 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/NormalType/templates/TemplateA/desktop/index.d.ts +1 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/NormalType/templates/TemplateA/desktop/index.js +8 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/NormalType/templates/TemplateA/index.d.ts +1 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/NormalType/templates/TemplateA/index.js +8 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/NormalType/templates/TemplateA/mobile/M_TemplateA.d.ts +3 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/NormalType/templates/TemplateA/mobile/M_TemplateA.js +33 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/NormalType/templates/TemplateA/mobile/components/SectionContents.d.ts +3 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/NormalType/templates/TemplateA/mobile/components/SectionContents.js +48 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/NormalType/templates/TemplateA/mobile/index.d.ts +1 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/NormalType/templates/TemplateA/mobile/index.js +8 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/NormalType/templates/TemplateB/TemplateB.d.ts +3 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/NormalType/templates/TemplateB/TemplateB.js +15 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/NormalType/templates/TemplateB/desktop/D_TemplateB.d.ts +3 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/NormalType/templates/TemplateB/desktop/D_TemplateB.js +30 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/NormalType/templates/TemplateB/desktop/components/SectionContents.d.ts +3 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/NormalType/templates/TemplateB/desktop/components/SectionContents.js +48 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/NormalType/templates/TemplateB/desktop/index.d.ts +1 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/NormalType/templates/TemplateB/desktop/index.js +8 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/NormalType/templates/TemplateB/index.d.ts +1 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/NormalType/templates/TemplateB/index.js +8 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/NormalType/templates/TemplateB/mobile/M_TemplateB.d.ts +3 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/NormalType/templates/TemplateB/mobile/M_TemplateB.js +33 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/NormalType/templates/TemplateB/mobile/components/SectionContents.d.ts +3 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/NormalType/templates/TemplateB/mobile/components/SectionContents.js +48 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/NormalType/templates/TemplateB/mobile/index.d.ts +1 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/NormalType/templates/TemplateB/mobile/index.js +8 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/NormalType/templates/index.d.ts +2 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/NormalType/templates/index.js +7 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/components/desktop/MembershipSectionItem.d.ts +44 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/components/desktop/MembershipSectionItem.js +252 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/components/desktop/index.d.ts +1 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/components/desktop/index.js +8 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/components/index.d.ts +2 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/components/index.js +7 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/components/mobile/MembershipSectionItem.d.ts +45 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/components/mobile/MembershipSectionItem.js +272 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/components/mobile/index.d.ts +1 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/components/mobile/index.js +8 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/constants.d.ts +13 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/constants.js +58 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/index.d.ts +3 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/index.js +7 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/type.d.ts +5 -0
- package/dist/src/sub/DynamicLayout/sections/MembershipSection/type.js +2 -0
- package/dist/src/sub/DynamicLayout/sections/index.d.ts +2 -0
- package/dist/src/sub/DynamicLayout/sections/index.js +5 -1
- package/dist/src/sub/DynamicLayout/types.d.ts +107 -4
- package/dist/src/sub/DynamicLayout/utils/formatCurrency.d.ts +8 -0
- package/dist/src/sub/DynamicLayout/utils/formatCurrency.js +27 -0
- package/package.json +3 -1
- package/release-note.md +6 -6
- package/webhook/node_modules/esrecurse/.babelrc +3 -0
|
@@ -0,0 +1,2310 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.MembershipSectionsMockOnlyOneConnectedSubscriptionProduct = exports.MembershipSectionsMockWithoutConnectedSubscriptionProducts = exports.MembershipSectionsMockWithoutMembership = exports.MembershipSectionsMock = exports.SampleSectionsMock = void 0;
|
|
4
|
+
exports.SampleSectionsMock = [
|
|
5
|
+
{
|
|
6
|
+
type: 'DESIGNED',
|
|
7
|
+
display: true,
|
|
8
|
+
dynamicLayoutSectionItems: [],
|
|
9
|
+
id: 6001,
|
|
10
|
+
insertedAt: '2023-01-12T08:03:48',
|
|
11
|
+
manifest: {
|
|
12
|
+
availableProperties: [
|
|
13
|
+
'title',
|
|
14
|
+
'description',
|
|
15
|
+
'button_alpha_label',
|
|
16
|
+
'button_alpha_link_type',
|
|
17
|
+
'button_alpha_link_src',
|
|
18
|
+
'button_bravo_label',
|
|
19
|
+
'button_bravo_link_type',
|
|
20
|
+
'button_bravo_link_src',
|
|
21
|
+
'button_charlie_label',
|
|
22
|
+
'button_charlie_link_type',
|
|
23
|
+
'button_charlie_link_src'
|
|
24
|
+
],
|
|
25
|
+
availableStyles: [
|
|
26
|
+
'title_color_in_hex',
|
|
27
|
+
'description_color_in_hex',
|
|
28
|
+
'background_color_in_hex',
|
|
29
|
+
'background_media_type',
|
|
30
|
+
'background_media_src',
|
|
31
|
+
'background_overlay_color_in_hex',
|
|
32
|
+
'button_alpha_design_type',
|
|
33
|
+
'button_alpha_background_color_in_hex',
|
|
34
|
+
'button_alpha_label_color_in_hex',
|
|
35
|
+
'button_bravo_design_type',
|
|
36
|
+
'button_bravo_background_color_in_hex',
|
|
37
|
+
'button_bravo_label_color_in_hex',
|
|
38
|
+
'button_charlie_design_type',
|
|
39
|
+
'button_charlie_background_color_in_hex',
|
|
40
|
+
'button_charlie_label_color_in_hex'
|
|
41
|
+
],
|
|
42
|
+
availableTemplates: ['BASE_INTRO_A', 'BASE_INTRO_B', 'BASE_INTRO_C', 'BASE_INTRO_D'],
|
|
43
|
+
schema: 'BASE_INTRO'
|
|
44
|
+
},
|
|
45
|
+
order: 1,
|
|
46
|
+
properties: {
|
|
47
|
+
buttonAlphaLabel: '',
|
|
48
|
+
buttonAlphaLinkSrc: 'https://publ.biz/',
|
|
49
|
+
buttonAlphaLinkType: 'WEB_LINK',
|
|
50
|
+
buttonBravoLabel: '',
|
|
51
|
+
buttonBravoLinkSrc: 'https://publ.biz/',
|
|
52
|
+
buttonBravoLinkType: 'WEB_LINK',
|
|
53
|
+
buttonCharlieLabel: '',
|
|
54
|
+
buttonCharlieLinkSrc: 'https://publ.biz/',
|
|
55
|
+
buttonCharlieLinkType: 'WEB_LINK',
|
|
56
|
+
buttonDeltaLabel: '',
|
|
57
|
+
buttonDeltaLinkSrc: '',
|
|
58
|
+
buttonDeltaLinkType: 'WEB_LINK',
|
|
59
|
+
buttonEchoLabel: '',
|
|
60
|
+
buttonEchoLinkSrc: '',
|
|
61
|
+
buttonEchoLinkType: 'WEB_LINK',
|
|
62
|
+
carouselAutoplayMode: 'MANUAL',
|
|
63
|
+
carouselAutoplayTime: 3,
|
|
64
|
+
carouselInfiniteLoopMode: 'NO_USE',
|
|
65
|
+
description: 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. \nDonec odio felis, eleifend eu leo nec, aliquam dignissim turpis. \nNam a ante mattis, lacinia lacus non, imperdiet leo.',
|
|
66
|
+
itemLinkMethod: 'CLICK_BUTTON_IN_ITEM',
|
|
67
|
+
sectionContentMediaSrc: '',
|
|
68
|
+
sectionContentMediaType: 'IMAGE',
|
|
69
|
+
title: 'Entertainment Business Sample',
|
|
70
|
+
multiPurposeUrl: ''
|
|
71
|
+
},
|
|
72
|
+
styles: {
|
|
73
|
+
backgroundColorInHex: '#EFF0F3FF',
|
|
74
|
+
backgroundMediaSrc: 'https://www.youtube.com/watch?v=4qz6x8y3tNw',
|
|
75
|
+
backgroundMediaType: 'YOUTUBE',
|
|
76
|
+
backgroundOverlayColorInHex: '#00000057',
|
|
77
|
+
buttonAlphaBackgroundColorInHex: '#00000000',
|
|
78
|
+
buttonAlphaDesignType: 'E',
|
|
79
|
+
buttonAlphaLabelColorInHex: '#FFFFFFFF',
|
|
80
|
+
buttonBravoBackgroundColorInHex: '#00000000',
|
|
81
|
+
buttonBravoDesignType: 'E',
|
|
82
|
+
buttonBravoLabelColorInHex: '#FFFFFFFF',
|
|
83
|
+
buttonCharlieBackgroundColorInHex: '#465FF000',
|
|
84
|
+
buttonCharlieDesignType: 'E',
|
|
85
|
+
buttonCharlieLabelColorInHex: '#FFFFFFFF',
|
|
86
|
+
buttonDeltaBackgroundColorInHex: '#455EEFFF',
|
|
87
|
+
buttonDeltaDesignType: 'A',
|
|
88
|
+
buttonDeltaLabelColorInHex: '#FFFFFFFF',
|
|
89
|
+
buttonEchoBackgroundColorInHex: '#455EEFFF',
|
|
90
|
+
buttonEchoDesignType: 'A',
|
|
91
|
+
buttonEchoLabelColorInHex: '#FFFFFFFF',
|
|
92
|
+
descriptionColorInHex: '#FFFFFFE8',
|
|
93
|
+
itemButtonBackgroundColorInHex: '#455EEFFF',
|
|
94
|
+
itemButtonDesignType: 'A',
|
|
95
|
+
itemButtonLabelColorInHex: '#FFFFFFFF',
|
|
96
|
+
itemDescriptionColorInHex: '#68686BFF',
|
|
97
|
+
itemTitleColorInHex: '#1E1E20FF',
|
|
98
|
+
itemHighlightingColorInHex: '#FFFFFFFF',
|
|
99
|
+
itemToneType: 'LIGHT',
|
|
100
|
+
titleColorInHex: '#FFFFFFFF',
|
|
101
|
+
programmedItemActionButtonTextType: 'A'
|
|
102
|
+
},
|
|
103
|
+
template: 'BASE_INTRO_A',
|
|
104
|
+
updatedAt: '2023-01-12T08:03:48'
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
type: 'DESIGNED',
|
|
108
|
+
display: true,
|
|
109
|
+
dynamicLayoutSectionItems: [
|
|
110
|
+
{
|
|
111
|
+
display: true,
|
|
112
|
+
id: 8520,
|
|
113
|
+
insertedAt: '2023-01-12T08:03:48',
|
|
114
|
+
manifest: {
|
|
115
|
+
availableProperties: [
|
|
116
|
+
'title',
|
|
117
|
+
'description',
|
|
118
|
+
'image_src',
|
|
119
|
+
'link_type',
|
|
120
|
+
'link_src',
|
|
121
|
+
'button_label'
|
|
122
|
+
],
|
|
123
|
+
schema: 'BASE_CONTENTS_CAROUSEL_ITEM',
|
|
124
|
+
section_schema: 'BASE_CONTENTS_CAROUSEL'
|
|
125
|
+
},
|
|
126
|
+
order: 1,
|
|
127
|
+
properties: {
|
|
128
|
+
body: '',
|
|
129
|
+
buttonLabel: 'Buy Tickets',
|
|
130
|
+
description: 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec odio felis, eleifend eu leo nec, aliquam dignissim turpis. Nam a ante mattis, lacinia lacus non, imperdiet leo. ',
|
|
131
|
+
imageSrc: 'https://cdn.dev.publishingkit.net/d474e86e-9df7-44dd-999e-0bc2a7c9b267.jpg',
|
|
132
|
+
linkSrc: 'https://publ.biz/',
|
|
133
|
+
linkType: 'WEB_LINK',
|
|
134
|
+
logoImageSrc: '',
|
|
135
|
+
title: 'Acoustic Music Festival in Bali'
|
|
136
|
+
},
|
|
137
|
+
updatedAt: '2023-01-12T08:03:48'
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
display: true,
|
|
141
|
+
id: 8521,
|
|
142
|
+
insertedAt: '2023-01-12T08:03:48',
|
|
143
|
+
manifest: {
|
|
144
|
+
availableProperties: [
|
|
145
|
+
'title',
|
|
146
|
+
'description',
|
|
147
|
+
'image_src',
|
|
148
|
+
'link_type',
|
|
149
|
+
'link_src',
|
|
150
|
+
'button_label'
|
|
151
|
+
],
|
|
152
|
+
schema: 'BASE_CONTENTS_CAROUSEL_ITEM',
|
|
153
|
+
section_schema: 'BASE_CONTENTS_CAROUSEL'
|
|
154
|
+
},
|
|
155
|
+
order: 2,
|
|
156
|
+
properties: {
|
|
157
|
+
body: '',
|
|
158
|
+
buttonLabel: 'More',
|
|
159
|
+
description: 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec odio felis, eleifend eu leo nec, aliquam dignissim turpis. Nam a ante mattis, lacinia lacus non, imperdiet leo. ',
|
|
160
|
+
imageSrc: 'https://cdn.dev.publishingkit.net/5cbc7c88-9566-4ce1-9dc8-0845259aa6a1.jpg',
|
|
161
|
+
linkSrc: 'https://publ.biz/',
|
|
162
|
+
linkType: 'WEB_LINK',
|
|
163
|
+
logoImageSrc: '',
|
|
164
|
+
title: '2023 Asia Artist Music Awards'
|
|
165
|
+
},
|
|
166
|
+
updatedAt: '2023-01-12T08:03:48'
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
display: true,
|
|
170
|
+
id: 8522,
|
|
171
|
+
insertedAt: '2023-01-12T08:03:48',
|
|
172
|
+
manifest: {
|
|
173
|
+
availableProperties: [
|
|
174
|
+
'title',
|
|
175
|
+
'description',
|
|
176
|
+
'image_src',
|
|
177
|
+
'link_type',
|
|
178
|
+
'link_src',
|
|
179
|
+
'button_label'
|
|
180
|
+
],
|
|
181
|
+
schema: 'BASE_CONTENTS_CAROUSEL_ITEM',
|
|
182
|
+
section_schema: 'BASE_CONTENTS_CAROUSEL'
|
|
183
|
+
},
|
|
184
|
+
order: 3,
|
|
185
|
+
properties: {
|
|
186
|
+
body: '',
|
|
187
|
+
buttonLabel: 'Play Now',
|
|
188
|
+
description: 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec odio felis, eleifend eu leo nec, aliquam dignissim turpis. Nam a ante mattis, lacinia lacus non, imperdiet leo. ',
|
|
189
|
+
imageSrc: 'https://cdn.dev.publishingkit.net/172b5a98-fd4b-4b2e-bdca-928d182c1548.jpg',
|
|
190
|
+
linkSrc: 'https://publ.biz/',
|
|
191
|
+
linkType: 'WEB_LINK',
|
|
192
|
+
logoImageSrc: '',
|
|
193
|
+
title: '2023 Europe Music Festival'
|
|
194
|
+
},
|
|
195
|
+
updatedAt: '2023-01-12T08:03:48'
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
display: true,
|
|
199
|
+
id: 8523,
|
|
200
|
+
insertedAt: '2023-01-12T08:03:48',
|
|
201
|
+
manifest: {
|
|
202
|
+
availableProperties: [
|
|
203
|
+
'title',
|
|
204
|
+
'description',
|
|
205
|
+
'image_src',
|
|
206
|
+
'link_type',
|
|
207
|
+
'link_src',
|
|
208
|
+
'button_label'
|
|
209
|
+
],
|
|
210
|
+
schema: 'BASE_CONTENTS_CAROUSEL_ITEM',
|
|
211
|
+
section_schema: 'BASE_CONTENTS_CAROUSEL'
|
|
212
|
+
},
|
|
213
|
+
order: 4,
|
|
214
|
+
properties: {
|
|
215
|
+
body: '',
|
|
216
|
+
buttonLabel: 'Play Now',
|
|
217
|
+
description: 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec odio felis, eleifend eu leo nec, aliquam dignissim turpis. Nam a ante mattis, lacinia lacus non, imperdiet leo. ',
|
|
218
|
+
imageSrc: 'https://cdn.dev.publishingkit.net/30ddd804-841a-416f-88a6-fbcb84924036.jpg',
|
|
219
|
+
linkSrc: 'https://publ.biz/',
|
|
220
|
+
linkType: 'WEB_LINK',
|
|
221
|
+
logoImageSrc: '',
|
|
222
|
+
title: '2023 America POP Festival'
|
|
223
|
+
},
|
|
224
|
+
updatedAt: '2023-01-12T08:03:48'
|
|
225
|
+
},
|
|
226
|
+
{
|
|
227
|
+
display: true,
|
|
228
|
+
id: 8524,
|
|
229
|
+
insertedAt: '2023-01-12T08:03:48',
|
|
230
|
+
manifest: {
|
|
231
|
+
availableProperties: [
|
|
232
|
+
'title',
|
|
233
|
+
'description',
|
|
234
|
+
'image_src',
|
|
235
|
+
'link_type',
|
|
236
|
+
'link_src',
|
|
237
|
+
'button_label'
|
|
238
|
+
],
|
|
239
|
+
schema: 'BASE_CONTENTS_CAROUSEL_ITEM',
|
|
240
|
+
section_schema: 'BASE_CONTENTS_CAROUSEL'
|
|
241
|
+
},
|
|
242
|
+
order: 5,
|
|
243
|
+
properties: {
|
|
244
|
+
body: '',
|
|
245
|
+
buttonLabel: 'Buy Tickets',
|
|
246
|
+
description: 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec odio felis, eleifend eu leo nec, aliquam dignissim turpis. Nam a ante mattis, lacinia lacus non, imperdiet leo. ',
|
|
247
|
+
imageSrc: 'https://cdn.dev.publishingkit.net/ed788763-9d0f-450f-8f9e-9161f260a9f5.jpg',
|
|
248
|
+
linkSrc: 'https://publ.biz/',
|
|
249
|
+
linkType: 'WEB_LINK',
|
|
250
|
+
logoImageSrc: '',
|
|
251
|
+
title: 'Romantic Music Festival with Han River'
|
|
252
|
+
},
|
|
253
|
+
updatedAt: '2023-01-12T08:03:48'
|
|
254
|
+
},
|
|
255
|
+
{
|
|
256
|
+
display: true,
|
|
257
|
+
id: 8525,
|
|
258
|
+
insertedAt: '2023-01-12T08:03:48',
|
|
259
|
+
manifest: {
|
|
260
|
+
availableProperties: [
|
|
261
|
+
'title',
|
|
262
|
+
'description',
|
|
263
|
+
'image_src',
|
|
264
|
+
'link_type',
|
|
265
|
+
'link_src',
|
|
266
|
+
'button_label'
|
|
267
|
+
],
|
|
268
|
+
schema: 'BASE_CONTENTS_CAROUSEL_ITEM',
|
|
269
|
+
section_schema: 'BASE_CONTENTS_CAROUSEL'
|
|
270
|
+
},
|
|
271
|
+
order: 6,
|
|
272
|
+
properties: {
|
|
273
|
+
body: '',
|
|
274
|
+
buttonLabel: 'Buy Tickets',
|
|
275
|
+
description: 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec odio felis, eleifend eu leo nec, aliquam dignissim turpis. Nam a ante mattis, lacinia lacus non, imperdiet leo. ',
|
|
276
|
+
imageSrc: 'https://cdn.dev.publishingkit.net/192bb673-cfbb-43d9-b734-7e4e75b35f90.jpg',
|
|
277
|
+
linkSrc: 'https://publ.biz/',
|
|
278
|
+
linkType: 'WEB_LINK',
|
|
279
|
+
logoImageSrc: '',
|
|
280
|
+
title: 'Private Live Concert in America'
|
|
281
|
+
},
|
|
282
|
+
updatedAt: '2023-01-12T08:03:48'
|
|
283
|
+
}
|
|
284
|
+
],
|
|
285
|
+
id: 6002,
|
|
286
|
+
insertedAt: '2023-01-12T08:03:48',
|
|
287
|
+
manifest: {
|
|
288
|
+
availableProperties: [
|
|
289
|
+
'title',
|
|
290
|
+
'description',
|
|
291
|
+
'carousel_autoplay_mode',
|
|
292
|
+
'carousel_autoplay_time',
|
|
293
|
+
'carousel_infinite_loop_mode',
|
|
294
|
+
'button_alpha_label',
|
|
295
|
+
'button_alpha_link_type',
|
|
296
|
+
'button_alpha_link_src',
|
|
297
|
+
'item_link_method'
|
|
298
|
+
],
|
|
299
|
+
availableStyles: [
|
|
300
|
+
'title_color_in_hex',
|
|
301
|
+
'description_color_in_hex',
|
|
302
|
+
'background_color_in_hex',
|
|
303
|
+
'background_media_type',
|
|
304
|
+
'background_media_src',
|
|
305
|
+
'background_overlay_color_in_hex',
|
|
306
|
+
'button_alpha_design_type',
|
|
307
|
+
'button_alpha_background_color_in_hex',
|
|
308
|
+
'button_alpha_label_color_in_hex',
|
|
309
|
+
'item_title_color_in_hex',
|
|
310
|
+
'item_description_color_in_hex',
|
|
311
|
+
'item_button_design_type',
|
|
312
|
+
'item_button_background_color_in_hex',
|
|
313
|
+
'item_button_label_color_in_hex'
|
|
314
|
+
],
|
|
315
|
+
availableTemplates: ['BASE_CONTENTS_CAROUSEL_A', 'BASE_CONTENTS_CAROUSEL_B'],
|
|
316
|
+
schema: 'BASE_CONTENTS_CAROUSEL'
|
|
317
|
+
},
|
|
318
|
+
order: 2,
|
|
319
|
+
properties: {
|
|
320
|
+
buttonAlphaLabel: '',
|
|
321
|
+
buttonAlphaLinkSrc: '',
|
|
322
|
+
buttonAlphaLinkType: 'WEB_LINK',
|
|
323
|
+
buttonBravoLabel: '',
|
|
324
|
+
buttonBravoLinkSrc: '',
|
|
325
|
+
buttonBravoLinkType: 'WEB_LINK',
|
|
326
|
+
buttonCharlieLabel: '',
|
|
327
|
+
buttonCharlieLinkSrc: '',
|
|
328
|
+
buttonCharlieLinkType: 'WEB_LINK',
|
|
329
|
+
buttonDeltaLabel: '',
|
|
330
|
+
buttonDeltaLinkSrc: '',
|
|
331
|
+
buttonDeltaLinkType: 'WEB_LINK',
|
|
332
|
+
buttonEchoLabel: '',
|
|
333
|
+
buttonEchoLinkSrc: '',
|
|
334
|
+
buttonEchoLinkType: 'WEB_LINK',
|
|
335
|
+
carouselAutoplayMode: 'MANUAL',
|
|
336
|
+
carouselAutoplayTime: 3,
|
|
337
|
+
carouselInfiniteLoopMode: 'NO_USE',
|
|
338
|
+
description: 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. \nDonec odio felis, eleifend eu leo nec, aliquam dignissim turpis. \nNam a ante mattis, lacinia lacus non, imperdiet leo.',
|
|
339
|
+
itemLinkMethod: 'CLICK_BUTTON_IN_ITEM',
|
|
340
|
+
sectionContentMediaSrc: '',
|
|
341
|
+
sectionContentMediaType: 'IMAGE',
|
|
342
|
+
title: 'Music Festival',
|
|
343
|
+
multiPurposeUrl: ''
|
|
344
|
+
},
|
|
345
|
+
styles: {
|
|
346
|
+
backgroundColorInHex: '#FFFFFFFF',
|
|
347
|
+
backgroundMediaSrc: 'https://publ-upload-dev.s3.ap-northeast-2.amazonaws.com/53020177-472c-4d56-88ed-a51ff4ef4173.jpg',
|
|
348
|
+
backgroundMediaType: 'IMAGE',
|
|
349
|
+
backgroundOverlayColorInHex: '#0000006E',
|
|
350
|
+
buttonAlphaBackgroundColorInHex: '#000000FF',
|
|
351
|
+
buttonAlphaDesignType: 'A',
|
|
352
|
+
buttonAlphaLabelColorInHex: '#FFFFFFFF',
|
|
353
|
+
buttonBravoBackgroundColorInHex: '#00000000',
|
|
354
|
+
buttonBravoDesignType: 'A',
|
|
355
|
+
buttonBravoLabelColorInHex: '#FFFFFFFF',
|
|
356
|
+
buttonCharlieBackgroundColorInHex: '#465FF000',
|
|
357
|
+
buttonCharlieDesignType: 'A',
|
|
358
|
+
buttonCharlieLabelColorInHex: '#FFFFFFFF',
|
|
359
|
+
buttonDeltaBackgroundColorInHex: '#455EEFFF',
|
|
360
|
+
buttonDeltaDesignType: 'A',
|
|
361
|
+
buttonDeltaLabelColorInHex: '#FFFFFFFF',
|
|
362
|
+
buttonEchoBackgroundColorInHex: '#455EEFFF',
|
|
363
|
+
buttonEchoDesignType: 'A',
|
|
364
|
+
buttonEchoLabelColorInHex: '#FFFFFFFF',
|
|
365
|
+
descriptionColorInHex: '#FFFFFFB0',
|
|
366
|
+
itemButtonBackgroundColorInHex: '#000000FF',
|
|
367
|
+
itemButtonDesignType: 'A',
|
|
368
|
+
itemButtonLabelColorInHex: '#FF2150FF',
|
|
369
|
+
itemDescriptionColorInHex: '#FFFFFFFF',
|
|
370
|
+
itemTitleColorInHex: '#FFFFFFFF',
|
|
371
|
+
itemHighlightingColorInHex: '#FFFFFFFF',
|
|
372
|
+
itemToneType: 'LIGHT',
|
|
373
|
+
titleColorInHex: '#FFFFFFFF',
|
|
374
|
+
programmedItemActionButtonTextType: 'A'
|
|
375
|
+
},
|
|
376
|
+
template: 'BASE_CONTENTS_CAROUSEL_A',
|
|
377
|
+
updatedAt: '2023-01-12T08:03:48'
|
|
378
|
+
},
|
|
379
|
+
{
|
|
380
|
+
type: 'DESIGNED',
|
|
381
|
+
display: true,
|
|
382
|
+
dynamicLayoutSectionItems: [],
|
|
383
|
+
id: 6003,
|
|
384
|
+
insertedAt: '2023-01-12T08:03:48',
|
|
385
|
+
manifest: {
|
|
386
|
+
availableProperties: [
|
|
387
|
+
'title',
|
|
388
|
+
'description',
|
|
389
|
+
'button_alpha_label',
|
|
390
|
+
'button_alpha_link_type',
|
|
391
|
+
'button_alpha_link_src',
|
|
392
|
+
'button_bravo_label',
|
|
393
|
+
'button_bravo_link_type',
|
|
394
|
+
'button_bravo_link_src',
|
|
395
|
+
'button_charlie_label',
|
|
396
|
+
'button_charlie_link_type',
|
|
397
|
+
'button_charlie_link_src'
|
|
398
|
+
],
|
|
399
|
+
availableStyles: [
|
|
400
|
+
'title_color_in_hex',
|
|
401
|
+
'description_color_in_hex',
|
|
402
|
+
'background_color_in_hex',
|
|
403
|
+
'background_media_type',
|
|
404
|
+
'background_media_src',
|
|
405
|
+
'background_overlay_color_in_hex',
|
|
406
|
+
'button_alpha_design_type',
|
|
407
|
+
'button_alpha_background_color_in_hex',
|
|
408
|
+
'button_alpha_label_color_in_hex',
|
|
409
|
+
'button_bravo_design_type',
|
|
410
|
+
'button_bravo_background_color_in_hex',
|
|
411
|
+
'button_bravo_label_color_in_hex',
|
|
412
|
+
'button_charlie_design_type',
|
|
413
|
+
'button_charlie_background_color_in_hex',
|
|
414
|
+
'button_charlie_label_color_in_hex'
|
|
415
|
+
],
|
|
416
|
+
availableTemplates: ['BASE_INTRO_A', 'BASE_INTRO_B', 'BASE_INTRO_C', 'BASE_INTRO_D'],
|
|
417
|
+
schema: 'BASE_INTRO'
|
|
418
|
+
},
|
|
419
|
+
order: 3,
|
|
420
|
+
properties: {
|
|
421
|
+
buttonAlphaLabel: '',
|
|
422
|
+
buttonAlphaLinkSrc: '',
|
|
423
|
+
buttonAlphaLinkType: 'WEB_LINK',
|
|
424
|
+
buttonBravoLabel: '',
|
|
425
|
+
buttonBravoLinkSrc: '',
|
|
426
|
+
buttonBravoLinkType: 'WEB_LINK',
|
|
427
|
+
buttonCharlieLabel: '',
|
|
428
|
+
buttonCharlieLinkSrc: '',
|
|
429
|
+
buttonCharlieLinkType: 'WEB_LINK',
|
|
430
|
+
buttonDeltaLabel: '',
|
|
431
|
+
buttonDeltaLinkSrc: '',
|
|
432
|
+
buttonDeltaLinkType: 'WEB_LINK',
|
|
433
|
+
buttonEchoLabel: '',
|
|
434
|
+
buttonEchoLinkSrc: '',
|
|
435
|
+
buttonEchoLinkType: 'WEB_LINK',
|
|
436
|
+
carouselAutoplayMode: 'MANUAL',
|
|
437
|
+
carouselAutoplayTime: 3,
|
|
438
|
+
carouselInfiniteLoopMode: 'NO_USE',
|
|
439
|
+
description: 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. \nDonec odio felis, eleifend eu leo nec, aliquam dignissim turpis. \nNam a ante mattis, lacinia lacus non, imperdiet leo.',
|
|
440
|
+
itemLinkMethod: 'CLICK_BUTTON_IN_ITEM',
|
|
441
|
+
sectionContentMediaSrc: '',
|
|
442
|
+
sectionContentMediaType: 'IMAGE',
|
|
443
|
+
title: 'Sample',
|
|
444
|
+
multiPurposeUrl: ''
|
|
445
|
+
},
|
|
446
|
+
styles: {
|
|
447
|
+
backgroundColorInHex: '#EFF0F3FF',
|
|
448
|
+
backgroundMediaSrc: 'https://publ-upload-dev.s3.ap-northeast-2.amazonaws.com/24bd5d85-b43c-4b3c-90ee-fc15c68d8f5a.jpg',
|
|
449
|
+
backgroundMediaType: 'IMAGE',
|
|
450
|
+
backgroundOverlayColorInHex: '#00000000',
|
|
451
|
+
buttonAlphaBackgroundColorInHex: '#455EEFFF',
|
|
452
|
+
buttonAlphaDesignType: 'A',
|
|
453
|
+
buttonAlphaLabelColorInHex: '#FFFFFFFF',
|
|
454
|
+
buttonBravoBackgroundColorInHex: '#455EEFFF',
|
|
455
|
+
buttonBravoDesignType: 'A',
|
|
456
|
+
buttonBravoLabelColorInHex: '#FFFFFFFF',
|
|
457
|
+
buttonCharlieBackgroundColorInHex: '#455EEFFF',
|
|
458
|
+
buttonCharlieDesignType: 'A',
|
|
459
|
+
buttonCharlieLabelColorInHex: '#FFFFFFFF',
|
|
460
|
+
buttonDeltaBackgroundColorInHex: '#455EEFFF',
|
|
461
|
+
buttonDeltaDesignType: 'A',
|
|
462
|
+
buttonDeltaLabelColorInHex: '#FFFFFFFF',
|
|
463
|
+
buttonEchoBackgroundColorInHex: '#455EEFFF',
|
|
464
|
+
buttonEchoDesignType: 'A',
|
|
465
|
+
buttonEchoLabelColorInHex: '#FFFFFFFF',
|
|
466
|
+
descriptionColorInHex: '#FFFFFFC9',
|
|
467
|
+
itemButtonBackgroundColorInHex: '#455EEFFF',
|
|
468
|
+
itemButtonDesignType: 'A',
|
|
469
|
+
itemButtonLabelColorInHex: '#FFFFFFFF',
|
|
470
|
+
itemDescriptionColorInHex: '#68686BFF',
|
|
471
|
+
itemTitleColorInHex: '#1E1E20FF',
|
|
472
|
+
itemHighlightingColorInHex: '#FFFFFFFF',
|
|
473
|
+
itemToneType: 'LIGHT',
|
|
474
|
+
titleColorInHex: '#FFFFFFFF',
|
|
475
|
+
programmedItemActionButtonTextType: 'A'
|
|
476
|
+
},
|
|
477
|
+
template: 'BASE_INTRO_D',
|
|
478
|
+
updatedAt: '2023-01-12T08:03:48'
|
|
479
|
+
},
|
|
480
|
+
{
|
|
481
|
+
type: 'DESIGNED',
|
|
482
|
+
display: true,
|
|
483
|
+
dynamicLayoutSectionItems: [],
|
|
484
|
+
id: 6004,
|
|
485
|
+
insertedAt: '2023-01-12T08:03:48',
|
|
486
|
+
manifest: {
|
|
487
|
+
availableProperties: [
|
|
488
|
+
'title',
|
|
489
|
+
'description',
|
|
490
|
+
'section_content_media_type',
|
|
491
|
+
'section_content_media_src',
|
|
492
|
+
'button_alpha_label',
|
|
493
|
+
'button_alpha_link_type',
|
|
494
|
+
'button_alpha_link_src'
|
|
495
|
+
],
|
|
496
|
+
availableStyles: [
|
|
497
|
+
'title_color_in_hex',
|
|
498
|
+
'description_color_in_hex',
|
|
499
|
+
'background_color_in_hex',
|
|
500
|
+
'background_media_type',
|
|
501
|
+
'background_media_src',
|
|
502
|
+
'background_overlay_color_in_hex',
|
|
503
|
+
'button_alpha_design_type',
|
|
504
|
+
'button_alpha_background_color_in_hex',
|
|
505
|
+
'button_alpha_label_color_in_hex'
|
|
506
|
+
],
|
|
507
|
+
availableTemplates: ['BASE_CONTENTS_A', 'BASE_CONTENTS_B'],
|
|
508
|
+
schema: 'BASE_CONTENTS'
|
|
509
|
+
},
|
|
510
|
+
order: 4,
|
|
511
|
+
properties: {
|
|
512
|
+
buttonAlphaLabel: '',
|
|
513
|
+
buttonAlphaLinkSrc: '',
|
|
514
|
+
buttonAlphaLinkType: 'WEB_LINK',
|
|
515
|
+
buttonBravoLabel: '',
|
|
516
|
+
buttonBravoLinkSrc: '',
|
|
517
|
+
buttonBravoLinkType: 'WEB_LINK',
|
|
518
|
+
buttonCharlieLabel: '',
|
|
519
|
+
buttonCharlieLinkSrc: '',
|
|
520
|
+
buttonCharlieLinkType: 'WEB_LINK',
|
|
521
|
+
buttonDeltaLabel: '',
|
|
522
|
+
buttonDeltaLinkSrc: '',
|
|
523
|
+
buttonDeltaLinkType: 'WEB_LINK',
|
|
524
|
+
buttonEchoLabel: '',
|
|
525
|
+
buttonEchoLinkSrc: '',
|
|
526
|
+
buttonEchoLinkType: 'WEB_LINK',
|
|
527
|
+
carouselAutoplayMode: 'MANUAL',
|
|
528
|
+
carouselAutoplayTime: 3,
|
|
529
|
+
carouselInfiniteLoopMode: 'NO_USE',
|
|
530
|
+
description: 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. \nDonec odio felis, eleifend eu leo nec, aliquam dignissim turpis. \nNam a ante mattis, lacinia lacus non, imperdiet leo. \nPhasellus quis congue massa.',
|
|
531
|
+
itemLinkMethod: 'CLICK_BUTTON_IN_ITEM',
|
|
532
|
+
sectionContentMediaSrc: 'https://publ-upload-dev.s3.ap-northeast-2.amazonaws.com/be9aaa5a-ec5c-4727-b374-d7027b18f7ee.jpg',
|
|
533
|
+
sectionContentMediaType: 'IMAGE',
|
|
534
|
+
title: 'Sample',
|
|
535
|
+
multiPurposeUrl: ''
|
|
536
|
+
},
|
|
537
|
+
styles: {
|
|
538
|
+
backgroundColorInHex: '#EFF0F3FF',
|
|
539
|
+
backgroundMediaSrc: 'https://publ-upload-dev.s3.ap-northeast-2.amazonaws.com/6533b897-4790-4bf0-97eb-e3863710642a.jpg',
|
|
540
|
+
backgroundMediaType: 'IMAGE',
|
|
541
|
+
backgroundOverlayColorInHex: '#1A0B3642',
|
|
542
|
+
buttonAlphaBackgroundColorInHex: '#000000FF',
|
|
543
|
+
buttonAlphaDesignType: 'A',
|
|
544
|
+
buttonAlphaLabelColorInHex: '#FFFFFFFF',
|
|
545
|
+
buttonBravoBackgroundColorInHex: '#455EEFFF',
|
|
546
|
+
buttonBravoDesignType: 'A',
|
|
547
|
+
buttonBravoLabelColorInHex: '#FFFFFFFF',
|
|
548
|
+
buttonCharlieBackgroundColorInHex: '#455EEFFF',
|
|
549
|
+
buttonCharlieDesignType: 'A',
|
|
550
|
+
buttonCharlieLabelColorInHex: '#FFFFFFFF',
|
|
551
|
+
buttonDeltaBackgroundColorInHex: '#455EEFFF',
|
|
552
|
+
buttonDeltaDesignType: 'A',
|
|
553
|
+
buttonDeltaLabelColorInHex: '#FFFFFFFF',
|
|
554
|
+
buttonEchoBackgroundColorInHex: '#455EEFFF',
|
|
555
|
+
buttonEchoDesignType: 'A',
|
|
556
|
+
buttonEchoLabelColorInHex: '#FFFFFFFF',
|
|
557
|
+
descriptionColorInHex: '#FFFFFFF0',
|
|
558
|
+
itemButtonBackgroundColorInHex: '#455EEFFF',
|
|
559
|
+
itemButtonDesignType: 'A',
|
|
560
|
+
itemButtonLabelColorInHex: '#FFFFFFFF',
|
|
561
|
+
itemDescriptionColorInHex: '#68686BFF',
|
|
562
|
+
itemTitleColorInHex: '#1E1E20FF',
|
|
563
|
+
itemHighlightingColorInHex: '#FFFFFFFF',
|
|
564
|
+
itemToneType: 'LIGHT',
|
|
565
|
+
titleColorInHex: '#FFFFFFFF',
|
|
566
|
+
programmedItemActionButtonTextType: 'A'
|
|
567
|
+
},
|
|
568
|
+
template: 'BASE_CONTENTS_B',
|
|
569
|
+
updatedAt: '2023-01-12T08:03:48'
|
|
570
|
+
},
|
|
571
|
+
{
|
|
572
|
+
type: 'DESIGNED',
|
|
573
|
+
display: true,
|
|
574
|
+
dynamicLayoutSectionItems: [
|
|
575
|
+
{
|
|
576
|
+
display: true,
|
|
577
|
+
id: 8526,
|
|
578
|
+
insertedAt: '2023-01-12T08:03:48',
|
|
579
|
+
manifest: {
|
|
580
|
+
availableProperties: ['title', 'description', 'image_src'],
|
|
581
|
+
schema: 'BASE_INFO_BOX_ITEM',
|
|
582
|
+
section_schema: 'BASE_INFO_BOX'
|
|
583
|
+
},
|
|
584
|
+
order: 1,
|
|
585
|
+
properties: {
|
|
586
|
+
body: '',
|
|
587
|
+
buttonLabel: '',
|
|
588
|
+
description: 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec odio felis, eleifend eu leo nec, aliquam dignissim turpis. Nam a ante mattis, lacinia lacus non, imperdiet leo. ',
|
|
589
|
+
imageSrc: 'https://cdn.dev.publishingkit.net/29d85b28-dc68-4d6e-b071-20d48c1bf1bc.png',
|
|
590
|
+
linkSrc: '',
|
|
591
|
+
linkType: 'WEB_LINK',
|
|
592
|
+
logoImageSrc: '',
|
|
593
|
+
title: 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. '
|
|
594
|
+
},
|
|
595
|
+
updatedAt: '2023-01-12T08:03:48'
|
|
596
|
+
},
|
|
597
|
+
{
|
|
598
|
+
display: true,
|
|
599
|
+
id: 8527,
|
|
600
|
+
insertedAt: '2023-01-12T08:03:48',
|
|
601
|
+
manifest: {
|
|
602
|
+
availableProperties: ['title', 'description', 'image_src'],
|
|
603
|
+
schema: 'BASE_INFO_BOX_ITEM',
|
|
604
|
+
section_schema: 'BASE_INFO_BOX'
|
|
605
|
+
},
|
|
606
|
+
order: 2,
|
|
607
|
+
properties: {
|
|
608
|
+
body: '',
|
|
609
|
+
buttonLabel: '',
|
|
610
|
+
description: 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec odio felis, eleifend eu leo nec, aliquam dignissim turpis. Nam a ante mattis, lacinia lacus non, imperdiet leo. ',
|
|
611
|
+
imageSrc: 'https://cdn.dev.publishingkit.net/f6f8fd42-cfe4-4880-a628-686fc85cf47d.png',
|
|
612
|
+
linkSrc: '',
|
|
613
|
+
linkType: 'WEB_LINK',
|
|
614
|
+
logoImageSrc: '',
|
|
615
|
+
title: 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. '
|
|
616
|
+
},
|
|
617
|
+
updatedAt: '2023-01-12T08:03:48'
|
|
618
|
+
},
|
|
619
|
+
{
|
|
620
|
+
display: true,
|
|
621
|
+
id: 8528,
|
|
622
|
+
insertedAt: '2023-01-12T08:03:48',
|
|
623
|
+
manifest: {
|
|
624
|
+
availableProperties: ['title', 'description', 'image_src'],
|
|
625
|
+
schema: 'BASE_INFO_BOX_ITEM',
|
|
626
|
+
section_schema: 'BASE_INFO_BOX'
|
|
627
|
+
},
|
|
628
|
+
order: 3,
|
|
629
|
+
properties: {
|
|
630
|
+
body: '',
|
|
631
|
+
buttonLabel: '',
|
|
632
|
+
description: 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec odio felis, eleifend eu leo nec, aliquam dignissim turpis. Nam a ante mattis, lacinia lacus non, imperdiet leo. ',
|
|
633
|
+
imageSrc: 'https://cdn.dev.publishingkit.net/72c7d5a3-34fe-4811-8f50-5ab57ca3be4a.png',
|
|
634
|
+
linkSrc: '',
|
|
635
|
+
linkType: 'WEB_LINK',
|
|
636
|
+
logoImageSrc: '',
|
|
637
|
+
title: 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. '
|
|
638
|
+
},
|
|
639
|
+
updatedAt: '2023-01-12T08:03:48'
|
|
640
|
+
},
|
|
641
|
+
{
|
|
642
|
+
display: true,
|
|
643
|
+
id: 8529,
|
|
644
|
+
insertedAt: '2023-01-12T08:03:48',
|
|
645
|
+
manifest: {
|
|
646
|
+
availableProperties: ['title', 'description', 'image_src'],
|
|
647
|
+
schema: 'BASE_INFO_BOX_ITEM',
|
|
648
|
+
section_schema: 'BASE_INFO_BOX'
|
|
649
|
+
},
|
|
650
|
+
order: 4,
|
|
651
|
+
properties: {
|
|
652
|
+
body: '',
|
|
653
|
+
buttonLabel: '',
|
|
654
|
+
description: 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec odio felis, eleifend eu leo nec, aliquam dignissim turpis. Nam a ante mattis, lacinia lacus non, imperdiet leo. ',
|
|
655
|
+
imageSrc: 'https://cdn.dev.publishingkit.net/babd49ce-2aa1-4692-9c07-de868bd385ac.png',
|
|
656
|
+
linkSrc: '',
|
|
657
|
+
linkType: 'WEB_LINK',
|
|
658
|
+
logoImageSrc: '',
|
|
659
|
+
title: 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. '
|
|
660
|
+
},
|
|
661
|
+
updatedAt: '2023-01-12T08:03:48'
|
|
662
|
+
}
|
|
663
|
+
],
|
|
664
|
+
id: 6005,
|
|
665
|
+
insertedAt: '2023-01-12T08:03:48',
|
|
666
|
+
manifest: {
|
|
667
|
+
availableProperties: [
|
|
668
|
+
'title',
|
|
669
|
+
'description',
|
|
670
|
+
'button_alpha_label',
|
|
671
|
+
'button_alpha_link_type',
|
|
672
|
+
'button_alpha_link_src'
|
|
673
|
+
],
|
|
674
|
+
availableStyles: [
|
|
675
|
+
'title_color_in_hex',
|
|
676
|
+
'description_color_in_hex',
|
|
677
|
+
'background_color_in_hex',
|
|
678
|
+
'background_media_type',
|
|
679
|
+
'background_media_src',
|
|
680
|
+
'background_overlay_color_in_hex',
|
|
681
|
+
'button_alpha_design_type',
|
|
682
|
+
'button_alpha_background_color_in_hex',
|
|
683
|
+
'button_alpha_label_color_in_hex',
|
|
684
|
+
'item_title_color_in_hex',
|
|
685
|
+
'item_description_color_in_hex'
|
|
686
|
+
],
|
|
687
|
+
availableTemplates: ['BASE_INFO_BOX_A'],
|
|
688
|
+
schema: 'BASE_INFO_BOX'
|
|
689
|
+
},
|
|
690
|
+
order: 5,
|
|
691
|
+
properties: {
|
|
692
|
+
buttonAlphaLabel: '',
|
|
693
|
+
buttonAlphaLinkSrc: '',
|
|
694
|
+
buttonAlphaLinkType: 'WEB_LINK',
|
|
695
|
+
buttonBravoLabel: '',
|
|
696
|
+
buttonBravoLinkSrc: '',
|
|
697
|
+
buttonBravoLinkType: 'WEB_LINK',
|
|
698
|
+
buttonCharlieLabel: '',
|
|
699
|
+
buttonCharlieLinkSrc: '',
|
|
700
|
+
buttonCharlieLinkType: 'WEB_LINK',
|
|
701
|
+
buttonDeltaLabel: '',
|
|
702
|
+
buttonDeltaLinkSrc: '',
|
|
703
|
+
buttonDeltaLinkType: 'WEB_LINK',
|
|
704
|
+
buttonEchoLabel: '',
|
|
705
|
+
buttonEchoLinkSrc: '',
|
|
706
|
+
buttonEchoLinkType: 'WEB_LINK',
|
|
707
|
+
carouselAutoplayMode: 'MANUAL',
|
|
708
|
+
carouselAutoplayTime: 3,
|
|
709
|
+
carouselInfiniteLoopMode: 'NO_USE',
|
|
710
|
+
description: 'Lorem ipsum dolor sit amet, consectetur adipiscing elit.\nDonec odio felis, eleifend eu leo nec, aliquam dignissim turpis.',
|
|
711
|
+
itemLinkMethod: 'CLICK_ITEM',
|
|
712
|
+
sectionContentMediaSrc: '',
|
|
713
|
+
sectionContentMediaType: 'IMAGE',
|
|
714
|
+
title: 'Sample',
|
|
715
|
+
multiPurposeUrl: ''
|
|
716
|
+
},
|
|
717
|
+
styles: {
|
|
718
|
+
backgroundColorInHex: '#EFF0F3FF',
|
|
719
|
+
backgroundMediaSrc: 'https://publ-upload-dev.s3.ap-northeast-2.amazonaws.com/a365ffb4-5350-4b2c-9809-dca64182eec1.jpg',
|
|
720
|
+
backgroundMediaType: 'IMAGE',
|
|
721
|
+
backgroundOverlayColorInHex: '#000000B5',
|
|
722
|
+
buttonAlphaBackgroundColorInHex: '#000000FF',
|
|
723
|
+
buttonAlphaDesignType: 'A',
|
|
724
|
+
buttonAlphaLabelColorInHex: '#FF0000FF',
|
|
725
|
+
buttonBravoBackgroundColorInHex: '#455EEFFF',
|
|
726
|
+
buttonBravoDesignType: 'A',
|
|
727
|
+
buttonBravoLabelColorInHex: '#FFFFFFFF',
|
|
728
|
+
buttonCharlieBackgroundColorInHex: '#455EEFFF',
|
|
729
|
+
buttonCharlieDesignType: 'A',
|
|
730
|
+
buttonCharlieLabelColorInHex: '#FFFFFFFF',
|
|
731
|
+
buttonDeltaBackgroundColorInHex: '#455EEFFF',
|
|
732
|
+
buttonDeltaDesignType: 'A',
|
|
733
|
+
buttonDeltaLabelColorInHex: '#FFFFFFFF',
|
|
734
|
+
buttonEchoBackgroundColorInHex: '#455EEFFF',
|
|
735
|
+
buttonEchoDesignType: 'A',
|
|
736
|
+
buttonEchoLabelColorInHex: '#FFFFFFFF',
|
|
737
|
+
descriptionColorInHex: '#FFFFFFDB',
|
|
738
|
+
itemButtonBackgroundColorInHex: '#FF2150FF',
|
|
739
|
+
itemButtonDesignType: 'A',
|
|
740
|
+
itemButtonLabelColorInHex: '#FFFFFFFF',
|
|
741
|
+
itemDescriptionColorInHex: '#FFFFFFE8',
|
|
742
|
+
itemTitleColorInHex: '#FFFFFFFF',
|
|
743
|
+
itemHighlightingColorInHex: '#FFFFFFFF',
|
|
744
|
+
itemToneType: 'LIGHT',
|
|
745
|
+
titleColorInHex: '#FFFFFFFF',
|
|
746
|
+
programmedItemActionButtonTextType: 'A'
|
|
747
|
+
},
|
|
748
|
+
template: 'BASE_INFO_BOX_A',
|
|
749
|
+
updatedAt: '2023-01-12T08:03:48'
|
|
750
|
+
},
|
|
751
|
+
{
|
|
752
|
+
type: 'DESIGNED',
|
|
753
|
+
display: true,
|
|
754
|
+
dynamicLayoutSectionItems: [
|
|
755
|
+
{
|
|
756
|
+
display: true,
|
|
757
|
+
id: 8530,
|
|
758
|
+
insertedAt: '2023-01-12T08:03:48',
|
|
759
|
+
manifest: {
|
|
760
|
+
availableProperties: ['title', 'body', 'logo_image_src'],
|
|
761
|
+
schema: 'BASE_FOOTER_ITEM',
|
|
762
|
+
section_schema: 'BASE_FOOTER'
|
|
763
|
+
},
|
|
764
|
+
order: 1,
|
|
765
|
+
properties: {
|
|
766
|
+
body: '<p>㈜0000</p><p>대표 : 000<br>(00000) 서울특별시 성동구 0000<br>사업자등록번호 : 000-00-00000 | 통신판매업번호 : 0000-서울성동-00000</p><p>© All rights reserved.</p>',
|
|
767
|
+
buttonLabel: '',
|
|
768
|
+
description: '',
|
|
769
|
+
imageSrc: '',
|
|
770
|
+
linkSrc: '',
|
|
771
|
+
linkType: 'WEB_LINK',
|
|
772
|
+
logoImageSrc: 'https://cdn.dev.publishingkit.net/719ae76b-38bb-4d0d-9844-9e1042809e14.png',
|
|
773
|
+
title: ''
|
|
774
|
+
},
|
|
775
|
+
updatedAt: '2023-01-12T08:03:48'
|
|
776
|
+
}
|
|
777
|
+
],
|
|
778
|
+
id: 6006,
|
|
779
|
+
insertedAt: '2023-01-12T08:03:48',
|
|
780
|
+
manifest: {
|
|
781
|
+
availableProperties: ['title', 'description'],
|
|
782
|
+
availableStyles: [
|
|
783
|
+
'title_color_in_hex',
|
|
784
|
+
'description_color_in_hex',
|
|
785
|
+
'background_color_in_hex',
|
|
786
|
+
'background_media_type',
|
|
787
|
+
'background_media_src',
|
|
788
|
+
'background_overlay_color_in_hex',
|
|
789
|
+
'item_description_color_in_hex'
|
|
790
|
+
],
|
|
791
|
+
availableTemplates: ['BASE_FOOTER_A', 'BASE_FOOTER_B'],
|
|
792
|
+
schema: 'BASE_FOOTER'
|
|
793
|
+
},
|
|
794
|
+
order: 7,
|
|
795
|
+
properties: {
|
|
796
|
+
buttonAlphaLabel: '',
|
|
797
|
+
buttonAlphaLinkSrc: '',
|
|
798
|
+
buttonAlphaLinkType: 'WEB_LINK',
|
|
799
|
+
buttonBravoLabel: '',
|
|
800
|
+
buttonBravoLinkSrc: '',
|
|
801
|
+
buttonBravoLinkType: 'WEB_LINK',
|
|
802
|
+
buttonCharlieLabel: '',
|
|
803
|
+
buttonCharlieLinkSrc: '',
|
|
804
|
+
buttonCharlieLinkType: 'WEB_LINK',
|
|
805
|
+
buttonDeltaLabel: '',
|
|
806
|
+
buttonDeltaLinkSrc: '',
|
|
807
|
+
buttonDeltaLinkType: 'WEB_LINK',
|
|
808
|
+
buttonEchoLabel: '',
|
|
809
|
+
buttonEchoLinkSrc: '',
|
|
810
|
+
buttonEchoLinkType: 'WEB_LINK',
|
|
811
|
+
carouselAutoplayMode: 'MANUAL',
|
|
812
|
+
carouselAutoplayTime: 3,
|
|
813
|
+
carouselInfiniteLoopMode: 'NO_USE',
|
|
814
|
+
description: '',
|
|
815
|
+
itemLinkMethod: 'CLICK_BUTTON_IN_ITEM',
|
|
816
|
+
sectionContentMediaSrc: '',
|
|
817
|
+
sectionContentMediaType: 'IMAGE',
|
|
818
|
+
title: '',
|
|
819
|
+
multiPurposeUrl: ''
|
|
820
|
+
},
|
|
821
|
+
styles: {
|
|
822
|
+
backgroundColorInHex: '#0F0F10FF',
|
|
823
|
+
backgroundMediaSrc: '',
|
|
824
|
+
backgroundMediaType: 'IMAGE',
|
|
825
|
+
backgroundOverlayColorInHex: '#00000000',
|
|
826
|
+
buttonAlphaBackgroundColorInHex: '#455EEFFF',
|
|
827
|
+
buttonAlphaDesignType: 'A',
|
|
828
|
+
buttonAlphaLabelColorInHex: '#FFFFFFFF',
|
|
829
|
+
buttonBravoBackgroundColorInHex: '#455EEFFF',
|
|
830
|
+
buttonBravoDesignType: 'A',
|
|
831
|
+
buttonBravoLabelColorInHex: '#FFFFFFFF',
|
|
832
|
+
buttonCharlieBackgroundColorInHex: '#455EEFFF',
|
|
833
|
+
buttonCharlieDesignType: 'A',
|
|
834
|
+
buttonCharlieLabelColorInHex: '#FFFFFFFF',
|
|
835
|
+
buttonDeltaBackgroundColorInHex: '#455EEFFF',
|
|
836
|
+
buttonDeltaDesignType: 'A',
|
|
837
|
+
buttonDeltaLabelColorInHex: '#FFFFFFFF',
|
|
838
|
+
buttonEchoBackgroundColorInHex: '#455EEFFF',
|
|
839
|
+
buttonEchoDesignType: 'A',
|
|
840
|
+
buttonEchoLabelColorInHex: '#FFFFFFFF',
|
|
841
|
+
descriptionColorInHex: '#68686BFF',
|
|
842
|
+
itemButtonBackgroundColorInHex: '#455EEFFF',
|
|
843
|
+
itemButtonDesignType: 'A',
|
|
844
|
+
itemButtonLabelColorInHex: '#FFFFFFFF',
|
|
845
|
+
itemDescriptionColorInHex: '#676970FF',
|
|
846
|
+
itemTitleColorInHex: '#1E1E20FF',
|
|
847
|
+
itemHighlightingColorInHex: '#FFFFFFFF',
|
|
848
|
+
itemToneType: 'LIGHT',
|
|
849
|
+
titleColorInHex: '#1E1E20FF',
|
|
850
|
+
programmedItemActionButtonTextType: 'A'
|
|
851
|
+
},
|
|
852
|
+
template: 'BASE_FOOTER_B',
|
|
853
|
+
updatedAt: '2023-01-12T08:03:48'
|
|
854
|
+
},
|
|
855
|
+
{
|
|
856
|
+
type: 'DESIGNED',
|
|
857
|
+
display: true,
|
|
858
|
+
dynamicLayoutSectionItems: [],
|
|
859
|
+
id: 6007,
|
|
860
|
+
insertedAt: '2023-01-12T08:03:48',
|
|
861
|
+
manifest: {
|
|
862
|
+
availableProperties: [
|
|
863
|
+
'title',
|
|
864
|
+
'description',
|
|
865
|
+
'button_alpha_label',
|
|
866
|
+
'button_alpha_link_type',
|
|
867
|
+
'button_alpha_link_src',
|
|
868
|
+
'button_bravo_label',
|
|
869
|
+
'button_bravo_link_type',
|
|
870
|
+
'button_bravo_link_src',
|
|
871
|
+
'button_charlie_label',
|
|
872
|
+
'button_charlie_link_type',
|
|
873
|
+
'button_charlie_link_src'
|
|
874
|
+
],
|
|
875
|
+
availableStyles: [
|
|
876
|
+
'title_color_in_hex',
|
|
877
|
+
'description_color_in_hex',
|
|
878
|
+
'background_color_in_hex',
|
|
879
|
+
'background_media_type',
|
|
880
|
+
'background_media_src',
|
|
881
|
+
'background_overlay_color_in_hex',
|
|
882
|
+
'button_alpha_design_type',
|
|
883
|
+
'button_alpha_background_color_in_hex',
|
|
884
|
+
'button_alpha_label_color_in_hex',
|
|
885
|
+
'button_bravo_design_type',
|
|
886
|
+
'button_bravo_background_color_in_hex',
|
|
887
|
+
'button_bravo_label_color_in_hex',
|
|
888
|
+
'button_charlie_design_type',
|
|
889
|
+
'button_charlie_background_color_in_hex',
|
|
890
|
+
'button_charlie_label_color_in_hex'
|
|
891
|
+
],
|
|
892
|
+
availableTemplates: ['BASE_INTRO_A', 'BASE_INTRO_B', 'BASE_INTRO_C', 'BASE_INTRO_D'],
|
|
893
|
+
schema: 'BASE_INTRO'
|
|
894
|
+
},
|
|
895
|
+
order: 6,
|
|
896
|
+
properties: {
|
|
897
|
+
buttonAlphaLabel: '',
|
|
898
|
+
buttonAlphaLinkSrc: 'https://publ.biz/',
|
|
899
|
+
buttonAlphaLinkType: 'WEB_LINK',
|
|
900
|
+
buttonBravoLabel: '',
|
|
901
|
+
buttonBravoLinkSrc: 'https://publ.biz/',
|
|
902
|
+
buttonBravoLinkType: 'WEB_LINK',
|
|
903
|
+
buttonCharlieLabel: '',
|
|
904
|
+
buttonCharlieLinkSrc: 'https://publ.biz/',
|
|
905
|
+
buttonCharlieLinkType: 'WEB_LINK',
|
|
906
|
+
buttonDeltaLabel: '',
|
|
907
|
+
buttonDeltaLinkSrc: '',
|
|
908
|
+
buttonDeltaLinkType: 'WEB_LINK',
|
|
909
|
+
buttonEchoLabel: '',
|
|
910
|
+
buttonEchoLinkSrc: '',
|
|
911
|
+
buttonEchoLinkType: 'WEB_LINK',
|
|
912
|
+
carouselAutoplayMode: 'MANUAL',
|
|
913
|
+
carouselAutoplayTime: 3,
|
|
914
|
+
carouselInfiniteLoopMode: 'NO_USE',
|
|
915
|
+
description: 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. \nDonec odio felis, eleifend eu leo nec, aliquam dignissim turpis.',
|
|
916
|
+
itemLinkMethod: 'CLICK_BUTTON_IN_ITEM',
|
|
917
|
+
sectionContentMediaSrc: '',
|
|
918
|
+
sectionContentMediaType: 'IMAGE',
|
|
919
|
+
title: 'Contact Us',
|
|
920
|
+
multiPurposeUrl: ''
|
|
921
|
+
},
|
|
922
|
+
styles: {
|
|
923
|
+
backgroundColorInHex: '#EFF0F3FF',
|
|
924
|
+
backgroundMediaSrc: 'https://publ-upload-dev.s3.ap-northeast-2.amazonaws.com/c8322586-7f88-4e1d-b568-f3773ee4227b.jpg',
|
|
925
|
+
backgroundMediaType: 'IMAGE',
|
|
926
|
+
backgroundOverlayColorInHex: '#090C1A59',
|
|
927
|
+
buttonAlphaBackgroundColorInHex: '#00000000',
|
|
928
|
+
buttonAlphaDesignType: 'E',
|
|
929
|
+
buttonAlphaLabelColorInHex: '#FFFFFFFF',
|
|
930
|
+
buttonBravoBackgroundColorInHex: '#00000000',
|
|
931
|
+
buttonBravoDesignType: 'E',
|
|
932
|
+
buttonBravoLabelColorInHex: '#FFFFFFFF',
|
|
933
|
+
buttonCharlieBackgroundColorInHex: '#00000000',
|
|
934
|
+
buttonCharlieDesignType: 'E',
|
|
935
|
+
buttonCharlieLabelColorInHex: '#FFFFFFFF',
|
|
936
|
+
buttonDeltaBackgroundColorInHex: '#455EEFFF',
|
|
937
|
+
buttonDeltaDesignType: 'A',
|
|
938
|
+
buttonDeltaLabelColorInHex: '#FFFFFFFF',
|
|
939
|
+
buttonEchoBackgroundColorInHex: '#455EEFFF',
|
|
940
|
+
buttonEchoDesignType: 'A',
|
|
941
|
+
buttonEchoLabelColorInHex: '#FFFFFFFF',
|
|
942
|
+
descriptionColorInHex: '#FFFFFFF8',
|
|
943
|
+
itemButtonBackgroundColorInHex: '#455EEFFF',
|
|
944
|
+
itemButtonDesignType: 'A',
|
|
945
|
+
itemButtonLabelColorInHex: '#FFFFFFFF',
|
|
946
|
+
itemDescriptionColorInHex: '#68686BFF',
|
|
947
|
+
itemTitleColorInHex: '#1E1E20FF',
|
|
948
|
+
itemHighlightingColorInHex: '#FFFFFFFF',
|
|
949
|
+
itemToneType: 'LIGHT',
|
|
950
|
+
titleColorInHex: '#FFFFFFFF',
|
|
951
|
+
programmedItemActionButtonTextType: 'A'
|
|
952
|
+
},
|
|
953
|
+
template: 'BASE_INTRO_D',
|
|
954
|
+
updatedAt: '2023-01-12T08:03:48'
|
|
955
|
+
},
|
|
956
|
+
{
|
|
957
|
+
type: 'DESIGNED',
|
|
958
|
+
display: true,
|
|
959
|
+
dynamicLayoutSectionItems: [],
|
|
960
|
+
id: 6008,
|
|
961
|
+
insertedAt: '2023-01-12T08:03:48',
|
|
962
|
+
manifest: {
|
|
963
|
+
availableProperties: [
|
|
964
|
+
'title',
|
|
965
|
+
'description',
|
|
966
|
+
'button_alpha_label',
|
|
967
|
+
'button_alpha_link_type',
|
|
968
|
+
'button_alpha_link_src',
|
|
969
|
+
'button_bravo_label',
|
|
970
|
+
'button_bravo_link_type',
|
|
971
|
+
'button_bravo_link_src',
|
|
972
|
+
'button_charlie_label',
|
|
973
|
+
'button_charlie_link_type',
|
|
974
|
+
'button_charlie_link_src'
|
|
975
|
+
],
|
|
976
|
+
availableStyles: [
|
|
977
|
+
'title_color_in_hex',
|
|
978
|
+
'description_color_in_hex',
|
|
979
|
+
'background_color_in_hex',
|
|
980
|
+
'background_media_type',
|
|
981
|
+
'background_media_src',
|
|
982
|
+
'background_overlay_color_in_hex',
|
|
983
|
+
'button_alpha_design_type',
|
|
984
|
+
'button_alpha_background_color_in_hex',
|
|
985
|
+
'button_alpha_label_color_in_hex',
|
|
986
|
+
'button_bravo_design_type',
|
|
987
|
+
'button_bravo_background_color_in_hex',
|
|
988
|
+
'button_bravo_label_color_in_hex',
|
|
989
|
+
'button_charlie_design_type',
|
|
990
|
+
'button_charlie_background_color_in_hex',
|
|
991
|
+
'button_charlie_label_color_in_hex'
|
|
992
|
+
],
|
|
993
|
+
availableTemplates: ['BASE_INTRO_A', 'BASE_INTRO_B', 'BASE_INTRO_C', 'BASE_INTRO_D'],
|
|
994
|
+
schema: 'BASE_INTRO'
|
|
995
|
+
},
|
|
996
|
+
order: 8,
|
|
997
|
+
properties: {
|
|
998
|
+
buttonAlphaLabel: '',
|
|
999
|
+
buttonAlphaLinkSrc: '',
|
|
1000
|
+
buttonAlphaLinkType: 'WEB_LINK',
|
|
1001
|
+
buttonBravoLabel: '',
|
|
1002
|
+
buttonBravoLinkSrc: '',
|
|
1003
|
+
buttonBravoLinkType: 'WEB_LINK',
|
|
1004
|
+
buttonCharlieLabel: '',
|
|
1005
|
+
buttonCharlieLinkSrc: '',
|
|
1006
|
+
buttonCharlieLinkType: 'WEB_LINK',
|
|
1007
|
+
buttonDeltaLabel: '',
|
|
1008
|
+
buttonDeltaLinkSrc: '',
|
|
1009
|
+
buttonDeltaLinkType: 'WEB_LINK',
|
|
1010
|
+
buttonEchoLabel: '',
|
|
1011
|
+
buttonEchoLinkSrc: '',
|
|
1012
|
+
buttonEchoLinkType: 'WEB_LINK',
|
|
1013
|
+
carouselAutoplayMode: 'MANUAL',
|
|
1014
|
+
carouselAutoplayTime: 3,
|
|
1015
|
+
carouselInfiniteLoopMode: 'NO_USE',
|
|
1016
|
+
description: '',
|
|
1017
|
+
itemLinkMethod: 'CLICK_BUTTON_IN_ITEM',
|
|
1018
|
+
sectionContentMediaSrc: '',
|
|
1019
|
+
sectionContentMediaType: 'IMAGE',
|
|
1020
|
+
title: '',
|
|
1021
|
+
multiPurposeUrl: ''
|
|
1022
|
+
},
|
|
1023
|
+
styles: {
|
|
1024
|
+
backgroundColorInHex: '#EFF0F3FF',
|
|
1025
|
+
backgroundMediaSrc: '',
|
|
1026
|
+
backgroundMediaType: 'IMAGE',
|
|
1027
|
+
backgroundOverlayColorInHex: '#090C1A59',
|
|
1028
|
+
buttonAlphaBackgroundColorInHex: '#00000000',
|
|
1029
|
+
buttonAlphaDesignType: 'E',
|
|
1030
|
+
buttonAlphaLabelColorInHex: '#FFFFFFFF',
|
|
1031
|
+
buttonBravoBackgroundColorInHex: '#00000000',
|
|
1032
|
+
buttonBravoDesignType: 'E',
|
|
1033
|
+
buttonBravoLabelColorInHex: '#FFFFFFFF',
|
|
1034
|
+
buttonCharlieBackgroundColorInHex: '#00000000',
|
|
1035
|
+
buttonCharlieDesignType: 'E',
|
|
1036
|
+
buttonCharlieLabelColorInHex: '#FFFFFFFF',
|
|
1037
|
+
buttonDeltaBackgroundColorInHex: '#455EEFFF',
|
|
1038
|
+
buttonDeltaDesignType: 'A',
|
|
1039
|
+
buttonDeltaLabelColorInHex: '#FFFFFFFF',
|
|
1040
|
+
buttonEchoBackgroundColorInHex: '#455EEFFF',
|
|
1041
|
+
buttonEchoDesignType: 'A',
|
|
1042
|
+
buttonEchoLabelColorInHex: '#FFFFFFFF',
|
|
1043
|
+
descriptionColorInHex: '#FFFFFFF8',
|
|
1044
|
+
itemButtonBackgroundColorInHex: '#455EEFFF',
|
|
1045
|
+
itemButtonDesignType: 'A',
|
|
1046
|
+
itemButtonLabelColorInHex: '#FFFFFFFF',
|
|
1047
|
+
itemDescriptionColorInHex: '#68686BFF',
|
|
1048
|
+
itemTitleColorInHex: '#1E1E20FF',
|
|
1049
|
+
itemHighlightingColorInHex: '#FFFFFFFF',
|
|
1050
|
+
itemToneType: 'LIGHT',
|
|
1051
|
+
titleColorInHex: '#FFFFFFFF',
|
|
1052
|
+
programmedItemActionButtonTextType: 'A'
|
|
1053
|
+
},
|
|
1054
|
+
template: 'BASE_INTRO_D',
|
|
1055
|
+
updatedAt: '2023-01-12T08:03:48'
|
|
1056
|
+
},
|
|
1057
|
+
{
|
|
1058
|
+
type: 'DESIGNED',
|
|
1059
|
+
display: true,
|
|
1060
|
+
dynamicLayoutSectionItems: [],
|
|
1061
|
+
id: 6009,
|
|
1062
|
+
insertedAt: '2023-01-12T08:03:48',
|
|
1063
|
+
manifest: {
|
|
1064
|
+
availableProperties: [
|
|
1065
|
+
'title',
|
|
1066
|
+
'description',
|
|
1067
|
+
'section_content_media_type',
|
|
1068
|
+
'section_content_media_src',
|
|
1069
|
+
'button_alpha_label',
|
|
1070
|
+
'button_alpha_link_type',
|
|
1071
|
+
'button_alpha_link_src'
|
|
1072
|
+
],
|
|
1073
|
+
availableStyles: [
|
|
1074
|
+
'title_color_in_hex',
|
|
1075
|
+
'description_color_in_hex',
|
|
1076
|
+
'background_color_in_hex',
|
|
1077
|
+
'background_media_type',
|
|
1078
|
+
'background_media_src',
|
|
1079
|
+
'background_overlay_color_in_hex',
|
|
1080
|
+
'button_alpha_design_type',
|
|
1081
|
+
'button_alpha_background_color_in_hex',
|
|
1082
|
+
'button_alpha_label_color_in_hex'
|
|
1083
|
+
],
|
|
1084
|
+
availableTemplates: ['BASE_CONTENTS_A', 'BASE_CONTENTS_B'],
|
|
1085
|
+
schema: 'BASE_CONTENTS'
|
|
1086
|
+
},
|
|
1087
|
+
order: 9,
|
|
1088
|
+
properties: {
|
|
1089
|
+
buttonAlphaLabel: '',
|
|
1090
|
+
buttonAlphaLinkSrc: '',
|
|
1091
|
+
buttonAlphaLinkType: 'WEB_LINK',
|
|
1092
|
+
buttonBravoLabel: '',
|
|
1093
|
+
buttonBravoLinkSrc: '',
|
|
1094
|
+
buttonBravoLinkType: 'WEB_LINK',
|
|
1095
|
+
buttonCharlieLabel: '',
|
|
1096
|
+
buttonCharlieLinkSrc: '',
|
|
1097
|
+
buttonCharlieLinkType: 'WEB_LINK',
|
|
1098
|
+
buttonDeltaLabel: '',
|
|
1099
|
+
buttonDeltaLinkSrc: '',
|
|
1100
|
+
buttonDeltaLinkType: 'WEB_LINK',
|
|
1101
|
+
buttonEchoLabel: '',
|
|
1102
|
+
buttonEchoLinkSrc: '',
|
|
1103
|
+
buttonEchoLinkType: 'WEB_LINK',
|
|
1104
|
+
carouselAutoplayMode: 'MANUAL',
|
|
1105
|
+
carouselAutoplayTime: 3,
|
|
1106
|
+
carouselInfiniteLoopMode: 'NO_USE',
|
|
1107
|
+
description: '',
|
|
1108
|
+
itemLinkMethod: 'CLICK_BUTTON_IN_ITEM',
|
|
1109
|
+
sectionContentMediaSrc: '',
|
|
1110
|
+
sectionContentMediaType: 'IMAGE',
|
|
1111
|
+
title: '',
|
|
1112
|
+
multiPurposeUrl: ''
|
|
1113
|
+
},
|
|
1114
|
+
styles: {
|
|
1115
|
+
backgroundColorInHex: '#EFF0F3FF',
|
|
1116
|
+
backgroundMediaSrc: 'https://publ-upload-dev.s3.ap-northeast-2.amazonaws.com/6533b897-4790-4bf0-97eb-e3863710642a.jpg',
|
|
1117
|
+
backgroundMediaType: 'IMAGE',
|
|
1118
|
+
backgroundOverlayColorInHex: '#1A0B3642',
|
|
1119
|
+
buttonAlphaBackgroundColorInHex: '#000000FF',
|
|
1120
|
+
buttonAlphaDesignType: 'A',
|
|
1121
|
+
buttonAlphaLabelColorInHex: '#FFFFFFFF',
|
|
1122
|
+
buttonBravoBackgroundColorInHex: '#455EEFFF',
|
|
1123
|
+
buttonBravoDesignType: 'A',
|
|
1124
|
+
buttonBravoLabelColorInHex: '#FFFFFFFF',
|
|
1125
|
+
buttonCharlieBackgroundColorInHex: '#455EEFFF',
|
|
1126
|
+
buttonCharlieDesignType: 'A',
|
|
1127
|
+
buttonCharlieLabelColorInHex: '#FFFFFFFF',
|
|
1128
|
+
buttonDeltaBackgroundColorInHex: '#455EEFFF',
|
|
1129
|
+
buttonDeltaDesignType: 'A',
|
|
1130
|
+
buttonDeltaLabelColorInHex: '#FFFFFFFF',
|
|
1131
|
+
buttonEchoBackgroundColorInHex: '#455EEFFF',
|
|
1132
|
+
buttonEchoDesignType: 'A',
|
|
1133
|
+
buttonEchoLabelColorInHex: '#FFFFFFFF',
|
|
1134
|
+
descriptionColorInHex: '#FFFFFFF0',
|
|
1135
|
+
itemButtonBackgroundColorInHex: '#455EEFFF',
|
|
1136
|
+
itemButtonDesignType: 'A',
|
|
1137
|
+
itemButtonLabelColorInHex: '#FFFFFFFF',
|
|
1138
|
+
itemDescriptionColorInHex: '#68686BFF',
|
|
1139
|
+
itemTitleColorInHex: '#1E1E20FF',
|
|
1140
|
+
itemHighlightingColorInHex: '#FFFFFFFF',
|
|
1141
|
+
itemToneType: 'LIGHT',
|
|
1142
|
+
titleColorInHex: '#FFFFFFFF',
|
|
1143
|
+
programmedItemActionButtonTextType: 'A'
|
|
1144
|
+
},
|
|
1145
|
+
template: 'BASE_CONTENTS_B',
|
|
1146
|
+
updatedAt: '2023-01-12T08:03:48'
|
|
1147
|
+
},
|
|
1148
|
+
{
|
|
1149
|
+
type: 'PROGRAMMED',
|
|
1150
|
+
program: 'MEMBERSHIP_DISPLAY',
|
|
1151
|
+
display: true,
|
|
1152
|
+
dynamicLayoutSectionItems: null,
|
|
1153
|
+
id: 6010,
|
|
1154
|
+
insertedAt: '2023-01-06T09:05:45',
|
|
1155
|
+
manifest: {
|
|
1156
|
+
availableProperties: [
|
|
1157
|
+
'title',
|
|
1158
|
+
'description',
|
|
1159
|
+
'button_alpha_label',
|
|
1160
|
+
'button_alpha_link_type',
|
|
1161
|
+
'button_alpha_link_src',
|
|
1162
|
+
'section_content_media_type',
|
|
1163
|
+
'section_content_media_src'
|
|
1164
|
+
],
|
|
1165
|
+
availableStyles: [
|
|
1166
|
+
'title_color_in_hex',
|
|
1167
|
+
'description_color_in_hex',
|
|
1168
|
+
'background_color_in_hex',
|
|
1169
|
+
'background_media_type',
|
|
1170
|
+
'background_media_src',
|
|
1171
|
+
'background_overlay_color_in_hex',
|
|
1172
|
+
'button_alpha_design_type',
|
|
1173
|
+
'button_alpha_background_color_in_hex',
|
|
1174
|
+
'button_alpha_label_color_in_hex',
|
|
1175
|
+
'item_highlighting_color_in_hex',
|
|
1176
|
+
'item_tone_type',
|
|
1177
|
+
'programmed_item_action_button_text_type'
|
|
1178
|
+
],
|
|
1179
|
+
availableTemplates: ['PRG_MEMBERSHIP_DISPLAY_A', 'PRG_MEMBERSHIP_DISPLAY_B'],
|
|
1180
|
+
schema: 'PRG_MEMBERSHIP_DISPLAY'
|
|
1181
|
+
},
|
|
1182
|
+
order: 10,
|
|
1183
|
+
properties: {
|
|
1184
|
+
buttonAlphaLabel: 'Lorem Ipsum',
|
|
1185
|
+
buttonAlphaLinkSrc: 'https://team.publ.space',
|
|
1186
|
+
buttonAlphaLinkType: 'WEB_LINK',
|
|
1187
|
+
buttonBravoLabel: '',
|
|
1188
|
+
buttonBravoLinkSrc: '',
|
|
1189
|
+
buttonBravoLinkType: 'WEB_LINK',
|
|
1190
|
+
buttonCharlieLabel: '',
|
|
1191
|
+
buttonCharlieLinkSrc: '',
|
|
1192
|
+
buttonCharlieLinkType: 'WEB_LINK',
|
|
1193
|
+
buttonDeltaLabel: '',
|
|
1194
|
+
buttonDeltaLinkSrc: '',
|
|
1195
|
+
buttonDeltaLinkType: 'WEB_LINK',
|
|
1196
|
+
buttonEchoLabel: '',
|
|
1197
|
+
buttonEchoLinkSrc: '',
|
|
1198
|
+
buttonEchoLinkType: 'WEB_LINK',
|
|
1199
|
+
carouselAutoplayMode: 'MANUAL',
|
|
1200
|
+
carouselAutoplayTime: 3,
|
|
1201
|
+
carouselInfiniteLoopMode: 'NO_USE',
|
|
1202
|
+
description: "Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.",
|
|
1203
|
+
itemLinkMethod: 'CLICK_BUTTON_IN_ITEM',
|
|
1204
|
+
sectionContentMediaSrc: '',
|
|
1205
|
+
sectionContentMediaType: 'IMAGE',
|
|
1206
|
+
title: 'Lorem Ipsum',
|
|
1207
|
+
multiPurposeUrl: 'https://app.publr.co/'
|
|
1208
|
+
},
|
|
1209
|
+
styles: {
|
|
1210
|
+
backgroundColorInHex: '#FF1D973B',
|
|
1211
|
+
backgroundMediaSrc: '',
|
|
1212
|
+
backgroundMediaType: 'IMAGE',
|
|
1213
|
+
backgroundOverlayColorInHex: '#FFFFFF00',
|
|
1214
|
+
buttonAlphaBackgroundColorInHex: '#FFC0CBFF',
|
|
1215
|
+
buttonAlphaDesignType: 'C',
|
|
1216
|
+
buttonAlphaLabelColorInHex: '#f5efd9FF',
|
|
1217
|
+
buttonBravoBackgroundColorInHex: '#FFC0CBFF',
|
|
1218
|
+
buttonBravoDesignType: 'E',
|
|
1219
|
+
buttonBravoLabelColorInHex: '#FFFFFFFF',
|
|
1220
|
+
buttonCharlieBackgroundColorInHex: '#465FF000',
|
|
1221
|
+
buttonCharlieDesignType: 'E',
|
|
1222
|
+
buttonCharlieLabelColorInHex: '#FFFFFFFF',
|
|
1223
|
+
buttonDeltaBackgroundColorInHex: '#FFC0CBFF',
|
|
1224
|
+
buttonDeltaDesignType: 'A',
|
|
1225
|
+
buttonDeltaLabelColorInHex: '#FFFFFFFF',
|
|
1226
|
+
buttonEchoBackgroundColorInHex: '#FFC0CBFF',
|
|
1227
|
+
buttonEchoDesignType: 'A',
|
|
1228
|
+
buttonEchoLabelColorInHex: '#FFFFFFFF',
|
|
1229
|
+
descriptionColorInHex: '#FEECD8FF',
|
|
1230
|
+
itemButtonBackgroundColorInHex: '#FFC0CBFF',
|
|
1231
|
+
itemButtonDesignType: 'A',
|
|
1232
|
+
itemButtonLabelColorInHex: '#FFFFFFFF',
|
|
1233
|
+
itemDescriptionColorInHex: '#68686BFF',
|
|
1234
|
+
itemTitleColorInHex: '#1E1E20FF',
|
|
1235
|
+
itemHighlightingColorInHex: '#FF1D97FF',
|
|
1236
|
+
itemToneType: 'LIGHT',
|
|
1237
|
+
titleColorInHex: '#F8FFACFF',
|
|
1238
|
+
programmedItemActionButtonTextType: 'A'
|
|
1239
|
+
},
|
|
1240
|
+
template: 'PRG_MEMBERSHIP_DISPLAY_B',
|
|
1241
|
+
updatedAt: '2023-01-06T09:05:45'
|
|
1242
|
+
}
|
|
1243
|
+
];
|
|
1244
|
+
var MembershipSectionsMock = function (templateType) { return [
|
|
1245
|
+
{
|
|
1246
|
+
type: 'DESIGNED',
|
|
1247
|
+
display: true,
|
|
1248
|
+
dynamicLayoutSectionItems: [],
|
|
1249
|
+
id: 6001,
|
|
1250
|
+
insertedAt: '2023-01-12T08:03:48',
|
|
1251
|
+
manifest: {
|
|
1252
|
+
availableProperties: [
|
|
1253
|
+
'title',
|
|
1254
|
+
'description',
|
|
1255
|
+
'button_alpha_label',
|
|
1256
|
+
'button_alpha_link_type',
|
|
1257
|
+
'button_alpha_link_src',
|
|
1258
|
+
'button_bravo_label',
|
|
1259
|
+
'button_bravo_link_type',
|
|
1260
|
+
'button_bravo_link_src',
|
|
1261
|
+
'button_charlie_label',
|
|
1262
|
+
'button_charlie_link_type',
|
|
1263
|
+
'button_charlie_link_src'
|
|
1264
|
+
],
|
|
1265
|
+
availableStyles: [
|
|
1266
|
+
'title_color_in_hex',
|
|
1267
|
+
'description_color_in_hex',
|
|
1268
|
+
'background_color_in_hex',
|
|
1269
|
+
'background_media_type',
|
|
1270
|
+
'background_media_src',
|
|
1271
|
+
'background_overlay_color_in_hex',
|
|
1272
|
+
'button_alpha_design_type',
|
|
1273
|
+
'button_alpha_background_color_in_hex',
|
|
1274
|
+
'button_alpha_label_color_in_hex',
|
|
1275
|
+
'button_bravo_design_type',
|
|
1276
|
+
'button_bravo_background_color_in_hex',
|
|
1277
|
+
'button_bravo_label_color_in_hex',
|
|
1278
|
+
'button_charlie_design_type',
|
|
1279
|
+
'button_charlie_background_color_in_hex',
|
|
1280
|
+
'button_charlie_label_color_in_hex'
|
|
1281
|
+
],
|
|
1282
|
+
availableTemplates: ['BASE_INTRO_A', 'BASE_INTRO_B', 'BASE_INTRO_C', 'BASE_INTRO_D'],
|
|
1283
|
+
schema: 'BASE_INTRO'
|
|
1284
|
+
},
|
|
1285
|
+
order: 1,
|
|
1286
|
+
properties: {
|
|
1287
|
+
buttonAlphaLabel: '',
|
|
1288
|
+
buttonAlphaLinkSrc: 'https://publ.biz/',
|
|
1289
|
+
buttonAlphaLinkType: 'WEB_LINK',
|
|
1290
|
+
buttonBravoLabel: '',
|
|
1291
|
+
buttonBravoLinkSrc: 'https://publ.biz/',
|
|
1292
|
+
buttonBravoLinkType: 'WEB_LINK',
|
|
1293
|
+
buttonCharlieLabel: '',
|
|
1294
|
+
buttonCharlieLinkSrc: 'https://publ.biz/',
|
|
1295
|
+
buttonCharlieLinkType: 'WEB_LINK',
|
|
1296
|
+
buttonDeltaLabel: '',
|
|
1297
|
+
buttonDeltaLinkSrc: '',
|
|
1298
|
+
buttonDeltaLinkType: 'WEB_LINK',
|
|
1299
|
+
buttonEchoLabel: '',
|
|
1300
|
+
buttonEchoLinkSrc: '',
|
|
1301
|
+
buttonEchoLinkType: 'WEB_LINK',
|
|
1302
|
+
carouselAutoplayMode: 'MANUAL',
|
|
1303
|
+
carouselAutoplayTime: 3,
|
|
1304
|
+
carouselInfiniteLoopMode: 'NO_USE',
|
|
1305
|
+
description: 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. \nDonec odio felis, eleifend eu leo nec, aliquam dignissim turpis. \nNam a ante mattis, lacinia lacus non, imperdiet leo.',
|
|
1306
|
+
itemLinkMethod: 'CLICK_BUTTON_IN_ITEM',
|
|
1307
|
+
sectionContentMediaSrc: '',
|
|
1308
|
+
sectionContentMediaType: 'IMAGE',
|
|
1309
|
+
title: 'Entertainment Business Sample',
|
|
1310
|
+
multiPurposeUrl: ''
|
|
1311
|
+
},
|
|
1312
|
+
styles: {
|
|
1313
|
+
backgroundColorInHex: '#EFF0F3FF',
|
|
1314
|
+
backgroundMediaSrc: 'https://www.youtube.com/watch?v=4qz6x8y3tNw',
|
|
1315
|
+
backgroundMediaType: 'YOUTUBE',
|
|
1316
|
+
backgroundOverlayColorInHex: '#00000057',
|
|
1317
|
+
buttonAlphaBackgroundColorInHex: '#00000000',
|
|
1318
|
+
buttonAlphaDesignType: 'E',
|
|
1319
|
+
buttonAlphaLabelColorInHex: '#FFFFFFFF',
|
|
1320
|
+
buttonBravoBackgroundColorInHex: '#00000000',
|
|
1321
|
+
buttonBravoDesignType: 'E',
|
|
1322
|
+
buttonBravoLabelColorInHex: '#FFFFFFFF',
|
|
1323
|
+
buttonCharlieBackgroundColorInHex: '#465FF000',
|
|
1324
|
+
buttonCharlieDesignType: 'E',
|
|
1325
|
+
buttonCharlieLabelColorInHex: '#FFFFFFFF',
|
|
1326
|
+
buttonDeltaBackgroundColorInHex: '#455EEFFF',
|
|
1327
|
+
buttonDeltaDesignType: 'A',
|
|
1328
|
+
buttonDeltaLabelColorInHex: '#FFFFFFFF',
|
|
1329
|
+
buttonEchoBackgroundColorInHex: '#455EEFFF',
|
|
1330
|
+
buttonEchoDesignType: 'A',
|
|
1331
|
+
buttonEchoLabelColorInHex: '#FFFFFFFF',
|
|
1332
|
+
descriptionColorInHex: '#FFFFFFE8',
|
|
1333
|
+
itemButtonBackgroundColorInHex: '#455EEFFF',
|
|
1334
|
+
itemButtonDesignType: 'A',
|
|
1335
|
+
itemButtonLabelColorInHex: '#FFFFFFFF',
|
|
1336
|
+
itemDescriptionColorInHex: '#68686BFF',
|
|
1337
|
+
itemTitleColorInHex: '#1E1E20FF',
|
|
1338
|
+
itemHighlightingColorInHex: '#FFFFFFFF',
|
|
1339
|
+
itemToneType: 'LIGHT',
|
|
1340
|
+
titleColorInHex: '#FFFFFFFF',
|
|
1341
|
+
programmedItemActionButtonTextType: 'A'
|
|
1342
|
+
},
|
|
1343
|
+
template: 'BASE_INTRO_A',
|
|
1344
|
+
updatedAt: '2023-01-12T08:03:48'
|
|
1345
|
+
},
|
|
1346
|
+
{
|
|
1347
|
+
display: true,
|
|
1348
|
+
type: 'PROGRAMMED',
|
|
1349
|
+
program: 'MEMBERSHIP_DISPLAY',
|
|
1350
|
+
dynamicLayoutSectionItems: [],
|
|
1351
|
+
id: 6010,
|
|
1352
|
+
manifest: {
|
|
1353
|
+
availableProperties: [
|
|
1354
|
+
'title',
|
|
1355
|
+
'description',
|
|
1356
|
+
'button_alpha_label',
|
|
1357
|
+
'button_alpha_link_type',
|
|
1358
|
+
'button_alpha_link_src'
|
|
1359
|
+
],
|
|
1360
|
+
availableStyles: [
|
|
1361
|
+
'title_color_in_hex',
|
|
1362
|
+
'description_color_in_hex',
|
|
1363
|
+
'background_color_in_hex',
|
|
1364
|
+
'background_media_type',
|
|
1365
|
+
'background_media_src',
|
|
1366
|
+
'background_overlay_color_in_hex',
|
|
1367
|
+
'button_alpha_design_type',
|
|
1368
|
+
'button_alpha_background_color_in_hex',
|
|
1369
|
+
'button_alpha_label_color_in_hex',
|
|
1370
|
+
'item_highlighting_color_in_hex',
|
|
1371
|
+
'item_tone_type',
|
|
1372
|
+
'programmed_item_action_button_text_type'
|
|
1373
|
+
],
|
|
1374
|
+
availableTemplates: ['PRG_MEMBERSHIP_DISPLAY_A', 'PRG_MEMBERSHIP_DISPLAY_B'],
|
|
1375
|
+
schema: 'PRG_MEMBERSHIP_DISPLAY'
|
|
1376
|
+
},
|
|
1377
|
+
order: 8,
|
|
1378
|
+
properties: {
|
|
1379
|
+
buttonAlphaLabel: 'Lorem Ipsum',
|
|
1380
|
+
buttonAlphaLinkSrc: 'https://team.publ.space',
|
|
1381
|
+
buttonAlphaLinkType: 'WEB_LINK',
|
|
1382
|
+
buttonBravoLabel: '',
|
|
1383
|
+
buttonBravoLinkSrc: '',
|
|
1384
|
+
buttonBravoLinkType: 'WEB_LINK',
|
|
1385
|
+
buttonCharlieLabel: '',
|
|
1386
|
+
buttonCharlieLinkSrc: '',
|
|
1387
|
+
buttonCharlieLinkType: 'WEB_LINK',
|
|
1388
|
+
buttonDeltaLabel: '',
|
|
1389
|
+
buttonDeltaLinkSrc: '',
|
|
1390
|
+
buttonDeltaLinkType: 'WEB_LINK',
|
|
1391
|
+
buttonEchoLabel: '',
|
|
1392
|
+
buttonEchoLinkSrc: '',
|
|
1393
|
+
buttonEchoLinkType: 'WEB_LINK',
|
|
1394
|
+
carouselAutoplayMode: 'MANUAL',
|
|
1395
|
+
carouselAutoplayTime: 3,
|
|
1396
|
+
carouselInfiniteLoopMode: 'NO_USE',
|
|
1397
|
+
description: "Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.",
|
|
1398
|
+
sectionContentMediaSrc: '',
|
|
1399
|
+
sectionContentMediaType: 'IMAGE',
|
|
1400
|
+
title: 'Lorem Ipsum',
|
|
1401
|
+
multiPurposeUrl: 'https://app.publr.co/',
|
|
1402
|
+
itemLinkMethod: 'NONE'
|
|
1403
|
+
},
|
|
1404
|
+
styles: {
|
|
1405
|
+
backgroundColorInHex: '#4A5D78AB',
|
|
1406
|
+
backgroundMediaSrc: '',
|
|
1407
|
+
backgroundMediaType: 'IMAGE',
|
|
1408
|
+
backgroundOverlayColorInHex: '#FFFFFF00',
|
|
1409
|
+
buttonAlphaBackgroundColorInHex: '#313131FF',
|
|
1410
|
+
buttonAlphaDesignType: 'C',
|
|
1411
|
+
buttonAlphaLabelColorInHex: '#f5efd9FF',
|
|
1412
|
+
buttonBravoBackgroundColorInHex: '#313131FF',
|
|
1413
|
+
buttonBravoDesignType: 'E',
|
|
1414
|
+
buttonBravoLabelColorInHex: '#FFFFFFFF',
|
|
1415
|
+
buttonCharlieBackgroundColorInHex: '#465FF000',
|
|
1416
|
+
buttonCharlieDesignType: 'E',
|
|
1417
|
+
buttonCharlieLabelColorInHex: '#FFFFFFFF',
|
|
1418
|
+
buttonDeltaBackgroundColorInHex: '#313131FF',
|
|
1419
|
+
buttonDeltaDesignType: 'A',
|
|
1420
|
+
buttonDeltaLabelColorInHex: '#FFFFFFFF',
|
|
1421
|
+
buttonEchoBackgroundColorInHex: '#313131FF',
|
|
1422
|
+
buttonEchoDesignType: 'A',
|
|
1423
|
+
buttonEchoLabelColorInHex: '#FFFFFFFF',
|
|
1424
|
+
descriptionColorInHex: '#DEECFFA6',
|
|
1425
|
+
itemButtonBackgroundColorInHex: '#313131FF',
|
|
1426
|
+
itemButtonDesignType: 'A',
|
|
1427
|
+
itemButtonLabelColorInHex: '#FFFFFFFF',
|
|
1428
|
+
itemDescriptionColorInHex: '#68686BFF',
|
|
1429
|
+
itemTitleColorInHex: '#1E1E20FF',
|
|
1430
|
+
titleColorInHex: '#DEECFFFF',
|
|
1431
|
+
itemHighlightingColorInHex: '#ff7f50FF',
|
|
1432
|
+
itemToneType: 'LIGHT',
|
|
1433
|
+
programmedItemActionButtonTextType: 'A'
|
|
1434
|
+
},
|
|
1435
|
+
template: templateType,
|
|
1436
|
+
programData: {
|
|
1437
|
+
mdid: 'mdid',
|
|
1438
|
+
preview: {
|
|
1439
|
+
availableResources: ['REAL.MEMBERSHIP_DISPLAY'],
|
|
1440
|
+
resources: {
|
|
1441
|
+
mock: {},
|
|
1442
|
+
real: {
|
|
1443
|
+
membershipDisplay: {
|
|
1444
|
+
id: 1,
|
|
1445
|
+
mdid: "MEMBERSHIP_DISPLAY_MD_ID",
|
|
1446
|
+
title: "MEMBERSHIP_DISPLAY_MD_TITLE",
|
|
1447
|
+
isDefault: true,
|
|
1448
|
+
connectedMemberships: Array.from({ length: 6 }, function (_, i) {
|
|
1449
|
+
var alphabet = ['A', 'B', 'C', 'D', 'E', 'F'];
|
|
1450
|
+
var cardImage = [
|
|
1451
|
+
'https://cdn.dev.publishingkit.net/7f3f7a31-023b-4852-9a11-cbac31d25d93',
|
|
1452
|
+
'https://cdn.dev.publishingkit.net/c8973261-6c2a-4833-9b9f-20ee355647e4',
|
|
1453
|
+
'https://cdn.dev.publishingkit.net/8e585c93-9591-4300-ad93-d002560cbeae',
|
|
1454
|
+
'https://cdn.dev.publishingkit.net/4aaa2811-b3ff-435c-b50a-9486376ab230',
|
|
1455
|
+
'https://cdn.dev.publishingkit.net/5111c33c-07ba-4b91-8eb6-9975f4cd906a',
|
|
1456
|
+
'https://cdn.dev.publishingkit.net/16ac0a8a-acb1-465b-960c-6be66f2a04e8.jpg'
|
|
1457
|
+
];
|
|
1458
|
+
var getOverlayType = function () {
|
|
1459
|
+
if (i % 3 === 1)
|
|
1460
|
+
return 'SOLID';
|
|
1461
|
+
if (i % 3 === 2)
|
|
1462
|
+
return 'GRADIENT';
|
|
1463
|
+
return 'NONE';
|
|
1464
|
+
};
|
|
1465
|
+
var getDesignSchema = function () {
|
|
1466
|
+
if (i % 3 === 1)
|
|
1467
|
+
return 'B';
|
|
1468
|
+
if (i % 3 === 2)
|
|
1469
|
+
return 'C';
|
|
1470
|
+
return 'A';
|
|
1471
|
+
};
|
|
1472
|
+
return {
|
|
1473
|
+
id: i + 1,
|
|
1474
|
+
order: i,
|
|
1475
|
+
mdid: "CONNECTED_MEMBERSHIPS_" + alphabet[i] + "_MD_ID",
|
|
1476
|
+
mid: "CONNECTED_MEMBERSHIPS_" + alphabet[i] + "_M_ID",
|
|
1477
|
+
membership: {
|
|
1478
|
+
id: i + 1,
|
|
1479
|
+
type: 'GENERAL',
|
|
1480
|
+
mid: "MEMBERSHIP_" + alphabet[i] + "_MID",
|
|
1481
|
+
title: '청춘이 황금시대를 우리의 같은 무엇을 쓸쓸한 돋고, 장식하는 칼이다. 동산에는 투명하되!',
|
|
1482
|
+
insertedAt: '2023-01-06T09:05:45',
|
|
1483
|
+
updatedAt: '2023-01-06T09:05:45',
|
|
1484
|
+
membershipCardTemplate: {
|
|
1485
|
+
backgroundImageSrc: cardImage[i],
|
|
1486
|
+
logoImageSrc: 'https://publ-upload-local.s3.ap-northeast-2.amazonaws.com/e11d1a92-a1c0-4faa-b341-13a32f21828d_image',
|
|
1487
|
+
overlayType: getOverlayType(),
|
|
1488
|
+
overlayColorPrimary: '#FFC0CB49',
|
|
1489
|
+
overlayColorSecondary: '#31313149',
|
|
1490
|
+
designSchema: getDesignSchema()
|
|
1491
|
+
},
|
|
1492
|
+
membershipBenefitInfo: {
|
|
1493
|
+
benefitAlpha: '청춘이 황금시대를 우리의 같은 무엇을 쓸쓸한 돋고, 장식하는 칼이다. 동산에는 투명하되!',
|
|
1494
|
+
benefitBravo: 'Lorem ipsum dolor sit amet. Et magnam molestiae.',
|
|
1495
|
+
benefitCharlie: '청춘이 황금시대를 우리의 같은 무엇을 쓸쓸한 돋고, 장식하는 칼이다. 동산에는 투명하되!',
|
|
1496
|
+
benefitDelta: 'Lorem ipsum dolor sit amet. Et magnam molestiae.',
|
|
1497
|
+
benefitEcho: 'Lorem ipsum dolor sit amet. Et magnam molestiae.'
|
|
1498
|
+
},
|
|
1499
|
+
totalSubscriptionProducts: 3
|
|
1500
|
+
},
|
|
1501
|
+
connectedSubscriptionProducts: Array.from({ length: 1 }, function () {
|
|
1502
|
+
return {
|
|
1503
|
+
id: i + 1,
|
|
1504
|
+
order: i,
|
|
1505
|
+
connectedMembershipId: i + 1,
|
|
1506
|
+
subscriptionProductId: i + 1,
|
|
1507
|
+
subscriptionProduct: {
|
|
1508
|
+
id: i + 1,
|
|
1509
|
+
type: 'COUPON_ONCE_FINITE',
|
|
1510
|
+
title: '청춘이 황금시대를 우리의 같은 무엇을',
|
|
1511
|
+
alias: "CONNECTED_SUBSCRIPTION_PRODUCTS_" + alphabet[i] + "_ALIAS",
|
|
1512
|
+
expiryPeriodInDays: 7,
|
|
1513
|
+
isDeactivated: i % 2 === 0,
|
|
1514
|
+
fee: {
|
|
1515
|
+
currency: 'KRW',
|
|
1516
|
+
amount: 10000
|
|
1517
|
+
},
|
|
1518
|
+
insertedAt: '2023-01-06T09:05:45',
|
|
1519
|
+
updatedAt: '2023-01-06T09:05:45'
|
|
1520
|
+
}
|
|
1521
|
+
};
|
|
1522
|
+
})
|
|
1523
|
+
};
|
|
1524
|
+
})
|
|
1525
|
+
}
|
|
1526
|
+
}
|
|
1527
|
+
}
|
|
1528
|
+
}
|
|
1529
|
+
},
|
|
1530
|
+
insertedAt: '2023-01-30T10:24:35',
|
|
1531
|
+
updatedAt: '2023-01-30T10:24:35'
|
|
1532
|
+
}
|
|
1533
|
+
]; };
|
|
1534
|
+
exports.MembershipSectionsMock = MembershipSectionsMock;
|
|
1535
|
+
var MembershipSectionsMockWithoutMembership = function (templateType) { return [
|
|
1536
|
+
{
|
|
1537
|
+
type: 'DESIGNED',
|
|
1538
|
+
display: true,
|
|
1539
|
+
dynamicLayoutSectionItems: [],
|
|
1540
|
+
id: 6001,
|
|
1541
|
+
insertedAt: '2023-01-12T08:03:48',
|
|
1542
|
+
manifest: {
|
|
1543
|
+
availableProperties: [
|
|
1544
|
+
'title',
|
|
1545
|
+
'description',
|
|
1546
|
+
'button_alpha_label',
|
|
1547
|
+
'button_alpha_link_type',
|
|
1548
|
+
'button_alpha_link_src',
|
|
1549
|
+
'button_bravo_label',
|
|
1550
|
+
'button_bravo_link_type',
|
|
1551
|
+
'button_bravo_link_src',
|
|
1552
|
+
'button_charlie_label',
|
|
1553
|
+
'button_charlie_link_type',
|
|
1554
|
+
'button_charlie_link_src'
|
|
1555
|
+
],
|
|
1556
|
+
availableStyles: [
|
|
1557
|
+
'title_color_in_hex',
|
|
1558
|
+
'description_color_in_hex',
|
|
1559
|
+
'background_color_in_hex',
|
|
1560
|
+
'background_media_type',
|
|
1561
|
+
'background_media_src',
|
|
1562
|
+
'background_overlay_color_in_hex',
|
|
1563
|
+
'button_alpha_design_type',
|
|
1564
|
+
'button_alpha_background_color_in_hex',
|
|
1565
|
+
'button_alpha_label_color_in_hex',
|
|
1566
|
+
'button_bravo_design_type',
|
|
1567
|
+
'button_bravo_background_color_in_hex',
|
|
1568
|
+
'button_bravo_label_color_in_hex',
|
|
1569
|
+
'button_charlie_design_type',
|
|
1570
|
+
'button_charlie_background_color_in_hex',
|
|
1571
|
+
'button_charlie_label_color_in_hex'
|
|
1572
|
+
],
|
|
1573
|
+
availableTemplates: ['BASE_INTRO_A', 'BASE_INTRO_B', 'BASE_INTRO_C', 'BASE_INTRO_D'],
|
|
1574
|
+
schema: 'BASE_INTRO'
|
|
1575
|
+
},
|
|
1576
|
+
order: 1,
|
|
1577
|
+
properties: {
|
|
1578
|
+
buttonAlphaLabel: '',
|
|
1579
|
+
buttonAlphaLinkSrc: 'https://publ.biz/',
|
|
1580
|
+
buttonAlphaLinkType: 'WEB_LINK',
|
|
1581
|
+
buttonBravoLabel: '',
|
|
1582
|
+
buttonBravoLinkSrc: 'https://publ.biz/',
|
|
1583
|
+
buttonBravoLinkType: 'WEB_LINK',
|
|
1584
|
+
buttonCharlieLabel: '',
|
|
1585
|
+
buttonCharlieLinkSrc: 'https://publ.biz/',
|
|
1586
|
+
buttonCharlieLinkType: 'WEB_LINK',
|
|
1587
|
+
buttonDeltaLabel: '',
|
|
1588
|
+
buttonDeltaLinkSrc: '',
|
|
1589
|
+
buttonDeltaLinkType: 'WEB_LINK',
|
|
1590
|
+
buttonEchoLabel: '',
|
|
1591
|
+
buttonEchoLinkSrc: '',
|
|
1592
|
+
buttonEchoLinkType: 'WEB_LINK',
|
|
1593
|
+
carouselAutoplayMode: 'MANUAL',
|
|
1594
|
+
carouselAutoplayTime: 3,
|
|
1595
|
+
carouselInfiniteLoopMode: 'NO_USE',
|
|
1596
|
+
description: 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. \nDonec odio felis, eleifend eu leo nec, aliquam dignissim turpis. \nNam a ante mattis, lacinia lacus non, imperdiet leo.',
|
|
1597
|
+
itemLinkMethod: 'CLICK_BUTTON_IN_ITEM',
|
|
1598
|
+
sectionContentMediaSrc: '',
|
|
1599
|
+
sectionContentMediaType: 'IMAGE',
|
|
1600
|
+
title: 'Entertainment Business Sample',
|
|
1601
|
+
multiPurposeUrl: ''
|
|
1602
|
+
},
|
|
1603
|
+
styles: {
|
|
1604
|
+
backgroundColorInHex: '#EFF0F3FF',
|
|
1605
|
+
backgroundMediaSrc: 'https://www.youtube.com/watch?v=4qz6x8y3tNw',
|
|
1606
|
+
backgroundMediaType: 'YOUTUBE',
|
|
1607
|
+
backgroundOverlayColorInHex: '#00000057',
|
|
1608
|
+
buttonAlphaBackgroundColorInHex: '#00000000',
|
|
1609
|
+
buttonAlphaDesignType: 'E',
|
|
1610
|
+
buttonAlphaLabelColorInHex: '#FFFFFFFF',
|
|
1611
|
+
buttonBravoBackgroundColorInHex: '#00000000',
|
|
1612
|
+
buttonBravoDesignType: 'E',
|
|
1613
|
+
buttonBravoLabelColorInHex: '#FFFFFFFF',
|
|
1614
|
+
buttonCharlieBackgroundColorInHex: '#465FF000',
|
|
1615
|
+
buttonCharlieDesignType: 'E',
|
|
1616
|
+
buttonCharlieLabelColorInHex: '#FFFFFFFF',
|
|
1617
|
+
buttonDeltaBackgroundColorInHex: '#455EEFFF',
|
|
1618
|
+
buttonDeltaDesignType: 'A',
|
|
1619
|
+
buttonDeltaLabelColorInHex: '#FFFFFFFF',
|
|
1620
|
+
buttonEchoBackgroundColorInHex: '#455EEFFF',
|
|
1621
|
+
buttonEchoDesignType: 'A',
|
|
1622
|
+
buttonEchoLabelColorInHex: '#FFFFFFFF',
|
|
1623
|
+
descriptionColorInHex: '#FFFFFFE8',
|
|
1624
|
+
itemButtonBackgroundColorInHex: '#455EEFFF',
|
|
1625
|
+
itemButtonDesignType: 'A',
|
|
1626
|
+
itemButtonLabelColorInHex: '#FFFFFFFF',
|
|
1627
|
+
itemDescriptionColorInHex: '#68686BFF',
|
|
1628
|
+
itemTitleColorInHex: '#1E1E20FF',
|
|
1629
|
+
itemHighlightingColorInHex: '#FFFFFFFF',
|
|
1630
|
+
itemToneType: 'LIGHT',
|
|
1631
|
+
titleColorInHex: '#FFFFFFFF',
|
|
1632
|
+
programmedItemActionButtonTextType: 'A'
|
|
1633
|
+
},
|
|
1634
|
+
template: 'BASE_INTRO_A',
|
|
1635
|
+
updatedAt: '2023-01-12T08:03:48'
|
|
1636
|
+
},
|
|
1637
|
+
{
|
|
1638
|
+
display: true,
|
|
1639
|
+
type: 'PROGRAMMED',
|
|
1640
|
+
program: 'MEMBERSHIP_DISPLAY',
|
|
1641
|
+
dynamicLayoutSectionItems: [],
|
|
1642
|
+
id: 6010,
|
|
1643
|
+
manifest: {
|
|
1644
|
+
availableProperties: [
|
|
1645
|
+
'title',
|
|
1646
|
+
'description',
|
|
1647
|
+
'button_alpha_label',
|
|
1648
|
+
'button_alpha_link_type',
|
|
1649
|
+
'button_alpha_link_src'
|
|
1650
|
+
],
|
|
1651
|
+
availableStyles: [
|
|
1652
|
+
'title_color_in_hex',
|
|
1653
|
+
'description_color_in_hex',
|
|
1654
|
+
'background_color_in_hex',
|
|
1655
|
+
'background_media_type',
|
|
1656
|
+
'background_media_src',
|
|
1657
|
+
'background_overlay_color_in_hex',
|
|
1658
|
+
'button_alpha_design_type',
|
|
1659
|
+
'button_alpha_background_color_in_hex',
|
|
1660
|
+
'button_alpha_label_color_in_hex',
|
|
1661
|
+
'item_highlighting_color_in_hex',
|
|
1662
|
+
'item_tone_type',
|
|
1663
|
+
'programmed_item_action_button_text_type'
|
|
1664
|
+
],
|
|
1665
|
+
availableTemplates: ['PRG_MEMBERSHIP_DISPLAY_A', 'PRG_MEMBERSHIP_DISPLAY_B'],
|
|
1666
|
+
schema: 'PRG_MEMBERSHIP_DISPLAY'
|
|
1667
|
+
},
|
|
1668
|
+
order: 8,
|
|
1669
|
+
properties: {
|
|
1670
|
+
buttonAlphaLabel: 'Lorem Ipsum',
|
|
1671
|
+
buttonAlphaLinkSrc: 'https://team.publ.space',
|
|
1672
|
+
buttonAlphaLinkType: 'WEB_LINK',
|
|
1673
|
+
buttonBravoLabel: '',
|
|
1674
|
+
buttonBravoLinkSrc: '',
|
|
1675
|
+
buttonBravoLinkType: 'WEB_LINK',
|
|
1676
|
+
buttonCharlieLabel: '',
|
|
1677
|
+
buttonCharlieLinkSrc: '',
|
|
1678
|
+
buttonCharlieLinkType: 'WEB_LINK',
|
|
1679
|
+
buttonDeltaLabel: '',
|
|
1680
|
+
buttonDeltaLinkSrc: '',
|
|
1681
|
+
buttonDeltaLinkType: 'WEB_LINK',
|
|
1682
|
+
buttonEchoLabel: '',
|
|
1683
|
+
buttonEchoLinkSrc: '',
|
|
1684
|
+
buttonEchoLinkType: 'WEB_LINK',
|
|
1685
|
+
carouselAutoplayMode: 'MANUAL',
|
|
1686
|
+
carouselAutoplayTime: 3,
|
|
1687
|
+
carouselInfiniteLoopMode: 'NO_USE',
|
|
1688
|
+
description: "Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.",
|
|
1689
|
+
sectionContentMediaSrc: '',
|
|
1690
|
+
sectionContentMediaType: 'IMAGE',
|
|
1691
|
+
title: 'Lorem Ipsum',
|
|
1692
|
+
multiPurposeUrl: 'https://app.publr.co/',
|
|
1693
|
+
itemLinkMethod: 'NONE'
|
|
1694
|
+
},
|
|
1695
|
+
styles: {
|
|
1696
|
+
backgroundColorInHex: '#4A5D78AB',
|
|
1697
|
+
backgroundMediaSrc: '',
|
|
1698
|
+
backgroundMediaType: 'IMAGE',
|
|
1699
|
+
backgroundOverlayColorInHex: '#FFFFFF00',
|
|
1700
|
+
buttonAlphaBackgroundColorInHex: '#313131FF',
|
|
1701
|
+
buttonAlphaDesignType: 'C',
|
|
1702
|
+
buttonAlphaLabelColorInHex: '#f5efd9FF',
|
|
1703
|
+
buttonBravoBackgroundColorInHex: '#313131FF',
|
|
1704
|
+
buttonBravoDesignType: 'E',
|
|
1705
|
+
buttonBravoLabelColorInHex: '#FFFFFFFF',
|
|
1706
|
+
buttonCharlieBackgroundColorInHex: '#465FF000',
|
|
1707
|
+
buttonCharlieDesignType: 'E',
|
|
1708
|
+
buttonCharlieLabelColorInHex: '#FFFFFFFF',
|
|
1709
|
+
buttonDeltaBackgroundColorInHex: '#313131FF',
|
|
1710
|
+
buttonDeltaDesignType: 'A',
|
|
1711
|
+
buttonDeltaLabelColorInHex: '#FFFFFFFF',
|
|
1712
|
+
buttonEchoBackgroundColorInHex: '#313131FF',
|
|
1713
|
+
buttonEchoDesignType: 'A',
|
|
1714
|
+
buttonEchoLabelColorInHex: '#FFFFFFFF',
|
|
1715
|
+
descriptionColorInHex: '#DEECFFA6',
|
|
1716
|
+
itemButtonBackgroundColorInHex: '#313131FF',
|
|
1717
|
+
itemButtonDesignType: 'A',
|
|
1718
|
+
itemButtonLabelColorInHex: '#FFFFFFFF',
|
|
1719
|
+
itemDescriptionColorInHex: '#68686BFF',
|
|
1720
|
+
itemTitleColorInHex: '#1E1E20FF',
|
|
1721
|
+
titleColorInHex: '#DEECFFFF',
|
|
1722
|
+
itemHighlightingColorInHex: '#ff7f50FF',
|
|
1723
|
+
itemToneType: 'LIGHT',
|
|
1724
|
+
programmedItemActionButtonTextType: 'A'
|
|
1725
|
+
},
|
|
1726
|
+
template: templateType,
|
|
1727
|
+
programData: {
|
|
1728
|
+
mdid: 'mdid',
|
|
1729
|
+
preview: {
|
|
1730
|
+
availableResources: ['REAL.MEMBERSHIP_DISPLAY'],
|
|
1731
|
+
resources: {
|
|
1732
|
+
mock: {},
|
|
1733
|
+
real: {
|
|
1734
|
+
membershipDisplay: {
|
|
1735
|
+
id: 1,
|
|
1736
|
+
mdid: "MEMBERSHIP_DISPLAY_MD_ID",
|
|
1737
|
+
title: "MEMBERSHIP_DISPLAY_MD_TITLE",
|
|
1738
|
+
isDefault: true,
|
|
1739
|
+
connectedMemberships: []
|
|
1740
|
+
}
|
|
1741
|
+
}
|
|
1742
|
+
}
|
|
1743
|
+
}
|
|
1744
|
+
},
|
|
1745
|
+
insertedAt: '2023-01-30T10:24:35',
|
|
1746
|
+
updatedAt: '2023-01-30T10:24:35'
|
|
1747
|
+
}
|
|
1748
|
+
]; };
|
|
1749
|
+
exports.MembershipSectionsMockWithoutMembership = MembershipSectionsMockWithoutMembership;
|
|
1750
|
+
var MembershipSectionsMockWithoutConnectedSubscriptionProducts = function (templateType) { return [
|
|
1751
|
+
{
|
|
1752
|
+
type: 'DESIGNED',
|
|
1753
|
+
display: true,
|
|
1754
|
+
dynamicLayoutSectionItems: [],
|
|
1755
|
+
id: 6001,
|
|
1756
|
+
insertedAt: '2023-01-12T08:03:48',
|
|
1757
|
+
manifest: {
|
|
1758
|
+
availableProperties: [
|
|
1759
|
+
'title',
|
|
1760
|
+
'description',
|
|
1761
|
+
'button_alpha_label',
|
|
1762
|
+
'button_alpha_link_type',
|
|
1763
|
+
'button_alpha_link_src',
|
|
1764
|
+
'button_bravo_label',
|
|
1765
|
+
'button_bravo_link_type',
|
|
1766
|
+
'button_bravo_link_src',
|
|
1767
|
+
'button_charlie_label',
|
|
1768
|
+
'button_charlie_link_type',
|
|
1769
|
+
'button_charlie_link_src'
|
|
1770
|
+
],
|
|
1771
|
+
availableStyles: [
|
|
1772
|
+
'title_color_in_hex',
|
|
1773
|
+
'description_color_in_hex',
|
|
1774
|
+
'background_color_in_hex',
|
|
1775
|
+
'background_media_type',
|
|
1776
|
+
'background_media_src',
|
|
1777
|
+
'background_overlay_color_in_hex',
|
|
1778
|
+
'button_alpha_design_type',
|
|
1779
|
+
'button_alpha_background_color_in_hex',
|
|
1780
|
+
'button_alpha_label_color_in_hex',
|
|
1781
|
+
'button_bravo_design_type',
|
|
1782
|
+
'button_bravo_background_color_in_hex',
|
|
1783
|
+
'button_bravo_label_color_in_hex',
|
|
1784
|
+
'button_charlie_design_type',
|
|
1785
|
+
'button_charlie_background_color_in_hex',
|
|
1786
|
+
'button_charlie_label_color_in_hex'
|
|
1787
|
+
],
|
|
1788
|
+
availableTemplates: ['BASE_INTRO_A', 'BASE_INTRO_B', 'BASE_INTRO_C', 'BASE_INTRO_D'],
|
|
1789
|
+
schema: 'BASE_INTRO'
|
|
1790
|
+
},
|
|
1791
|
+
order: 1,
|
|
1792
|
+
properties: {
|
|
1793
|
+
buttonAlphaLabel: '',
|
|
1794
|
+
buttonAlphaLinkSrc: 'https://publ.biz/',
|
|
1795
|
+
buttonAlphaLinkType: 'WEB_LINK',
|
|
1796
|
+
buttonBravoLabel: '',
|
|
1797
|
+
buttonBravoLinkSrc: 'https://publ.biz/',
|
|
1798
|
+
buttonBravoLinkType: 'WEB_LINK',
|
|
1799
|
+
buttonCharlieLabel: '',
|
|
1800
|
+
buttonCharlieLinkSrc: 'https://publ.biz/',
|
|
1801
|
+
buttonCharlieLinkType: 'WEB_LINK',
|
|
1802
|
+
buttonDeltaLabel: '',
|
|
1803
|
+
buttonDeltaLinkSrc: '',
|
|
1804
|
+
buttonDeltaLinkType: 'WEB_LINK',
|
|
1805
|
+
buttonEchoLabel: '',
|
|
1806
|
+
buttonEchoLinkSrc: '',
|
|
1807
|
+
buttonEchoLinkType: 'WEB_LINK',
|
|
1808
|
+
carouselAutoplayMode: 'MANUAL',
|
|
1809
|
+
carouselAutoplayTime: 3,
|
|
1810
|
+
carouselInfiniteLoopMode: 'NO_USE',
|
|
1811
|
+
description: 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. \nDonec odio felis, eleifend eu leo nec, aliquam dignissim turpis. \nNam a ante mattis, lacinia lacus non, imperdiet leo.',
|
|
1812
|
+
itemLinkMethod: 'CLICK_BUTTON_IN_ITEM',
|
|
1813
|
+
sectionContentMediaSrc: '',
|
|
1814
|
+
sectionContentMediaType: 'IMAGE',
|
|
1815
|
+
title: 'Entertainment Business Sample',
|
|
1816
|
+
multiPurposeUrl: ''
|
|
1817
|
+
},
|
|
1818
|
+
styles: {
|
|
1819
|
+
backgroundColorInHex: '#EFF0F3FF',
|
|
1820
|
+
backgroundMediaSrc: 'https://www.youtube.com/watch?v=4qz6x8y3tNw',
|
|
1821
|
+
backgroundMediaType: 'YOUTUBE',
|
|
1822
|
+
backgroundOverlayColorInHex: '#00000057',
|
|
1823
|
+
buttonAlphaBackgroundColorInHex: '#00000000',
|
|
1824
|
+
buttonAlphaDesignType: 'E',
|
|
1825
|
+
buttonAlphaLabelColorInHex: '#FFFFFFFF',
|
|
1826
|
+
buttonBravoBackgroundColorInHex: '#00000000',
|
|
1827
|
+
buttonBravoDesignType: 'E',
|
|
1828
|
+
buttonBravoLabelColorInHex: '#FFFFFFFF',
|
|
1829
|
+
buttonCharlieBackgroundColorInHex: '#465FF000',
|
|
1830
|
+
buttonCharlieDesignType: 'E',
|
|
1831
|
+
buttonCharlieLabelColorInHex: '#FFFFFFFF',
|
|
1832
|
+
buttonDeltaBackgroundColorInHex: '#455EEFFF',
|
|
1833
|
+
buttonDeltaDesignType: 'A',
|
|
1834
|
+
buttonDeltaLabelColorInHex: '#FFFFFFFF',
|
|
1835
|
+
buttonEchoBackgroundColorInHex: '#455EEFFF',
|
|
1836
|
+
buttonEchoDesignType: 'A',
|
|
1837
|
+
buttonEchoLabelColorInHex: '#FFFFFFFF',
|
|
1838
|
+
descriptionColorInHex: '#FFFFFFE8',
|
|
1839
|
+
itemButtonBackgroundColorInHex: '#455EEFFF',
|
|
1840
|
+
itemButtonDesignType: 'A',
|
|
1841
|
+
itemButtonLabelColorInHex: '#FFFFFFFF',
|
|
1842
|
+
itemDescriptionColorInHex: '#68686BFF',
|
|
1843
|
+
itemTitleColorInHex: '#1E1E20FF',
|
|
1844
|
+
itemHighlightingColorInHex: '#FFFFFFFF',
|
|
1845
|
+
itemToneType: 'LIGHT',
|
|
1846
|
+
titleColorInHex: '#FFFFFFFF',
|
|
1847
|
+
programmedItemActionButtonTextType: 'A'
|
|
1848
|
+
},
|
|
1849
|
+
template: 'BASE_INTRO_A',
|
|
1850
|
+
updatedAt: '2023-01-12T08:03:48'
|
|
1851
|
+
},
|
|
1852
|
+
{
|
|
1853
|
+
display: true,
|
|
1854
|
+
type: 'PROGRAMMED',
|
|
1855
|
+
program: 'MEMBERSHIP_DISPLAY',
|
|
1856
|
+
dynamicLayoutSectionItems: [],
|
|
1857
|
+
id: 6010,
|
|
1858
|
+
manifest: {
|
|
1859
|
+
availableProperties: [
|
|
1860
|
+
'title',
|
|
1861
|
+
'description',
|
|
1862
|
+
'button_alpha_label',
|
|
1863
|
+
'button_alpha_link_type',
|
|
1864
|
+
'button_alpha_link_src'
|
|
1865
|
+
],
|
|
1866
|
+
availableStyles: [
|
|
1867
|
+
'title_color_in_hex',
|
|
1868
|
+
'description_color_in_hex',
|
|
1869
|
+
'background_color_in_hex',
|
|
1870
|
+
'background_media_type',
|
|
1871
|
+
'background_media_src',
|
|
1872
|
+
'background_overlay_color_in_hex',
|
|
1873
|
+
'button_alpha_design_type',
|
|
1874
|
+
'button_alpha_background_color_in_hex',
|
|
1875
|
+
'button_alpha_label_color_in_hex',
|
|
1876
|
+
'item_highlighting_color_in_hex',
|
|
1877
|
+
'item_tone_type',
|
|
1878
|
+
'programmed_item_action_button_text_type'
|
|
1879
|
+
],
|
|
1880
|
+
availableTemplates: ['PRG_MEMBERSHIP_DISPLAY_A', 'PRG_MEMBERSHIP_DISPLAY_B'],
|
|
1881
|
+
schema: 'PRG_MEMBERSHIP_DISPLAY'
|
|
1882
|
+
},
|
|
1883
|
+
order: 8,
|
|
1884
|
+
properties: {
|
|
1885
|
+
buttonAlphaLabel: 'Lorem Ipsum',
|
|
1886
|
+
buttonAlphaLinkSrc: 'https://team.publ.space',
|
|
1887
|
+
buttonAlphaLinkType: 'WEB_LINK',
|
|
1888
|
+
buttonBravoLabel: '',
|
|
1889
|
+
buttonBravoLinkSrc: '',
|
|
1890
|
+
buttonBravoLinkType: 'WEB_LINK',
|
|
1891
|
+
buttonCharlieLabel: '',
|
|
1892
|
+
buttonCharlieLinkSrc: '',
|
|
1893
|
+
buttonCharlieLinkType: 'WEB_LINK',
|
|
1894
|
+
buttonDeltaLabel: '',
|
|
1895
|
+
buttonDeltaLinkSrc: '',
|
|
1896
|
+
buttonDeltaLinkType: 'WEB_LINK',
|
|
1897
|
+
buttonEchoLabel: '',
|
|
1898
|
+
buttonEchoLinkSrc: '',
|
|
1899
|
+
buttonEchoLinkType: 'WEB_LINK',
|
|
1900
|
+
carouselAutoplayMode: 'MANUAL',
|
|
1901
|
+
carouselAutoplayTime: 3,
|
|
1902
|
+
carouselInfiniteLoopMode: 'NO_USE',
|
|
1903
|
+
description: "Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.",
|
|
1904
|
+
sectionContentMediaSrc: '',
|
|
1905
|
+
sectionContentMediaType: 'IMAGE',
|
|
1906
|
+
title: 'Lorem Ipsum',
|
|
1907
|
+
multiPurposeUrl: 'https://app.publr.co/',
|
|
1908
|
+
itemLinkMethod: 'NONE'
|
|
1909
|
+
},
|
|
1910
|
+
styles: {
|
|
1911
|
+
backgroundColorInHex: '#4A5D78AB',
|
|
1912
|
+
backgroundMediaSrc: '',
|
|
1913
|
+
backgroundMediaType: 'IMAGE',
|
|
1914
|
+
backgroundOverlayColorInHex: '#FFFFFF00',
|
|
1915
|
+
buttonAlphaBackgroundColorInHex: '#313131FF',
|
|
1916
|
+
buttonAlphaDesignType: 'C',
|
|
1917
|
+
buttonAlphaLabelColorInHex: '#f5efd9FF',
|
|
1918
|
+
buttonBravoBackgroundColorInHex: '#313131FF',
|
|
1919
|
+
buttonBravoDesignType: 'E',
|
|
1920
|
+
buttonBravoLabelColorInHex: '#FFFFFFFF',
|
|
1921
|
+
buttonCharlieBackgroundColorInHex: '#465FF000',
|
|
1922
|
+
buttonCharlieDesignType: 'E',
|
|
1923
|
+
buttonCharlieLabelColorInHex: '#FFFFFFFF',
|
|
1924
|
+
buttonDeltaBackgroundColorInHex: '#313131FF',
|
|
1925
|
+
buttonDeltaDesignType: 'A',
|
|
1926
|
+
buttonDeltaLabelColorInHex: '#FFFFFFFF',
|
|
1927
|
+
buttonEchoBackgroundColorInHex: '#313131FF',
|
|
1928
|
+
buttonEchoDesignType: 'A',
|
|
1929
|
+
buttonEchoLabelColorInHex: '#FFFFFFFF',
|
|
1930
|
+
descriptionColorInHex: '#DEECFFA6',
|
|
1931
|
+
itemButtonBackgroundColorInHex: '#313131FF',
|
|
1932
|
+
itemButtonDesignType: 'A',
|
|
1933
|
+
itemButtonLabelColorInHex: '#FFFFFFFF',
|
|
1934
|
+
itemDescriptionColorInHex: '#68686BFF',
|
|
1935
|
+
itemTitleColorInHex: '#1E1E20FF',
|
|
1936
|
+
titleColorInHex: '#DEECFFFF',
|
|
1937
|
+
itemHighlightingColorInHex: '#ff7f50FF',
|
|
1938
|
+
itemToneType: 'LIGHT',
|
|
1939
|
+
programmedItemActionButtonTextType: 'A'
|
|
1940
|
+
},
|
|
1941
|
+
template: templateType,
|
|
1942
|
+
programData: {
|
|
1943
|
+
mdid: 'mdid',
|
|
1944
|
+
preview: {
|
|
1945
|
+
availableResources: ['REAL.MEMBERSHIP_DISPLAY'],
|
|
1946
|
+
resources: {
|
|
1947
|
+
mock: {},
|
|
1948
|
+
real: {
|
|
1949
|
+
membershipDisplay: {
|
|
1950
|
+
id: 1,
|
|
1951
|
+
mdid: "MEMBERSHIP_DISPLAY_MD_ID",
|
|
1952
|
+
title: "MEMBERSHIP_DISPLAY_MD_TITLE",
|
|
1953
|
+
isDefault: true,
|
|
1954
|
+
connectedMemberships: Array.from({ length: 6 }, function (_, i) {
|
|
1955
|
+
var alphabet = ['A', 'B', 'C', 'D', 'E', 'F'];
|
|
1956
|
+
var cardImage = [
|
|
1957
|
+
'https://cdn.dev.publishingkit.net/7f3f7a31-023b-4852-9a11-cbac31d25d93',
|
|
1958
|
+
'https://cdn.dev.publishingkit.net/c8973261-6c2a-4833-9b9f-20ee355647e4',
|
|
1959
|
+
'https://cdn.dev.publishingkit.net/8e585c93-9591-4300-ad93-d002560cbeae',
|
|
1960
|
+
'https://cdn.dev.publishingkit.net/4aaa2811-b3ff-435c-b50a-9486376ab230',
|
|
1961
|
+
'https://cdn.dev.publishingkit.net/5111c33c-07ba-4b91-8eb6-9975f4cd906a',
|
|
1962
|
+
'https://cdn.dev.publishingkit.net/16ac0a8a-acb1-465b-960c-6be66f2a04e8.jpg'
|
|
1963
|
+
];
|
|
1964
|
+
var getOverlayType = function () {
|
|
1965
|
+
if (i % 3 === 1)
|
|
1966
|
+
return 'SOLID';
|
|
1967
|
+
if (i % 3 === 2)
|
|
1968
|
+
return 'GRADIENT';
|
|
1969
|
+
return 'NONE';
|
|
1970
|
+
};
|
|
1971
|
+
var getDesignSchema = function () {
|
|
1972
|
+
if (i % 3 === 1)
|
|
1973
|
+
return 'B';
|
|
1974
|
+
if (i % 3 === 2)
|
|
1975
|
+
return 'C';
|
|
1976
|
+
return 'A';
|
|
1977
|
+
};
|
|
1978
|
+
return {
|
|
1979
|
+
id: i + 1,
|
|
1980
|
+
order: i,
|
|
1981
|
+
mdid: "CONNECTED_MEMBERSHIPS_" + alphabet[i] + "_MD_ID",
|
|
1982
|
+
mid: "CONNECTED_MEMBERSHIPS_" + alphabet[i] + "_M_ID",
|
|
1983
|
+
membership: {
|
|
1984
|
+
id: i + 1,
|
|
1985
|
+
type: 'GENERAL',
|
|
1986
|
+
mid: "MEMBERSHIP_" + alphabet[i] + "_MID",
|
|
1987
|
+
title: '청춘이 황금시대를 우리의 같은 무엇을 쓸쓸한 돋고, 장식하는 칼이다. 동산에는 투명하되!',
|
|
1988
|
+
insertedAt: '2023-01-06T09:05:45',
|
|
1989
|
+
updatedAt: '2023-01-06T09:05:45',
|
|
1990
|
+
membershipCardTemplate: {
|
|
1991
|
+
backgroundImageSrc: cardImage[i],
|
|
1992
|
+
logoImageSrc: 'https://publ-upload-local.s3.ap-northeast-2.amazonaws.com/e11d1a92-a1c0-4faa-b341-13a32f21828d_image',
|
|
1993
|
+
overlayType: getOverlayType(),
|
|
1994
|
+
overlayColorPrimary: '#FFC0CB49',
|
|
1995
|
+
overlayColorSecondary: '#31313149',
|
|
1996
|
+
designSchema: getDesignSchema()
|
|
1997
|
+
},
|
|
1998
|
+
membershipBenefitInfo: {
|
|
1999
|
+
benefitAlpha: '청춘이 황금시대를 우리의 같은 무엇을 쓸쓸한 돋고, 장식하는 칼이다. 동산에는 투명하되!',
|
|
2000
|
+
benefitBravo: 'Lorem ipsum dolor sit amet. Et magnam molestiae.',
|
|
2001
|
+
benefitCharlie: '청춘이 황금시대를 우리의 같은 무엇을 쓸쓸한 돋고, 장식하는 칼이다. 동산에는 투명하되!',
|
|
2002
|
+
benefitDelta: 'Lorem ipsum dolor sit amet. Et magnam molestiae.',
|
|
2003
|
+
benefitEcho: 'Lorem ipsum dolor sit amet. Et magnam molestiae.'
|
|
2004
|
+
},
|
|
2005
|
+
totalSubscriptionProducts: 3
|
|
2006
|
+
},
|
|
2007
|
+
connectedSubscriptionProducts: []
|
|
2008
|
+
};
|
|
2009
|
+
})
|
|
2010
|
+
}
|
|
2011
|
+
}
|
|
2012
|
+
}
|
|
2013
|
+
}
|
|
2014
|
+
},
|
|
2015
|
+
insertedAt: '2023-01-30T10:24:35',
|
|
2016
|
+
updatedAt: '2023-01-30T10:24:35'
|
|
2017
|
+
}
|
|
2018
|
+
]; };
|
|
2019
|
+
exports.MembershipSectionsMockWithoutConnectedSubscriptionProducts = MembershipSectionsMockWithoutConnectedSubscriptionProducts;
|
|
2020
|
+
var MembershipSectionsMockOnlyOneConnectedSubscriptionProduct = function (templateType) { return [
|
|
2021
|
+
{
|
|
2022
|
+
type: 'DESIGNED',
|
|
2023
|
+
display: true,
|
|
2024
|
+
dynamicLayoutSectionItems: [],
|
|
2025
|
+
id: 6001,
|
|
2026
|
+
insertedAt: '2023-01-12T08:03:48',
|
|
2027
|
+
manifest: {
|
|
2028
|
+
availableProperties: [
|
|
2029
|
+
'title',
|
|
2030
|
+
'description',
|
|
2031
|
+
'button_alpha_label',
|
|
2032
|
+
'button_alpha_link_type',
|
|
2033
|
+
'button_alpha_link_src',
|
|
2034
|
+
'button_bravo_label',
|
|
2035
|
+
'button_bravo_link_type',
|
|
2036
|
+
'button_bravo_link_src',
|
|
2037
|
+
'button_charlie_label',
|
|
2038
|
+
'button_charlie_link_type',
|
|
2039
|
+
'button_charlie_link_src'
|
|
2040
|
+
],
|
|
2041
|
+
availableStyles: [
|
|
2042
|
+
'title_color_in_hex',
|
|
2043
|
+
'description_color_in_hex',
|
|
2044
|
+
'background_color_in_hex',
|
|
2045
|
+
'background_media_type',
|
|
2046
|
+
'background_media_src',
|
|
2047
|
+
'background_overlay_color_in_hex',
|
|
2048
|
+
'button_alpha_design_type',
|
|
2049
|
+
'button_alpha_background_color_in_hex',
|
|
2050
|
+
'button_alpha_label_color_in_hex',
|
|
2051
|
+
'button_bravo_design_type',
|
|
2052
|
+
'button_bravo_background_color_in_hex',
|
|
2053
|
+
'button_bravo_label_color_in_hex',
|
|
2054
|
+
'button_charlie_design_type',
|
|
2055
|
+
'button_charlie_background_color_in_hex',
|
|
2056
|
+
'button_charlie_label_color_in_hex'
|
|
2057
|
+
],
|
|
2058
|
+
availableTemplates: ['BASE_INTRO_A', 'BASE_INTRO_B', 'BASE_INTRO_C', 'BASE_INTRO_D'],
|
|
2059
|
+
schema: 'BASE_INTRO'
|
|
2060
|
+
},
|
|
2061
|
+
order: 1,
|
|
2062
|
+
properties: {
|
|
2063
|
+
buttonAlphaLabel: '',
|
|
2064
|
+
buttonAlphaLinkSrc: 'https://publ.biz/',
|
|
2065
|
+
buttonAlphaLinkType: 'WEB_LINK',
|
|
2066
|
+
buttonBravoLabel: '',
|
|
2067
|
+
buttonBravoLinkSrc: 'https://publ.biz/',
|
|
2068
|
+
buttonBravoLinkType: 'WEB_LINK',
|
|
2069
|
+
buttonCharlieLabel: '',
|
|
2070
|
+
buttonCharlieLinkSrc: 'https://publ.biz/',
|
|
2071
|
+
buttonCharlieLinkType: 'WEB_LINK',
|
|
2072
|
+
buttonDeltaLabel: '',
|
|
2073
|
+
buttonDeltaLinkSrc: '',
|
|
2074
|
+
buttonDeltaLinkType: 'WEB_LINK',
|
|
2075
|
+
buttonEchoLabel: '',
|
|
2076
|
+
buttonEchoLinkSrc: '',
|
|
2077
|
+
buttonEchoLinkType: 'WEB_LINK',
|
|
2078
|
+
carouselAutoplayMode: 'MANUAL',
|
|
2079
|
+
carouselAutoplayTime: 3,
|
|
2080
|
+
carouselInfiniteLoopMode: 'NO_USE',
|
|
2081
|
+
description: 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. \nDonec odio felis, eleifend eu leo nec, aliquam dignissim turpis. \nNam a ante mattis, lacinia lacus non, imperdiet leo.',
|
|
2082
|
+
itemLinkMethod: 'CLICK_BUTTON_IN_ITEM',
|
|
2083
|
+
sectionContentMediaSrc: '',
|
|
2084
|
+
sectionContentMediaType: 'IMAGE',
|
|
2085
|
+
title: 'Entertainment Business Sample',
|
|
2086
|
+
multiPurposeUrl: ''
|
|
2087
|
+
},
|
|
2088
|
+
styles: {
|
|
2089
|
+
backgroundColorInHex: '#EFF0F3FF',
|
|
2090
|
+
backgroundMediaSrc: 'https://www.youtube.com/watch?v=4qz6x8y3tNw',
|
|
2091
|
+
backgroundMediaType: 'YOUTUBE',
|
|
2092
|
+
backgroundOverlayColorInHex: '#00000057',
|
|
2093
|
+
buttonAlphaBackgroundColorInHex: '#00000000',
|
|
2094
|
+
buttonAlphaDesignType: 'E',
|
|
2095
|
+
buttonAlphaLabelColorInHex: '#FFFFFFFF',
|
|
2096
|
+
buttonBravoBackgroundColorInHex: '#00000000',
|
|
2097
|
+
buttonBravoDesignType: 'E',
|
|
2098
|
+
buttonBravoLabelColorInHex: '#FFFFFFFF',
|
|
2099
|
+
buttonCharlieBackgroundColorInHex: '#465FF000',
|
|
2100
|
+
buttonCharlieDesignType: 'E',
|
|
2101
|
+
buttonCharlieLabelColorInHex: '#FFFFFFFF',
|
|
2102
|
+
buttonDeltaBackgroundColorInHex: '#455EEFFF',
|
|
2103
|
+
buttonDeltaDesignType: 'A',
|
|
2104
|
+
buttonDeltaLabelColorInHex: '#FFFFFFFF',
|
|
2105
|
+
buttonEchoBackgroundColorInHex: '#455EEFFF',
|
|
2106
|
+
buttonEchoDesignType: 'A',
|
|
2107
|
+
buttonEchoLabelColorInHex: '#FFFFFFFF',
|
|
2108
|
+
descriptionColorInHex: '#FFFFFFE8',
|
|
2109
|
+
itemButtonBackgroundColorInHex: '#455EEFFF',
|
|
2110
|
+
itemButtonDesignType: 'A',
|
|
2111
|
+
itemButtonLabelColorInHex: '#FFFFFFFF',
|
|
2112
|
+
itemDescriptionColorInHex: '#68686BFF',
|
|
2113
|
+
itemTitleColorInHex: '#1E1E20FF',
|
|
2114
|
+
itemHighlightingColorInHex: '#FFFFFFFF',
|
|
2115
|
+
itemToneType: 'LIGHT',
|
|
2116
|
+
titleColorInHex: '#FFFFFFFF',
|
|
2117
|
+
programmedItemActionButtonTextType: 'A'
|
|
2118
|
+
},
|
|
2119
|
+
template: 'BASE_INTRO_A',
|
|
2120
|
+
updatedAt: '2023-01-12T08:03:48'
|
|
2121
|
+
},
|
|
2122
|
+
{
|
|
2123
|
+
display: true,
|
|
2124
|
+
type: 'PROGRAMMED',
|
|
2125
|
+
program: 'MEMBERSHIP_DISPLAY',
|
|
2126
|
+
dynamicLayoutSectionItems: [],
|
|
2127
|
+
id: 6010,
|
|
2128
|
+
manifest: {
|
|
2129
|
+
availableProperties: [
|
|
2130
|
+
'title',
|
|
2131
|
+
'description',
|
|
2132
|
+
'button_alpha_label',
|
|
2133
|
+
'button_alpha_link_type',
|
|
2134
|
+
'button_alpha_link_src'
|
|
2135
|
+
],
|
|
2136
|
+
availableStyles: [
|
|
2137
|
+
'title_color_in_hex',
|
|
2138
|
+
'description_color_in_hex',
|
|
2139
|
+
'background_color_in_hex',
|
|
2140
|
+
'background_media_type',
|
|
2141
|
+
'background_media_src',
|
|
2142
|
+
'background_overlay_color_in_hex',
|
|
2143
|
+
'button_alpha_design_type',
|
|
2144
|
+
'button_alpha_background_color_in_hex',
|
|
2145
|
+
'button_alpha_label_color_in_hex',
|
|
2146
|
+
'item_highlighting_color_in_hex',
|
|
2147
|
+
'item_tone_type',
|
|
2148
|
+
'programmed_item_action_button_text_type'
|
|
2149
|
+
],
|
|
2150
|
+
availableTemplates: ['PRG_MEMBERSHIP_DISPLAY_A', 'PRG_MEMBERSHIP_DISPLAY_B'],
|
|
2151
|
+
schema: 'PRG_MEMBERSHIP_DISPLAY'
|
|
2152
|
+
},
|
|
2153
|
+
order: 8,
|
|
2154
|
+
properties: {
|
|
2155
|
+
buttonAlphaLabel: 'Lorem Ipsum',
|
|
2156
|
+
buttonAlphaLinkSrc: 'https://team.publ.space',
|
|
2157
|
+
buttonAlphaLinkType: 'WEB_LINK',
|
|
2158
|
+
buttonBravoLabel: '',
|
|
2159
|
+
buttonBravoLinkSrc: '',
|
|
2160
|
+
buttonBravoLinkType: 'WEB_LINK',
|
|
2161
|
+
buttonCharlieLabel: '',
|
|
2162
|
+
buttonCharlieLinkSrc: '',
|
|
2163
|
+
buttonCharlieLinkType: 'WEB_LINK',
|
|
2164
|
+
buttonDeltaLabel: '',
|
|
2165
|
+
buttonDeltaLinkSrc: '',
|
|
2166
|
+
buttonDeltaLinkType: 'WEB_LINK',
|
|
2167
|
+
buttonEchoLabel: '',
|
|
2168
|
+
buttonEchoLinkSrc: '',
|
|
2169
|
+
buttonEchoLinkType: 'WEB_LINK',
|
|
2170
|
+
carouselAutoplayMode: 'MANUAL',
|
|
2171
|
+
carouselAutoplayTime: 3,
|
|
2172
|
+
carouselInfiniteLoopMode: 'NO_USE',
|
|
2173
|
+
description: "Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.",
|
|
2174
|
+
sectionContentMediaSrc: '',
|
|
2175
|
+
sectionContentMediaType: 'IMAGE',
|
|
2176
|
+
title: 'Lorem Ipsum',
|
|
2177
|
+
multiPurposeUrl: 'https://app.publr.co/',
|
|
2178
|
+
itemLinkMethod: 'NONE'
|
|
2179
|
+
},
|
|
2180
|
+
styles: {
|
|
2181
|
+
backgroundColorInHex: '#4A5D78AB',
|
|
2182
|
+
backgroundMediaSrc: '',
|
|
2183
|
+
backgroundMediaType: 'IMAGE',
|
|
2184
|
+
backgroundOverlayColorInHex: '#FFFFFF00',
|
|
2185
|
+
buttonAlphaBackgroundColorInHex: '#313131FF',
|
|
2186
|
+
buttonAlphaDesignType: 'C',
|
|
2187
|
+
buttonAlphaLabelColorInHex: '#f5efd9FF',
|
|
2188
|
+
buttonBravoBackgroundColorInHex: '#313131FF',
|
|
2189
|
+
buttonBravoDesignType: 'E',
|
|
2190
|
+
buttonBravoLabelColorInHex: '#FFFFFFFF',
|
|
2191
|
+
buttonCharlieBackgroundColorInHex: '#465FF000',
|
|
2192
|
+
buttonCharlieDesignType: 'E',
|
|
2193
|
+
buttonCharlieLabelColorInHex: '#FFFFFFFF',
|
|
2194
|
+
buttonDeltaBackgroundColorInHex: '#313131FF',
|
|
2195
|
+
buttonDeltaDesignType: 'A',
|
|
2196
|
+
buttonDeltaLabelColorInHex: '#FFFFFFFF',
|
|
2197
|
+
buttonEchoBackgroundColorInHex: '#313131FF',
|
|
2198
|
+
buttonEchoDesignType: 'A',
|
|
2199
|
+
buttonEchoLabelColorInHex: '#FFFFFFFF',
|
|
2200
|
+
descriptionColorInHex: '#DEECFFA6',
|
|
2201
|
+
itemButtonBackgroundColorInHex: '#313131FF',
|
|
2202
|
+
itemButtonDesignType: 'A',
|
|
2203
|
+
itemButtonLabelColorInHex: '#FFFFFFFF',
|
|
2204
|
+
itemDescriptionColorInHex: '#68686BFF',
|
|
2205
|
+
itemTitleColorInHex: '#1E1E20FF',
|
|
2206
|
+
titleColorInHex: '#DEECFFFF',
|
|
2207
|
+
itemHighlightingColorInHex: '#ff7f50FF',
|
|
2208
|
+
itemToneType: 'LIGHT',
|
|
2209
|
+
programmedItemActionButtonTextType: 'A'
|
|
2210
|
+
},
|
|
2211
|
+
template: templateType,
|
|
2212
|
+
programData: {
|
|
2213
|
+
mdid: 'mdid',
|
|
2214
|
+
preview: {
|
|
2215
|
+
availableResources: ['REAL.MEMBERSHIP_DISPLAY'],
|
|
2216
|
+
resources: {
|
|
2217
|
+
mock: {},
|
|
2218
|
+
real: {
|
|
2219
|
+
membershipDisplay: {
|
|
2220
|
+
id: 1,
|
|
2221
|
+
mdid: "MEMBERSHIP_DISPLAY_MD_ID",
|
|
2222
|
+
title: "MEMBERSHIP_DISPLAY_MD_TITLE",
|
|
2223
|
+
isDefault: true,
|
|
2224
|
+
connectedMemberships: Array.from({ length: 1 }, function (_, i) {
|
|
2225
|
+
var alphabet = ['A', 'B', 'C', 'D', 'E', 'F'];
|
|
2226
|
+
var cardImage = [
|
|
2227
|
+
'https://cdn.dev.publishingkit.net/7f3f7a31-023b-4852-9a11-cbac31d25d93',
|
|
2228
|
+
'https://cdn.dev.publishingkit.net/c8973261-6c2a-4833-9b9f-20ee355647e4',
|
|
2229
|
+
'https://cdn.dev.publishingkit.net/8e585c93-9591-4300-ad93-d002560cbeae',
|
|
2230
|
+
'https://cdn.dev.publishingkit.net/4aaa2811-b3ff-435c-b50a-9486376ab230',
|
|
2231
|
+
'https://cdn.dev.publishingkit.net/5111c33c-07ba-4b91-8eb6-9975f4cd906a',
|
|
2232
|
+
'https://cdn.dev.publishingkit.net/16ac0a8a-acb1-465b-960c-6be66f2a04e8.jpg'
|
|
2233
|
+
];
|
|
2234
|
+
var getOverlayType = function () {
|
|
2235
|
+
if (i % 3 === 1)
|
|
2236
|
+
return 'SOLID';
|
|
2237
|
+
if (i % 3 === 2)
|
|
2238
|
+
return 'GRADIENT';
|
|
2239
|
+
return 'NONE';
|
|
2240
|
+
};
|
|
2241
|
+
var getDesignSchema = function () {
|
|
2242
|
+
if (i % 3 === 1)
|
|
2243
|
+
return 'B';
|
|
2244
|
+
if (i % 3 === 2)
|
|
2245
|
+
return 'C';
|
|
2246
|
+
return 'A';
|
|
2247
|
+
};
|
|
2248
|
+
return {
|
|
2249
|
+
id: i + 1,
|
|
2250
|
+
order: i,
|
|
2251
|
+
mdid: "CONNECTED_MEMBERSHIPS_" + alphabet[i] + "_MD_ID",
|
|
2252
|
+
mid: "CONNECTED_MEMBERSHIPS_" + alphabet[i] + "_M_ID",
|
|
2253
|
+
membership: {
|
|
2254
|
+
id: i + 1,
|
|
2255
|
+
type: 'GENERAL',
|
|
2256
|
+
mid: "MEMBERSHIP_" + alphabet[i] + "_MID",
|
|
2257
|
+
title: '청춘이 황금시대를 우리의 같은 무엇을 쓸쓸한 돋고, 장식하는 칼이다. 동산에는 투명하되!',
|
|
2258
|
+
insertedAt: '2023-01-06T09:05:45',
|
|
2259
|
+
updatedAt: '2023-01-06T09:05:45',
|
|
2260
|
+
membershipCardTemplate: {
|
|
2261
|
+
backgroundImageSrc: cardImage[i],
|
|
2262
|
+
logoImageSrc: 'https://publ-upload-local.s3.ap-northeast-2.amazonaws.com/e11d1a92-a1c0-4faa-b341-13a32f21828d_image',
|
|
2263
|
+
overlayType: getOverlayType(),
|
|
2264
|
+
overlayColorPrimary: '#FFC0CB49',
|
|
2265
|
+
overlayColorSecondary: '#31313149',
|
|
2266
|
+
designSchema: getDesignSchema()
|
|
2267
|
+
},
|
|
2268
|
+
membershipBenefitInfo: {
|
|
2269
|
+
benefitAlpha: '청춘이 황금시대를 우리의 같은 무엇을 쓸쓸한 돋고, 장식하는 칼이다. 동산에는 투명하되!',
|
|
2270
|
+
benefitBravo: 'Lorem ipsum dolor sit amet. Et magnam molestiae.',
|
|
2271
|
+
benefitCharlie: '청춘이 황금시대를 우리의 같은 무엇을 쓸쓸한 돋고, 장식하는 칼이다. 동산에는 투명하되!',
|
|
2272
|
+
benefitDelta: 'Lorem ipsum dolor sit amet. Et magnam molestiae.',
|
|
2273
|
+
benefitEcho: 'Lorem ipsum dolor sit amet. Et magnam molestiae.'
|
|
2274
|
+
},
|
|
2275
|
+
totalSubscriptionProducts: 3
|
|
2276
|
+
},
|
|
2277
|
+
connectedSubscriptionProducts: Array.from({ length: 1 }, function () {
|
|
2278
|
+
return {
|
|
2279
|
+
id: i + 1,
|
|
2280
|
+
order: i,
|
|
2281
|
+
connectedMembershipId: i + 1,
|
|
2282
|
+
subscriptionProductId: i + 1,
|
|
2283
|
+
subscriptionProduct: {
|
|
2284
|
+
id: i + 1,
|
|
2285
|
+
type: 'COUPON_ONCE_FINITE',
|
|
2286
|
+
title: '청춘이 황금시대를 우리의 같은 무엇을',
|
|
2287
|
+
alias: "CONNECTED_SUBSCRIPTION_PRODUCTS_" + alphabet[i] + "_ALIAS",
|
|
2288
|
+
expiryPeriodInDays: 7,
|
|
2289
|
+
isDeactivated: i % 2 === 0,
|
|
2290
|
+
fee: {
|
|
2291
|
+
currency: 'KRW',
|
|
2292
|
+
amount: 10000
|
|
2293
|
+
},
|
|
2294
|
+
insertedAt: '2023-01-06T09:05:45',
|
|
2295
|
+
updatedAt: '2023-01-06T09:05:45'
|
|
2296
|
+
}
|
|
2297
|
+
};
|
|
2298
|
+
})
|
|
2299
|
+
};
|
|
2300
|
+
})
|
|
2301
|
+
}
|
|
2302
|
+
}
|
|
2303
|
+
}
|
|
2304
|
+
}
|
|
2305
|
+
},
|
|
2306
|
+
insertedAt: '2023-01-30T10:24:35',
|
|
2307
|
+
updatedAt: '2023-01-30T10:24:35'
|
|
2308
|
+
}
|
|
2309
|
+
]; };
|
|
2310
|
+
exports.MembershipSectionsMockOnlyOneConnectedSubscriptionProduct = MembershipSectionsMockOnlyOneConnectedSubscriptionProduct;
|