@creator.co/creatorco-kysely-types 1.0.20-alpha-995a7a0 → 1.0.21-alpha-f0d1b14
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 +17 -14
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -177,6 +177,10 @@ export type CampaignToImage = {
|
|
|
177
177
|
campaignId: number;
|
|
178
178
|
type: string;
|
|
179
179
|
};
|
|
180
|
+
export type CampaignToShopifyProduct = {
|
|
181
|
+
A: number;
|
|
182
|
+
B: number;
|
|
183
|
+
};
|
|
180
184
|
export type Category = {
|
|
181
185
|
id: GeneratedAlways<number>;
|
|
182
186
|
slug: string;
|
|
@@ -483,27 +487,25 @@ export type SequenceStep = {
|
|
|
483
487
|
};
|
|
484
488
|
export type ShopifyProduct = {
|
|
485
489
|
id: GeneratedAlways<number>;
|
|
486
|
-
|
|
490
|
+
shopify_id: string;
|
|
487
491
|
title: string;
|
|
488
492
|
handle: string;
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
description: string | null;
|
|
492
|
-
price: number;
|
|
493
|
+
created_at: Timestamp | null;
|
|
494
|
+
updated_at: Timestamp | null;
|
|
493
495
|
tags: string | null;
|
|
494
|
-
status: string;
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
496
|
+
status: string | null;
|
|
497
|
+
meta_data: Generated<Json>;
|
|
498
|
+
last_synced: Generated<Timestamp>;
|
|
499
|
+
shopify_store_id: number;
|
|
498
500
|
};
|
|
499
501
|
export type ShopifyStore = {
|
|
500
502
|
id: GeneratedAlways<number>;
|
|
501
|
-
|
|
502
|
-
name: string;
|
|
503
|
+
shopify_id: string | null;
|
|
504
|
+
name: string | null;
|
|
503
505
|
url: string;
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
506
|
+
access_token: string;
|
|
507
|
+
meta_data: Generated<Json>;
|
|
508
|
+
brand_id: number;
|
|
507
509
|
};
|
|
508
510
|
export type SocialListeningList = {
|
|
509
511
|
id: GeneratedAlways<number>;
|
|
@@ -701,6 +703,7 @@ export type YoutubeProfile = {
|
|
|
701
703
|
brandId: number | null;
|
|
702
704
|
};
|
|
703
705
|
export type DB = {
|
|
706
|
+
_CampaignToShopifyProduct: CampaignToShopifyProduct;
|
|
704
707
|
AffiliateClick: AffiliateClick;
|
|
705
708
|
AffiliateEvent: AffiliateEvent;
|
|
706
709
|
AffiliateLink: AffiliateLink;
|