@creator.co/creatorco-kysely-types 1.0.42 → 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 -0
- 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;
|
|
@@ -840,8 +852,10 @@ export type DB = {
|
|
|
840
852
|
sequenceinboundemail: SequenceInboundEmail;
|
|
841
853
|
sequenceoutboundemail: SequenceOutboundEmail;
|
|
842
854
|
sequencestep: SequenceStep;
|
|
855
|
+
shopifyDiscountCode: ShopifyDiscountCode;
|
|
843
856
|
shopifyProduct: ShopifyProduct;
|
|
844
857
|
shopifyProductVariation: ShopifyProductVariation;
|
|
858
|
+
shopifySale: ShopifySale;
|
|
845
859
|
shopifyStore: ShopifyStore;
|
|
846
860
|
sociallisteninglist: SocialListeningList;
|
|
847
861
|
socialpost: SocialPost;
|