@creator.co/creatorco-kysely-types 1.0.39-alpha-0fc3e98 → 1.0.40
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 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -202,7 +202,6 @@ export type CampaignStep = {
|
|
|
202
202
|
stepId: number | null;
|
|
203
203
|
};
|
|
204
204
|
export type CampaignToBrandAffiliateLink = {
|
|
205
|
-
id: GeneratedAlways<number>;
|
|
206
205
|
campaignId: number;
|
|
207
206
|
brandAffiliateLinkId: number;
|
|
208
207
|
};
|
|
@@ -592,15 +591,17 @@ export type SocialListeningList = {
|
|
|
592
591
|
};
|
|
593
592
|
export type SocialPost = {
|
|
594
593
|
id: GeneratedAlways<number>;
|
|
595
|
-
externalId: string;
|
|
594
|
+
externalId: string | null;
|
|
596
595
|
phylloId: string | null;
|
|
597
596
|
metaData: Generated<Json>;
|
|
597
|
+
data: Generated<Json>;
|
|
598
598
|
lastFetched: Timestamp | null;
|
|
599
599
|
lastWebhook: Timestamp | null;
|
|
600
600
|
posted: Timestamp | null;
|
|
601
601
|
title: string | null;
|
|
602
602
|
description: string | null;
|
|
603
603
|
url: string | null;
|
|
604
|
+
urlPath: string | null;
|
|
604
605
|
format: string | null;
|
|
605
606
|
type: string | null;
|
|
606
607
|
platform: string | null;
|