@creator.co/creatorco-kysely-types 1.0.21-alpha-f0d1b14 → 1.0.22-alpha-6b3aed6
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 +3 -7
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -178,8 +178,8 @@ export type CampaignToImage = {
|
|
|
178
178
|
type: string;
|
|
179
179
|
};
|
|
180
180
|
export type CampaignToShopifyProduct = {
|
|
181
|
-
|
|
182
|
-
|
|
181
|
+
campaign_id: number;
|
|
182
|
+
shopify_product_id: number;
|
|
183
183
|
};
|
|
184
184
|
export type Category = {
|
|
185
185
|
id: GeneratedAlways<number>;
|
|
@@ -490,10 +490,6 @@ export type ShopifyProduct = {
|
|
|
490
490
|
shopify_id: string;
|
|
491
491
|
title: string;
|
|
492
492
|
handle: string;
|
|
493
|
-
created_at: Timestamp | null;
|
|
494
|
-
updated_at: Timestamp | null;
|
|
495
|
-
tags: string | null;
|
|
496
|
-
status: string | null;
|
|
497
493
|
meta_data: Generated<Json>;
|
|
498
494
|
last_synced: Generated<Timestamp>;
|
|
499
495
|
shopify_store_id: number;
|
|
@@ -703,7 +699,6 @@ export type YoutubeProfile = {
|
|
|
703
699
|
brandId: number | null;
|
|
704
700
|
};
|
|
705
701
|
export type DB = {
|
|
706
|
-
_CampaignToShopifyProduct: CampaignToShopifyProduct;
|
|
707
702
|
AffiliateClick: AffiliateClick;
|
|
708
703
|
AffiliateEvent: AffiliateEvent;
|
|
709
704
|
AffiliateLink: AffiliateLink;
|
|
@@ -714,6 +709,7 @@ export type DB = {
|
|
|
714
709
|
brandtoimage: BrandToImage;
|
|
715
710
|
branduserprofile: BrandUserProfile;
|
|
716
711
|
campaign: Campaign;
|
|
712
|
+
campaign_to_shopify_product: CampaignToShopifyProduct;
|
|
717
713
|
CampaignInvite: CampaignInvite;
|
|
718
714
|
campaignpin: CampaignPin;
|
|
719
715
|
campaignstep: CampaignStep;
|