You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**BREAKING CHANGE**: Removed `customShopDomains` configuration parameter. Use `domainTransformations` instead, which provides both validation and transformation capabilities.
7
+
8
+
The `SHOP_CUSTOM_DOMAIN` environment variable is no longer supported.
9
+
10
+
**Migration Guide**:
11
+
12
+
If you were using `customShopDomains` for validation only:
|[fulfillment service](./fulfillment-service/README.md)| Object containing functions to authenticate and create fulfillment service requests.|
177
-
|[utils](./utils/README.md)| Object containing general functions to help build apps. |
178
-
|[rest](../guides/rest-resources.md)| Object containing OO representations of the Admin REST API. See the [API reference documentation](https://shopify.dev/docs/api/admin-rest) for details. |
| config | The options used to set up the object, containing the parameters of this function. |
220
+
|[auth](./auth/README.md)| Object containing functions to authenticate with Shopify APIs. |
221
+
|[clients](./clients/README.md)| Object containing clients to access Shopify APIs. |
222
+
|[session](./session/README.md)| Object containing functions to manage Shopify sessions. |
223
+
|[webhooks](./webhooks/README.md)| Object containing functions to configure and handle Shopify webhooks. |
224
+
|[billing](./billing/README.md)| Object containing functions to enable apps to bill merchants. |
225
+
|[flow](./flow/README.md)| Object containing functions to authenticate Flow extension requests.|
226
+
|[fulfillment service](./fulfillment-service/README.md)| Object containing functions to authenticate and create fulfillment service requests. |
227
+
|[utils](./utils/README.md)| Object containing general functions to help build apps. |
228
+
|[rest](../guides/rest-resources.md)| Object containing OO representations of the Admin REST API. See the [API reference documentation](https://shopify.dev/docs/api/admin-rest) for details. |
Copy file name to clipboardExpand all lines: packages/apps/shopify-api/docs/reference/utils/sanitizeShop.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
This method makes user inputs safer by ensuring that a given shop value is a properly formatted Shopify shop domain.
4
4
5
-
> **Note**: if you're using custom shop domains for testing, you can use the `customShopDomains` setting to add allowed domains.
5
+
> **Note**: if you're using custom shop domains for testing, you can use the `customShopDomains` setting to add allowed domains. For split-domain architectures (e.g., local development with separate admin and API domains), use `domainTransformations` to configure domain mappings that will be automatically applied during sanitization.
0 commit comments