@creator.co/creatorco-kysely-types 1.0.44-alpha-eead9dc → 1.0.44-alpha-49cbfe3
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 -14
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -562,12 +562,6 @@ export type SequenceStep = {
|
|
|
562
562
|
order: number;
|
|
563
563
|
stepId: number;
|
|
564
564
|
};
|
|
565
|
-
export type ShopifyDiscountCode = {
|
|
566
|
-
id: GeneratedAlways<number>;
|
|
567
|
-
code: string;
|
|
568
|
-
discount: number;
|
|
569
|
-
optinId: number;
|
|
570
|
-
};
|
|
571
565
|
export type ShopifyProduct = {
|
|
572
566
|
id: GeneratedAlways<number>;
|
|
573
567
|
shopifyId: string;
|
|
@@ -585,12 +579,6 @@ export type ShopifyProductVariation = {
|
|
|
585
579
|
metaData: Generated<Json>;
|
|
586
580
|
shopifyProductId: number;
|
|
587
581
|
};
|
|
588
|
-
export type ShopifySale = {
|
|
589
|
-
id: GeneratedAlways<number>;
|
|
590
|
-
amount: number;
|
|
591
|
-
metaData: Json | null;
|
|
592
|
-
discountCodeId: number;
|
|
593
|
-
};
|
|
594
582
|
export type ShopifyStore = {
|
|
595
583
|
id: GeneratedAlways<number>;
|
|
596
584
|
name: string | null;
|
|
@@ -631,6 +619,7 @@ export type SocialPost = {
|
|
|
631
619
|
hasCollaborators: boolean | null;
|
|
632
620
|
isOwnedByUser: boolean | null;
|
|
633
621
|
views: number | null;
|
|
622
|
+
replays: number | null;
|
|
634
623
|
impressions: number | null;
|
|
635
624
|
impressionsOrganic: number | null;
|
|
636
625
|
impressionsPaid: number | null;
|
|
@@ -757,6 +746,7 @@ export type User = {
|
|
|
757
746
|
usercomLastSynced: Generated<Timestamp | null>;
|
|
758
747
|
extraData: Generated<Json>;
|
|
759
748
|
referrerId: number | null;
|
|
749
|
+
fullName: Generated<string | null>;
|
|
760
750
|
};
|
|
761
751
|
export type Variable = {
|
|
762
752
|
id: GeneratedAlways<number>;
|
|
@@ -852,10 +842,8 @@ export type DB = {
|
|
|
852
842
|
sequenceinboundemail: SequenceInboundEmail;
|
|
853
843
|
sequenceoutboundemail: SequenceOutboundEmail;
|
|
854
844
|
sequencestep: SequenceStep;
|
|
855
|
-
shopifyDiscountCode: ShopifyDiscountCode;
|
|
856
845
|
shopifyProduct: ShopifyProduct;
|
|
857
846
|
shopifyProductVariation: ShopifyProductVariation;
|
|
858
|
-
shopifySale: ShopifySale;
|
|
859
847
|
shopifyStore: ShopifyStore;
|
|
860
848
|
sociallisteninglist: SocialListeningList;
|
|
861
849
|
socialpost: SocialPost;
|