@creator.co/creatorco-kysely-types 1.0.20 → 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 +29 -0
- 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;
|
|
@@ -481,6 +485,28 @@ export type SequenceStep = {
|
|
|
481
485
|
order: number;
|
|
482
486
|
stepId: number;
|
|
483
487
|
};
|
|
488
|
+
export type ShopifyProduct = {
|
|
489
|
+
id: GeneratedAlways<number>;
|
|
490
|
+
shopify_id: string;
|
|
491
|
+
title: string;
|
|
492
|
+
handle: string;
|
|
493
|
+
created_at: Timestamp | null;
|
|
494
|
+
updated_at: Timestamp | null;
|
|
495
|
+
tags: string | null;
|
|
496
|
+
status: string | null;
|
|
497
|
+
meta_data: Generated<Json>;
|
|
498
|
+
last_synced: Generated<Timestamp>;
|
|
499
|
+
shopify_store_id: number;
|
|
500
|
+
};
|
|
501
|
+
export type ShopifyStore = {
|
|
502
|
+
id: GeneratedAlways<number>;
|
|
503
|
+
shopify_id: string | null;
|
|
504
|
+
name: string | null;
|
|
505
|
+
url: string;
|
|
506
|
+
access_token: string;
|
|
507
|
+
meta_data: Generated<Json>;
|
|
508
|
+
brand_id: number;
|
|
509
|
+
};
|
|
484
510
|
export type SocialListeningList = {
|
|
485
511
|
id: GeneratedAlways<number>;
|
|
486
512
|
brandId: number;
|
|
@@ -677,6 +703,7 @@ export type YoutubeProfile = {
|
|
|
677
703
|
brandId: number | null;
|
|
678
704
|
};
|
|
679
705
|
export type DB = {
|
|
706
|
+
_CampaignToShopifyProduct: CampaignToShopifyProduct;
|
|
680
707
|
AffiliateClick: AffiliateClick;
|
|
681
708
|
AffiliateEvent: AffiliateEvent;
|
|
682
709
|
AffiliateLink: AffiliateLink;
|
|
@@ -724,6 +751,8 @@ export type DB = {
|
|
|
724
751
|
sequenceinboundemail: SequenceInboundEmail;
|
|
725
752
|
sequenceoutboundemail: SequenceOutboundEmail;
|
|
726
753
|
sequencestep: SequenceStep;
|
|
754
|
+
shopify_product: ShopifyProduct;
|
|
755
|
+
shopify_store: ShopifyStore;
|
|
727
756
|
sociallisteninglist: SocialListeningList;
|
|
728
757
|
socialpost: SocialPost;
|
|
729
758
|
socialprofile: SocialProfile;
|