Skip to content

Commit 969763a

Browse files
committed
fix parameters
1 parent 5ecc012 commit 969763a

File tree

1 file changed

+11
-16
lines changed

1 file changed

+11
-16
lines changed

lib/woosignal_shopify.dart

Lines changed: 11 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -222,14 +222,14 @@ class WooSignal {
222222
{int? limit,
223223
String? productType,
224224
int? collectionId,
225-
DateTime? createdAtMax,
226-
DateTime? createdAtMin,
225+
String? createdAtMax,
226+
String? createdAtMin,
227227
String? fields,
228228
String? handle,
229229
List<int>? ids,
230230
String? presentmentCurrencies,
231-
DateTime? publishedAtMax,
232-
DateTime? publishedAtMin,
231+
String? publishedAtMax,
232+
String? publishedAtMin,
233233
String? publishedStatus,
234234
int? sinceId,
235235
String? status,
@@ -282,15 +282,15 @@ class WooSignal {
282282
}
283283

284284
Future<CountResponse?> getProductCount(
285-
{ String? productType,
285+
{String? productType,
286286
int? collectionId,
287-
DateTime? createdAtMax,
288-
DateTime? createdAtMin,
289-
DateTime? publishedAtMax,
290-
DateTime? publishedAtMin,
287+
String? createdAtMax,
288+
String? createdAtMin,
289+
String? publishedAtMax,
290+
String? publishedAtMin,
291291
String? publishedStatus,
292-
DateTime? updatedAtMax,
293-
DateTime? updatedAtMin,
292+
String? updatedAtMax,
293+
String? updatedAtMin,
294294
String? vendor,
295295
}) async {
296296
Map<String, dynamic> payload = {};
@@ -313,8 +313,3 @@ class WooSignal {
313313
);
314314
}
315315
}
316-
317-
318-
319-
320-

0 commit comments

Comments
 (0)