@creator.co/creatorco-kysely-types 1.0.19 → 1.0.20-alpha-995a7a0
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 +27 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -11,6 +11,7 @@ export type AffiliateClick = {
|
|
|
11
11
|
id: GeneratedAlways<number>;
|
|
12
12
|
created: Generated<Timestamp>;
|
|
13
13
|
visitorIp: string | null;
|
|
14
|
+
optInId: number;
|
|
14
15
|
metaData: Generated<Json>;
|
|
15
16
|
affiliateLinkId: number;
|
|
16
17
|
};
|
|
@@ -480,6 +481,30 @@ export type SequenceStep = {
|
|
|
480
481
|
order: number;
|
|
481
482
|
stepId: number;
|
|
482
483
|
};
|
|
484
|
+
export type ShopifyProduct = {
|
|
485
|
+
id: GeneratedAlways<number>;
|
|
486
|
+
shopifyId: string;
|
|
487
|
+
title: string;
|
|
488
|
+
handle: string;
|
|
489
|
+
createdAt: Timestamp | null;
|
|
490
|
+
updatedAt: Timestamp | null;
|
|
491
|
+
description: string | null;
|
|
492
|
+
price: number;
|
|
493
|
+
tags: string | null;
|
|
494
|
+
status: string;
|
|
495
|
+
metaData: Generated<Json>;
|
|
496
|
+
lastSynced: Generated<Timestamp>;
|
|
497
|
+
shopifyStoreId: number;
|
|
498
|
+
};
|
|
499
|
+
export type ShopifyStore = {
|
|
500
|
+
id: GeneratedAlways<number>;
|
|
501
|
+
shopifyId: string;
|
|
502
|
+
name: string;
|
|
503
|
+
url: string;
|
|
504
|
+
accessToken: string;
|
|
505
|
+
metaData: Generated<Json>;
|
|
506
|
+
brandId: number;
|
|
507
|
+
};
|
|
483
508
|
export type SocialListeningList = {
|
|
484
509
|
id: GeneratedAlways<number>;
|
|
485
510
|
brandId: number;
|
|
@@ -723,6 +748,8 @@ export type DB = {
|
|
|
723
748
|
sequenceinboundemail: SequenceInboundEmail;
|
|
724
749
|
sequenceoutboundemail: SequenceOutboundEmail;
|
|
725
750
|
sequencestep: SequenceStep;
|
|
751
|
+
shopify_product: ShopifyProduct;
|
|
752
|
+
shopify_store: ShopifyStore;
|
|
726
753
|
sociallisteninglist: SocialListeningList;
|
|
727
754
|
socialpost: SocialPost;
|
|
728
755
|
socialprofile: SocialProfile;
|