@creator.co/creatorco-kysely-types 1.0.44 → 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.
Files changed (2) hide show
  1. package/index.d.ts +11 -0
  2. 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;
@@ -747,6 +755,8 @@ export type User = {
747
755
  usercomLastSynced: Generated<Timestamp | null>;
748
756
  extraData: Generated<Json>;
749
757
  referrerId: number | null;
758
+ fullName: Generated<string | null>;
759
+ phoneNormalised: Generated<string | null>;
750
760
  };
751
761
  export type Variable = {
752
762
  id: GeneratedAlways<number>;
@@ -842,6 +852,7 @@ export type DB = {
842
852
  sequenceinboundemail: SequenceInboundEmail;
843
853
  sequenceoutboundemail: SequenceOutboundEmail;
844
854
  sequencestep: SequenceStep;
855
+ shareasaleEvent: ShareASaleEvent;
845
856
  shopifyProduct: ShopifyProduct;
846
857
  shopifyProductVariation: ShopifyProductVariation;
847
858
  shopifyStore: ShopifyStore;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@creator.co/creatorco-kysely-types",
3
- "version": "1.0.44",
3
+ "version": "1.0.46-alpha-cbcafab",
4
4
  "types": "./index.d.ts",
5
5
  "type": "commonjs",
6
6
  "devDependencies": {