@creator.co/creatorco-kysely-types 1.0.43 → 1.0.44-alpha-eead9dc
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 +14 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -562,6 +562,12 @@ 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
|
+
};
|
|
565
571
|
export type ShopifyProduct = {
|
|
566
572
|
id: GeneratedAlways<number>;
|
|
567
573
|
shopifyId: string;
|
|
@@ -579,6 +585,12 @@ export type ShopifyProductVariation = {
|
|
|
579
585
|
metaData: Generated<Json>;
|
|
580
586
|
shopifyProductId: number;
|
|
581
587
|
};
|
|
588
|
+
export type ShopifySale = {
|
|
589
|
+
id: GeneratedAlways<number>;
|
|
590
|
+
amount: number;
|
|
591
|
+
metaData: Json | null;
|
|
592
|
+
discountCodeId: number;
|
|
593
|
+
};
|
|
582
594
|
export type ShopifyStore = {
|
|
583
595
|
id: GeneratedAlways<number>;
|
|
584
596
|
name: string | null;
|
|
@@ -619,7 +631,6 @@ export type SocialPost = {
|
|
|
619
631
|
hasCollaborators: boolean | null;
|
|
620
632
|
isOwnedByUser: boolean | null;
|
|
621
633
|
views: number | null;
|
|
622
|
-
replays: number | null;
|
|
623
634
|
impressions: number | null;
|
|
624
635
|
impressionsOrganic: number | null;
|
|
625
636
|
impressionsPaid: number | null;
|
|
@@ -841,8 +852,10 @@ export type DB = {
|
|
|
841
852
|
sequenceinboundemail: SequenceInboundEmail;
|
|
842
853
|
sequenceoutboundemail: SequenceOutboundEmail;
|
|
843
854
|
sequencestep: SequenceStep;
|
|
855
|
+
shopifyDiscountCode: ShopifyDiscountCode;
|
|
844
856
|
shopifyProduct: ShopifyProduct;
|
|
845
857
|
shopifyProductVariation: ShopifyProductVariation;
|
|
858
|
+
shopifySale: ShopifySale;
|
|
846
859
|
shopifyStore: ShopifyStore;
|
|
847
860
|
sociallisteninglist: SocialListeningList;
|
|
848
861
|
socialpost: SocialPost;
|