@creator.co/creatorco-kysely-types 1.0.25 → 1.0.27-alpha-070bac6
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 +3 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -78,6 +78,7 @@ export type BrandUserProfile = {
|
|
|
78
78
|
id: GeneratedAlways<number>;
|
|
79
79
|
userId: number;
|
|
80
80
|
brandId: number;
|
|
81
|
+
agencyPrivileges: Generated<boolean>;
|
|
81
82
|
};
|
|
82
83
|
export type Campaign = {
|
|
83
84
|
id: GeneratedAlways<number>;
|
|
@@ -527,6 +528,7 @@ export type SocialListeningList = {
|
|
|
527
528
|
};
|
|
528
529
|
export type SocialPost = {
|
|
529
530
|
id: GeneratedAlways<number>;
|
|
531
|
+
externalId: number | null;
|
|
530
532
|
phylloId: string | null;
|
|
531
533
|
metaData: Generated<Json>;
|
|
532
534
|
data: Generated<Json>;
|
|
@@ -573,6 +575,7 @@ export type SocialProfile = {
|
|
|
573
575
|
engagement: number | null;
|
|
574
576
|
avgViews: number | null;
|
|
575
577
|
verified: boolean | null;
|
|
578
|
+
visibility: Generated<string>;
|
|
576
579
|
metaData: Generated<Json>;
|
|
577
580
|
audienceData: Generated<Json>;
|
|
578
581
|
phylloData: Generated<Json>;
|