@creator.co/creatorco-kysely-types 1.0.40 → 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 +12 -3
- 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;
|
|
@@ -591,17 +601,15 @@ export type SocialListeningList = {
|
|
|
591
601
|
};
|
|
592
602
|
export type SocialPost = {
|
|
593
603
|
id: GeneratedAlways<number>;
|
|
594
|
-
externalId: string
|
|
604
|
+
externalId: string;
|
|
595
605
|
phylloId: string | null;
|
|
596
606
|
metaData: Generated<Json>;
|
|
597
|
-
data: Generated<Json>;
|
|
598
607
|
lastFetched: Timestamp | null;
|
|
599
608
|
lastWebhook: Timestamp | null;
|
|
600
609
|
posted: Timestamp | null;
|
|
601
610
|
title: string | null;
|
|
602
611
|
description: string | null;
|
|
603
612
|
url: string | null;
|
|
604
|
-
urlPath: string | null;
|
|
605
613
|
format: string | null;
|
|
606
614
|
type: string | null;
|
|
607
615
|
platform: string | null;
|
|
@@ -805,6 +813,7 @@ export type DB = {
|
|
|
805
813
|
creatorsearchfilter: CreatorSearchFilter;
|
|
806
814
|
CreatorToCategory: CreatorToCategory;
|
|
807
815
|
EmailTemplate: EmailTemplate;
|
|
816
|
+
externalAffiliateClick: ExternalAffiliateClick;
|
|
808
817
|
facebookprofile: FacebookProfile;
|
|
809
818
|
image: Image;
|
|
810
819
|
ImpactRadiusEvent: ImpactRadiusEvent;
|