@ohos-ports/shopify 4.8.0-beta.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 +75 -0
- package/bin/run.cmd +3 -0
- package/bin/run.js +11 -0
- package/dist/acorn-7M27BPGP.js +16 -0
- package/dist/analytics-3IIUBZ3B.js +1 -0
- package/dist/analytics-OOT5AB52.js +1 -0
- package/dist/angular-DW5TQVCM.js +4 -0
- package/dist/assets/graphiql/favicon.ico +0 -0
- package/dist/assets/graphiql/style.css +58 -0
- package/dist/assets/hydrogen/bundle/analyzer.html +2056 -0
- package/dist/assets/hydrogen/i18n/domains.ts +21 -0
- package/dist/assets/hydrogen/i18n/mock-i18n-types.ts +5 -0
- package/dist/assets/hydrogen/i18n/subdomains.ts +20 -0
- package/dist/assets/hydrogen/i18n/subfolders.ts +22 -0
- package/dist/assets/hydrogen/routes/locale-check.ts +16 -0
- package/dist/assets/hydrogen/starter/.cursor/rules/hydrogen-react-router.mdc +52 -0
- package/dist/assets/hydrogen/starter/.graphqlrc.ts +29 -0
- package/dist/assets/hydrogen/starter/AGENTS.md +5 -0
- package/dist/assets/hydrogen/starter/CHANGELOG.md +2839 -0
- package/dist/assets/hydrogen/starter/CLAUDE.md +1 -0
- package/dist/assets/hydrogen/starter/README.md +45 -0
- package/dist/assets/hydrogen/starter/app/assets/favicon.svg +28 -0
- package/dist/assets/hydrogen/starter/app/components/AddToCartButton.tsx +37 -0
- package/dist/assets/hydrogen/starter/app/components/Aside.tsx +101 -0
- package/dist/assets/hydrogen/starter/app/components/CartLineItem.tsx +197 -0
- package/dist/assets/hydrogen/starter/app/components/CartMain.tsx +109 -0
- package/dist/assets/hydrogen/starter/app/components/CartSummary.tsx +300 -0
- package/dist/assets/hydrogen/starter/app/components/Footer.tsx +129 -0
- package/dist/assets/hydrogen/starter/app/components/Header.tsx +231 -0
- package/dist/assets/hydrogen/starter/app/components/MockShopNotice.tsx +20 -0
- package/dist/assets/hydrogen/starter/app/components/PageLayout.tsx +174 -0
- package/dist/assets/hydrogen/starter/app/components/PaginatedResourceSection.tsx +61 -0
- package/dist/assets/hydrogen/starter/app/components/ProductForm.tsx +150 -0
- package/dist/assets/hydrogen/starter/app/components/ProductImage.tsx +23 -0
- package/dist/assets/hydrogen/starter/app/components/ProductItem.tsx +44 -0
- package/dist/assets/hydrogen/starter/app/components/ProductPrice.tsx +27 -0
- package/dist/assets/hydrogen/starter/app/components/SearchForm.tsx +68 -0
- package/dist/assets/hydrogen/starter/app/components/SearchFormPredictive.tsx +76 -0
- package/dist/assets/hydrogen/starter/app/components/SearchResults.tsx +161 -0
- package/dist/assets/hydrogen/starter/app/components/SearchResultsPredictive.tsx +304 -0
- package/dist/assets/hydrogen/starter/app/entry.client.tsx +21 -0
- package/dist/assets/hydrogen/starter/app/entry.server.tsx +53 -0
- package/dist/assets/hydrogen/starter/app/graphql/customer-account/CustomerAddressMutations.ts +64 -0
- package/dist/assets/hydrogen/starter/app/graphql/customer-account/CustomerDetailsQuery.ts +40 -0
- package/dist/assets/hydrogen/starter/app/graphql/customer-account/CustomerOrderQuery.ts +90 -0
- package/dist/assets/hydrogen/starter/app/graphql/customer-account/CustomerOrdersQuery.ts +63 -0
- package/dist/assets/hydrogen/starter/app/graphql/customer-account/CustomerUpdateMutation.ts +25 -0
- package/dist/assets/hydrogen/starter/app/lib/context.ts +65 -0
- package/dist/assets/hydrogen/starter/app/lib/fragments.ts +242 -0
- package/dist/assets/hydrogen/starter/app/lib/orderFilters.ts +90 -0
- package/dist/assets/hydrogen/starter/app/lib/redirect.ts +23 -0
- package/dist/assets/hydrogen/starter/app/lib/search.ts +79 -0
- package/dist/assets/hydrogen/starter/app/lib/session.ts +72 -0
- package/dist/assets/hydrogen/starter/app/lib/variants.ts +46 -0
- package/dist/assets/hydrogen/starter/app/root.tsx +209 -0
- package/dist/assets/hydrogen/starter/app/routes/$.tsx +11 -0
- package/dist/assets/hydrogen/starter/app/routes/[robots.txt].tsx +78 -0
- package/dist/assets/hydrogen/starter/app/routes/[sitemap.xml].tsx +16 -0
- package/dist/assets/hydrogen/starter/app/routes/_index.tsx +177 -0
- package/dist/assets/hydrogen/starter/app/routes/account.$.tsx +9 -0
- package/dist/assets/hydrogen/starter/app/routes/account._index.tsx +5 -0
- package/dist/assets/hydrogen/starter/app/routes/account.addresses.tsx +516 -0
- package/dist/assets/hydrogen/starter/app/routes/account.orders.$id.tsx +222 -0
- package/dist/assets/hydrogen/starter/app/routes/account.orders._index.tsx +222 -0
- package/dist/assets/hydrogen/starter/app/routes/account.profile.tsx +133 -0
- package/dist/assets/hydrogen/starter/app/routes/account.tsx +97 -0
- package/dist/assets/hydrogen/starter/app/routes/account_.authorize.tsx +5 -0
- package/dist/assets/hydrogen/starter/app/routes/account_.login.tsx +17 -0
- package/dist/assets/hydrogen/starter/app/routes/account_.logout.tsx +11 -0
- package/dist/assets/hydrogen/starter/app/routes/blogs.$blogHandle.$articleHandle.tsx +129 -0
- package/dist/assets/hydrogen/starter/app/routes/blogs.$blogHandle._index.tsx +175 -0
- package/dist/assets/hydrogen/starter/app/routes/blogs._index.tsx +109 -0
- package/dist/assets/hydrogen/starter/app/routes/cart.$lines.tsx +70 -0
- package/dist/assets/hydrogen/starter/app/routes/cart.tsx +113 -0
- package/dist/assets/hydrogen/starter/app/routes/collections.$handle.tsx +161 -0
- package/dist/assets/hydrogen/starter/app/routes/collections._index.tsx +133 -0
- package/dist/assets/hydrogen/starter/app/routes/collections.all.tsx +122 -0
- package/dist/assets/hydrogen/starter/app/routes/discount.$code.tsx +48 -0
- package/dist/assets/hydrogen/starter/app/routes/pages.$handle.tsx +88 -0
- package/dist/assets/hydrogen/starter/app/routes/policies.$handle.tsx +93 -0
- package/dist/assets/hydrogen/starter/app/routes/policies._index.tsx +69 -0
- package/dist/assets/hydrogen/starter/app/routes/products.$handle.tsx +232 -0
- package/dist/assets/hydrogen/starter/app/routes/search.tsx +426 -0
- package/dist/assets/hydrogen/starter/app/routes/sitemap.$type.$page[.xml].tsx +23 -0
- package/dist/assets/hydrogen/starter/app/routes.ts +9 -0
- package/dist/assets/hydrogen/starter/app/styles/app.css +645 -0
- package/dist/assets/hydrogen/starter/app/styles/reset.css +139 -0
- package/dist/assets/hydrogen/starter/customer-accountapi.generated.d.ts +543 -0
- package/dist/assets/hydrogen/starter/env.d.ts +7 -0
- package/dist/assets/hydrogen/starter/eslint.config.js +247 -0
- package/dist/assets/hydrogen/starter/guides/predictiveSearch/predictiveSearch.jpg +0 -0
- package/dist/assets/hydrogen/starter/guides/predictiveSearch/predictiveSearch.md +394 -0
- package/dist/assets/hydrogen/starter/guides/search/search.jpg +0 -0
- package/dist/assets/hydrogen/starter/guides/search/search.md +335 -0
- package/dist/assets/hydrogen/starter/package.json +62 -0
- package/dist/assets/hydrogen/starter/public/.gitkeep +0 -0
- package/dist/assets/hydrogen/starter/react-router.config.ts +13 -0
- package/dist/assets/hydrogen/starter/server.ts +59 -0
- package/dist/assets/hydrogen/starter/storefrontapi.generated.d.ts +1342 -0
- package/dist/assets/hydrogen/starter/tsconfig.json +43 -0
- package/dist/assets/hydrogen/starter/vite.config.ts +44 -0
- package/dist/assets/hydrogen/tailwind/package.json +11 -0
- package/dist/assets/hydrogen/tailwind/tailwind.css +6 -0
- package/dist/assets/hydrogen/vanilla-extract/package.json +8 -0
- package/dist/assets/hydrogen/virtual-routes/assets/debug-network.css +609 -0
- package/dist/assets/hydrogen/virtual-routes/assets/favicon-dark.svg +20 -0
- package/dist/assets/hydrogen/virtual-routes/assets/favicon.svg +28 -0
- package/dist/assets/hydrogen/virtual-routes/assets/inter-variable-font.woff2 +0 -0
- package/dist/assets/hydrogen/virtual-routes/assets/jetbrainsmono-variable-font.woff2 +0 -0
- package/dist/assets/hydrogen/virtual-routes/assets/styles.css +249 -0
- package/dist/assets/hydrogen/virtual-routes/components/FlameChartWrapper.jsx +123 -0
- package/dist/assets/hydrogen/virtual-routes/components/HydrogenLogoBaseBW.jsx +32 -0
- package/dist/assets/hydrogen/virtual-routes/components/HydrogenLogoBaseColor.jsx +47 -0
- package/dist/assets/hydrogen/virtual-routes/components/IconBanner.jsx +292 -0
- package/dist/assets/hydrogen/virtual-routes/components/IconClose.jsx +38 -0
- package/dist/assets/hydrogen/virtual-routes/components/IconDiscard.jsx +44 -0
- package/dist/assets/hydrogen/virtual-routes/components/IconError.jsx +61 -0
- package/dist/assets/hydrogen/virtual-routes/components/IconGithub.jsx +23 -0
- package/dist/assets/hydrogen/virtual-routes/components/IconTwitter.jsx +21 -0
- package/dist/assets/hydrogen/virtual-routes/components/Layout.jsx +7 -0
- package/dist/assets/hydrogen/virtual-routes/components/RequestDetails.jsx +171 -0
- package/dist/assets/hydrogen/virtual-routes/components/RequestTable.jsx +91 -0
- package/dist/assets/hydrogen/virtual-routes/components/RequestWaterfall.jsx +151 -0
- package/dist/assets/hydrogen/virtual-routes/layout.jsx +33 -0
- package/dist/assets/hydrogen/virtual-routes/lib/useDebugNetworkServer.jsx +178 -0
- package/dist/assets/hydrogen/virtual-routes/routes/[.]well-known.appspecific.com[.]chrome[.]devtools[.]json.jsx +37 -0
- package/dist/assets/hydrogen/virtual-routes/routes/graphiql.jsx +5 -0
- package/dist/assets/hydrogen/virtual-routes/routes/index.jsx +265 -0
- package/dist/assets/hydrogen/virtual-routes/routes/subrequest-profiler.jsx +243 -0
- package/dist/assets/hydrogen/virtual-routes/virtual-root-with-layout.jsx +63 -0
- package/dist/assets/hydrogen/virtual-routes/virtual-root.jsx +67 -0
- package/dist/assets/hydrogen/vite/package.json +13 -0
- package/dist/assets/hydrogen/vite/vite.config.js +43 -0
- package/dist/assets/speedscope/SourceCodePro-Regular.ttf.f546cbe0.woff2 +0 -0
- package/dist/assets/speedscope/demangle-cpp.1768f4cc.js +4 -0
- package/dist/assets/speedscope/favicon-16x16.f74b3187.png +0 -0
- package/dist/assets/speedscope/favicon-32x32.bc503437.png +0 -0
- package/dist/assets/speedscope/file-format-schema.json +324 -0
- package/dist/assets/speedscope/import.bcbb2033.js +123 -0
- package/dist/assets/speedscope/index.html +2 -0
- package/dist/assets/speedscope/perf-vertx-stacks-01-collapsed-all.2681da68.txt +199 -0
- package/dist/assets/speedscope/release.txt +3 -0
- package/dist/assets/speedscope/reset.8c46b7a1.css +2 -0
- package/dist/assets/speedscope/source-code-pro.52b1676f.css +2 -0
- package/dist/assets/speedscope/source-code-pro.LICENSE.md +93 -0
- package/dist/assets/speedscope/source-map.438fa06b.js +24 -0
- package/dist/assets/speedscope/speedscope.6f107512.js +193 -0
- package/dist/babel-I2RLWM7N.js +15 -0
- package/dist/bootstrap.d.ts +5 -0
- package/dist/bootstrap.js +3 -0
- package/dist/chokidar-5RWEYTNQ.js +1 -0
- package/dist/chunk-2AK44UYM.js +1 -0
- package/dist/chunk-2CIZE537.js +3 -0
- package/dist/chunk-2EAFYCCS.js +16 -0
- package/dist/chunk-2KD4LHRT.js +5 -0
- package/dist/chunk-2KGPH7YG.js +2 -0
- package/dist/chunk-2O224ZPO.js +3 -0
- package/dist/chunk-2XDUJQQN.js +12 -0
- package/dist/chunk-36ROOKQB.js +1 -0
- package/dist/chunk-3DCN3N23.js +4 -0
- package/dist/chunk-3JXPOOFV.js +836 -0
- package/dist/chunk-4QBJ5JBX.js +18 -0
- package/dist/chunk-4ZNV5YSL.js +1 -0
- package/dist/chunk-5HBIIYSK.js +1 -0
- package/dist/chunk-5L63PRJL.js +2 -0
- package/dist/chunk-5N6HNQQ5.js +8 -0
- package/dist/chunk-5SEEDOQ5.js +1 -0
- package/dist/chunk-636CTEW7.js +1 -0
- package/dist/chunk-67Z34HN5.js +5 -0
- package/dist/chunk-6BDAJ6UD.js +5 -0
- package/dist/chunk-6CXG3XLP.js +1 -0
- package/dist/chunk-6MWWJZFN.js +19 -0
- package/dist/chunk-6QDOCBD4.js +6 -0
- package/dist/chunk-6RQOEPEC.js +1 -0
- package/dist/chunk-72ZY3KTF.js +1 -0
- package/dist/chunk-742XXXGL.js +6 -0
- package/dist/chunk-773TIA5M.js +2 -0
- package/dist/chunk-7HFHL5SO.js +2 -0
- package/dist/chunk-7ISJRIPT.js +1 -0
- package/dist/chunk-7LWUHQIF.js +1 -0
- package/dist/chunk-7T6M7FAC.js +103 -0
- package/dist/chunk-7UNQOKZW.js +1 -0
- package/dist/chunk-7Y7AZRL3.js +10 -0
- package/dist/chunk-A6BMJISP.js +8 -0
- package/dist/chunk-AAK376RT.js +2 -0
- package/dist/chunk-AEUCDGTB.js +294 -0
- package/dist/chunk-AWUX36VG.js +1 -0
- package/dist/chunk-B4OMIONW.js +5 -0
- package/dist/chunk-BOAGJ6P5.js +1 -0
- package/dist/chunk-BWJIZYAG.js +1 -0
- package/dist/chunk-BZ73NV3L.js +2 -0
- package/dist/chunk-C3RUVXG2.js +6 -0
- package/dist/chunk-C4YLE3NS.js +64 -0
- package/dist/chunk-CEYIZC3M.js +2 -0
- package/dist/chunk-CIWKN4HF.js +7 -0
- package/dist/chunk-CRALWNNO.js +1 -0
- package/dist/chunk-CTNBSUVU.js +83 -0
- package/dist/chunk-CULTZLC4.js +1 -0
- package/dist/chunk-CX5CC6P5.js +1 -0
- package/dist/chunk-CX75OKZK.js +1 -0
- package/dist/chunk-DASVZTAX.js +359 -0
- package/dist/chunk-DPNZWBT5.js +1 -0
- package/dist/chunk-DX3JLOUA.js +4 -0
- package/dist/chunk-E55KS3GZ.js +1 -0
- package/dist/chunk-E5FXOLQO.js +17 -0
- package/dist/chunk-E6N4PZZR.js +7 -0
- package/dist/chunk-EB574SY6.js +6 -0
- package/dist/chunk-ET2CGROE.js +451 -0
- package/dist/chunk-EX5GVHGE.js +1 -0
- package/dist/chunk-F3NYCSXT.js +273 -0
- package/dist/chunk-F3TMLDLC.js +1 -0
- package/dist/chunk-F6X6OXXB.js +3 -0
- package/dist/chunk-FDBHQLFK.js +1 -0
- package/dist/chunk-FDYW3UQC.js +1 -0
- package/dist/chunk-FEDVVYK2.js +1 -0
- package/dist/chunk-FFSDGRAN.js +1 -0
- package/dist/chunk-FJ6F4XRV.js +28 -0
- package/dist/chunk-FKIVKNOV.js +2 -0
- package/dist/chunk-FOREMLFZ.js +1 -0
- package/dist/chunk-FUYDGK33.js +2 -0
- package/dist/chunk-FX3L344E.js +1 -0
- package/dist/chunk-G5XIGN5D.js +593 -0
- package/dist/chunk-GAYKYEIM.js +1 -0
- package/dist/chunk-GB3YC4TI.js +1 -0
- package/dist/chunk-GCN4O7HM.js +1 -0
- package/dist/chunk-GCY7LPEF.js +6 -0
- package/dist/chunk-GNBRCK7L.js +3 -0
- package/dist/chunk-GRPKF5ZB.js +1 -0
- package/dist/chunk-GRSF7456.js +1 -0
- package/dist/chunk-H2TQ4ODI.js +1 -0
- package/dist/chunk-H6XEESUN.js +4 -0
- package/dist/chunk-HB347DXT.js +2 -0
- package/dist/chunk-HFSCXTJQ.js +97 -0
- package/dist/chunk-HHN6KZXX.js +1 -0
- package/dist/chunk-HP64ZTEJ.js +6 -0
- package/dist/chunk-I5A6BPCP.js +1 -0
- package/dist/chunk-IARCMH7G.js +5 -0
- package/dist/chunk-IBI5UCJO.js +1 -0
- package/dist/chunk-IKUSLRGD.js +1 -0
- package/dist/chunk-IT4HYLTY.js +1 -0
- package/dist/chunk-IWOTLFOY.js +32 -0
- package/dist/chunk-J3JPJCWP.js +1 -0
- package/dist/chunk-J4T73EAS.js +8 -0
- package/dist/chunk-JD5P5RAJ.js +1 -0
- package/dist/chunk-JG4HH54Q.js +1 -0
- package/dist/chunk-JIYSCWCG.js +1 -0
- package/dist/chunk-JJZNUFPD.js +44 -0
- package/dist/chunk-JLGA3B7P.js +1 -0
- package/dist/chunk-JWRK5KLD.js +560 -0
- package/dist/chunk-JX7FYWPO.js +1 -0
- package/dist/chunk-K42WBNJQ.js +18 -0
- package/dist/chunk-KDU7VW3L.js +11 -0
- package/dist/chunk-KWVOJWO7.js +1 -0
- package/dist/chunk-LANUJ7LX.js +16 -0
- package/dist/chunk-LD6ZCTZ3.js +9 -0
- package/dist/chunk-LFOBYEWG.js +1 -0
- package/dist/chunk-LQ7ENG4V.js +1 -0
- package/dist/chunk-LUKQ5HLC.js +1 -0
- package/dist/chunk-M2XHIN57.js +4 -0
- package/dist/chunk-MNOQAXJW.js +3 -0
- package/dist/chunk-MPW2YJWU.js +31 -0
- package/dist/chunk-MYQUYU4U.js +2 -0
- package/dist/chunk-N65F7ET2.js +1 -0
- package/dist/chunk-N6RBRPGW.js +7 -0
- package/dist/chunk-N75VOJHO.js +15 -0
- package/dist/chunk-NBFMP5XQ.js +1 -0
- package/dist/chunk-NE3ZFSMS.js +1 -0
- package/dist/chunk-NGLMZYS7.js +278 -0
- package/dist/chunk-NHAUJWEG.js +1 -0
- package/dist/chunk-NILETICC.js +11 -0
- package/dist/chunk-NNZXKFOS.js +7 -0
- package/dist/chunk-NQK2VCDA.js +1 -0
- package/dist/chunk-NROVZETL.js +1 -0
- package/dist/chunk-NW6NUGN7.js +1 -0
- package/dist/chunk-O7DZXO3O.js +15 -0
- package/dist/chunk-OBYQSIYU.js +25 -0
- package/dist/chunk-OEG3N5PG.js +15 -0
- package/dist/chunk-OGBZTY2G.js +5 -0
- package/dist/chunk-OMHR423H.js +1 -0
- package/dist/chunk-OV6SRRXR.js +5 -0
- package/dist/chunk-OVV5YGKN.js +1 -0
- package/dist/chunk-OZL5FTT7.js +1 -0
- package/dist/chunk-OZMQ2EJB.js +1 -0
- package/dist/chunk-P2OI2P2M.js +1 -0
- package/dist/chunk-P57P7UAN.js +3 -0
- package/dist/chunk-PATTG7YZ.js +1 -0
- package/dist/chunk-PG5YNPJB.js +26 -0
- package/dist/chunk-PP4L2JJ6.js +3 -0
- package/dist/chunk-Q5JX23QU.js +1 -0
- package/dist/chunk-Q5KVMLBK.js +4 -0
- package/dist/chunk-Q5LIJGT7.js +12 -0
- package/dist/chunk-Q6ADIMJM.js +6 -0
- package/dist/chunk-Q7BOSHWX.js +7 -0
- package/dist/chunk-QERQARMC.js +1 -0
- package/dist/chunk-QOV43E26.js +1 -0
- package/dist/chunk-QTFUYKMF.js +1 -0
- package/dist/chunk-QTJCCOAG.js +20 -0
- package/dist/chunk-R6ICQT2D.js +1 -0
- package/dist/chunk-R7T3LYJL.js +3 -0
- package/dist/chunk-RJ5VF3QY.js +2 -0
- package/dist/chunk-RXQJCJDV.js +1 -0
- package/dist/chunk-S2TLBBSS.js +5 -0
- package/dist/chunk-S5FOQY35.js +1 -0
- package/dist/chunk-SYLHT42O.js +1 -0
- package/dist/chunk-T4AA6TSF.js +15 -0
- package/dist/chunk-T4QWK5GG.js +10 -0
- package/dist/chunk-T7KHS6RF.js +1 -0
- package/dist/chunk-T7PJDT5O.js +6 -0
- package/dist/chunk-TEY4LRY7.js +1 -0
- package/dist/chunk-TFBRVLDN.js +1 -0
- package/dist/chunk-TOLPNBZK.js +4 -0
- package/dist/chunk-TR4OWSEX.js +77 -0
- package/dist/chunk-TU47HMTL.js +1 -0
- package/dist/chunk-TUVDJ3PG.js +2 -0
- package/dist/chunk-TYMYIUIQ.js +1 -0
- package/dist/chunk-U2DWBZK2.js +1 -0
- package/dist/chunk-U53OLUOE.js +3 -0
- package/dist/chunk-UAETNFN4.js +1 -0
- package/dist/chunk-UAFEFKAQ.js +5 -0
- package/dist/chunk-ULRJDKWQ.js +1 -0
- package/dist/chunk-UOHNRH6E.js +7 -0
- package/dist/chunk-UZARYOLN.js +1 -0
- package/dist/chunk-VASGXHYA.js +1 -0
- package/dist/chunk-VD4XJ6BX.js +1 -0
- package/dist/chunk-VE35YELD.js +1 -0
- package/dist/chunk-VFM2KQRM.js +19 -0
- package/dist/chunk-VJEKDBGZ.js +1 -0
- package/dist/chunk-VKWPEFWQ.js +1 -0
- package/dist/chunk-VSDRNYA5.js +1 -0
- package/dist/chunk-VUMUCNI7.js +1 -0
- package/dist/chunk-VVZSYHDG.js +4 -0
- package/dist/chunk-VXEYO3ZP.js +1 -0
- package/dist/chunk-VYDSOAV4.js +9 -0
- package/dist/chunk-W6ST525S.js +99 -0
- package/dist/chunk-WBYAGS6B.js +6 -0
- package/dist/chunk-WGAFCKGD.js +1 -0
- package/dist/chunk-WYBTC356.js +1 -0
- package/dist/chunk-XF2KTEID.js +1 -0
- package/dist/chunk-XH5YGJQR.js +1 -0
- package/dist/chunk-XHKWITLA.js +1705 -0
- package/dist/chunk-XOCB4KNX.js +2 -0
- package/dist/chunk-XUUAKGEX.js +1 -0
- package/dist/chunk-XUYVJEZG.js +3 -0
- package/dist/chunk-Y47C3LSX.js +3 -0
- package/dist/chunk-Y5PRPHLQ.js +6 -0
- package/dist/chunk-YD2VQEN5.js +1 -0
- package/dist/chunk-YESGYUEL.js +1 -0
- package/dist/chunk-YEVGLC5X.js +1 -0
- package/dist/chunk-YFINLODF.js +375 -0
- package/dist/chunk-YKL3BLWC.js +46 -0
- package/dist/chunk-YLQ3LNNY.js +99 -0
- package/dist/chunk-YLXPYXQP.js +1 -0
- package/dist/chunk-YNDIZCD2.js +7 -0
- package/dist/chunk-YPWHD3NL.js +1 -0
- package/dist/chunk-YSAFHVV6.js +8 -0
- package/dist/chunk-YY6TFARF.js +1 -0
- package/dist/chunk-YZMY2CTU.js +10 -0
- package/dist/chunk-Z4AFEO36.js +1 -0
- package/dist/chunk-Z5WPP6ME.js +1 -0
- package/dist/chunk-Z65E4UAP.js +1 -0
- package/dist/chunk-ZDF5N422.js +1 -0
- package/dist/chunk-ZDRIQC7O.js +1 -0
- package/dist/chunk-ZH44BDUR.js +5 -0
- package/dist/chunk-ZI7LK3LW.js +11 -0
- package/dist/chunk-ZL5LU4U2.js +32 -0
- package/dist/chunk-ZYX7UHCQ.js +1 -0
- package/dist/chunk-ZZRFG6ME.js +317 -0
- package/dist/cli/commands/app/app-logs/sources.js +1 -0
- package/dist/cli/commands/app/build.js +1 -0
- package/dist/cli/commands/app/bulk/cancel.js +1 -0
- package/dist/cli/commands/app/bulk/execute.js +1 -0
- package/dist/cli/commands/app/bulk/status.js +1 -0
- package/dist/cli/commands/app/config/link.js +1 -0
- package/dist/cli/commands/app/config/pull.js +1 -0
- package/dist/cli/commands/app/config/use.js +1 -0
- package/dist/cli/commands/app/config/validate.js +1 -0
- package/dist/cli/commands/app/demo/watcher.js +1 -0
- package/dist/cli/commands/app/deploy.js +1 -0
- package/dist/cli/commands/app/dev/clean.js +1 -0
- package/dist/cli/commands/app/dev.js +1 -0
- package/dist/cli/commands/app/doctor/instructions.js +1 -0
- package/dist/cli/commands/app/doctor.js +1 -0
- package/dist/cli/commands/app/env/pull.js +1 -0
- package/dist/cli/commands/app/env/show.js +1 -0
- package/dist/cli/commands/app/execute.js +1 -0
- package/dist/cli/commands/app/function/build.js +1 -0
- package/dist/cli/commands/app/function/info.js +1 -0
- package/dist/cli/commands/app/function/replay.js +1 -0
- package/dist/cli/commands/app/function/run.js +1 -0
- package/dist/cli/commands/app/function/schema.js +1 -0
- package/dist/cli/commands/app/function/typegen.js +1 -0
- package/dist/cli/commands/app/generate/extension.js +1 -0
- package/dist/cli/commands/app/graphiql.js +1 -0
- package/dist/cli/commands/app/import-custom-data-definitions.js +1 -0
- package/dist/cli/commands/app/import-extensions.js +1 -0
- package/dist/cli/commands/app/info.js +1 -0
- package/dist/cli/commands/app/init.js +1 -0
- package/dist/cli/commands/app/logs.js +1 -0
- package/dist/cli/commands/app/release.js +1 -0
- package/dist/cli/commands/app/subscription-migrations/cancel.js +1 -0
- package/dist/cli/commands/app/subscription-migrations/list.js +1 -0
- package/dist/cli/commands/app/subscription-migrations/schedule.js +1 -0
- package/dist/cli/commands/app/subscription-migrations/status.js +1 -0
- package/dist/cli/commands/app/subscription-migrations/unschedule.js +1 -0
- package/dist/cli/commands/app/versions/list.js +1 -0
- package/dist/cli/commands/app/webhook/trigger.js +1 -0
- package/dist/cli/commands/auth/login.d.ts +8 -0
- package/dist/cli/commands/auth/login.js +1 -0
- package/dist/cli/commands/auth/logout.d.ts +5 -0
- package/dist/cli/commands/auth/logout.js +1 -0
- package/dist/cli/commands/cache/clear.d.ts +6 -0
- package/dist/cli/commands/cache/clear.js +1 -0
- package/dist/cli/commands/config/autoupgrade/constants.d.ts +4 -0
- package/dist/cli/commands/config/autoupgrade/constants.js +1 -0
- package/dist/cli/commands/config/autoupgrade/off.d.ts +7 -0
- package/dist/cli/commands/config/autoupgrade/off.js +1 -0
- package/dist/cli/commands/config/autoupgrade/on.d.ts +7 -0
- package/dist/cli/commands/config/autoupgrade/on.js +1 -0
- package/dist/cli/commands/config/autoupgrade/status.d.ts +7 -0
- package/dist/cli/commands/config/autoupgrade/status.js +1 -0
- package/dist/cli/commands/debug/command-flags.d.ts +9 -0
- package/dist/cli/commands/debug/command-flags.js +1 -0
- package/dist/cli/commands/doc/fetch.d.ts +12 -0
- package/dist/cli/commands/doc/fetch.js +1 -0
- package/dist/cli/commands/doc/search.d.ts +13 -0
- package/dist/cli/commands/doc/search.js +1 -0
- package/dist/cli/commands/docs/generate.d.ts +21 -0
- package/dist/cli/commands/docs/generate.js +1 -0
- package/dist/cli/commands/doctor-release/doctor-release.d.ts +6 -0
- package/dist/cli/commands/doctor-release/doctor-release.js +1 -0
- package/dist/cli/commands/doctor-release/theme/index.d.ts +14 -0
- package/dist/cli/commands/doctor-release/theme/index.js +1 -0
- package/dist/cli/commands/help.d.ts +13 -0
- package/dist/cli/commands/help.js +1 -0
- package/dist/cli/commands/kitchen-sink/async.d.ts +11 -0
- package/dist/cli/commands/kitchen-sink/async.js +1 -0
- package/dist/cli/commands/kitchen-sink/index.d.ts +12 -0
- package/dist/cli/commands/kitchen-sink/index.js +1 -0
- package/dist/cli/commands/kitchen-sink/prompts.d.ts +11 -0
- package/dist/cli/commands/kitchen-sink/prompts.js +1 -0
- package/dist/cli/commands/kitchen-sink/static.d.ts +11 -0
- package/dist/cli/commands/kitchen-sink/static.js +1 -0
- package/dist/cli/commands/notifications/generate.d.ts +6 -0
- package/dist/cli/commands/notifications/generate.js +1 -0
- package/dist/cli/commands/notifications/list.d.ts +9 -0
- package/dist/cli/commands/notifications/list.js +1 -0
- package/dist/cli/commands/organization/list.js +1 -0
- package/dist/cli/commands/search.d.ts +14 -0
- package/dist/cli/commands/search.js +1 -0
- package/dist/cli/commands/send-analytics.d.ts +5 -0
- package/dist/cli/commands/send-analytics.js +1 -0
- package/dist/cli/commands/theme/check.js +1 -0
- package/dist/cli/commands/theme/console.js +1 -0
- package/dist/cli/commands/theme/delete.js +1 -0
- package/dist/cli/commands/theme/dev.js +1 -0
- package/dist/cli/commands/theme/duplicate.js +1 -0
- package/dist/cli/commands/theme/info.js +1 -0
- package/dist/cli/commands/theme/init.js +1 -0
- package/dist/cli/commands/theme/language-server.js +1 -0
- package/dist/cli/commands/theme/list.js +1 -0
- package/dist/cli/commands/theme/metafields/pull.js +1 -0
- package/dist/cli/commands/theme/open.js +1 -0
- package/dist/cli/commands/theme/package.js +1 -0
- package/dist/cli/commands/theme/preview.js +1 -0
- package/dist/cli/commands/theme/profile.js +1 -0
- package/dist/cli/commands/theme/publish.js +1 -0
- package/dist/cli/commands/theme/pull.js +1 -0
- package/dist/cli/commands/theme/push.js +1 -0
- package/dist/cli/commands/theme/rename.js +1 -0
- package/dist/cli/commands/theme/share.js +1 -0
- package/dist/cli/commands/upgrade.d.ts +7 -0
- package/dist/cli/commands/upgrade.js +1 -0
- package/dist/cli/commands/version.d.ts +5 -0
- package/dist/cli/commands/version.js +1 -0
- package/dist/cli/help.d.ts +38 -0
- package/dist/cli/help.js +2 -0
- package/dist/cli/services/commands/doc/fetch.d.ts +1 -0
- package/dist/cli/services/commands/doc/fetch.js +45 -0
- package/dist/cli/services/commands/doc/search.d.ts +1 -0
- package/dist/cli/services/commands/doc/search.js +47 -0
- package/dist/cli/services/commands/notifications.d.ts +2 -0
- package/dist/cli/services/commands/notifications.js +106 -0
- package/dist/cli/services/commands/search.d.ts +1 -0
- package/dist/cli/services/commands/search.js +7 -0
- package/dist/cli/services/commands/version.d.ts +1 -0
- package/dist/cli/services/commands/version.js +6 -0
- package/dist/cli/services/doctor-release/context.d.ts +16 -0
- package/dist/cli/services/doctor-release/context.js +11 -0
- package/dist/cli/services/doctor-release/theme/runner.d.ts +7 -0
- package/dist/cli/services/doctor-release/theme/runner.js +37 -0
- package/dist/cli/services/doctor-release/theme/tests/init.d.ts +11 -0
- package/dist/cli/services/doctor-release/theme/tests/init.js +34 -0
- package/dist/cli/services/doctor-release/theme/tests/push.d.ts +10 -0
- package/dist/cli/services/doctor-release/theme/tests/push.js +44 -0
- package/dist/cli/services/kitchen-sink/async.d.ts +1 -0
- package/dist/cli/services/kitchen-sink/async.js +65 -0
- package/dist/cli/services/kitchen-sink/prompts.d.ts +1 -0
- package/dist/cli/services/kitchen-sink/prompts.js +168 -0
- package/dist/cli/services/kitchen-sink/static.d.ts +1 -0
- package/dist/cli/services/kitchen-sink/static.js +201 -0
- package/dist/command-registry.d.ts +8 -0
- package/dist/command-registry.js +1 -0
- package/dist/conf-store-ASDCTDQ4.js +1 -0
- package/dist/configs/all.yml +280 -0
- package/dist/configs/nothing.yml +3 -0
- package/dist/configs/recommended.yml +258 -0
- package/dist/configs/theme-app-extension.yml +24 -0
- package/dist/custom-oclif-loader-BWAMUFQ4.js +1 -0
- package/dist/data/app_block_entry.json +13 -0
- package/dist/data/default_setting_values.json +24 -0
- package/dist/data/filters.json +6177 -0
- package/dist/data/latest.json +2 -0
- package/dist/data/local_block_entry.json +25 -0
- package/dist/data/manifest_theme.json +19 -0
- package/dist/data/manifest_theme_app_extension.json +10 -0
- package/dist/data/objects.json +20621 -0
- package/dist/data/preset.json +72 -0
- package/dist/data/preset_blocks.json +91 -0
- package/dist/data/section.json +208 -0
- package/dist/data/setting.json +1538 -0
- package/dist/data/settings.json +10 -0
- package/dist/data/shopify_system_translations.json +2766 -0
- package/dist/data/tags.json +1276 -0
- package/dist/data/targetted_block_entry.json +15 -0
- package/dist/data/theme_block.json +91 -0
- package/dist/data/theme_block_entry.json +14 -0
- package/dist/data/theme_settings.json +83 -0
- package/dist/data/translations.json +63 -0
- package/dist/deprecations-VBQV7Q4O.js +1 -0
- package/dist/devtools-37DE4MUR.js +1 -0
- package/dist/devtools-WAWU5KQL.js +1 -0
- package/dist/dist-FZLOAKU7.js +1 -0
- package/dist/dist-HTY6UHG5.js +1 -0
- package/dist/environments-HSTNEQRG.js +1 -0
- package/dist/error-2LZYKRMA.js +1 -0
- package/dist/error-handler-PIGEJ7BT.js +1 -0
- package/dist/estree-JV5M77BA.js +44 -0
- package/dist/flow-N4JYPYMQ.js +20 -0
- package/dist/fs-BJHNJDDK.js +1 -0
- package/dist/glimmer-JEV3BXHR.js +37 -0
- package/dist/graphql-DTF6MHYF.js +28 -0
- package/dist/hooks/did-you-mean.d.ts +1 -0
- package/dist/hooks/did-you-mean.js +1 -0
- package/dist/hooks/hydrogen-init.d.ts +7 -0
- package/dist/hooks/hydrogen-init.js +1 -0
- package/dist/hooks/plugin-plugins.d.ts +1 -0
- package/dist/hooks/plugin-plugins.js +1 -0
- package/dist/hooks/postrun.d.ts +1 -0
- package/dist/hooks/postrun.js +1 -0
- package/dist/hooks/prerun.d.ts +1 -0
- package/dist/hooks/prerun.js +2 -0
- package/dist/hooks/public-metadata.d.ts +1 -0
- package/dist/hooks/public-metadata.js +1 -0
- package/dist/hooks/sensitive-metadata.d.ts +1 -0
- package/dist/hooks/sensitive-metadata.js +1 -0
- package/dist/hooks/tunnel-provider.d.ts +1 -0
- package/dist/hooks/tunnel-provider.js +1 -0
- package/dist/hooks/tunnel-start.d.ts +1 -0
- package/dist/hooks/tunnel-start.js +1 -0
- package/dist/html-LVOJ3RQS.js +25 -0
- package/dist/http-proxy-node16-A6AKKRQH.js +38 -0
- package/dist/index.d.ts +13 -0
- package/dist/index.js +120 -0
- package/dist/is-global-6SCOAJVG.js +1 -0
- package/dist/latest-version-LDWU5F7A.js +49 -0
- package/dist/lib-2BR2WN7L.js +1 -0
- package/dist/lib-M72BVWQ3.js +1 -0
- package/dist/lib-O5EZ4NVT.js +1 -0
- package/dist/lib-P3APEIHY.js +1 -0
- package/dist/local-PZWPRFU7.js +1 -0
- package/dist/markdown-J6CE6POI.js +62 -0
- package/dist/meriyah-PNQQZQYI.js +5 -0
- package/dist/metadata-VVBHB3HL.js +1 -0
- package/dist/morph-BMYYMQNX.js +30489 -0
- package/dist/multipart-parser-5NSSTW27.js +2 -0
- package/dist/node-package-manager-ETYQN7OM.js +1 -0
- package/dist/notifications-system-652OG5KL.js +1 -0
- package/dist/npa-A4YSCQ5Q.js +1 -0
- package/dist/open-KLSGXBIW.js +1 -0
- package/dist/os-7D6NT4O3.js +1 -0
- package/dist/out-53ABAVL7.js +1 -0
- package/dist/output-74VDGYJD.js +1 -0
- package/dist/path-MBXP7ZIC.js +1 -0
- package/dist/postcss-Q36SHOML.js +61 -0
- package/dist/prettier-EGVCP5CY.js +1 -0
- package/dist/source-map-E7FCCJL7.js +1 -0
- package/dist/system-P5QIJALL.js +1 -0
- package/dist/templates/ui-extensions/html/error.html.liquid +41 -0
- package/dist/templates/ui-extensions/html/post_purchase/index.html.liquid +44 -0
- package/dist/templates/ui-extensions/html/post_purchase/tunnel-error.html.liquid +41 -0
- package/dist/templates/ui-extensions/html/tunnel-error.html.liquid +55 -0
- package/dist/toml_patch_bg.wasm +0 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/dist/typescript-5R4Y7PXE.js +1 -0
- package/dist/typescript-WYPDGPSV.js +21 -0
- package/dist/ui-H5I5YVKV.js +1 -0
- package/dist/upgrade-34HSYBXI.js +1 -0
- package/dist/vendor/esbuild-ohos/lib/main.js +2538 -0
- package/dist/vendor/esbuild-ohos/package.json +7 -0
- package/dist/version-EKXEAF6Q.js +1 -0
- package/dist/version-J2PYO6M5.js +1 -0
- package/dist/workerd-X4TGHEG3.js +18 -0
- package/dist/yaml-6KWCJ64X.js +159 -0
- package/dist/yoga.wasm +0 -0
- package/oclif.manifest.json +10100 -0
- package/package.json +153 -0
|
@@ -0,0 +1,168 @@
|
|
|
1
|
+
import { renderAutocompletePrompt, renderConfirmationPrompt, renderSelectPrompt, renderTextPrompt, renderDangerousConfirmationPrompt, } from '@shopify/cli-kit/node/ui';
|
|
2
|
+
import figures from '@shopify/cli-kit/node/figures';
|
|
3
|
+
export async function prompts() {
|
|
4
|
+
// renderSelectPrompt
|
|
5
|
+
await renderSelectPrompt({
|
|
6
|
+
message: 'Associate your project with the org Castile Ventures?',
|
|
7
|
+
choices: [
|
|
8
|
+
{ label: 'first', value: 'first', disabled: true },
|
|
9
|
+
{ label: 'second', value: 'second' },
|
|
10
|
+
{ label: 'third (limit reached)', value: 'third', disabled: true },
|
|
11
|
+
{ label: 'fourth (limit reached)', value: 'fourth', disabled: true },
|
|
12
|
+
{ label: 'fifth', value: 'fifth', group: 'Automations', disabled: true },
|
|
13
|
+
{ label: 'sixth', value: 'sixth', group: 'Automations' },
|
|
14
|
+
{ label: 'seventh', value: 'seventh' },
|
|
15
|
+
{ label: 'eighth (limit reached)', value: 'eighth', group: 'Merchant Admin', disabled: true },
|
|
16
|
+
{ label: 'ninth', value: 'ninth', group: 'Merchant Admin' },
|
|
17
|
+
{ label: 'tenth', value: 'tenth' },
|
|
18
|
+
],
|
|
19
|
+
infoTable: [
|
|
20
|
+
{
|
|
21
|
+
header: 'add',
|
|
22
|
+
items: ['new-ext'],
|
|
23
|
+
bullet: '+',
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
header: 'remove',
|
|
27
|
+
items: ['integrated-demand-ext', 'order-discount'],
|
|
28
|
+
bullet: '-',
|
|
29
|
+
},
|
|
30
|
+
],
|
|
31
|
+
});
|
|
32
|
+
// renderTextPrompt
|
|
33
|
+
await renderTextPrompt({
|
|
34
|
+
message: 'App project name (can be changed later)',
|
|
35
|
+
defaultValue: 'expansive commerce app',
|
|
36
|
+
validate: (value) => {
|
|
37
|
+
if (value.includes('shopify'))
|
|
38
|
+
return 'Can\'t include "shopify" in the name';
|
|
39
|
+
},
|
|
40
|
+
});
|
|
41
|
+
// renderAutocompletePrompt
|
|
42
|
+
const database = [
|
|
43
|
+
{ label: 'first', value: 'first' },
|
|
44
|
+
{ label: 'second', value: 'second' },
|
|
45
|
+
{ label: 'third', value: 'third' },
|
|
46
|
+
{ label: 'fourth', value: 'fourth' },
|
|
47
|
+
{ label: 'fifth', value: 'fifth' },
|
|
48
|
+
{ label: 'sixth', value: 'sixth' },
|
|
49
|
+
{ label: 'seventh', value: 'seventh' },
|
|
50
|
+
{ label: 'eighth', value: 'eighth' },
|
|
51
|
+
{ label: 'ninth', value: 'ninth' },
|
|
52
|
+
{ label: 'tenth', value: 'tenth' },
|
|
53
|
+
{ label: 'eleventh', value: 'eleventh' },
|
|
54
|
+
{ label: 'twelfth', value: 'twelfth' },
|
|
55
|
+
{ label: 'thirteenth', value: 'thirteenth' },
|
|
56
|
+
{ label: 'fourteenth', value: 'fourteenth' },
|
|
57
|
+
{ label: 'fifteenth', value: 'fifteenth' },
|
|
58
|
+
{ label: 'sixteenth', value: 'sixteenth' },
|
|
59
|
+
{ label: 'seventeenth', value: 'seventeenth' },
|
|
60
|
+
{ label: 'eighteenth', value: 'eighteenth' },
|
|
61
|
+
{ label: 'nineteenth', value: 'nineteenth' },
|
|
62
|
+
{ label: 'twentieth', value: 'twentieth' },
|
|
63
|
+
{ label: 'twenty-first', value: 'twenty-first' },
|
|
64
|
+
{ label: 'twenty-second', value: 'twenty-second' },
|
|
65
|
+
{ label: 'twenty-third', value: 'twenty-third' },
|
|
66
|
+
{ label: 'twenty-fourth', value: 'twenty-fourth' },
|
|
67
|
+
{ label: 'twenty-fifth', value: 'twenty-fifth' },
|
|
68
|
+
{ label: 'twenty-sixth', value: 'twenty-sixth' },
|
|
69
|
+
{ label: 'twenty-seventh', value: 'twenty-seventh' },
|
|
70
|
+
{ label: 'twenty-eighth', value: 'twenty-eighth' },
|
|
71
|
+
{ label: 'twenty-ninth', value: 'twenty-ninth' },
|
|
72
|
+
{ label: 'thirtieth', value: 'thirtieth' },
|
|
73
|
+
{ label: 'thirty-first', value: 'thirty-first' },
|
|
74
|
+
{ label: 'thirty-second', value: 'thirty-second' },
|
|
75
|
+
{ label: 'thirty-third', value: 'thirty-third' },
|
|
76
|
+
{ label: 'thirty-fourth', value: 'thirty-fourth' },
|
|
77
|
+
{ label: 'thirty-fifth', value: 'thirty-fifth' },
|
|
78
|
+
{ label: 'thirty-sixth', value: 'thirty-sixth' },
|
|
79
|
+
{ label: 'thirty-seventh', value: 'thirty-seventh' },
|
|
80
|
+
{ label: 'thirty-eighth', value: 'thirty-eighth' },
|
|
81
|
+
{ label: 'thirty-ninth', value: 'thirty-ninth' },
|
|
82
|
+
{ label: 'fortieth', value: 'fortieth' },
|
|
83
|
+
{ label: 'forty-first', value: 'forty-first' },
|
|
84
|
+
{ label: 'forty-second', value: 'forty-second' },
|
|
85
|
+
{ label: 'forty-third', value: 'forty-third' },
|
|
86
|
+
{ label: 'forty-fourth', value: 'forty-fourth' },
|
|
87
|
+
{ label: 'forty-fifth', value: 'forty-fifth' },
|
|
88
|
+
{ label: 'forty-sixth', value: 'forty-sixth' },
|
|
89
|
+
{ label: 'forty-seventh', value: 'forty-seventh' },
|
|
90
|
+
{ label: 'forty-eighth', value: 'forty-eighth' },
|
|
91
|
+
{ label: 'forty-ninth', value: 'forty-ninth' },
|
|
92
|
+
{ label: 'fiftieth', value: 'fiftieth' },
|
|
93
|
+
];
|
|
94
|
+
await renderAutocompletePrompt({
|
|
95
|
+
message: 'Template',
|
|
96
|
+
choices: database,
|
|
97
|
+
search(term) {
|
|
98
|
+
return Promise.resolve({ data: database.filter((item) => item.label.includes(term)) });
|
|
99
|
+
},
|
|
100
|
+
});
|
|
101
|
+
const themes = [
|
|
102
|
+
[
|
|
103
|
+
'first theme',
|
|
104
|
+
{
|
|
105
|
+
subdued: `(#1)`,
|
|
106
|
+
},
|
|
107
|
+
],
|
|
108
|
+
[
|
|
109
|
+
'second theme',
|
|
110
|
+
{
|
|
111
|
+
subdued: `(#2)`,
|
|
112
|
+
},
|
|
113
|
+
],
|
|
114
|
+
];
|
|
115
|
+
// renderConfirmationPrompt
|
|
116
|
+
const options = {
|
|
117
|
+
message: `Add the following themes to the store?`,
|
|
118
|
+
infoTable: { '': themes },
|
|
119
|
+
confirmationMessage: 'Yes, add them',
|
|
120
|
+
cancellationMessage: 'Cancel',
|
|
121
|
+
};
|
|
122
|
+
await renderConfirmationPrompt(options);
|
|
123
|
+
const infoMessage = {
|
|
124
|
+
title: {
|
|
125
|
+
color: 'red',
|
|
126
|
+
text: `${figures.warning} This can't be undone.`,
|
|
127
|
+
},
|
|
128
|
+
body: 'The action you are executing should be confirmed to proceed.',
|
|
129
|
+
};
|
|
130
|
+
const dangerousPromptOptions = {
|
|
131
|
+
message: `Delete the following themes from the store?`,
|
|
132
|
+
infoTable: { '': themes },
|
|
133
|
+
infoMessage,
|
|
134
|
+
confirmationMessage: 'Yes, delete them',
|
|
135
|
+
cancellationMessage: 'Cancel',
|
|
136
|
+
defaultValue: false,
|
|
137
|
+
};
|
|
138
|
+
await renderConfirmationPrompt(dangerousPromptOptions);
|
|
139
|
+
await renderConfirmationPrompt({
|
|
140
|
+
message: ['Make the following changes to your', { filePath: '.env' }, 'file?'],
|
|
141
|
+
defaultValue: true,
|
|
142
|
+
confirmationMessage: 'Yes, confirm changes',
|
|
143
|
+
cancellationMessage: 'No, make changes later',
|
|
144
|
+
});
|
|
145
|
+
// renderTextPrompt with dangerous confirmation
|
|
146
|
+
await renderDangerousConfirmationPrompt({
|
|
147
|
+
message: 'Release this version of Mega App?',
|
|
148
|
+
infoTable: [
|
|
149
|
+
{
|
|
150
|
+
header: 'Includes',
|
|
151
|
+
items: [
|
|
152
|
+
'My subscription extension',
|
|
153
|
+
'Order discount function',
|
|
154
|
+
'Subscription cancelled trigger',
|
|
155
|
+
'Add subscription action',
|
|
156
|
+
],
|
|
157
|
+
bullet: '+',
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
header: 'Removes',
|
|
161
|
+
items: ['product-discount-function', 'product-subscription-extension'],
|
|
162
|
+
bullet: '-',
|
|
163
|
+
},
|
|
164
|
+
],
|
|
165
|
+
confirmation: 'Mega App',
|
|
166
|
+
});
|
|
167
|
+
}
|
|
168
|
+
//# sourceMappingURL=prompts.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function staticService(): Promise<void>;
|
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
import { AbortError, BugError } from '@shopify/cli-kit/node/error';
|
|
2
|
+
import { renderError, renderFatalError, renderInfo, renderSuccess, renderTable, renderWarning, } from '@shopify/cli-kit/node/ui';
|
|
3
|
+
export async function staticService() {
|
|
4
|
+
// Banners
|
|
5
|
+
renderInfo({
|
|
6
|
+
headline: 'CLI update available.',
|
|
7
|
+
body: ['Run', { command: 'npm run shopify upgrade' }, { char: '.' }],
|
|
8
|
+
});
|
|
9
|
+
renderInfo({
|
|
10
|
+
headline: [
|
|
11
|
+
'To connect this project to your shopify store cd into:',
|
|
12
|
+
{ filePath: '/my-store/hydrogen.config.js' },
|
|
13
|
+
{ char: '.' },
|
|
14
|
+
],
|
|
15
|
+
body: [
|
|
16
|
+
'You can also try the following steps:',
|
|
17
|
+
{
|
|
18
|
+
list: {
|
|
19
|
+
items: [
|
|
20
|
+
['Run', { command: 'shopify project connect' }],
|
|
21
|
+
['Run', { command: 'hydrogen start' }],
|
|
22
|
+
],
|
|
23
|
+
},
|
|
24
|
+
},
|
|
25
|
+
],
|
|
26
|
+
});
|
|
27
|
+
renderInfo({
|
|
28
|
+
headline: 'About your app.',
|
|
29
|
+
customSections: [
|
|
30
|
+
{
|
|
31
|
+
body: {
|
|
32
|
+
tabularData: [
|
|
33
|
+
['Configuration file', { filePath: 'shopify.app.scalable-transaction-app.toml' }],
|
|
34
|
+
['App name', { userInput: 'scalable-transaction-app' }],
|
|
35
|
+
['Access scopes', 'read_products,write_products'],
|
|
36
|
+
],
|
|
37
|
+
firstColumnSubdued: true,
|
|
38
|
+
},
|
|
39
|
+
},
|
|
40
|
+
],
|
|
41
|
+
});
|
|
42
|
+
renderInfo({
|
|
43
|
+
headline: [{ userInput: 'my-app' }, 'initialized and ready to build.'],
|
|
44
|
+
nextSteps: [
|
|
45
|
+
[
|
|
46
|
+
'Run',
|
|
47
|
+
{
|
|
48
|
+
command: 'cd verification-app',
|
|
49
|
+
},
|
|
50
|
+
],
|
|
51
|
+
[
|
|
52
|
+
'To preview your project, run',
|
|
53
|
+
{
|
|
54
|
+
command: 'npm app dev',
|
|
55
|
+
},
|
|
56
|
+
],
|
|
57
|
+
[
|
|
58
|
+
'To add extensions, run',
|
|
59
|
+
{
|
|
60
|
+
command: 'npm generate extension',
|
|
61
|
+
},
|
|
62
|
+
],
|
|
63
|
+
],
|
|
64
|
+
reference: [
|
|
65
|
+
[
|
|
66
|
+
'Run',
|
|
67
|
+
{
|
|
68
|
+
command: 'npm shopify help',
|
|
69
|
+
},
|
|
70
|
+
],
|
|
71
|
+
{
|
|
72
|
+
link: {
|
|
73
|
+
label: 'Dev docs',
|
|
74
|
+
url: 'https://shopify.dev',
|
|
75
|
+
},
|
|
76
|
+
},
|
|
77
|
+
],
|
|
78
|
+
customSections: [
|
|
79
|
+
{
|
|
80
|
+
title: 'Custom section',
|
|
81
|
+
body: {
|
|
82
|
+
list: {
|
|
83
|
+
items: [
|
|
84
|
+
{ link: { label: 'Item 1', url: 'https://shopify.com' } },
|
|
85
|
+
'Item 2',
|
|
86
|
+
{ link: { url: 'https://community.shopify.com/' } },
|
|
87
|
+
],
|
|
88
|
+
},
|
|
89
|
+
},
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
title: 'Custom section 2',
|
|
93
|
+
body: {
|
|
94
|
+
list: {
|
|
95
|
+
items: ['Item 1', 'Item 2', 'Item 3'],
|
|
96
|
+
},
|
|
97
|
+
},
|
|
98
|
+
},
|
|
99
|
+
],
|
|
100
|
+
});
|
|
101
|
+
renderSuccess({
|
|
102
|
+
headline: 'CLI updated.',
|
|
103
|
+
body: 'You are now running version 3.47.',
|
|
104
|
+
});
|
|
105
|
+
renderSuccess({
|
|
106
|
+
headline: 'Deployment successful.',
|
|
107
|
+
body: 'Your extensions have been uploaded to your Shopify Partners Dashboard.',
|
|
108
|
+
nextSteps: [
|
|
109
|
+
{
|
|
110
|
+
link: {
|
|
111
|
+
label: 'See your deployment and set it live',
|
|
112
|
+
url: 'https://partners.shopify.com/1797046/apps/4523695/deployments',
|
|
113
|
+
},
|
|
114
|
+
},
|
|
115
|
+
],
|
|
116
|
+
});
|
|
117
|
+
renderWarning({
|
|
118
|
+
headline: 'You have reached your limit of checkout extensions for this app.',
|
|
119
|
+
body: 'You can free up space for a new one by deleting an existing one.',
|
|
120
|
+
});
|
|
121
|
+
renderWarning({
|
|
122
|
+
headline: 'Required access scope update.',
|
|
123
|
+
body: 'The deadline for re-selecting your app scopes is May 1, 2022.',
|
|
124
|
+
reference: [
|
|
125
|
+
{
|
|
126
|
+
link: {
|
|
127
|
+
label: 'Dev docs',
|
|
128
|
+
url: 'https://shopify.dev/app/scopes',
|
|
129
|
+
},
|
|
130
|
+
},
|
|
131
|
+
],
|
|
132
|
+
});
|
|
133
|
+
// Stack trace
|
|
134
|
+
const somethingWentWrong = new BugError('Something went wrong.');
|
|
135
|
+
somethingWentWrong.stack = `
|
|
136
|
+
Error: Unexpected error
|
|
137
|
+
at Module._compile (internal/modules/cjs/loader.js:1137:30)
|
|
138
|
+
at Object.Module._extensions..js (internal/modules/cjs/loader.js:1157:10)
|
|
139
|
+
at Module.load (internal/modules/cjs/loader.js:985:32)
|
|
140
|
+
at Function.Module._load (internal/modules/cjs/loader.js:878:14)
|
|
141
|
+
`;
|
|
142
|
+
renderFatalError(somethingWentWrong);
|
|
143
|
+
// Next Steps
|
|
144
|
+
const nextSteps = [
|
|
145
|
+
[
|
|
146
|
+
'Have you',
|
|
147
|
+
{
|
|
148
|
+
link: {
|
|
149
|
+
label: 'created a Shopify Partners organization',
|
|
150
|
+
url: 'https://partners.shopify.com/signup',
|
|
151
|
+
},
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
char: '?',
|
|
155
|
+
},
|
|
156
|
+
],
|
|
157
|
+
'Have you confirmed your accounts from the emails you received?',
|
|
158
|
+
[
|
|
159
|
+
'Need to connect to a different App or organization? Run the command again with',
|
|
160
|
+
{
|
|
161
|
+
command: '--reset',
|
|
162
|
+
},
|
|
163
|
+
],
|
|
164
|
+
];
|
|
165
|
+
renderFatalError(new AbortError('No Organization found', undefined, nextSteps));
|
|
166
|
+
renderError({
|
|
167
|
+
headline: "Version couldn't be released.",
|
|
168
|
+
body: 'This version needs to be submitted for review and approved by Shopify before it can be released.',
|
|
169
|
+
});
|
|
170
|
+
renderTable({
|
|
171
|
+
rows: [
|
|
172
|
+
{
|
|
173
|
+
id: '1',
|
|
174
|
+
name: 'John Doe',
|
|
175
|
+
email: 'jon@doe.com',
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
id: '2',
|
|
179
|
+
name: 'Jane Doe',
|
|
180
|
+
email: 'jane@doe.com',
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
id: '3',
|
|
184
|
+
name: 'John Smith',
|
|
185
|
+
email: 'jon@smith.com',
|
|
186
|
+
},
|
|
187
|
+
],
|
|
188
|
+
columns: {
|
|
189
|
+
id: {
|
|
190
|
+
header: 'ID',
|
|
191
|
+
color: 'red',
|
|
192
|
+
},
|
|
193
|
+
name: {
|
|
194
|
+
header: 'Name',
|
|
195
|
+
color: 'dim',
|
|
196
|
+
},
|
|
197
|
+
email: {},
|
|
198
|
+
},
|
|
199
|
+
});
|
|
200
|
+
}
|
|
201
|
+
//# sourceMappingURL=static.js.map
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Load a command class by its ID.
|
|
3
|
+
*
|
|
4
|
+
* Looks up the command in the oclif manifest to find the owning package,
|
|
5
|
+
* derives the file path from the command ID, and imports only that file.
|
|
6
|
+
* Falls back to importing the full package for external plugins.
|
|
7
|
+
*/
|
|
8
|
+
export declare function loadCommand(id: string): Promise<any | undefined>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{a}from"./chunk-XUUAKGEX.js";import"./chunk-773TIA5M.js";import"./chunk-VKWPEFWQ.js";export{a as loadCommand};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{f as a,g as b,h as c,i as d,j as e,k as f,l as g,m as h,n as i,o as j,p as k,q as l,r as m,s as n,t as o,u as p,v as q,w as r}from"./chunk-YZMY2CTU.js";import"./chunk-RJ5VF3QY.js";import"./chunk-BWJIZYAG.js";import"./chunk-CTNBSUVU.js";import"./chunk-TR4OWSEX.js";import"./chunk-2KD4LHRT.js";import"./chunk-I5A6BPCP.js";import"./chunk-CX5CC6P5.js";import"./chunk-ET2CGROE.js";import"./chunk-TOLPNBZK.js";import"./chunk-VFM2KQRM.js";import"./chunk-B4OMIONW.js";import"./chunk-BOAGJ6P5.js";import"./chunk-LD6ZCTZ3.js";import"./chunk-JJZNUFPD.js";import"./chunk-R6ICQT2D.js";import"./chunk-DPNZWBT5.js";import"./chunk-JD5P5RAJ.js";import"./chunk-773TIA5M.js";import"./chunk-CRALWNNO.js";import"./chunk-VKWPEFWQ.js";export{j as cacheClear,i as cacheRetrieve,g as cacheRetrieveOrRepopulate,h as cacheStore,n as getAutoUpgradeEnabled,q as getCachedPartnerAccountStatus,p as getConfigStoreForPartnerStatus,d as getCurrentSessionId,a as getSessions,f as removeCurrentSessionId,c as removeSessions,l as runAtMinimumInterval,m as runWithRateLimit,o as setAutoUpgradeEnabled,r as setCachedPartnerAccountStatus,e as setCurrentSessionId,b as setSessions,k as timeIntervalToMilliseconds};
|
|
@@ -0,0 +1,280 @@
|
|
|
1
|
+
# WARNING:
|
|
2
|
+
# This file was generated automatically by running "scripts/generate-factory-configs"
|
|
3
|
+
# Do not modify manually. Your changes will be overwritten.
|
|
4
|
+
ignore:
|
|
5
|
+
- node_modules/**
|
|
6
|
+
AppBlockMissingSchema:
|
|
7
|
+
enabled: false
|
|
8
|
+
severity: 0
|
|
9
|
+
AppBlockValidTags:
|
|
10
|
+
enabled: false
|
|
11
|
+
severity: 0
|
|
12
|
+
AssetPreload:
|
|
13
|
+
enabled: true
|
|
14
|
+
severity: 1
|
|
15
|
+
AssetSizeAppBlockCSS:
|
|
16
|
+
enabled: false
|
|
17
|
+
severity: 0
|
|
18
|
+
thresholdInBytes: 100000
|
|
19
|
+
AssetSizeAppBlockJavaScript:
|
|
20
|
+
enabled: false
|
|
21
|
+
severity: 0
|
|
22
|
+
thresholdInBytes: 10000
|
|
23
|
+
AssetSizeCSS:
|
|
24
|
+
enabled: true
|
|
25
|
+
severity: 0
|
|
26
|
+
thresholdInBytes: 100000
|
|
27
|
+
AssetSizeJavaScript:
|
|
28
|
+
enabled: true
|
|
29
|
+
severity: 0
|
|
30
|
+
thresholdInBytes: 10000
|
|
31
|
+
BlockArgumentSettingCollision:
|
|
32
|
+
enabled: true
|
|
33
|
+
severity: 1
|
|
34
|
+
BlockIdUsage:
|
|
35
|
+
enabled: true
|
|
36
|
+
severity: 1
|
|
37
|
+
CdnPreconnect:
|
|
38
|
+
enabled: true
|
|
39
|
+
severity: 0
|
|
40
|
+
ContentForHeaderModification:
|
|
41
|
+
enabled: true
|
|
42
|
+
severity: 0
|
|
43
|
+
DeprecateBgsizes:
|
|
44
|
+
enabled: true
|
|
45
|
+
severity: 1
|
|
46
|
+
DeprecateLazysizes:
|
|
47
|
+
enabled: true
|
|
48
|
+
severity: 1
|
|
49
|
+
DeprecatedFilter:
|
|
50
|
+
enabled: true
|
|
51
|
+
severity: 1
|
|
52
|
+
DeprecatedFontsOnSectionsAndBlocks:
|
|
53
|
+
enabled: true
|
|
54
|
+
severity: 1
|
|
55
|
+
DeprecatedFontsOnSettingsData:
|
|
56
|
+
enabled: true
|
|
57
|
+
severity: 1
|
|
58
|
+
DeprecatedFontsOnSettingsSchema:
|
|
59
|
+
enabled: true
|
|
60
|
+
severity: 1
|
|
61
|
+
DeprecatedTag:
|
|
62
|
+
enabled: true
|
|
63
|
+
severity: 1
|
|
64
|
+
DuplicateBlockArguments:
|
|
65
|
+
enabled: true
|
|
66
|
+
severity: 1
|
|
67
|
+
DuplicateContentForArguments:
|
|
68
|
+
enabled: true
|
|
69
|
+
severity: 1
|
|
70
|
+
DuplicateRenderSnippetArguments:
|
|
71
|
+
enabled: true
|
|
72
|
+
severity: 1
|
|
73
|
+
EmptyBlockContent:
|
|
74
|
+
enabled: true
|
|
75
|
+
severity: 1
|
|
76
|
+
ExcessiveSettingsCount:
|
|
77
|
+
enabled: true
|
|
78
|
+
severity: 1
|
|
79
|
+
maxSettings: 40
|
|
80
|
+
HardcodedRoutes:
|
|
81
|
+
enabled: true
|
|
82
|
+
severity: 1
|
|
83
|
+
ImgWidthAndHeight:
|
|
84
|
+
enabled: true
|
|
85
|
+
severity: 0
|
|
86
|
+
JSONMissingBlock:
|
|
87
|
+
enabled: true
|
|
88
|
+
severity: 0
|
|
89
|
+
JSONMissingSection:
|
|
90
|
+
enabled: true
|
|
91
|
+
severity: 0
|
|
92
|
+
JSONSyntaxError:
|
|
93
|
+
enabled: true
|
|
94
|
+
severity: 0
|
|
95
|
+
JavascriptOncePerFile:
|
|
96
|
+
enabled: true
|
|
97
|
+
severity: 0
|
|
98
|
+
JavascriptTagInWrongFile:
|
|
99
|
+
enabled: true
|
|
100
|
+
severity: 0
|
|
101
|
+
LiquidComplexity:
|
|
102
|
+
enabled: true
|
|
103
|
+
severity: 1
|
|
104
|
+
maxComplexity: 120
|
|
105
|
+
LiquidFreeSettings:
|
|
106
|
+
enabled: true
|
|
107
|
+
severity: 1
|
|
108
|
+
LiquidHTMLSyntaxError:
|
|
109
|
+
enabled: true
|
|
110
|
+
severity: 0
|
|
111
|
+
LiquidNestingDepth:
|
|
112
|
+
enabled: true
|
|
113
|
+
severity: 1
|
|
114
|
+
maxDepth: 10
|
|
115
|
+
LiquidSyntaxError:
|
|
116
|
+
enabled: true
|
|
117
|
+
severity: 0
|
|
118
|
+
MatchingTranslations:
|
|
119
|
+
enabled: true
|
|
120
|
+
severity: 0
|
|
121
|
+
MaxFileSize:
|
|
122
|
+
enabled: true
|
|
123
|
+
severity: 0
|
|
124
|
+
MissingAsset:
|
|
125
|
+
enabled: true
|
|
126
|
+
severity: 0
|
|
127
|
+
MissingBlockArguments:
|
|
128
|
+
enabled: true
|
|
129
|
+
severity: 1
|
|
130
|
+
MissingContentForArguments:
|
|
131
|
+
enabled: true
|
|
132
|
+
severity: 1
|
|
133
|
+
MissingRenderSnippetArguments:
|
|
134
|
+
enabled: true
|
|
135
|
+
severity: 1
|
|
136
|
+
MissingTemplate:
|
|
137
|
+
enabled: true
|
|
138
|
+
severity: 0
|
|
139
|
+
ignoreMissing: []
|
|
140
|
+
OrphanedSnippet:
|
|
141
|
+
enabled: true
|
|
142
|
+
severity: 1
|
|
143
|
+
PaginationSize:
|
|
144
|
+
enabled: true
|
|
145
|
+
severity: 1
|
|
146
|
+
minSize: 1
|
|
147
|
+
maxSize: 250
|
|
148
|
+
ParserBlockingScript:
|
|
149
|
+
enabled: true
|
|
150
|
+
severity: 0
|
|
151
|
+
RemoteAsset:
|
|
152
|
+
enabled: true
|
|
153
|
+
severity: 1
|
|
154
|
+
RequiredLayoutThemeObject:
|
|
155
|
+
enabled: true
|
|
156
|
+
severity: 0
|
|
157
|
+
ReservedDocParamNames:
|
|
158
|
+
enabled: true
|
|
159
|
+
severity: 0
|
|
160
|
+
SchemaOncePerFile:
|
|
161
|
+
enabled: true
|
|
162
|
+
severity: 0
|
|
163
|
+
SchemaPresetsBlockOrder:
|
|
164
|
+
enabled: true
|
|
165
|
+
severity: 1
|
|
166
|
+
SchemaPresetsStaticBlocks:
|
|
167
|
+
enabled: true
|
|
168
|
+
severity: 0
|
|
169
|
+
SchemaSectionOrBlockOnly:
|
|
170
|
+
enabled: true
|
|
171
|
+
severity: 0
|
|
172
|
+
StaticStylesheetAndJavascriptTags:
|
|
173
|
+
enabled: true
|
|
174
|
+
severity: 0
|
|
175
|
+
StylesheetOncePerFile:
|
|
176
|
+
enabled: true
|
|
177
|
+
severity: 0
|
|
178
|
+
StylesheetTagInWrongFile:
|
|
179
|
+
enabled: true
|
|
180
|
+
severity: 0
|
|
181
|
+
TranslationKeyExists:
|
|
182
|
+
enabled: true
|
|
183
|
+
severity: 0
|
|
184
|
+
UnclosedHTMLElement:
|
|
185
|
+
enabled: true
|
|
186
|
+
severity: 1
|
|
187
|
+
UndefinedObject:
|
|
188
|
+
enabled: true
|
|
189
|
+
severity: 1
|
|
190
|
+
UniqueDocParamNames:
|
|
191
|
+
enabled: true
|
|
192
|
+
severity: 0
|
|
193
|
+
UniqueSettingId:
|
|
194
|
+
enabled: true
|
|
195
|
+
severity: 0
|
|
196
|
+
UniqueStaticBlockId:
|
|
197
|
+
enabled: true
|
|
198
|
+
severity: 0
|
|
199
|
+
UnknownBlockSetting:
|
|
200
|
+
enabled: true
|
|
201
|
+
severity: 1
|
|
202
|
+
UnknownFilter:
|
|
203
|
+
enabled: true
|
|
204
|
+
severity: 0
|
|
205
|
+
UnrecognizedBlockArguments:
|
|
206
|
+
enabled: true
|
|
207
|
+
severity: 1
|
|
208
|
+
UnrecognizedContentForArguments:
|
|
209
|
+
enabled: true
|
|
210
|
+
severity: 1
|
|
211
|
+
UnrecognizedRenderSnippetArguments:
|
|
212
|
+
enabled: true
|
|
213
|
+
severity: 1
|
|
214
|
+
UnsupportedDocTag:
|
|
215
|
+
enabled: true
|
|
216
|
+
severity: 0
|
|
217
|
+
UnsupportedFilterArguments:
|
|
218
|
+
enabled: true
|
|
219
|
+
severity: 0
|
|
220
|
+
UnusedAssign:
|
|
221
|
+
enabled: true
|
|
222
|
+
severity: 1
|
|
223
|
+
UnusedDocParam:
|
|
224
|
+
enabled: true
|
|
225
|
+
severity: 1
|
|
226
|
+
ValidBlockArgumentTypes:
|
|
227
|
+
enabled: true
|
|
228
|
+
severity: 1
|
|
229
|
+
ValidBlockTarget:
|
|
230
|
+
enabled: true
|
|
231
|
+
severity: 0
|
|
232
|
+
ValidContentForArgumentTypes:
|
|
233
|
+
enabled: true
|
|
234
|
+
severity: 1
|
|
235
|
+
ValidContentForArguments:
|
|
236
|
+
enabled: true
|
|
237
|
+
severity: 0
|
|
238
|
+
ValidDocParamTypes:
|
|
239
|
+
enabled: true
|
|
240
|
+
severity: 0
|
|
241
|
+
ValidHTMLTranslation:
|
|
242
|
+
enabled: true
|
|
243
|
+
severity: 1
|
|
244
|
+
ValidJSON:
|
|
245
|
+
enabled: true
|
|
246
|
+
severity: 0
|
|
247
|
+
ValidLocalBlocks:
|
|
248
|
+
enabled: true
|
|
249
|
+
severity: 0
|
|
250
|
+
ValidRenderSnippetArgumentTypes:
|
|
251
|
+
enabled: true
|
|
252
|
+
severity: 1
|
|
253
|
+
ValidSchema:
|
|
254
|
+
enabled: true
|
|
255
|
+
severity: 0
|
|
256
|
+
ValidSchemaName:
|
|
257
|
+
enabled: true
|
|
258
|
+
severity: 0
|
|
259
|
+
ValidSchemaTranslations:
|
|
260
|
+
enabled: true
|
|
261
|
+
severity: 0
|
|
262
|
+
ValidScopedCSSClass:
|
|
263
|
+
enabled: true
|
|
264
|
+
severity: 1
|
|
265
|
+
ValidSettingsKey:
|
|
266
|
+
enabled: true
|
|
267
|
+
severity: 0
|
|
268
|
+
ValidStandardEventData:
|
|
269
|
+
enabled: true
|
|
270
|
+
severity: 0
|
|
271
|
+
ValidStaticBlockType:
|
|
272
|
+
enabled: true
|
|
273
|
+
severity: 0
|
|
274
|
+
ValidVisibleIf:
|
|
275
|
+
enabled: true
|
|
276
|
+
severity: 0
|
|
277
|
+
VariableName:
|
|
278
|
+
enabled: true
|
|
279
|
+
severity: 1
|
|
280
|
+
format: snake_case
|