@creator.co/creatorco-kysely-types 1.0.22-alpha-6b3aed6 → 1.0.22-alpha-c4b16cb
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/index.d.ts +2 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -490,6 +490,7 @@ export type ShopifyProduct = {
|
|
|
490
490
|
shopify_id: string;
|
|
491
491
|
title: string;
|
|
492
492
|
handle: string;
|
|
493
|
+
image_url: string;
|
|
493
494
|
meta_data: Generated<Json>;
|
|
494
495
|
last_synced: Generated<Timestamp>;
|
|
495
496
|
shopify_store_id: number;
|
|
@@ -499,7 +500,7 @@ export type ShopifyStore = {
|
|
|
499
500
|
shopify_id: string | null;
|
|
500
501
|
name: string | null;
|
|
501
502
|
url: string;
|
|
502
|
-
access_token: string;
|
|
503
|
+
access_token: string | null;
|
|
503
504
|
meta_data: Generated<Json>;
|
|
504
505
|
brand_id: number;
|
|
505
506
|
};
|