@creator.co/creatorco-kysely-types 1.0.13 → 1.0.15

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
@@ -45,6 +45,7 @@ export type Brand = {
45
45
  extraData: Generated<Json>;
46
46
  specialistId: number | null;
47
47
  parentBrandId: number | null;
48
+ searchName: Generated<string | null>;
48
49
  };
49
50
  export type BrandAffiliateLink = {
50
51
  id: GeneratedAlways<number>;
@@ -270,6 +271,16 @@ export type Image = {
270
271
  size: string;
271
272
  campaignImageId: number;
272
273
  };
274
+ export type ImpactRadiusEvent = {
275
+ id: GeneratedAlways<number>;
276
+ type: string;
277
+ created: Generated<Timestamp>;
278
+ amount: number | null;
279
+ commission: number | null;
280
+ metaData: Generated<Json>;
281
+ userId: number;
282
+ brandId: number | null;
283
+ };
273
284
  export type InstagramProfile = {
274
285
  id: GeneratedAlways<number>;
275
286
  instagramId: string | null;
@@ -688,6 +699,7 @@ export type DB = {
688
699
  EmailTemplate: EmailTemplate;
689
700
  facebookprofile: FacebookProfile;
690
701
  image: Image;
702
+ ImpactRadiusEvent: ImpactRadiusEvent;
691
703
  instagramprofile: InstagramProfile;
692
704
  listtosocialpost: ListToSocialPost;
693
705
  Log: Log;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@creator.co/creatorco-kysely-types",
3
- "version": "1.0.13",
3
+ "version": "1.0.15",
4
4
  "types": "./index.d.ts",
5
5
  "type": "module",
6
6
  "devDependencies": {