@creator.co/creatorco-kysely-types 1.0.13 → 1.0.15-alpha-fc80dfc
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 +13 -0
- 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>;
|
|
@@ -74,6 +75,7 @@ export type BrandUserProfile = {
|
|
|
74
75
|
id: GeneratedAlways<number>;
|
|
75
76
|
userId: number;
|
|
76
77
|
brandId: number;
|
|
78
|
+
xpto: number;
|
|
77
79
|
};
|
|
78
80
|
export type Campaign = {
|
|
79
81
|
id: GeneratedAlways<number>;
|
|
@@ -270,6 +272,16 @@ export type Image = {
|
|
|
270
272
|
size: string;
|
|
271
273
|
campaignImageId: number;
|
|
272
274
|
};
|
|
275
|
+
export type ImpactRadiusEvent = {
|
|
276
|
+
id: GeneratedAlways<number>;
|
|
277
|
+
type: string;
|
|
278
|
+
created: Generated<Timestamp>;
|
|
279
|
+
amount: number | null;
|
|
280
|
+
commission: number | null;
|
|
281
|
+
metaData: Generated<Json>;
|
|
282
|
+
userId: number;
|
|
283
|
+
brandId: number | null;
|
|
284
|
+
};
|
|
273
285
|
export type InstagramProfile = {
|
|
274
286
|
id: GeneratedAlways<number>;
|
|
275
287
|
instagramId: string | null;
|
|
@@ -688,6 +700,7 @@ export type DB = {
|
|
|
688
700
|
EmailTemplate: EmailTemplate;
|
|
689
701
|
facebookprofile: FacebookProfile;
|
|
690
702
|
image: Image;
|
|
703
|
+
ImpactRadiusEvent: ImpactRadiusEvent;
|
|
691
704
|
instagramprofile: InstagramProfile;
|
|
692
705
|
listtosocialpost: ListToSocialPost;
|
|
693
706
|
Log: Log;
|