@heymantle/core-api-client 0.3.4 → 0.3.5

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/dist/index.d.mts CHANGED
@@ -4887,6 +4887,8 @@ type paths = {
4887
4887
  appIds?: string[];
4888
4888
  /** @description The cursor to paginate from */
4889
4889
  cursor?: components["parameters"]["cursor"];
4890
+ /** @description An optional custom domain to filter customers by (e.g. example.com). */
4891
+ domain?: string;
4890
4892
  /** @description Email addresses to filter customers by. Can be passed as an array (email=test1@example.com&email=test2@example.com) or a single string. Returns customers with emails matching any of the provided addresses. */
4891
4893
  email?: string[] | string;
4892
4894
  /** @description The maximum date/time (ISO 8601) of the last update to the Customer */
@@ -4897,7 +4899,7 @@ type paths = {
4897
4899
  page?: components["parameters"]["page"];
4898
4900
  /** @description The search term to filter by */
4899
4901
  search?: components["parameters"]["search"];
4900
- /** @description An optional shopify shop domain to filter customers by. */
4902
+ /** @description An optional shopify shop domain (myshopify.com domain) to filter customers by. */
4901
4903
  shopifyShopDomain?: string;
4902
4904
  /** @description An optional shopify shop id to filter customers by. */
4903
4905
  shopifyShopId?: string;
package/dist/index.d.ts CHANGED
@@ -4887,6 +4887,8 @@ type paths = {
4887
4887
  appIds?: string[];
4888
4888
  /** @description The cursor to paginate from */
4889
4889
  cursor?: components["parameters"]["cursor"];
4890
+ /** @description An optional custom domain to filter customers by (e.g. example.com). */
4891
+ domain?: string;
4890
4892
  /** @description Email addresses to filter customers by. Can be passed as an array (email=test1@example.com&email=test2@example.com) or a single string. Returns customers with emails matching any of the provided addresses. */
4891
4893
  email?: string[] | string;
4892
4894
  /** @description The maximum date/time (ISO 8601) of the last update to the Customer */
@@ -4897,7 +4899,7 @@ type paths = {
4897
4899
  page?: components["parameters"]["page"];
4898
4900
  /** @description The search term to filter by */
4899
4901
  search?: components["parameters"]["search"];
4900
- /** @description An optional shopify shop domain to filter customers by. */
4902
+ /** @description An optional shopify shop domain (myshopify.com domain) to filter customers by. */
4901
4903
  shopifyShopDomain?: string;
4902
4904
  /** @description An optional shopify shop id to filter customers by. */
4903
4905
  shopifyShopId?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@heymantle/core-api-client",
3
- "version": "0.3.4",
3
+ "version": "0.3.5",
4
4
  "description": "TypeScript SDK for the Mantle Core API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",