@creator.co/creatorco-kysely-types 1.0.13 → 1.0.14
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.
- package/index.d.ts +11 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -270,6 +270,16 @@ export type Image = {
|
|
|
270
270
|
size: string;
|
|
271
271
|
campaignImageId: number;
|
|
272
272
|
};
|
|
273
|
+
export type ImpactRadiusEvent = {
|
|
274
|
+
id: GeneratedAlways<number>;
|
|
275
|
+
type: string;
|
|
276
|
+
created: Generated<Timestamp>;
|
|
277
|
+
amount: number | null;
|
|
278
|
+
commission: number | null;
|
|
279
|
+
metaData: Generated<Json>;
|
|
280
|
+
userId: number;
|
|
281
|
+
brandId: number | null;
|
|
282
|
+
};
|
|
273
283
|
export type InstagramProfile = {
|
|
274
284
|
id: GeneratedAlways<number>;
|
|
275
285
|
instagramId: string | null;
|
|
@@ -688,6 +698,7 @@ export type DB = {
|
|
|
688
698
|
EmailTemplate: EmailTemplate;
|
|
689
699
|
facebookprofile: FacebookProfile;
|
|
690
700
|
image: Image;
|
|
701
|
+
ImpactRadiusEvent: ImpactRadiusEvent;
|
|
691
702
|
instagramprofile: InstagramProfile;
|
|
692
703
|
listtosocialpost: ListToSocialPost;
|
|
693
704
|
Log: Log;
|