@creator.co/creatorco-kysely-types 1.0.50 → 1.0.51-alpha-c446596

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 +13 -0
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -238,6 +238,17 @@ export type Chat = {
238
238
  metaData: Generated<Json>;
239
239
  optInId: number | null;
240
240
  };
241
+ export type CJEvent = {
242
+ id: GeneratedAlways<number>;
243
+ type: string;
244
+ created: Generated<Timestamp>;
245
+ amount: number | null;
246
+ commission: number | null;
247
+ metaData: Generated<Json>;
248
+ userId: number;
249
+ brandId: number | null;
250
+ optInId: number | null;
251
+ };
241
252
  export type Country = {
242
253
  id: GeneratedAlways<number>;
243
254
  countryCode: string;
@@ -764,6 +775,7 @@ export type TwitterProfile = {
764
775
  };
765
776
  export type User = {
766
777
  id: GeneratedAlways<number>;
778
+ idmId: string | null;
767
779
  role: string;
768
780
  email: string | null;
769
781
  password: string | null;
@@ -846,6 +858,7 @@ export type DB = {
846
858
  campaigntoimage: CampaignToImage;
847
859
  category: Category;
848
860
  chat: Chat;
861
+ CJEvent: CJEvent;
849
862
  country: Country;
850
863
  CreatorFlag: CreatorFlag;
851
864
  creatorlist: CreatorList;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@creator.co/creatorco-kysely-types",
3
- "version": "1.0.50",
3
+ "version": "1.0.51-alpha-c446596",
4
4
  "types": "./index.d.ts",
5
5
  "type": "commonjs",
6
6
  "devDependencies": {