@creator.co/creatorco-kysely-types 1.0.45 → 1.0.46

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.
Files changed (2) hide show
  1. package/index.d.ts +10 -0
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -563,6 +563,15 @@ export type SequenceStep = {
563
563
  order: number;
564
564
  stepId: number;
565
565
  };
566
+ export type ShareASaleEvent = {
567
+ id: GeneratedAlways<number>;
568
+ transactionId: string | null;
569
+ created: Generated<Timestamp>;
570
+ saleAmount: string | null;
571
+ commission: string | null;
572
+ metaData: Generated<Json>;
573
+ optinId: number | null;
574
+ };
566
575
  export type ShopifyProduct = {
567
576
  id: GeneratedAlways<number>;
568
577
  shopifyId: string;
@@ -844,6 +853,7 @@ export type DB = {
844
853
  sequenceinboundemail: SequenceInboundEmail;
845
854
  sequenceoutboundemail: SequenceOutboundEmail;
846
855
  sequencestep: SequenceStep;
856
+ shareasaleEvent: ShareASaleEvent;
847
857
  shopifyProduct: ShopifyProduct;
848
858
  shopifyProductVariation: ShopifyProductVariation;
849
859
  shopifyStore: ShopifyStore;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@creator.co/creatorco-kysely-types",
3
- "version": "1.0.45",
3
+ "version": "1.0.46",
4
4
  "types": "./index.d.ts",
5
5
  "type": "commonjs",
6
6
  "devDependencies": {