@creator.co/creatorco-kysely-types 1.0.45 → 1.0.46-alpha-cbcafab
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 +9 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -563,6 +563,14 @@ export type SequenceStep = {
|
|
|
563
563
|
order: number;
|
|
564
564
|
stepId: number;
|
|
565
565
|
};
|
|
566
|
+
export type ShareASaleEvent = {
|
|
567
|
+
id: GeneratedAlways<number>;
|
|
568
|
+
created: Generated<Timestamp>;
|
|
569
|
+
saleAmount: number | null;
|
|
570
|
+
commission: number | null;
|
|
571
|
+
metaData: Generated<Json>;
|
|
572
|
+
optinId: number | null;
|
|
573
|
+
};
|
|
566
574
|
export type ShopifyProduct = {
|
|
567
575
|
id: GeneratedAlways<number>;
|
|
568
576
|
shopifyId: string;
|
|
@@ -844,6 +852,7 @@ export type DB = {
|
|
|
844
852
|
sequenceinboundemail: SequenceInboundEmail;
|
|
845
853
|
sequenceoutboundemail: SequenceOutboundEmail;
|
|
846
854
|
sequencestep: SequenceStep;
|
|
855
|
+
shareasaleEvent: ShareASaleEvent;
|
|
847
856
|
shopifyProduct: ShopifyProduct;
|
|
848
857
|
shopifyProductVariation: ShopifyProductVariation;
|
|
849
858
|
shopifyStore: ShopifyStore;
|