@creator.co/creatorco-kysely-types 1.0.50-alpha-73636ce → 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 +12 -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;
@@ -847,6 +858,7 @@ export type DB = {
847
858
  campaigntoimage: CampaignToImage;
848
859
  category: Category;
849
860
  chat: Chat;
861
+ CJEvent: CJEvent;
850
862
  country: Country;
851
863
  CreatorFlag: CreatorFlag;
852
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-alpha-73636ce",
3
+ "version": "1.0.51-alpha-c446596",
4
4
  "types": "./index.d.ts",
5
5
  "type": "commonjs",
6
6
  "devDependencies": {