arky-sdk 0.7.113 → 0.7.115

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/types.d.cts CHANGED
@@ -724,6 +724,7 @@ interface GetFormSubmissionsParams {
724
724
  created_at_to?: number;
725
725
  }
726
726
  interface FindActivitiesParams {
727
+ store_id?: string;
727
728
  customer_id?: string;
728
729
  types?: string[];
729
730
  from?: number;
@@ -1176,6 +1177,8 @@ interface GetCustomerParams {
1176
1177
  interface FindCustomersParams {
1177
1178
  store_id?: string;
1178
1179
  query?: string | number;
1180
+ taxonomy_query?: TaxonomyQuery[];
1181
+ status?: CustomerStatus;
1179
1182
  limit?: number;
1180
1183
  cursor?: string;
1181
1184
  sort_field?: string;
package/dist/types.d.ts CHANGED
@@ -724,6 +724,7 @@ interface GetFormSubmissionsParams {
724
724
  created_at_to?: number;
725
725
  }
726
726
  interface FindActivitiesParams {
727
+ store_id?: string;
727
728
  customer_id?: string;
728
729
  types?: string[];
729
730
  from?: number;
@@ -1176,6 +1177,8 @@ interface GetCustomerParams {
1176
1177
  interface FindCustomersParams {
1177
1178
  store_id?: string;
1178
1179
  query?: string | number;
1180
+ taxonomy_query?: TaxonomyQuery[];
1181
+ status?: CustomerStatus;
1179
1182
  limit?: number;
1180
1183
  cursor?: string;
1181
1184
  sort_field?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "arky-sdk",
3
- "version": "0.7.113",
3
+ "version": "0.7.115",
4
4
  "description": "Official TypeScript SDK for Arky - All-in-one store platform",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",