@creator.co/creatorco-kysely-types 1.0.82 → 1.0.83
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 +17 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -850,6 +850,22 @@ export type SocialPost = {
|
|
|
850
850
|
userId: number | null;
|
|
851
851
|
campaignId: number | null;
|
|
852
852
|
};
|
|
853
|
+
export type SocialPostAnalytics = {
|
|
854
|
+
id: number;
|
|
855
|
+
campaignId: number;
|
|
856
|
+
platform: string | null;
|
|
857
|
+
reach: number;
|
|
858
|
+
likes: number;
|
|
859
|
+
comments: number;
|
|
860
|
+
impressions: number;
|
|
861
|
+
views: number;
|
|
862
|
+
replays: number;
|
|
863
|
+
shares: number;
|
|
864
|
+
saves: number;
|
|
865
|
+
engagementRate: number;
|
|
866
|
+
posted: Timestamp | null;
|
|
867
|
+
userId: number;
|
|
868
|
+
};
|
|
853
869
|
export type SocialProfile = {
|
|
854
870
|
id: GeneratedAlways<number>;
|
|
855
871
|
socialId: string | null;
|
|
@@ -1092,6 +1108,7 @@ export type DB = {
|
|
|
1092
1108
|
socialProfileContact: SocialProfileContact;
|
|
1093
1109
|
sociallisteninglist: SocialListeningList;
|
|
1094
1110
|
socialpost: SocialPost;
|
|
1111
|
+
socialpostAnalytics: SocialPostAnalytics;
|
|
1095
1112
|
socialprofile: SocialProfile;
|
|
1096
1113
|
state: State;
|
|
1097
1114
|
step: Step;
|