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/admin.cjs +120 -132
- package/dist/admin.cjs.map +1 -1
- package/dist/admin.js +120 -132
- package/dist/admin.js.map +1 -1
- package/dist/index.cjs +128 -140
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +128 -140
- package/dist/index.js.map +1 -1
- package/dist/storefront.cjs +8 -8
- package/dist/storefront.cjs.map +1 -1
- package/dist/storefront.js +8 -8
- package/dist/storefront.js.map +1 -1
- package/dist/types.d.cts +3 -0
- package/dist/types.d.ts +3 -0
- package/package.json +1 -1
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;
|