@creator.co/creatorco-kysely-types 1.0.34 → 1.0.35
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 +35 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -35,6 +35,40 @@ export type AffiliateLink = {
|
|
|
35
35
|
userId: number;
|
|
36
36
|
brandAffiliateLinkId: number;
|
|
37
37
|
};
|
|
38
|
+
export type ArchivedSocialPost = {
|
|
39
|
+
id: GeneratedAlways<number>;
|
|
40
|
+
phylloId: string | null;
|
|
41
|
+
metaData: Generated<Json>;
|
|
42
|
+
lastFetched: Timestamp | null;
|
|
43
|
+
lastWebhook: Timestamp | null;
|
|
44
|
+
posted: Timestamp | null;
|
|
45
|
+
title: string | null;
|
|
46
|
+
description: string | null;
|
|
47
|
+
url: string | null;
|
|
48
|
+
urlPath: string | null;
|
|
49
|
+
format: string | null;
|
|
50
|
+
type: string | null;
|
|
51
|
+
platform: string | null;
|
|
52
|
+
visibility: string | null;
|
|
53
|
+
isSponsored: boolean | null;
|
|
54
|
+
hasCollaborators: boolean | null;
|
|
55
|
+
isOwnedByUser: boolean | null;
|
|
56
|
+
views: number | null;
|
|
57
|
+
impressions: number | null;
|
|
58
|
+
impressionsOrganic: number | null;
|
|
59
|
+
impressionsPaid: number | null;
|
|
60
|
+
reach: number | null;
|
|
61
|
+
reachOrganic: number | null;
|
|
62
|
+
reachPaid: number | null;
|
|
63
|
+
watchHours: number | null;
|
|
64
|
+
likes: number | null;
|
|
65
|
+
dislikes: number | null;
|
|
66
|
+
comments: number | null;
|
|
67
|
+
saves: number | null;
|
|
68
|
+
shares: number | null;
|
|
69
|
+
userId: number | null;
|
|
70
|
+
campaignId: number | null;
|
|
71
|
+
};
|
|
38
72
|
export type Brand = {
|
|
39
73
|
id: GeneratedAlways<number>;
|
|
40
74
|
name: string;
|
|
@@ -739,6 +773,7 @@ export type DB = {
|
|
|
739
773
|
AffiliateClick: AffiliateClick;
|
|
740
774
|
AffiliateEvent: AffiliateEvent;
|
|
741
775
|
AffiliateLink: AffiliateLink;
|
|
776
|
+
archivedSocialPost: ArchivedSocialPost;
|
|
742
777
|
brand: Brand;
|
|
743
778
|
BrandAffiliateLink: BrandAffiliateLink;
|
|
744
779
|
brandimage: BrandImage;
|