@creator.co/creatorco-kysely-types 1.0.46 → 1.0.47-alpha-e6ce134
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 +15 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -572,6 +572,13 @@ export type ShareASaleEvent = {
|
|
|
572
572
|
metaData: Generated<Json>;
|
|
573
573
|
optinId: number | null;
|
|
574
574
|
};
|
|
575
|
+
export type ShopifyDiscountCode = {
|
|
576
|
+
id: GeneratedAlways<number>;
|
|
577
|
+
code: string;
|
|
578
|
+
shopifyDiscountCodeId: number | null;
|
|
579
|
+
priceRuleId: number | null;
|
|
580
|
+
optinId: number;
|
|
581
|
+
};
|
|
575
582
|
export type ShopifyProduct = {
|
|
576
583
|
id: GeneratedAlways<number>;
|
|
577
584
|
shopifyId: string;
|
|
@@ -589,6 +596,12 @@ export type ShopifyProductVariation = {
|
|
|
589
596
|
metaData: Generated<Json>;
|
|
590
597
|
shopifyProductId: number;
|
|
591
598
|
};
|
|
599
|
+
export type ShopifySale = {
|
|
600
|
+
id: GeneratedAlways<number>;
|
|
601
|
+
amount: number;
|
|
602
|
+
metaData: Json | null;
|
|
603
|
+
discountCodeId: number;
|
|
604
|
+
};
|
|
592
605
|
export type ShopifyStore = {
|
|
593
606
|
id: GeneratedAlways<number>;
|
|
594
607
|
name: string | null;
|
|
@@ -854,8 +867,10 @@ export type DB = {
|
|
|
854
867
|
sequenceoutboundemail: SequenceOutboundEmail;
|
|
855
868
|
sequencestep: SequenceStep;
|
|
856
869
|
shareasaleEvent: ShareASaleEvent;
|
|
870
|
+
shopifyDiscountCode: ShopifyDiscountCode;
|
|
857
871
|
shopifyProduct: ShopifyProduct;
|
|
858
872
|
shopifyProductVariation: ShopifyProductVariation;
|
|
873
|
+
shopifySale: ShopifySale;
|
|
859
874
|
shopifyStore: ShopifyStore;
|
|
860
875
|
sociallisteninglist: SocialListeningList;
|
|
861
876
|
socialpost: SocialPost;
|