@creator.co/creatorco-kysely-types 1.0.41 → 1.0.42-alpha-60c9b5d
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
|
@@ -303,6 +303,16 @@ export type EmailTemplate = {
|
|
|
303
303
|
brandId: number | null;
|
|
304
304
|
metaData: Generated<Json>;
|
|
305
305
|
};
|
|
306
|
+
export type ExternalAffiliateClick = {
|
|
307
|
+
id: GeneratedAlways<number>;
|
|
308
|
+
program: string;
|
|
309
|
+
created: Generated<Timestamp>;
|
|
310
|
+
ipv4: string | null;
|
|
311
|
+
ipv6: string | null;
|
|
312
|
+
linkUrl: string;
|
|
313
|
+
metaData: Generated<Json>;
|
|
314
|
+
optInId: number;
|
|
315
|
+
};
|
|
306
316
|
export type FacebookProfile = {
|
|
307
317
|
id: GeneratedAlways<number>;
|
|
308
318
|
facebookId: string;
|
|
@@ -803,6 +813,7 @@ export type DB = {
|
|
|
803
813
|
creatorsearchfilter: CreatorSearchFilter;
|
|
804
814
|
CreatorToCategory: CreatorToCategory;
|
|
805
815
|
EmailTemplate: EmailTemplate;
|
|
816
|
+
externalAffiliateClick: ExternalAffiliateClick;
|
|
806
817
|
facebookprofile: FacebookProfile;
|
|
807
818
|
image: Image;
|
|
808
819
|
ImpactRadiusEvent: ImpactRadiusEvent;
|