Skip to content

Commit

Permalink
Update docs to reflect new main default branch
Browse files Browse the repository at this point in the history
  • Loading branch information
melissaluu committed Jul 5, 2023
1 parent b1d61a1 commit 2982983
Show file tree
Hide file tree
Showing 26 changed files with 44 additions and 44 deletions.
8 changes: 4 additions & 4 deletions .github/ISSUE_TEMPLATE/Bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ assignees: ''
**Please complete the checklist before filing an issue:**

- [ ] Is this a "how to" question? For questions on how to use the SDK, implement features or other related questions, [please use our forums](https://community.shopify.com/c/Shopify-APIs-SDKs/bd-p/shopify-apis-and-technology).
- [ ] Is this something you can **debug and fix**? Create a pull request and contribute! Bug fixes and documentation fixes are welcome. You can read our [contribution](https://github.com/Shopify/js-buy-sdk/blob/master/CONTRIBUTING.md) guidelines for more details.
- [ ] Is this something you can **debug and fix**? Create a pull request and contribute! Bug fixes and documentation fixes are welcome. You can read our [contribution](https://github.com/Shopify/js-buy-sdk/blob/main/CONTRIBUTING.md) guidelines for more details.

None of the above? Create an issue. Be sure to include all the necessary information for us to understand and reproduce the problem:

### Bug details
### Bug details

**Describe the bug**
A clear and concise description of what the bug is.
Expand All @@ -38,7 +38,7 @@ A clear and concise description of what you expected to happen.
Add any other context about the problem here.

**Bug Report Checklist**
- [ ] I have read and agree to the [CODE_OF_CONDUCT.md](https://github.com/Shopify/js-buy-sdk/blob/master/CODE_OF_CONDUCT.md)
- [ ] I have read the [CONTRIBUTING.md](https://github.com/Shopify/js-buy-sdk/blob/master/CONTRIBUTING.md) guidelines.
- [ ] I have read and agree to the [CODE_OF_CONDUCT.md](https://github.com/Shopify/js-buy-sdk/blob/main/CODE_OF_CONDUCT.md)
- [ ] I have read the [CONTRIBUTING.md](https://github.com/Shopify/js-buy-sdk/blob/main/CONTRIBUTING.md) guidelines.
- [ ] I have provided a detailed description of the bug, including code samples, and/or network data.
- [ ] I have provided information about my development environment, including SDK version.
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/Feature_request.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ assignees: ''
**Please complete the checklist before filing an issue:**

- [ ] Is this a "how to" question? For questions on how to use the SDK, implement features or other related questions, [please use our forums](https://community.shopify.com/c/Shopify-APIs-SDKs/bd-p/shopify-apis-and-technology).
- [ ] Is this something you can **debug and fix**? Create a pull request and contribute! Bug fixes and documentation fixes are welcome. You can read our [contribution](https://github.com/Shopify/js-buy-sdk/blob/master/CONTRIBUTING.md) guidelines for more details.
- [ ] Is this something you can **debug and fix**? Create a pull request and contribute! Bug fixes and documentation fixes are welcome. You can read our [contribution](https://github.com/Shopify/js-buy-sdk/blob/main/CONTRIBUTING.md) guidelines for more details.

None of the above? Create an issue. Be sure to include all the necessary information for us to understand and reproduce the problem:

### Feature details
### Feature details

**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
* Updates some description strings in the Storefront API schema version `2019-10`.
* Adds an optional param to `collection.fetchWithProducts` for specifying the number of products to return.
* Adds `priceV2` to the `shippingLine` object in the checkout fragment
* Update the [contributing guide](https://github.com/Shopify/js-buy-sdk/blob/master/CONTRIBUTING.md) to recommend using `yarn` instead of `npm`.
* Update the [contributing guide](https://github.com/Shopify/js-buy-sdk/blob/main/CONTRIBUTING.md) to recommend using `yarn` instead of `npm`.

### v2.8.0 (October 3, 2019)
* Bumps the SDK to use Storefront API version `2019-10`. For more information, see the [Release Notes](https://help.shopify.com/en/api/versioning/release-notes/2019-10#storefront-api-changes).
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# How to contribute
We ❤️ pull requests. If you'd like to fix a bug, contribute a feature or
just correct a typo, please feel free to do so, as long as you follow
our [Code of Conduct](https://github.com/Shopify/js-buy-sdk/blob/master/CODE_OF_CONDUCT.md).
our [Code of Conduct](https://github.com/Shopify/js-buy-sdk/blob/main/CODE_OF_CONDUCT.md).

If you're thinking of adding a big new feature, consider opening an
issue first to discuss it to ensure it aligns to the direction of the
Expand Down
6 changes: 3 additions & 3 deletions DEPLOYING.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# Deploying JS Buy SDK

1. Merge your branch into master
1. Merge your branch into main
2. Run `npm version [patch|minor|major]` which will do the following:
* write new version to package.json
* create a commit with a commit message matching the version number
* create a new tag matching the version number
3. Push the new commit and tags to master with `git push && git push --tags`
3. Push the new commit and tags to main with `git push && git push --tags`
4. Deploy built scripts to s3 via [shipit](https://shipit.shopify.io/shopify/js-buy-sdk/production)

# Updating Documentation
Expand All @@ -21,4 +21,4 @@ updated together, the diff will be huge and it will be difficult to review.

1. Generate documentation using `npm run doc:build` or `yarn doc:build`
2. Update the [Changelog](https://github.com/Shopify/js-buy-sdk/CHANGELOG.md) with details about the release.
3. Merge your branch into master
3. Merge your branch into main
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
![Build](https://github.com/shopify/js-buy-sdk/actions/workflows/ci.yml/badge.svg)

**Note**: For help with migrating from v0 of JS Buy SDK to v1 check out the
[Migration Guide](https://github.com/Shopify/js-buy-sdk/blob/master/tutorials/MIGRATION_GUIDE.md).
[Migration Guide](https://github.com/Shopify/js-buy-sdk/blob/main/tutorials/MIGRATION_GUIDE.md).

The JS Buy SDK is a lightweight library that allows you to build ecommerce into
any website. It's based on Shopify's [Storefront API](https://help.shopify.com/api/storefront-api/getting-started)
Expand All @@ -12,7 +12,7 @@ and provides the ability to retrieve products and collections from your shop, ad

## Changelog

View our [Changelog](https://github.com/Shopify/js-buy-sdk/blob/master/CHANGELOG.md) for details about our releases.
View our [Changelog](https://github.com/Shopify/js-buy-sdk/blob/main/CHANGELOG.md) for details about our releases.

## Table Of Contents

Expand Down Expand Up @@ -53,7 +53,7 @@ $ npm install shopify-buy

**CDN:**

There is a minified UMD build of the latest release available via CDN (see the [Changelog](https://github.com/Shopify/js-buy-sdk/blob/master/CHANGELOG.md) for details about the latest release):
There is a minified UMD build of the latest release available via CDN (see the [Changelog](https://github.com/Shopify/js-buy-sdk/blob/main/CHANGELOG.md) for details about the latest release):

```html
<script src="https://sdks.shopifycdn.com/js-buy-sdk/v2/latest/index.umd.min.js"></script>
Expand Down Expand Up @@ -330,14 +330,14 @@ There are JS Buy SDK specific example apps in Node, Ember, and React. You can us

## Contributing
For help on setting up the repo locally, building, testing, and contributing
please see [CONTRIBUTING.md](https://github.com/Shopify/js-buy-sdk/blob/master/CONTRIBUTING.md).
please see [CONTRIBUTING.md](https://github.com/Shopify/js-buy-sdk/blob/main/CONTRIBUTING.md).

## Code of Conduct
All developers who wish to contribute through code or issues, take a look at the
[CODE_OF_CONDUCT.md](https://github.com/Shopify/js-buy-sdk/blob/master/CODE_OF_CONDUCT.md).
[CODE_OF_CONDUCT.md](https://github.com/Shopify/js-buy-sdk/blob/main/CODE_OF_CONDUCT.md).

## License

MIT, see [LICENSE.md](https://github.com/Shopify/js-buy-sdk/blob/master/LICENSE.txt) for details.
MIT, see [LICENSE.md](https://github.com/Shopify/js-buy-sdk/blob/main/LICENSE.txt) for details.

<img src="https://cdn.shopify.com/shopify-marketing_assets/builds/19.0.0/shopify-full-color-black.svg" width="200" />
2 changes: 1 addition & 1 deletion docs/CheckoutResource.html
Original file line number Diff line number Diff line change
Expand Up @@ -3032,7 +3032,7 @@ <h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="ImageH
<br class="clear">

<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Wed Jul 05 2023 10:46:57 GMT-0400 (Eastern Daylight Time)
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Wed Jul 05 2023 15:23:06 GMT-0400 (Eastern Daylight Time)
</footer>

<script> prettyPrint(); </script>
Expand Down
2 changes: 1 addition & 1 deletion docs/Client.html
Original file line number Diff line number Diff line change
Expand Up @@ -627,7 +627,7 @@ <h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="ImageH
<br class="clear">

<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Wed Jul 05 2023 10:46:57 GMT-0400 (Eastern Daylight Time)
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Wed Jul 05 2023 15:23:06 GMT-0400 (Eastern Daylight Time)
</footer>

<script> prettyPrint(); </script>
Expand Down
2 changes: 1 addition & 1 deletion docs/CollectionResource.html
Original file line number Diff line number Diff line change
Expand Up @@ -1278,7 +1278,7 @@ <h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="ImageH
<br class="clear">

<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Wed Jul 05 2023 10:46:57 GMT-0400 (Eastern Daylight Time)
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Wed Jul 05 2023 15:23:06 GMT-0400 (Eastern Daylight Time)
</footer>

<script> prettyPrint(); </script>
Expand Down
2 changes: 1 addition & 1 deletion docs/Config.html
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ <h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="ImageH
<br class="clear">

<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Wed Jul 05 2023 10:46:57 GMT-0400 (Eastern Daylight Time)
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Wed Jul 05 2023 15:23:06 GMT-0400 (Eastern Daylight Time)
</footer>

<script> prettyPrint(); </script>
Expand Down
2 changes: 1 addition & 1 deletion docs/ImageHelpers.html
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ <h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="ImageH
<br class="clear">

<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Wed Jul 05 2023 10:46:57 GMT-0400 (Eastern Daylight Time)
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Wed Jul 05 2023 15:23:06 GMT-0400 (Eastern Daylight Time)
</footer>

<script> prettyPrint(); </script>
Expand Down
2 changes: 1 addition & 1 deletion docs/ImageResource.html
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ <h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="ImageH
<br class="clear">

<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Wed Jul 05 2023 10:46:57 GMT-0400 (Eastern Daylight Time)
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Wed Jul 05 2023 15:23:06 GMT-0400 (Eastern Daylight Time)
</footer>

<script> prettyPrint(); </script>
Expand Down
2 changes: 1 addition & 1 deletion docs/ProductHelpers.html
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ <h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="ImageH
<br class="clear">

<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Wed Jul 05 2023 10:46:57 GMT-0400 (Eastern Daylight Time)
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Wed Jul 05 2023 15:23:06 GMT-0400 (Eastern Daylight Time)
</footer>

<script> prettyPrint(); </script>
Expand Down
2 changes: 1 addition & 1 deletion docs/ProductResource.html
Original file line number Diff line number Diff line change
Expand Up @@ -1389,7 +1389,7 @@ <h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="ImageH
<br class="clear">

<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Wed Jul 05 2023 10:46:57 GMT-0400 (Eastern Daylight Time)
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Wed Jul 05 2023 15:23:06 GMT-0400 (Eastern Daylight Time)
</footer>

<script> prettyPrint(); </script>
Expand Down
2 changes: 1 addition & 1 deletion docs/ShopResource.html
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ <h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="ImageH
<br class="clear">

<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Wed Jul 05 2023 10:46:57 GMT-0400 (Eastern Daylight Time)
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Wed Jul 05 2023 15:23:06 GMT-0400 (Eastern Daylight Time)
</footer>

<script> prettyPrint(); </script>
Expand Down
2 changes: 1 addition & 1 deletion docs/checkout-resource.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ <h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="ImageH
<br class="clear">

<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Wed Jul 05 2023 10:46:57 GMT-0400 (Eastern Daylight Time)
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Wed Jul 05 2023 15:23:06 GMT-0400 (Eastern Daylight Time)
</footer>

<script> prettyPrint(); </script>
Expand Down
2 changes: 1 addition & 1 deletion docs/client.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ <h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="ImageH
<br class="clear">

<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Wed Jul 05 2023 10:46:57 GMT-0400 (Eastern Daylight Time)
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Wed Jul 05 2023 15:23:06 GMT-0400 (Eastern Daylight Time)
</footer>

<script> prettyPrint(); </script>
Expand Down
2 changes: 1 addition & 1 deletion docs/collection-resource.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ <h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="ImageH
<br class="clear">

<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Wed Jul 05 2023 10:46:57 GMT-0400 (Eastern Daylight Time)
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Wed Jul 05 2023 15:23:06 GMT-0400 (Eastern Daylight Time)
</footer>

<script> prettyPrint(); </script>
Expand Down
2 changes: 1 addition & 1 deletion docs/config.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ <h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="ImageH
<br class="clear">

<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Wed Jul 05 2023 10:46:57 GMT-0400 (Eastern Daylight Time)
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Wed Jul 05 2023 15:23:06 GMT-0400 (Eastern Daylight Time)
</footer>

<script> prettyPrint(); </script>
Expand Down
2 changes: 1 addition & 1 deletion docs/image-helpers.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ <h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="ImageH
<br class="clear">

<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Wed Jul 05 2023 10:46:57 GMT-0400 (Eastern Daylight Time)
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Wed Jul 05 2023 15:23:06 GMT-0400 (Eastern Daylight Time)
</footer>

<script> prettyPrint(); </script>
Expand Down
2 changes: 1 addition & 1 deletion docs/image-resource.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ <h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="ImageH
<br class="clear">

<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Wed Jul 05 2023 10:46:57 GMT-0400 (Eastern Daylight Time)
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Wed Jul 05 2023 15:23:06 GMT-0400 (Eastern Daylight Time)
</footer>

<script> prettyPrint(); </script>
Expand Down
16 changes: 8 additions & 8 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,13 @@ <h3> </h3>
<article><h1 id="shopify-javascript-buy-sdk"><a href="https://www.shopify.com">Shopify</a> JavaScript Buy SDK</h1>
<p><img src="https://github.com/shopify/js-buy-sdk/actions/workflows/ci.yml/badge.svg" alt="Build"></p>
<p><strong>Note</strong>: For help with migrating from v0 of JS Buy SDK to v1 check out the
<a href="https://github.com/Shopify/js-buy-sdk/blob/master/tutorials/MIGRATION_GUIDE.md">Migration Guide</a>.</p>
<a href="https://github.com/Shopify/js-buy-sdk/blob/main/tutorials/MIGRATION_GUIDE.md">Migration Guide</a>.</p>
<p>The JS Buy SDK is a lightweight library that allows you to build ecommerce into
any website. It's based on Shopify's <a href="https://help.shopify.com/api/storefront-api/getting-started">Storefront API</a>
and provides the ability to retrieve products and collections from your shop, add products to a cart, and checkout.</p>
<p><a href="https://help.shopify.com/en/api/storefront-api/reference">Full API docs are available here</a>.</p>
<h2 id="changelog">Changelog</h2>
<p>View our <a href="https://github.com/Shopify/js-buy-sdk/blob/master/CHANGELOG.md">Changelog</a> for details about our releases.</p>
<p>View our <a href="https://github.com/Shopify/js-buy-sdk/blob/main/CHANGELOG.md">Changelog</a> for details about our releases.</p>
<h2 id="table-of-contents">Table Of Contents</h2>
<ul>
<li><a href="#installation">Installation</a></li>
Expand Down Expand Up @@ -94,8 +94,8 @@ <h2 id="installation">Installation</h2>
<pre class="prettyprint source lang-bash"><code>$ npm install shopify-buy
</code></pre>
<p><strong>CDN:</strong></p>
<p>There is a minified UMD build of the latest release available via CDN (see the <a href="https://github.com/Shopify/js-buy-sdk/blob/master/CHANGELOG.md">Changelog</a> for details about the latest release):</p>
<pre class="prettyprint source lang-html"><code>&lt;script src=&quot;http://sdks.shopifycdn.com/js-buy-sdk/v2/latest/index.umd.min.js&quot;>&lt;/script>
<p>There is a minified UMD build of the latest release available via CDN (see the <a href="https://github.com/Shopify/js-buy-sdk/blob/main/CHANGELOG.md">Changelog</a> for details about the latest release):</p>
<pre class="prettyprint source lang-html"><code>&lt;script src=&quot;https://sdks.shopifycdn.com/js-buy-sdk/v2/latest/index.umd.min.js&quot;>&lt;/script>
</code></pre>
<p>If you <strong>don't</strong> want to use the latest version, you can use a specific older release version:</p>
<pre class="prettyprint source lang-html"><code>&lt;script src=&quot;https://sdks.shopifycdn.com/js-buy-sdk/1.11.0/index.umd.min.js&quot;>&lt;/script>
Expand Down Expand Up @@ -319,12 +319,12 @@ <h2 id="documentation">Documentation</h2>
</ul>
<h2 id="contributing">Contributing</h2>
<p>For help on setting up the repo locally, building, testing, and contributing
please see <a href="https://github.com/Shopify/js-buy-sdk/blob/master/CONTRIBUTING.md">CONTRIBUTING.md</a>.</p>
please see <a href="https://github.com/Shopify/js-buy-sdk/blob/main/CONTRIBUTING.md">CONTRIBUTING.md</a>.</p>
<h2 id="code-of-conduct">Code of Conduct</h2>
<p>All developers who wish to contribute through code or issues, take a look at the
<a href="https://github.com/Shopify/js-buy-sdk/blob/master/CODE_OF_CONDUCT.md">CODE_OF_CONDUCT.md</a>.</p>
<a href="https://github.com/Shopify/js-buy-sdk/blob/main/CODE_OF_CONDUCT.md">CODE_OF_CONDUCT.md</a>.</p>
<h2 id="license">License</h2>
<p>MIT, see <a href="https://github.com/Shopify/js-buy-sdk/blob/master/LICENSE.txt">LICENSE.md</a> for details.</p>
<p>MIT, see <a href="https://github.com/Shopify/js-buy-sdk/blob/main/LICENSE.txt">LICENSE.md</a> for details.</p>
<img src="https://cdn.shopify.com/shopify-marketing_assets/builds/19.0.0/shopify-full-color-black.svg" width="200" /></article>
</section>

Expand All @@ -342,7 +342,7 @@ <h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="ImageH
<br class="clear">

<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Wed Jul 05 2023 10:46:57 GMT-0400 (Eastern Daylight Time)
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Wed Jul 05 2023 15:23:06 GMT-0400 (Eastern Daylight Time)
</footer>

<script> prettyPrint(); </script>
Expand Down
2 changes: 1 addition & 1 deletion docs/product-helpers.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ <h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="ImageH
<br class="clear">

<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Wed Jul 05 2023 10:46:57 GMT-0400 (Eastern Daylight Time)
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Wed Jul 05 2023 15:23:06 GMT-0400 (Eastern Daylight Time)
</footer>

<script> prettyPrint(); </script>
Expand Down
2 changes: 1 addition & 1 deletion docs/product-resource.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ <h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="ImageH
<br class="clear">

<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Wed Jul 05 2023 10:46:57 GMT-0400 (Eastern Daylight Time)
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Wed Jul 05 2023 15:23:06 GMT-0400 (Eastern Daylight Time)
</footer>

<script> prettyPrint(); </script>
Expand Down
Loading

0 comments on commit 2982983

Please sign in to comment.