@agnostack/next-shopify 1.14.1-beta.9 → 1.15.0-alpha.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +573 -0
- package/README.md +9 -8
- package/dist/lib/handlers/api/auth.js +22 -3
- package/dist/lib/handlers/api/auth.js.map +1 -1
- package/dist/lib/handlers/api/billing.d.ts.map +1 -1
- package/dist/lib/handlers/api/billing.js +25 -5
- package/dist/lib/handlers/api/billing.js.map +1 -1
- package/dist/lib/handlers/api/callback.js +22 -3
- package/dist/lib/handlers/api/callback.js.map +1 -1
- package/dist/lib/handlers/api/index.js +20 -7
- package/dist/lib/handlers/api/index.js.map +1 -1
- package/dist/lib/handlers/api/uninstall.d.ts.map +1 -1
- package/dist/lib/handlers/api/uninstall.js +25 -5
- package/dist/lib/handlers/api/uninstall.js.map +1 -1
- package/dist/lib/handlers/api/verifiable/appInstallation.js +10 -2
- package/dist/lib/handlers/api/verifiable/appInstallation.js.map +1 -1
- package/dist/lib/handlers/api/verifiable/graph.d.ts.map +1 -1
- package/dist/lib/handlers/api/verifiable/graph.js +40 -11
- package/dist/lib/handlers/api/verifiable/graph.js.map +1 -1
- package/dist/lib/handlers/api/verifiable/index.js +19 -6
- package/dist/lib/handlers/api/verifiable/index.js.map +1 -1
- package/dist/lib/handlers/api/verifiable/proxy.d.ts.map +1 -1
- package/dist/lib/handlers/api/verifiable/proxy.js +56 -24
- package/dist/lib/handlers/api/verifiable/proxy.js.map +1 -1
- package/dist/lib/handlers/api/verifiable/rest.d.ts.map +1 -1
- package/dist/lib/handlers/api/verifiable/rest.js +36 -7
- package/dist/lib/handlers/api/verifiable/rest.js.map +1 -1
- package/dist/lib/handlers/api/verifiable/token.d.ts.map +1 -1
- package/dist/lib/handlers/api/verifiable/token.js +43 -13
- package/dist/lib/handlers/api/verifiable/token.js.map +1 -1
- package/dist/lib/handlers/api/webhook.d.ts.map +1 -1
- package/dist/lib/handlers/api/webhook.js +26 -6
- package/dist/lib/handlers/api/webhook.js.map +1 -1
- package/dist/lib/handlers/index.js +16 -3
- package/dist/lib/handlers/index.js.map +1 -1
- package/dist/lib/handlers/ssr/index.js +16 -3
- package/dist/lib/handlers/ssr/index.js.map +1 -1
- package/dist/lib/handlers/ssr/protect.js +14 -3
- package/dist/lib/handlers/ssr/protect.js.map +1 -1
- package/dist/lib/handlers/ssr/wrap.js +10 -2
- package/dist/lib/handlers/ssr/wrap.js.map +1 -1
- package/dist/lib/index.d.ts +2 -2
- package/dist/lib/index.d.ts.map +1 -1
- package/dist/lib/index.js +18 -7
- package/dist/lib/index.js.map +1 -1
- package/dist/lib/utils/billing.js +10 -2
- package/dist/lib/utils/billing.js.map +1 -1
- package/dist/lib/utils/crypto.d.ts +1 -1
- package/dist/lib/utils/crypto.d.ts.map +1 -1
- package/dist/lib/utils/crypto.js +4 -2
- package/dist/lib/utils/crypto.js.map +1 -1
- package/dist/lib/utils/firebase.js +34 -12
- package/dist/lib/utils/firebase.js.map +1 -1
- package/dist/lib/utils/headers.js +4 -2
- package/dist/lib/utils/headers.js.map +1 -1
- package/dist/lib/utils/index.d.ts +0 -2
- package/dist/lib/utils/index.js +22 -11
- package/dist/lib/utils/index.js.map +1 -1
- package/dist/lib/utils/session.d.ts +1 -1
- package/dist/lib/utils/session.d.ts.map +1 -1
- package/dist/lib/utils/session.js +42 -26
- package/dist/lib/utils/session.js.map +1 -1
- package/dist/lib/utils/shopify-api-js/oauth.js +26 -4
- package/dist/lib/utils/shopify-api-js/oauth.js.map +1 -1
- package/dist/lib/utils/shopify.js +26 -4
- package/dist/lib/utils/shopify.js.map +1 -1
- package/dist/lib/utils/token.d.ts +2 -2
- package/dist/lib/utils/token.d.ts.map +1 -1
- package/dist/lib/utils/token.js +29 -9
- package/dist/lib/utils/token.js.map +1 -1
- package/dist/plugins/index.d.ts +3 -0
- package/dist/plugins/index.d.ts.map +1 -0
- package/dist/plugins/index.js +19 -0
- package/dist/plugins/index.js.map +1 -0
- package/dist/plugins/types.d.ts +1 -0
- package/dist/plugins/types.d.ts.map +1 -0
- package/dist/plugins/types.js +1 -0
- package/dist/plugins/types.js.map +1 -0
- package/dist/plugins/withShopify.d.ts.map +1 -0
- package/dist/{lib → plugins}/withShopify.js +94 -73
- package/dist/plugins/withShopify.js.map +1 -0
- package/dist/react/hooks/index.js +15 -2
- package/dist/react/hooks/index.js.map +1 -1
- package/dist/react/hooks/useVerification.d.ts +3 -7
- package/dist/react/hooks/useVerification.d.ts.map +1 -1
- package/dist/react/hooks/useVerification.js +35 -56
- package/dist/react/hooks/useVerification.js.map +1 -1
- package/dist/react/index.d.ts +1 -0
- package/dist/react/index.d.ts.map +1 -1
- package/dist/react/index.js +16 -2
- package/dist/react/index.js.map +1 -1
- package/dist/runtime/index.js +15 -2
- package/dist/runtime/index.js.map +1 -1
- package/dist/shared/WebCrypto.d.ts +55 -0
- package/dist/shared/WebCrypto.d.ts.map +1 -0
- package/dist/shared/WebCrypto.js +342 -0
- package/dist/shared/WebCrypto.js.map +1 -0
- package/dist/shared/datetime.js +19 -9
- package/dist/shared/datetime.js.map +1 -1
- package/dist/shared/display.d.ts +0 -3
- package/dist/shared/display.d.ts.map +1 -1
- package/dist/shared/display.js +3 -14
- package/dist/shared/display.js.map +1 -1
- package/dist/shared/graph.js +14 -4
- package/dist/shared/graph.js.map +1 -1
- package/dist/shared/index.d.ts +4 -1
- package/dist/shared/index.d.ts.map +1 -1
- package/dist/shared/index.js +30 -9
- package/dist/shared/index.js.map +1 -1
- package/dist/shared/request.d.ts +16 -0
- package/dist/shared/request.d.ts.map +1 -0
- package/dist/shared/request.js +60 -0
- package/dist/shared/request.js.map +1 -0
- package/dist/shared/shopify.d.ts +1 -6
- package/dist/shared/shopify.d.ts.map +1 -1
- package/dist/shared/shopify.js +17 -27
- package/dist/shared/shopify.js.map +1 -1
- package/dist/shared/uuid.d.ts +3 -0
- package/dist/shared/uuid.d.ts.map +1 -0
- package/dist/shared/uuid.js +10 -0
- package/dist/shared/uuid.js.map +1 -0
- package/dist/shared/verification.d.ts +31 -0
- package/dist/shared/verification.d.ts.map +1 -0
- package/dist/shared/verification.js +91 -0
- package/dist/shared/verification.js.map +1 -0
- package/dist/umd/verification/index.js +1234 -0
- package/dist/umd/verification/index.js.map +1 -0
- package/dist/umd/verification/lib/handlers/api/auth.d.ts +2 -0
- package/dist/umd/verification/lib/handlers/api/auth.d.ts.map +1 -0
- package/dist/umd/verification/lib/handlers/api/billing.d.ts +2 -0
- package/dist/umd/verification/lib/handlers/api/billing.d.ts.map +1 -0
- package/dist/umd/verification/lib/handlers/api/callback.d.ts +2 -0
- package/dist/umd/verification/lib/handlers/api/callback.d.ts.map +1 -0
- package/dist/umd/verification/lib/handlers/api/index.d.ts +10 -0
- package/dist/umd/verification/lib/handlers/api/index.d.ts.map +1 -0
- package/dist/umd/verification/lib/handlers/api/types.d.ts +1 -0
- package/dist/umd/verification/lib/handlers/api/types.d.ts.map +1 -0
- package/dist/umd/verification/lib/handlers/api/uninstall.d.ts +2 -0
- package/dist/umd/verification/lib/handlers/api/uninstall.d.ts.map +1 -0
- package/dist/umd/verification/lib/handlers/api/verifiable/appInstallation.d.ts +2 -0
- package/dist/umd/verification/lib/handlers/api/verifiable/appInstallation.d.ts.map +1 -0
- package/dist/umd/verification/lib/handlers/api/verifiable/graph.d.ts +2 -0
- package/dist/umd/verification/lib/handlers/api/verifiable/graph.d.ts.map +1 -0
- package/dist/umd/verification/lib/handlers/api/verifiable/index.d.ts +6 -0
- package/dist/umd/verification/lib/handlers/api/verifiable/index.d.ts.map +1 -0
- package/dist/umd/verification/lib/handlers/api/verifiable/proxy.d.ts +2 -0
- package/dist/umd/verification/lib/handlers/api/verifiable/proxy.d.ts.map +1 -0
- package/dist/umd/verification/lib/handlers/api/verifiable/rest.d.ts +2 -0
- package/dist/umd/verification/lib/handlers/api/verifiable/rest.d.ts.map +1 -0
- package/dist/umd/verification/lib/handlers/api/verifiable/token.d.ts +4 -0
- package/dist/umd/verification/lib/handlers/api/verifiable/token.d.ts.map +1 -0
- package/dist/umd/verification/lib/handlers/api/webhook.d.ts +2 -0
- package/dist/umd/verification/lib/handlers/api/webhook.d.ts.map +1 -0
- package/dist/umd/verification/lib/handlers/index.d.ts +3 -0
- package/dist/umd/verification/lib/handlers/index.d.ts.map +1 -0
- package/dist/umd/verification/lib/handlers/ssr/index.d.ts +3 -0
- package/dist/umd/verification/lib/handlers/ssr/index.d.ts.map +1 -0
- package/dist/umd/verification/lib/handlers/ssr/protect.d.ts +16 -0
- package/dist/umd/verification/lib/handlers/ssr/protect.d.ts.map +1 -0
- package/dist/umd/verification/lib/handlers/ssr/types.d.ts +1 -0
- package/dist/umd/verification/lib/handlers/ssr/types.d.ts.map +1 -0
- package/dist/umd/verification/lib/handlers/ssr/wrap.d.ts +9 -0
- package/dist/umd/verification/lib/handlers/ssr/wrap.d.ts.map +1 -0
- package/dist/umd/verification/lib/handlers/types.d.ts +1 -0
- package/dist/umd/verification/lib/handlers/types.d.ts.map +1 -0
- package/dist/umd/verification/lib/index.d.ts +5 -0
- package/dist/umd/verification/lib/index.d.ts.map +1 -0
- package/dist/umd/verification/lib/types.d.ts +1 -0
- package/dist/umd/verification/lib/types.d.ts.map +1 -0
- package/dist/umd/verification/lib/utils/billing.d.ts +24 -0
- package/dist/umd/verification/lib/utils/billing.d.ts.map +1 -0
- package/dist/umd/verification/lib/utils/crypto.d.ts +22 -0
- package/dist/umd/verification/lib/utils/crypto.d.ts.map +1 -0
- package/dist/umd/verification/lib/utils/firebase.d.ts +25 -0
- package/dist/umd/verification/lib/utils/firebase.d.ts.map +1 -0
- package/dist/umd/verification/lib/utils/headers.d.ts +5 -0
- package/dist/umd/verification/lib/utils/headers.d.ts.map +1 -0
- package/dist/umd/verification/lib/utils/index.d.ts +9 -0
- package/dist/umd/verification/lib/utils/index.d.ts.map +1 -0
- package/dist/umd/verification/lib/utils/session.d.ts +41 -0
- package/dist/umd/verification/lib/utils/session.d.ts.map +1 -0
- package/dist/umd/verification/lib/utils/shopify-api-js/oauth.d.ts +9 -0
- package/dist/umd/verification/lib/utils/shopify-api-js/oauth.d.ts.map +1 -0
- package/dist/umd/verification/lib/utils/shopify.d.ts +26 -0
- package/dist/umd/verification/lib/utils/shopify.d.ts.map +1 -0
- package/dist/umd/verification/lib/utils/token.d.ts +19 -0
- package/dist/umd/verification/lib/utils/token.d.ts.map +1 -0
- package/dist/umd/verification/lib/utils/types.d.ts +1 -0
- package/dist/umd/verification/lib/utils/types.d.ts.map +1 -0
- package/dist/umd/verification/plugins/index.d.ts +3 -0
- package/dist/umd/verification/plugins/index.d.ts.map +1 -0
- package/dist/umd/verification/plugins/types.d.ts +1 -0
- package/dist/umd/verification/plugins/types.d.ts.map +1 -0
- package/dist/umd/verification/plugins/withShopify.d.ts +6 -0
- package/dist/umd/verification/plugins/withShopify.d.ts.map +1 -0
- package/dist/umd/verification/react/hooks/index.d.ts +2 -0
- package/dist/umd/verification/react/hooks/index.d.ts.map +1 -0
- package/dist/umd/verification/react/hooks/useVerification.d.ts +8 -0
- package/dist/umd/verification/react/hooks/useVerification.d.ts.map +1 -0
- package/dist/umd/verification/react/index.d.ts +3 -0
- package/dist/umd/verification/react/index.d.ts.map +1 -0
- package/dist/umd/verification/react/types.d.ts +1 -0
- package/dist/umd/verification/react/types.d.ts.map +1 -0
- package/dist/umd/verification/runtime/index.d.ts +2 -0
- package/dist/umd/verification/runtime/index.d.ts.map +1 -0
- package/dist/umd/verification/runtime/types.d.ts +1 -0
- package/dist/umd/verification/runtime/types.d.ts.map +1 -0
- package/dist/umd/verification/shared/WebCrypto.d.ts +55 -0
- package/dist/umd/verification/shared/WebCrypto.d.ts.map +1 -0
- package/dist/umd/verification/shared/constants.d.ts +211 -0
- package/dist/umd/verification/shared/constants.d.ts.map +1 -0
- package/dist/umd/verification/shared/datetime.d.ts +96 -0
- package/dist/umd/verification/shared/datetime.d.ts.map +1 -0
- package/dist/umd/verification/shared/display.d.ts +100 -0
- package/dist/umd/verification/shared/display.d.ts.map +1 -0
- package/dist/umd/verification/shared/errors.d.ts +19 -0
- package/dist/umd/verification/shared/errors.d.ts.map +1 -0
- package/dist/umd/verification/shared/graph.d.ts +24 -0
- package/dist/umd/verification/shared/graph.d.ts.map +1 -0
- package/dist/umd/verification/shared/index.d.ts +12 -0
- package/dist/umd/verification/shared/index.d.ts.map +1 -0
- package/dist/umd/verification/shared/match.d.ts +6 -0
- package/dist/umd/verification/shared/match.d.ts.map +1 -0
- package/dist/umd/verification/shared/request.d.ts +16 -0
- package/dist/umd/verification/shared/request.d.ts.map +1 -0
- package/dist/umd/verification/shared/shopify.d.ts +31 -0
- package/dist/umd/verification/shared/shopify.d.ts.map +1 -0
- package/dist/umd/verification/shared/types.d.ts +1 -0
- package/dist/umd/verification/shared/types.d.ts.map +1 -0
- package/dist/umd/verification/shared/uuid.d.ts +3 -0
- package/dist/umd/verification/shared/uuid.d.ts.map +1 -0
- package/dist/umd/verification/shared/verification.d.ts +31 -0
- package/dist/umd/verification/shared/verification.d.ts.map +1 -0
- package/dist/umd/verification/verification/index.d.ts +4 -0
- package/dist/umd/verification/verification/index.d.ts.map +1 -0
- package/dist/umd/verification/verification/types.d.ts +1 -0
- package/dist/umd/verification/verification/types.d.ts.map +1 -0
- package/dist/umd/verification/verification/utils/errors.d.ts +6 -0
- package/dist/umd/verification/verification/utils/errors.d.ts.map +1 -0
- package/dist/umd/verification/verification/utils/index.d.ts +3 -0
- package/dist/umd/verification/verification/utils/index.d.ts.map +1 -0
- package/dist/{lib/utils/request.d.ts → umd/verification/verification/utils/rawbody.d.ts} +1 -1
- package/dist/umd/verification/verification/utils/rawbody.d.ts.map +1 -0
- package/dist/umd/verification/verification/verification.d.ts +10 -0
- package/dist/umd/verification/verification/verification.d.ts.map +1 -0
- package/dist/verification/index.d.ts +4 -0
- package/dist/verification/index.d.ts.map +1 -0
- package/dist/verification/index.js +20 -0
- package/dist/verification/index.js.map +1 -0
- package/dist/verification/types.d.ts +1 -0
- package/dist/verification/types.d.ts.map +1 -0
- package/dist/verification/types.js +1 -0
- package/dist/verification/types.js.map +1 -0
- package/dist/verification/utils/errors.d.ts +6 -0
- package/dist/verification/utils/errors.d.ts.map +1 -0
- package/dist/verification/utils/errors.js +26 -0
- package/dist/verification/utils/errors.js.map +1 -0
- package/dist/verification/utils/index.d.ts +3 -0
- package/dist/verification/utils/index.d.ts.map +1 -0
- package/dist/verification/utils/index.js +19 -0
- package/dist/verification/utils/index.js.map +1 -0
- package/dist/verification/utils/rawbody.d.ts +2 -0
- package/dist/verification/utils/rawbody.d.ts.map +1 -0
- package/dist/verification/utils/rawbody.js +60 -0
- package/dist/verification/utils/rawbody.js.map +1 -0
- package/dist/verification/verification.d.ts +10 -0
- package/dist/verification/verification.d.ts.map +1 -0
- package/dist/verification/verification.js +84 -0
- package/dist/verification/verification.js.map +1 -0
- package/node_modules/browser-monads-ts/LICENSE +21 -0
- package/node_modules/browser-monads-ts/README.md +46 -0
- package/node_modules/browser-monads-ts/dist/browser-monads-ts.cjs.js +2 -0
- package/node_modules/browser-monads-ts/dist/browser-monads-ts.cjs.js.map +1 -0
- package/node_modules/browser-monads-ts/dist/browser-monads-ts.es.js +12 -0
- package/node_modules/browser-monads-ts/dist/browser-monads-ts.es.js.map +1 -0
- package/node_modules/browser-monads-ts/dist/index.d.ts +5 -0
- package/node_modules/browser-monads-ts/dist/index.d.ts.map +1 -0
- package/node_modules/browser-monads-ts/package.json +79 -0
- package/node_modules/bytes/History.md +97 -0
- package/node_modules/bytes/LICENSE +23 -0
- package/node_modules/bytes/Readme.md +152 -0
- package/node_modules/bytes/index.js +170 -0
- package/node_modules/bytes/package.json +42 -0
- package/node_modules/depd/History.md +103 -0
- package/node_modules/depd/LICENSE +22 -0
- package/node_modules/depd/Readme.md +280 -0
- package/node_modules/depd/index.js +538 -0
- package/node_modules/depd/lib/browser/index.js +77 -0
- package/node_modules/depd/package.json +45 -0
- package/node_modules/http-errors/HISTORY.md +180 -0
- package/node_modules/http-errors/LICENSE +23 -0
- package/node_modules/http-errors/README.md +169 -0
- package/node_modules/http-errors/index.js +289 -0
- package/node_modules/http-errors/package.json +50 -0
- package/node_modules/iconv-lite/Changelog.md +162 -0
- package/node_modules/iconv-lite/LICENSE +21 -0
- package/node_modules/iconv-lite/README.md +156 -0
- package/node_modules/iconv-lite/encodings/dbcs-codec.js +555 -0
- package/node_modules/iconv-lite/encodings/dbcs-data.js +176 -0
- package/node_modules/iconv-lite/encodings/index.js +22 -0
- package/node_modules/iconv-lite/encodings/internal.js +188 -0
- package/node_modules/iconv-lite/encodings/sbcs-codec.js +72 -0
- package/node_modules/iconv-lite/encodings/sbcs-data-generated.js +451 -0
- package/node_modules/iconv-lite/encodings/sbcs-data.js +174 -0
- package/node_modules/iconv-lite/encodings/tables/big5-added.json +122 -0
- package/node_modules/iconv-lite/encodings/tables/cp936.json +264 -0
- package/node_modules/iconv-lite/encodings/tables/cp949.json +273 -0
- package/node_modules/iconv-lite/encodings/tables/cp950.json +177 -0
- package/node_modules/iconv-lite/encodings/tables/eucjp.json +182 -0
- package/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +1 -0
- package/node_modules/iconv-lite/encodings/tables/gbk-added.json +55 -0
- package/node_modules/iconv-lite/encodings/tables/shiftjis.json +125 -0
- package/node_modules/iconv-lite/encodings/utf16.js +177 -0
- package/node_modules/iconv-lite/encodings/utf7.js +290 -0
- package/node_modules/iconv-lite/lib/bom-handling.js +52 -0
- package/node_modules/iconv-lite/lib/extend-node.js +217 -0
- package/node_modules/iconv-lite/lib/index.d.ts +24 -0
- package/node_modules/iconv-lite/lib/index.js +153 -0
- package/node_modules/iconv-lite/lib/streams.js +121 -0
- package/node_modules/iconv-lite/package.json +46 -0
- package/node_modules/inherits/LICENSE +16 -0
- package/node_modules/inherits/README.md +42 -0
- package/node_modules/inherits/inherits.js +9 -0
- package/node_modules/inherits/inherits_browser.js +27 -0
- package/node_modules/inherits/package.json +29 -0
- package/node_modules/nothing-mock/LICENSE +21 -0
- package/node_modules/nothing-mock/README.md +266 -0
- package/node_modules/nothing-mock/dist/nothing-mock.es.js +2 -0
- package/node_modules/nothing-mock/dist/nothing-mock.es.js.map +1 -0
- package/node_modules/nothing-mock/dist/nothing-mock.js +2 -0
- package/node_modules/nothing-mock/dist/nothing-mock.js.map +1 -0
- package/node_modules/nothing-mock/dist/nothing-mock.modern.js +2 -0
- package/node_modules/nothing-mock/dist/nothing-mock.modern.js.map +1 -0
- package/node_modules/nothing-mock/dist/nothing-mock.umd.js +2 -0
- package/node_modules/nothing-mock/dist/nothing-mock.umd.js.map +1 -0
- package/node_modules/nothing-mock/index.d.ts +6 -0
- package/node_modules/nothing-mock/package.json +29 -0
- package/node_modules/nothing-mock/src/index.js +15 -0
- package/node_modules/raw-body/HISTORY.md +308 -0
- package/node_modules/raw-body/LICENSE +22 -0
- package/node_modules/raw-body/README.md +223 -0
- package/node_modules/raw-body/SECURITY.md +24 -0
- package/node_modules/raw-body/index.d.ts +87 -0
- package/node_modules/raw-body/index.js +336 -0
- package/node_modules/raw-body/package.json +49 -0
- package/node_modules/safer-buffer/LICENSE +21 -0
- package/node_modules/safer-buffer/Porting-Buffer.md +268 -0
- package/node_modules/safer-buffer/Readme.md +156 -0
- package/node_modules/safer-buffer/dangerous.js +58 -0
- package/node_modules/safer-buffer/package.json +34 -0
- package/node_modules/safer-buffer/safer.js +77 -0
- package/node_modules/safer-buffer/tests.js +406 -0
- package/node_modules/setprototypeof/LICENSE +13 -0
- package/node_modules/setprototypeof/README.md +31 -0
- package/node_modules/setprototypeof/index.d.ts +2 -0
- package/node_modules/setprototypeof/index.js +17 -0
- package/node_modules/setprototypeof/package.json +38 -0
- package/node_modules/setprototypeof/test/index.js +24 -0
- package/node_modules/statuses/HISTORY.md +82 -0
- package/node_modules/statuses/LICENSE +23 -0
- package/node_modules/statuses/README.md +136 -0
- package/node_modules/statuses/codes.json +65 -0
- package/node_modules/statuses/index.js +146 -0
- package/node_modules/statuses/package.json +49 -0
- package/node_modules/toidentifier/HISTORY.md +9 -0
- package/node_modules/toidentifier/LICENSE +21 -0
- package/node_modules/toidentifier/README.md +61 -0
- package/node_modules/toidentifier/index.js +32 -0
- package/node_modules/toidentifier/package.json +38 -0
- package/node_modules/unpipe/HISTORY.md +4 -0
- package/node_modules/unpipe/LICENSE +22 -0
- package/node_modules/unpipe/README.md +43 -0
- package/node_modules/unpipe/index.js +69 -0
- package/node_modules/unpipe/package.json +27 -0
- package/package.json +28 -9
- package/dist/lib/utils/request.d.ts.map +0 -1
- package/dist/lib/utils/request.js +0 -19
- package/dist/lib/utils/request.js.map +0 -1
- package/dist/lib/utils/verification.d.ts +0 -2
- package/dist/lib/utils/verification.d.ts.map +0 -1
- package/dist/lib/utils/verification.js +0 -89
- package/dist/lib/utils/verification.js.map +0 -1
- package/dist/lib/withShopify.d.ts.map +0 -1
- package/dist/lib/withShopify.js.map +0 -1
- package/dist/shared/subtlecrypto.d.ts +0 -41
- package/dist/shared/subtlecrypto.d.ts.map +0 -1
- package/dist/shared/subtlecrypto.js +0 -253
- package/dist/shared/subtlecrypto.js.map +0 -1
- /package/dist/{lib → plugins}/withShopify.d.ts +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,576 @@
|
|
|
1
|
+
# [1.15.0-alpha.1](https://github.com/agnostack/next-shopify/compare/v1.14.1...v1.15.0-alpha.1) (2023-12-09)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* bexploring adding @rollup/plugin-auto-install ([2c69837](https://github.com/agnostack/next-shopify/commit/2c698373bdfa0969a736f0a29f75e3d2e4074a09))
|
|
7
|
+
* bexploring adding @rollup/plugin-auto-install ([494609f](https://github.com/agnostack/next-shopify/commit/494609f0a4cff218a5fb4a0af26335e10490840f))
|
|
8
|
+
* bundled and cleaned some stuff ([376e767](https://github.com/agnostack/next-shopify/commit/376e7675565fba8912b3ef7145201484695f0426))
|
|
9
|
+
* bundled and cleaned some stuff ([b93b0ab](https://github.com/agnostack/next-shopify/commit/b93b0ab92f9fa2b8c3807e04bb9aabbb41dafeba))
|
|
10
|
+
* wip ([935a08b](https://github.com/agnostack/next-shopify/commit/935a08b2d51ba6c9c0c8f58cbc8bef5c8058a3cc))
|
|
11
|
+
* wip ([13fa469](https://github.com/agnostack/next-shopify/commit/13fa4698a0d16ce55822975db8fffed5c5f532ee))
|
|
12
|
+
* wip ([bf89fa0](https://github.com/agnostack/next-shopify/commit/bf89fa0483f6f4e4d7aba115b88015b115c40469))
|
|
13
|
+
* wip ([cb63ffb](https://github.com/agnostack/next-shopify/commit/cb63ffbe48f1cddbfd44b2ef9478f18bbb77efcb))
|
|
14
|
+
* wip ([5ec5a32](https://github.com/agnostack/next-shopify/commit/5ec5a32133b33fd03ffea47d8838d69cf97c63a3))
|
|
15
|
+
* wip ([f74a297](https://github.com/agnostack/next-shopify/commit/f74a297d0339e301cf388fff707953ae4375a5bc))
|
|
16
|
+
* wip ([c549241](https://github.com/agnostack/next-shopify/commit/c54924137d9ed48dfd1ae669bee56cea3c538463))
|
|
17
|
+
* wip ([b66479e](https://github.com/agnostack/next-shopify/commit/b66479efd9d31349c02384ae0220a99a1730b5ee))
|
|
18
|
+
* wip ([791a349](https://github.com/agnostack/next-shopify/commit/791a34942430f9ee44c31277f24537dc62ad182e))
|
|
19
|
+
* wip ([3909ac9](https://github.com/agnostack/next-shopify/commit/3909ac901df8adf3150509603f03c3a17a49c176))
|
|
20
|
+
* wip ([8d7f35b](https://github.com/agnostack/next-shopify/commit/8d7f35b4229defcfca7e42380d0b2d4761fbe29f))
|
|
21
|
+
* wip ([798a126](https://github.com/agnostack/next-shopify/commit/798a12693e4ed5a5e59f6ae2f39fb877f7996940))
|
|
22
|
+
* wip ([743cc75](https://github.com/agnostack/next-shopify/commit/743cc75006df98b64047d3bca774ea9360ca9688))
|
|
23
|
+
* wip ([6a6015d](https://github.com/agnostack/next-shopify/commit/6a6015d80186c32c651a2f5fe919a5bab095a5ed))
|
|
24
|
+
* wip ([1343a5c](https://github.com/agnostack/next-shopify/commit/1343a5c91e53b9cb228376281fe74b711c70b76b))
|
|
25
|
+
* wip ([d64b8b6](https://github.com/agnostack/next-shopify/commit/d64b8b67f27fe85737fbe3d91a9fcda4b2f5dd2c))
|
|
26
|
+
* wip ([7fdab0b](https://github.com/agnostack/next-shopify/commit/7fdab0bf556c2a42cfd02c300070bec28e64e6ff))
|
|
27
|
+
* wip ([184b9a3](https://github.com/agnostack/next-shopify/commit/184b9a34cf9aec415dd68405b90d29dd397631f4))
|
|
28
|
+
* wip ([eaf5173](https://github.com/agnostack/next-shopify/commit/eaf51735dc8434a3eb6ec3b259bbecbe527d2f5e))
|
|
29
|
+
* wip ([fcef3ef](https://github.com/agnostack/next-shopify/commit/fcef3ef05eb908e316481de551b8bdec4f781c70))
|
|
30
|
+
* wip ([ed66c80](https://github.com/agnostack/next-shopify/commit/ed66c801b2784cb79d260f3c02c86aa8cfb5b839))
|
|
31
|
+
* wip ([7364d71](https://github.com/agnostack/next-shopify/commit/7364d71f5034a22dba5599039c3eeb5781928e7d))
|
|
32
|
+
* wip ([43d0735](https://github.com/agnostack/next-shopify/commit/43d0735ac2e13938b2ec70b2681c0e0f24d5311f))
|
|
33
|
+
* wip ([df1d6b5](https://github.com/agnostack/next-shopify/commit/df1d6b54e0c20af22aefbd7706d81af288531402))
|
|
34
|
+
* wip ([298d01a](https://github.com/agnostack/next-shopify/commit/298d01a56eb38a90783c2fd0350b49d75822c884))
|
|
35
|
+
* wip ([5ede53a](https://github.com/agnostack/next-shopify/commit/5ede53ac1efe79eed1ee1a68d05e1bf7dd725cfa))
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
### Features
|
|
39
|
+
|
|
40
|
+
* added 'plugins' export for next-config ([e550e3f](https://github.com/agnostack/next-shopify/commit/e550e3f8b9a1fba2a232760cf1ca6bb946b66494))
|
|
41
|
+
* added back bundle for monads ([99f8aa2](https://github.com/agnostack/next-shopify/commit/99f8aa25add4f7d1e7e364e9a6c33bd524ef3140))
|
|
42
|
+
* added rollup ([3745a20](https://github.com/agnostack/next-shopify/commit/3745a2085199583b002627c12564a3d79705691c))
|
|
43
|
+
* removed dep on raw-body ([761931c](https://github.com/agnostack/next-shopify/commit/761931c0c76be995d7217f96874ab7eaf642a659))
|
|
44
|
+
|
|
45
|
+
# [1.15.0-beta.29](https://github.com/agnostack/next-shopify/compare/v1.15.0-beta.28...v1.15.0-beta.29) (2023-12-09)
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
### Bug Fixes
|
|
49
|
+
|
|
50
|
+
* wip ([935a08b](https://github.com/agnostack/next-shopify/commit/935a08b2d51ba6c9c0c8f58cbc8bef5c8058a3cc))
|
|
51
|
+
|
|
52
|
+
# [1.15.0-beta.28](https://github.com/agnostack/next-shopify/compare/v1.15.0-beta.27...v1.15.0-beta.28) (2023-12-09)
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
### Bug Fixes
|
|
56
|
+
|
|
57
|
+
* wip ([13fa469](https://github.com/agnostack/next-shopify/commit/13fa4698a0d16ce55822975db8fffed5c5f532ee))
|
|
58
|
+
|
|
59
|
+
# [1.15.0-beta.27](https://github.com/agnostack/next-shopify/compare/v1.15.0-beta.26...v1.15.0-beta.27) (2023-12-09)
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
### Bug Fixes
|
|
63
|
+
|
|
64
|
+
* wip ([bf89fa0](https://github.com/agnostack/next-shopify/commit/bf89fa0483f6f4e4d7aba115b88015b115c40469))
|
|
65
|
+
|
|
66
|
+
# [1.15.0-beta.26](https://github.com/agnostack/next-shopify/compare/v1.15.0-beta.25...v1.15.0-beta.26) (2023-12-09)
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
### Bug Fixes
|
|
70
|
+
|
|
71
|
+
* wip ([cb63ffb](https://github.com/agnostack/next-shopify/commit/cb63ffbe48f1cddbfd44b2ef9478f18bbb77efcb))
|
|
72
|
+
|
|
73
|
+
# [1.15.0-beta.25](https://github.com/agnostack/next-shopify/compare/v1.15.0-beta.24...v1.15.0-beta.25) (2023-12-09)
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
### Bug Fixes
|
|
77
|
+
|
|
78
|
+
* wip ([5ec5a32](https://github.com/agnostack/next-shopify/commit/5ec5a32133b33fd03ffea47d8838d69cf97c63a3))
|
|
79
|
+
|
|
80
|
+
# [1.15.0-beta.24](https://github.com/agnostack/next-shopify/compare/v1.15.0-beta.23...v1.15.0-beta.24) (2023-12-09)
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
### Bug Fixes
|
|
84
|
+
|
|
85
|
+
* wip ([f74a297](https://github.com/agnostack/next-shopify/commit/f74a297d0339e301cf388fff707953ae4375a5bc))
|
|
86
|
+
|
|
87
|
+
# [1.15.0-beta.23](https://github.com/agnostack/next-shopify/compare/v1.15.0-beta.22...v1.15.0-beta.23) (2023-12-09)
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
### Bug Fixes
|
|
91
|
+
|
|
92
|
+
* wip ([c549241](https://github.com/agnostack/next-shopify/commit/c54924137d9ed48dfd1ae669bee56cea3c538463))
|
|
93
|
+
* wip ([b66479e](https://github.com/agnostack/next-shopify/commit/b66479efd9d31349c02384ae0220a99a1730b5ee))
|
|
94
|
+
* wip ([791a349](https://github.com/agnostack/next-shopify/commit/791a34942430f9ee44c31277f24537dc62ad182e))
|
|
95
|
+
|
|
96
|
+
# [1.15.0-beta.22](https://github.com/agnostack/next-shopify/compare/v1.15.0-beta.21...v1.15.0-beta.22) (2023-12-08)
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
### Bug Fixes
|
|
100
|
+
|
|
101
|
+
* wip ([3909ac9](https://github.com/agnostack/next-shopify/commit/3909ac901df8adf3150509603f03c3a17a49c176))
|
|
102
|
+
|
|
103
|
+
# [1.15.0-beta.21](https://github.com/agnostack/next-shopify/compare/v1.15.0-beta.20...v1.15.0-beta.21) (2023-12-08)
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
### Bug Fixes
|
|
107
|
+
|
|
108
|
+
* wip ([8d7f35b](https://github.com/agnostack/next-shopify/commit/8d7f35b4229defcfca7e42380d0b2d4761fbe29f))
|
|
109
|
+
|
|
110
|
+
# [1.15.0-beta.20](https://github.com/agnostack/next-shopify/compare/v1.15.0-beta.19...v1.15.0-beta.20) (2023-12-08)
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
### Bug Fixes
|
|
114
|
+
|
|
115
|
+
* wip ([798a126](https://github.com/agnostack/next-shopify/commit/798a12693e4ed5a5e59f6ae2f39fb877f7996940))
|
|
116
|
+
* wip ([743cc75](https://github.com/agnostack/next-shopify/commit/743cc75006df98b64047d3bca774ea9360ca9688))
|
|
117
|
+
|
|
118
|
+
# [1.15.0-beta.19](https://github.com/agnostack/next-shopify/compare/v1.15.0-beta.18...v1.15.0-beta.19) (2023-12-08)
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
### Bug Fixes
|
|
122
|
+
|
|
123
|
+
* wip ([6a6015d](https://github.com/agnostack/next-shopify/commit/6a6015d80186c32c651a2f5fe919a5bab095a5ed))
|
|
124
|
+
|
|
125
|
+
# [1.15.0-beta.18](https://github.com/agnostack/next-shopify/compare/v1.15.0-beta.17...v1.15.0-beta.18) (2023-12-08)
|
|
126
|
+
|
|
127
|
+
|
|
128
|
+
### Bug Fixes
|
|
129
|
+
|
|
130
|
+
* wip ([1343a5c](https://github.com/agnostack/next-shopify/commit/1343a5c91e53b9cb228376281fe74b711c70b76b))
|
|
131
|
+
|
|
132
|
+
# [1.15.0-beta.17](https://github.com/agnostack/next-shopify/compare/v1.15.0-beta.16...v1.15.0-beta.17) (2023-12-08)
|
|
133
|
+
|
|
134
|
+
|
|
135
|
+
### Bug Fixes
|
|
136
|
+
|
|
137
|
+
* wip ([d64b8b6](https://github.com/agnostack/next-shopify/commit/d64b8b67f27fe85737fbe3d91a9fcda4b2f5dd2c))
|
|
138
|
+
* wip ([7fdab0b](https://github.com/agnostack/next-shopify/commit/7fdab0bf556c2a42cfd02c300070bec28e64e6ff))
|
|
139
|
+
* wip ([184b9a3](https://github.com/agnostack/next-shopify/commit/184b9a34cf9aec415dd68405b90d29dd397631f4))
|
|
140
|
+
|
|
141
|
+
# [1.15.0-beta.16](https://github.com/agnostack/next-shopify/compare/v1.15.0-beta.15...v1.15.0-beta.16) (2023-12-08)
|
|
142
|
+
|
|
143
|
+
|
|
144
|
+
### Bug Fixes
|
|
145
|
+
|
|
146
|
+
* wip ([eaf5173](https://github.com/agnostack/next-shopify/commit/eaf51735dc8434a3eb6ec3b259bbecbe527d2f5e))
|
|
147
|
+
|
|
148
|
+
# [1.15.0-beta.15](https://github.com/agnostack/next-shopify/compare/v1.15.0-beta.14...v1.15.0-beta.15) (2023-12-08)
|
|
149
|
+
|
|
150
|
+
|
|
151
|
+
### Bug Fixes
|
|
152
|
+
|
|
153
|
+
* wip ([fcef3ef](https://github.com/agnostack/next-shopify/commit/fcef3ef05eb908e316481de551b8bdec4f781c70))
|
|
154
|
+
|
|
155
|
+
# [1.15.0-beta.14](https://github.com/agnostack/next-shopify/compare/v1.15.0-beta.13...v1.15.0-beta.14) (2023-12-08)
|
|
156
|
+
|
|
157
|
+
|
|
158
|
+
### Bug Fixes
|
|
159
|
+
|
|
160
|
+
* wip ([ed66c80](https://github.com/agnostack/next-shopify/commit/ed66c801b2784cb79d260f3c02c86aa8cfb5b839))
|
|
161
|
+
|
|
162
|
+
# [1.15.0-beta.13](https://github.com/agnostack/next-shopify/compare/v1.15.0-beta.12...v1.15.0-beta.13) (2023-12-08)
|
|
163
|
+
|
|
164
|
+
|
|
165
|
+
### Bug Fixes
|
|
166
|
+
|
|
167
|
+
* wip ([7364d71](https://github.com/agnostack/next-shopify/commit/7364d71f5034a22dba5599039c3eeb5781928e7d))
|
|
168
|
+
|
|
169
|
+
# [1.15.0-beta.12](https://github.com/agnostack/next-shopify/compare/v1.15.0-beta.11...v1.15.0-beta.12) (2023-12-08)
|
|
170
|
+
|
|
171
|
+
|
|
172
|
+
### Bug Fixes
|
|
173
|
+
|
|
174
|
+
* wip ([43d0735](https://github.com/agnostack/next-shopify/commit/43d0735ac2e13938b2ec70b2681c0e0f24d5311f))
|
|
175
|
+
|
|
176
|
+
# [1.15.0-beta.11](https://github.com/agnostack/next-shopify/compare/v1.15.0-beta.10...v1.15.0-beta.11) (2023-12-08)
|
|
177
|
+
|
|
178
|
+
|
|
179
|
+
### Bug Fixes
|
|
180
|
+
|
|
181
|
+
* wip ([df1d6b5](https://github.com/agnostack/next-shopify/commit/df1d6b54e0c20af22aefbd7706d81af288531402))
|
|
182
|
+
|
|
183
|
+
# [1.15.0-beta.10](https://github.com/agnostack/next-shopify/compare/v1.15.0-beta.9...v1.15.0-beta.10) (2023-12-08)
|
|
184
|
+
|
|
185
|
+
|
|
186
|
+
### Bug Fixes
|
|
187
|
+
|
|
188
|
+
* wip ([298d01a](https://github.com/agnostack/next-shopify/commit/298d01a56eb38a90783c2fd0350b49d75822c884))
|
|
189
|
+
|
|
190
|
+
# [1.15.0-beta.9](https://github.com/agnostack/next-shopify/compare/v1.15.0-beta.8...v1.15.0-beta.9) (2023-12-08)
|
|
191
|
+
|
|
192
|
+
|
|
193
|
+
### Bug Fixes
|
|
194
|
+
|
|
195
|
+
* wip ([5ede53a](https://github.com/agnostack/next-shopify/commit/5ede53ac1efe79eed1ee1a68d05e1bf7dd725cfa))
|
|
196
|
+
|
|
197
|
+
# [1.15.0-beta.8](https://github.com/agnostack/next-shopify/compare/v1.15.0-beta.7...v1.15.0-beta.8) (2023-12-08)
|
|
198
|
+
|
|
199
|
+
|
|
200
|
+
### Features
|
|
201
|
+
|
|
202
|
+
* added back bundle for monads ([99f8aa2](https://github.com/agnostack/next-shopify/commit/99f8aa25add4f7d1e7e364e9a6c33bd524ef3140))
|
|
203
|
+
|
|
204
|
+
# [1.15.0-beta.7](https://github.com/agnostack/next-shopify/compare/v1.15.0-beta.6...v1.15.0-beta.7) (2023-12-08)
|
|
205
|
+
|
|
206
|
+
|
|
207
|
+
### Features
|
|
208
|
+
|
|
209
|
+
* removed dep on raw-body ([761931c](https://github.com/agnostack/next-shopify/commit/761931c0c76be995d7217f96874ab7eaf642a659))
|
|
210
|
+
|
|
211
|
+
# [1.15.0-beta.6](https://github.com/agnostack/next-shopify/compare/v1.15.0-beta.5...v1.15.0-beta.6) (2023-12-08)
|
|
212
|
+
|
|
213
|
+
|
|
214
|
+
### Features
|
|
215
|
+
|
|
216
|
+
* added 'plugins' export for next-config ([e550e3f](https://github.com/agnostack/next-shopify/commit/e550e3f8b9a1fba2a232760cf1ca6bb946b66494))
|
|
217
|
+
|
|
218
|
+
# [1.15.0-beta.5](https://github.com/agnostack/next-shopify/compare/v1.15.0-beta.4...v1.15.0-beta.5) (2023-12-08)
|
|
219
|
+
|
|
220
|
+
|
|
221
|
+
### Bug Fixes
|
|
222
|
+
|
|
223
|
+
* bexploring adding @rollup/plugin-auto-install ([2c69837](https://github.com/agnostack/next-shopify/commit/2c698373bdfa0969a736f0a29f75e3d2e4074a09))
|
|
224
|
+
|
|
225
|
+
# [1.15.0-beta.4](https://github.com/agnostack/next-shopify/compare/v1.15.0-beta.3...v1.15.0-beta.4) (2023-12-08)
|
|
226
|
+
|
|
227
|
+
|
|
228
|
+
### Bug Fixes
|
|
229
|
+
|
|
230
|
+
* bexploring adding @rollup/plugin-auto-install ([494609f](https://github.com/agnostack/next-shopify/commit/494609f0a4cff218a5fb4a0af26335e10490840f))
|
|
231
|
+
|
|
232
|
+
# [1.15.0-beta.3](https://github.com/agnostack/next-shopify/compare/v1.15.0-beta.2...v1.15.0-beta.3) (2023-12-08)
|
|
233
|
+
|
|
234
|
+
|
|
235
|
+
### Bug Fixes
|
|
236
|
+
|
|
237
|
+
* bundled and cleaned some stuff ([376e767](https://github.com/agnostack/next-shopify/commit/376e7675565fba8912b3ef7145201484695f0426))
|
|
238
|
+
|
|
239
|
+
# [1.15.0-beta.2](https://github.com/agnostack/next-shopify/compare/v1.15.0-beta.1...v1.15.0-beta.2) (2023-12-08)
|
|
240
|
+
|
|
241
|
+
|
|
242
|
+
### Bug Fixes
|
|
243
|
+
|
|
244
|
+
* bundled and cleaned some stuff ([b93b0ab](https://github.com/agnostack/next-shopify/commit/b93b0ab92f9fa2b8c3807e04bb9aabbb41dafeba))
|
|
245
|
+
|
|
246
|
+
# [1.15.0-beta.1](https://github.com/agnostack/next-shopify/compare/v1.14.1...v1.15.0-beta.1) (2023-12-07)
|
|
247
|
+
|
|
248
|
+
|
|
249
|
+
### Features
|
|
250
|
+
|
|
251
|
+
* added rollup ([3745a20](https://github.com/agnostack/next-shopify/commit/3745a2085199583b002627c12564a3d79705691c))
|
|
252
|
+
|
|
253
|
+
## [1.14.1](https://github.com/agnostack/next-shopify/compare/v1.14.0...v1.14.1) (2023-12-07)
|
|
254
|
+
|
|
255
|
+
|
|
256
|
+
### Bug Fixes
|
|
257
|
+
|
|
258
|
+
* externalized useVerification methods ([98c66d6](https://github.com/agnostack/next-shopify/commit/98c66d626b40d0bb2b6b12bfb8c5e85d13a2d6d4))
|
|
259
|
+
* removed logs ([0f4dce9](https://github.com/agnostack/next-shopify/commit/0f4dce9b598c8133f49784ad78414375d4b84047))
|
|
260
|
+
* removed logs ([5ebe075](https://github.com/agnostack/next-shopify/commit/5ebe07542394a0e6ddc2d4bd8accbfb11aba4d0a))
|
|
261
|
+
* removed tslib importHelpers ([fc64a16](https://github.com/agnostack/next-shopify/commit/fc64a163bcacd56ed0856adc57dff8f4be97d8c8))
|
|
262
|
+
* wip ([91f00a2](https://github.com/agnostack/next-shopify/commit/91f00a26bc24f9bb1fa60ecef5ae1da1464c2c20))
|
|
263
|
+
* wip ([2972f35](https://github.com/agnostack/next-shopify/commit/2972f35ffb727ecf6eb5024147ed9cb1403be642))
|
|
264
|
+
* wip ([e350331](https://github.com/agnostack/next-shopify/commit/e3503310534755c7fcf10e4c5bc9f4cccd8e4e2a))
|
|
265
|
+
* wip ([8860ed9](https://github.com/agnostack/next-shopify/commit/8860ed90676ffaa74c82dd470481336e701338f0))
|
|
266
|
+
* wip ([7df99fa](https://github.com/agnostack/next-shopify/commit/7df99faf7e2458a6ab407fa150d1b39b4ddc06ee))
|
|
267
|
+
* wip ([b6ddf4d](https://github.com/agnostack/next-shopify/commit/b6ddf4d43671cd5c4e112e86eb92ac66c061ec6a))
|
|
268
|
+
* wip ([1749f1a](https://github.com/agnostack/next-shopify/commit/1749f1a290a4f8c6c0b16ad6e908f29f7a1745b1))
|
|
269
|
+
* wip ([e5c1c87](https://github.com/agnostack/next-shopify/commit/e5c1c8755864003c29998c6c0694d27cb17aa4cf))
|
|
270
|
+
* wip ([390b964](https://github.com/agnostack/next-shopify/commit/390b9644bc1f12db8277f3da0508a2b230280dcc))
|
|
271
|
+
* wip ([90983c7](https://github.com/agnostack/next-shopify/commit/90983c7a1768e69a5249d33e00e8d38880508394))
|
|
272
|
+
* wip ([f36ed69](https://github.com/agnostack/next-shopify/commit/f36ed691f5bef227fdfcdd516bfd226e6a2bba63))
|
|
273
|
+
* wip ([36870f3](https://github.com/agnostack/next-shopify/commit/36870f390f8658c90b71087410bbc2ab28ee09a0))
|
|
274
|
+
* wip ([2d84cd6](https://github.com/agnostack/next-shopify/commit/2d84cd68153347781fea5abeac23b6ae50b46d47))
|
|
275
|
+
* wip ([038544c](https://github.com/agnostack/next-shopify/commit/038544ce09ce8164375f4bdfce1a247a1bfd0388))
|
|
276
|
+
* wip ([49fe308](https://github.com/agnostack/next-shopify/commit/49fe3080c9993faff0fa0446ade2ae8c2c659891))
|
|
277
|
+
* wip ([c4ac3a5](https://github.com/agnostack/next-shopify/commit/c4ac3a56dabe2d86911ea2a727fc197772c4f0f3))
|
|
278
|
+
* wip ([cccdb81](https://github.com/agnostack/next-shopify/commit/cccdb8124dc99b62983810115b2119d350b4180d))
|
|
279
|
+
* wip ([7e82f0b](https://github.com/agnostack/next-shopify/commit/7e82f0b3e6289f393692636f30da2a26345ed362))
|
|
280
|
+
* wip ([b758513](https://github.com/agnostack/next-shopify/commit/b75851388f5b2d05bcf02895427f09db8bcf8427))
|
|
281
|
+
* wip ([8f22bc6](https://github.com/agnostack/next-shopify/commit/8f22bc63d86449a91d146701ab52df46bc8b2b1d))
|
|
282
|
+
* wip ([9cdb1b5](https://github.com/agnostack/next-shopify/commit/9cdb1b5a60a91e2cc9f7dded4fcbf72d9567697e))
|
|
283
|
+
* wip ([db3403c](https://github.com/agnostack/next-shopify/commit/db3403c6fd0ffdefbb5de804c2e830f405ccd3b0))
|
|
284
|
+
* wip ([f4c0c70](https://github.com/agnostack/next-shopify/commit/f4c0c701a66e3ad40f0a5de7ce66b322d6f9900d))
|
|
285
|
+
* wip ([fd45528](https://github.com/agnostack/next-shopify/commit/fd455288c785218525e325fd0c75bb5f1b7bf40f))
|
|
286
|
+
* wip ([5a1d666](https://github.com/agnostack/next-shopify/commit/5a1d66647f364d895709fba945829539b18aabe9))
|
|
287
|
+
* wip ([4ab8e64](https://github.com/agnostack/next-shopify/commit/4ab8e644c4b7a98128fbfd9919e253e2f15423f8))
|
|
288
|
+
* wip ([9f938fc](https://github.com/agnostack/next-shopify/commit/9f938fc02dc10c6c532e681bfe61b03f9a44ce2f))
|
|
289
|
+
* wip ([3a2608a](https://github.com/agnostack/next-shopify/commit/3a2608a7205ae22a88779ace18ebe082c0ebbcb9))
|
|
290
|
+
* wip ([4aa20a5](https://github.com/agnostack/next-shopify/commit/4aa20a5cd867e3c9f9d4eddb58e3cf447dfd7fbe))
|
|
291
|
+
* wip ([8af41cd](https://github.com/agnostack/next-shopify/commit/8af41cd728466bb05d7f2ac93cbbb51a8d1a5a96))
|
|
292
|
+
* wip ([a30ccc5](https://github.com/agnostack/next-shopify/commit/a30ccc5fc2a2973aebc7c350a6e552e7f2033a0c))
|
|
293
|
+
* wip ([65cb793](https://github.com/agnostack/next-shopify/commit/65cb793b99613677cf52aed2b5f3f754fc17559e))
|
|
294
|
+
* wip ([6f9f83a](https://github.com/agnostack/next-shopify/commit/6f9f83a55755b546b2f98318f10d84d36c4a92a3))
|
|
295
|
+
* wip ([cf749c7](https://github.com/agnostack/next-shopify/commit/cf749c7fd8c49ca8d3fabf9949c271b1ae1e62ad))
|
|
296
|
+
* wip ([5453e39](https://github.com/agnostack/next-shopify/commit/5453e395be18aac31c3a4dbe51aaee62e5353123))
|
|
297
|
+
* wip ([9ab8c8f](https://github.com/agnostack/next-shopify/commit/9ab8c8fa009d177f5a129960f64709ab89467dbd))
|
|
298
|
+
* wip ([d68314f](https://github.com/agnostack/next-shopify/commit/d68314fd2a0fdb6cbdaa086e1e932d4bd248611e))
|
|
299
|
+
* wip ([23dd785](https://github.com/agnostack/next-shopify/commit/23dd7853c1edb9657e856d66bbb4ca85d3072566))
|
|
300
|
+
* wip ([47d1e5e](https://github.com/agnostack/next-shopify/commit/47d1e5e2c4122370c05e78fdeb92ffe65f6e2f55))
|
|
301
|
+
* wip ([6fde15b](https://github.com/agnostack/next-shopify/commit/6fde15b0e46d4ef8ecf1e1960976ea0c79ffb74e))
|
|
302
|
+
* wip ([a150462](https://github.com/agnostack/next-shopify/commit/a1504621802508b70be2811e505e5dda39b82385))
|
|
303
|
+
* wip ([5848f92](https://github.com/agnostack/next-shopify/commit/5848f9267099abe8a34d6e83f8348035f298fd60))
|
|
304
|
+
* wip ([706c155](https://github.com/agnostack/next-shopify/commit/706c155ef8b262f009e652c22fd8fa8146f68d6a))
|
|
305
|
+
* wip ([4ddf4db](https://github.com/agnostack/next-shopify/commit/4ddf4db0f368adc29caf2e9c21a42fc710a5b37a))
|
|
306
|
+
|
|
307
|
+
## [1.14.1-beta.47](https://github.com/agnostack/next-shopify/compare/v1.14.1-beta.46...v1.14.1-beta.47) (2023-12-07)
|
|
308
|
+
|
|
309
|
+
|
|
310
|
+
### Bug Fixes
|
|
311
|
+
|
|
312
|
+
* removed logs ([0f4dce9](https://github.com/agnostack/next-shopify/commit/0f4dce9b598c8133f49784ad78414375d4b84047))
|
|
313
|
+
|
|
314
|
+
## [1.14.1-beta.46](https://github.com/agnostack/next-shopify/compare/v1.14.1-beta.45...v1.14.1-beta.46) (2023-12-07)
|
|
315
|
+
|
|
316
|
+
|
|
317
|
+
### Bug Fixes
|
|
318
|
+
|
|
319
|
+
* removed tslib importHelpers ([fc64a16](https://github.com/agnostack/next-shopify/commit/fc64a163bcacd56ed0856adc57dff8f4be97d8c8))
|
|
320
|
+
|
|
321
|
+
## [1.14.1-beta.45](https://github.com/agnostack/next-shopify/compare/v1.14.1-beta.44...v1.14.1-beta.45) (2023-12-07)
|
|
322
|
+
|
|
323
|
+
|
|
324
|
+
### Bug Fixes
|
|
325
|
+
|
|
326
|
+
* removed logs ([5ebe075](https://github.com/agnostack/next-shopify/commit/5ebe07542394a0e6ddc2d4bd8accbfb11aba4d0a))
|
|
327
|
+
|
|
328
|
+
## [1.14.1-beta.44](https://github.com/agnostack/next-shopify/compare/v1.14.1-beta.43...v1.14.1-beta.44) (2023-12-07)
|
|
329
|
+
|
|
330
|
+
|
|
331
|
+
### Bug Fixes
|
|
332
|
+
|
|
333
|
+
* wip ([91f00a2](https://github.com/agnostack/next-shopify/commit/91f00a26bc24f9bb1fa60ecef5ae1da1464c2c20))
|
|
334
|
+
|
|
335
|
+
## [1.14.1-beta.43](https://github.com/agnostack/next-shopify/compare/v1.14.1-beta.42...v1.14.1-beta.43) (2023-12-07)
|
|
336
|
+
|
|
337
|
+
|
|
338
|
+
### Bug Fixes
|
|
339
|
+
|
|
340
|
+
* wip ([2972f35](https://github.com/agnostack/next-shopify/commit/2972f35ffb727ecf6eb5024147ed9cb1403be642))
|
|
341
|
+
|
|
342
|
+
## [1.14.1-beta.42](https://github.com/agnostack/next-shopify/compare/v1.14.1-beta.41...v1.14.1-beta.42) (2023-12-07)
|
|
343
|
+
|
|
344
|
+
|
|
345
|
+
### Bug Fixes
|
|
346
|
+
|
|
347
|
+
* wip ([e350331](https://github.com/agnostack/next-shopify/commit/e3503310534755c7fcf10e4c5bc9f4cccd8e4e2a))
|
|
348
|
+
|
|
349
|
+
## [1.14.1-beta.41](https://github.com/agnostack/next-shopify/compare/v1.14.1-beta.40...v1.14.1-beta.41) (2023-12-07)
|
|
350
|
+
|
|
351
|
+
|
|
352
|
+
### Bug Fixes
|
|
353
|
+
|
|
354
|
+
* wip ([8860ed9](https://github.com/agnostack/next-shopify/commit/8860ed90676ffaa74c82dd470481336e701338f0))
|
|
355
|
+
|
|
356
|
+
## [1.14.1-beta.40](https://github.com/agnostack/next-shopify/compare/v1.14.1-beta.39...v1.14.1-beta.40) (2023-12-07)
|
|
357
|
+
|
|
358
|
+
|
|
359
|
+
### Bug Fixes
|
|
360
|
+
|
|
361
|
+
* wip ([7df99fa](https://github.com/agnostack/next-shopify/commit/7df99faf7e2458a6ab407fa150d1b39b4ddc06ee))
|
|
362
|
+
|
|
363
|
+
## [1.14.1-beta.39](https://github.com/agnostack/next-shopify/compare/v1.14.1-beta.38...v1.14.1-beta.39) (2023-12-07)
|
|
364
|
+
|
|
365
|
+
|
|
366
|
+
### Bug Fixes
|
|
367
|
+
|
|
368
|
+
* externalized useVerification methods ([98c66d6](https://github.com/agnostack/next-shopify/commit/98c66d626b40d0bb2b6b12bfb8c5e85d13a2d6d4))
|
|
369
|
+
|
|
370
|
+
## [1.14.1-beta.38](https://github.com/agnostack/next-shopify/compare/v1.14.1-beta.37...v1.14.1-beta.38) (2023-12-07)
|
|
371
|
+
|
|
372
|
+
|
|
373
|
+
### Bug Fixes
|
|
374
|
+
|
|
375
|
+
* wip ([b6ddf4d](https://github.com/agnostack/next-shopify/commit/b6ddf4d43671cd5c4e112e86eb92ac66c061ec6a))
|
|
376
|
+
|
|
377
|
+
## [1.14.1-beta.37](https://github.com/agnostack/next-shopify/compare/v1.14.1-beta.36...v1.14.1-beta.37) (2023-12-07)
|
|
378
|
+
|
|
379
|
+
|
|
380
|
+
### Bug Fixes
|
|
381
|
+
|
|
382
|
+
* wip ([1749f1a](https://github.com/agnostack/next-shopify/commit/1749f1a290a4f8c6c0b16ad6e908f29f7a1745b1))
|
|
383
|
+
|
|
384
|
+
## [1.14.1-beta.36](https://github.com/agnostack/next-shopify/compare/v1.14.1-beta.35...v1.14.1-beta.36) (2023-12-07)
|
|
385
|
+
|
|
386
|
+
|
|
387
|
+
### Bug Fixes
|
|
388
|
+
|
|
389
|
+
* wip ([e5c1c87](https://github.com/agnostack/next-shopify/commit/e5c1c8755864003c29998c6c0694d27cb17aa4cf))
|
|
390
|
+
|
|
391
|
+
## [1.14.1-beta.35](https://github.com/agnostack/next-shopify/compare/v1.14.1-beta.34...v1.14.1-beta.35) (2023-12-07)
|
|
392
|
+
|
|
393
|
+
|
|
394
|
+
### Bug Fixes
|
|
395
|
+
|
|
396
|
+
* wip ([390b964](https://github.com/agnostack/next-shopify/commit/390b9644bc1f12db8277f3da0508a2b230280dcc))
|
|
397
|
+
|
|
398
|
+
## [1.14.1-beta.34](https://github.com/agnostack/next-shopify/compare/v1.14.1-beta.33...v1.14.1-beta.34) (2023-12-07)
|
|
399
|
+
|
|
400
|
+
|
|
401
|
+
### Bug Fixes
|
|
402
|
+
|
|
403
|
+
* wip ([90983c7](https://github.com/agnostack/next-shopify/commit/90983c7a1768e69a5249d33e00e8d38880508394))
|
|
404
|
+
|
|
405
|
+
## [1.14.1-beta.33](https://github.com/agnostack/next-shopify/compare/v1.14.1-beta.32...v1.14.1-beta.33) (2023-12-07)
|
|
406
|
+
|
|
407
|
+
|
|
408
|
+
### Bug Fixes
|
|
409
|
+
|
|
410
|
+
* wip ([f36ed69](https://github.com/agnostack/next-shopify/commit/f36ed691f5bef227fdfcdd516bfd226e6a2bba63))
|
|
411
|
+
|
|
412
|
+
## [1.14.1-beta.32](https://github.com/agnostack/next-shopify/compare/v1.14.1-beta.31...v1.14.1-beta.32) (2023-12-07)
|
|
413
|
+
|
|
414
|
+
|
|
415
|
+
### Bug Fixes
|
|
416
|
+
|
|
417
|
+
* wip ([36870f3](https://github.com/agnostack/next-shopify/commit/36870f390f8658c90b71087410bbc2ab28ee09a0))
|
|
418
|
+
|
|
419
|
+
## [1.14.1-beta.31](https://github.com/agnostack/next-shopify/compare/v1.14.1-beta.30...v1.14.1-beta.31) (2023-12-07)
|
|
420
|
+
|
|
421
|
+
|
|
422
|
+
### Bug Fixes
|
|
423
|
+
|
|
424
|
+
* wip ([2d84cd6](https://github.com/agnostack/next-shopify/commit/2d84cd68153347781fea5abeac23b6ae50b46d47))
|
|
425
|
+
|
|
426
|
+
## [1.14.1-beta.30](https://github.com/agnostack/next-shopify/compare/v1.14.1-beta.29...v1.14.1-beta.30) (2023-12-07)
|
|
427
|
+
|
|
428
|
+
|
|
429
|
+
### Bug Fixes
|
|
430
|
+
|
|
431
|
+
* wip ([038544c](https://github.com/agnostack/next-shopify/commit/038544ce09ce8164375f4bdfce1a247a1bfd0388))
|
|
432
|
+
|
|
433
|
+
## [1.14.1-beta.29](https://github.com/agnostack/next-shopify/compare/v1.14.1-beta.28...v1.14.1-beta.29) (2023-12-07)
|
|
434
|
+
|
|
435
|
+
|
|
436
|
+
### Bug Fixes
|
|
437
|
+
|
|
438
|
+
* wip ([49fe308](https://github.com/agnostack/next-shopify/commit/49fe3080c9993faff0fa0446ade2ae8c2c659891))
|
|
439
|
+
* wip ([c4ac3a5](https://github.com/agnostack/next-shopify/commit/c4ac3a56dabe2d86911ea2a727fc197772c4f0f3))
|
|
440
|
+
|
|
441
|
+
## [1.14.1-beta.28](https://github.com/agnostack/next-shopify/compare/v1.14.1-beta.27...v1.14.1-beta.28) (2023-12-07)
|
|
442
|
+
|
|
443
|
+
|
|
444
|
+
### Bug Fixes
|
|
445
|
+
|
|
446
|
+
* wip ([cccdb81](https://github.com/agnostack/next-shopify/commit/cccdb8124dc99b62983810115b2119d350b4180d))
|
|
447
|
+
|
|
448
|
+
## [1.14.1-beta.27](https://github.com/agnostack/next-shopify/compare/v1.14.1-beta.26...v1.14.1-beta.27) (2023-12-07)
|
|
449
|
+
|
|
450
|
+
|
|
451
|
+
### Bug Fixes
|
|
452
|
+
|
|
453
|
+
* wip ([7e82f0b](https://github.com/agnostack/next-shopify/commit/7e82f0b3e6289f393692636f30da2a26345ed362))
|
|
454
|
+
|
|
455
|
+
## [1.14.1-beta.26](https://github.com/agnostack/next-shopify/compare/v1.14.1-beta.25...v1.14.1-beta.26) (2023-12-07)
|
|
456
|
+
|
|
457
|
+
|
|
458
|
+
### Bug Fixes
|
|
459
|
+
|
|
460
|
+
* wip ([b758513](https://github.com/agnostack/next-shopify/commit/b75851388f5b2d05bcf02895427f09db8bcf8427))
|
|
461
|
+
|
|
462
|
+
## [1.14.1-beta.25](https://github.com/agnostack/next-shopify/compare/v1.14.1-beta.24...v1.14.1-beta.25) (2023-12-07)
|
|
463
|
+
|
|
464
|
+
|
|
465
|
+
### Bug Fixes
|
|
466
|
+
|
|
467
|
+
* wip ([8f22bc6](https://github.com/agnostack/next-shopify/commit/8f22bc63d86449a91d146701ab52df46bc8b2b1d))
|
|
468
|
+
|
|
469
|
+
## [1.14.1-beta.24](https://github.com/agnostack/next-shopify/compare/v1.14.1-beta.23...v1.14.1-beta.24) (2023-12-07)
|
|
470
|
+
|
|
471
|
+
|
|
472
|
+
### Bug Fixes
|
|
473
|
+
|
|
474
|
+
* wip ([9cdb1b5](https://github.com/agnostack/next-shopify/commit/9cdb1b5a60a91e2cc9f7dded4fcbf72d9567697e))
|
|
475
|
+
|
|
476
|
+
## [1.14.1-beta.23](https://github.com/agnostack/next-shopify/compare/v1.14.1-beta.22...v1.14.1-beta.23) (2023-12-07)
|
|
477
|
+
|
|
478
|
+
|
|
479
|
+
### Bug Fixes
|
|
480
|
+
|
|
481
|
+
* wip ([db3403c](https://github.com/agnostack/next-shopify/commit/db3403c6fd0ffdefbb5de804c2e830f405ccd3b0))
|
|
482
|
+
|
|
483
|
+
## [1.14.1-beta.22](https://github.com/agnostack/next-shopify/compare/v1.14.1-beta.21...v1.14.1-beta.22) (2023-12-07)
|
|
484
|
+
|
|
485
|
+
|
|
486
|
+
### Bug Fixes
|
|
487
|
+
|
|
488
|
+
* wip ([f4c0c70](https://github.com/agnostack/next-shopify/commit/f4c0c701a66e3ad40f0a5de7ce66b322d6f9900d))
|
|
489
|
+
|
|
490
|
+
## [1.14.1-beta.21](https://github.com/agnostack/next-shopify/compare/v1.14.1-beta.20...v1.14.1-beta.21) (2023-12-07)
|
|
491
|
+
|
|
492
|
+
|
|
493
|
+
### Bug Fixes
|
|
494
|
+
|
|
495
|
+
* wip ([fd45528](https://github.com/agnostack/next-shopify/commit/fd455288c785218525e325fd0c75bb5f1b7bf40f))
|
|
496
|
+
|
|
497
|
+
## [1.14.1-beta.20](https://github.com/agnostack/next-shopify/compare/v1.14.1-beta.19...v1.14.1-beta.20) (2023-12-07)
|
|
498
|
+
|
|
499
|
+
|
|
500
|
+
### Bug Fixes
|
|
501
|
+
|
|
502
|
+
* wip ([5a1d666](https://github.com/agnostack/next-shopify/commit/5a1d66647f364d895709fba945829539b18aabe9))
|
|
503
|
+
|
|
504
|
+
## [1.14.1-beta.19](https://github.com/agnostack/next-shopify/compare/v1.14.1-beta.18...v1.14.1-beta.19) (2023-12-07)
|
|
505
|
+
|
|
506
|
+
|
|
507
|
+
### Bug Fixes
|
|
508
|
+
|
|
509
|
+
* wip ([4ab8e64](https://github.com/agnostack/next-shopify/commit/4ab8e644c4b7a98128fbfd9919e253e2f15423f8))
|
|
510
|
+
|
|
511
|
+
## [1.14.1-beta.18](https://github.com/agnostack/next-shopify/compare/v1.14.1-beta.17...v1.14.1-beta.18) (2023-12-07)
|
|
512
|
+
|
|
513
|
+
|
|
514
|
+
### Bug Fixes
|
|
515
|
+
|
|
516
|
+
* wip ([9f938fc](https://github.com/agnostack/next-shopify/commit/9f938fc02dc10c6c532e681bfe61b03f9a44ce2f))
|
|
517
|
+
|
|
518
|
+
## [1.14.1-beta.17](https://github.com/agnostack/next-shopify/compare/v1.14.1-beta.16...v1.14.1-beta.17) (2023-12-07)
|
|
519
|
+
|
|
520
|
+
|
|
521
|
+
### Bug Fixes
|
|
522
|
+
|
|
523
|
+
* wip ([3a2608a](https://github.com/agnostack/next-shopify/commit/3a2608a7205ae22a88779ace18ebe082c0ebbcb9))
|
|
524
|
+
|
|
525
|
+
## [1.14.1-beta.16](https://github.com/agnostack/next-shopify/compare/v1.14.1-beta.15...v1.14.1-beta.16) (2023-12-06)
|
|
526
|
+
|
|
527
|
+
|
|
528
|
+
### Bug Fixes
|
|
529
|
+
|
|
530
|
+
* wip ([4aa20a5](https://github.com/agnostack/next-shopify/commit/4aa20a5cd867e3c9f9d4eddb58e3cf447dfd7fbe))
|
|
531
|
+
|
|
532
|
+
## [1.14.1-beta.15](https://github.com/agnostack/next-shopify/compare/v1.14.1-beta.14...v1.14.1-beta.15) (2023-12-06)
|
|
533
|
+
|
|
534
|
+
|
|
535
|
+
### Bug Fixes
|
|
536
|
+
|
|
537
|
+
* wip ([8af41cd](https://github.com/agnostack/next-shopify/commit/8af41cd728466bb05d7f2ac93cbbb51a8d1a5a96))
|
|
538
|
+
|
|
539
|
+
## [1.14.1-beta.14](https://github.com/agnostack/next-shopify/compare/v1.14.1-beta.13...v1.14.1-beta.14) (2023-12-06)
|
|
540
|
+
|
|
541
|
+
|
|
542
|
+
### Bug Fixes
|
|
543
|
+
|
|
544
|
+
* wip ([a30ccc5](https://github.com/agnostack/next-shopify/commit/a30ccc5fc2a2973aebc7c350a6e552e7f2033a0c))
|
|
545
|
+
|
|
546
|
+
## [1.14.1-beta.13](https://github.com/agnostack/next-shopify/compare/v1.14.1-beta.12...v1.14.1-beta.13) (2023-12-06)
|
|
547
|
+
|
|
548
|
+
|
|
549
|
+
### Bug Fixes
|
|
550
|
+
|
|
551
|
+
* wip ([65cb793](https://github.com/agnostack/next-shopify/commit/65cb793b99613677cf52aed2b5f3f754fc17559e))
|
|
552
|
+
|
|
553
|
+
## [1.14.1-beta.12](https://github.com/agnostack/next-shopify/compare/v1.14.1-beta.11...v1.14.1-beta.12) (2023-12-06)
|
|
554
|
+
|
|
555
|
+
|
|
556
|
+
### Bug Fixes
|
|
557
|
+
|
|
558
|
+
* wip ([6f9f83a](https://github.com/agnostack/next-shopify/commit/6f9f83a55755b546b2f98318f10d84d36c4a92a3))
|
|
559
|
+
|
|
560
|
+
## [1.14.1-beta.11](https://github.com/agnostack/next-shopify/compare/v1.14.1-beta.10...v1.14.1-beta.11) (2023-12-06)
|
|
561
|
+
|
|
562
|
+
|
|
563
|
+
### Bug Fixes
|
|
564
|
+
|
|
565
|
+
* wip ([cf749c7](https://github.com/agnostack/next-shopify/commit/cf749c7fd8c49ca8d3fabf9949c271b1ae1e62ad))
|
|
566
|
+
|
|
567
|
+
## [1.14.1-beta.10](https://github.com/agnostack/next-shopify/compare/v1.14.1-beta.9...v1.14.1-beta.10) (2023-12-06)
|
|
568
|
+
|
|
569
|
+
|
|
570
|
+
### Bug Fixes
|
|
571
|
+
|
|
572
|
+
* wip ([5453e39](https://github.com/agnostack/next-shopify/commit/5453e395be18aac31c3a4dbe51aaee62e5353123))
|
|
573
|
+
|
|
1
574
|
## [1.14.1-beta.9](https://github.com/agnostack/next-shopify/compare/v1.14.1-beta.8...v1.14.1-beta.9) (2023-12-06)
|
|
2
575
|
|
|
3
576
|
|
package/README.md
CHANGED
|
@@ -11,11 +11,11 @@ yarn add @agnostack/next-shopify
|
|
|
11
11
|
|
|
12
12
|
Inside of `next.config.js`, add the following:
|
|
13
13
|
```js
|
|
14
|
-
const {
|
|
14
|
+
const { withShopify } = require('@agnostack/next-shopify')
|
|
15
15
|
|
|
16
16
|
const manifestTemplate = require('./manifestTemplate.json')
|
|
17
17
|
|
|
18
|
-
const nextConfig =
|
|
18
|
+
const nextConfig = withShopify({
|
|
19
19
|
zendesk: { manifestTemplate },
|
|
20
20
|
})
|
|
21
21
|
|
|
@@ -24,11 +24,11 @@ const nextConfig = withZendeskCLI({
|
|
|
24
24
|
Also, create an api route (`pages/api/apps.js`) containing the following:
|
|
25
25
|
```js
|
|
26
26
|
import getConfig from 'next/config'
|
|
27
|
-
import {
|
|
27
|
+
import { withShopify } from '@agnostack/next-shopify'
|
|
28
28
|
|
|
29
29
|
const { serverRuntimeConfig } = getConfig() ?? {}
|
|
30
30
|
|
|
31
|
-
export default
|
|
31
|
+
export default withShopify(serverRuntimeConfig)
|
|
32
32
|
```
|
|
33
33
|
|
|
34
34
|
|
|
@@ -36,12 +36,13 @@ export default zendeskCLIHandler(serverRuntimeConfig)
|
|
|
36
36
|
|
|
37
37
|
Inside of `next.config.js`, add the following:
|
|
38
38
|
```js
|
|
39
|
-
const { withPlugins
|
|
39
|
+
const { withPlugins } = require('@agnostack/next-plugins')
|
|
40
|
+
const { withShopify } = require('@agnostack/next-shopify')
|
|
40
41
|
|
|
41
42
|
const manifest = require('./manifest.json')
|
|
42
43
|
|
|
43
44
|
const nextPlugins = [{
|
|
44
|
-
[
|
|
45
|
+
[withShopify]: {
|
|
45
46
|
manifestTemplate: manifest,
|
|
46
47
|
/* NOTE: add optionale below
|
|
47
48
|
apiRoute: '/api/my-custom-api-json-route', // (defaults to /api/apps)
|
|
@@ -81,11 +82,11 @@ const nextConfig = withPlugins({
|
|
|
81
82
|
Also, create an api route (`pages/api/apps.js`) containing the following:
|
|
82
83
|
```js
|
|
83
84
|
import getConfig from 'next/config'
|
|
84
|
-
import {
|
|
85
|
+
import { withShopify } from '@agnostack/next-shopify'
|
|
85
86
|
|
|
86
87
|
const { publicRuntimeConfig } = getConfig() ?? {}
|
|
87
88
|
|
|
88
|
-
export default
|
|
89
|
+
export default withShopify(publicRuntimeConfig)
|
|
89
90
|
```
|
|
90
91
|
|
|
91
92
|
|