@creator.co/creatorco-kysely-types 1.0.18 → 1.0.19
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 +1 -8
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -526,12 +526,6 @@ export type SocialPost = {
|
|
|
526
526
|
userId: number | null;
|
|
527
527
|
campaignId: number | null;
|
|
528
528
|
};
|
|
529
|
-
export type SocialPostTag = {
|
|
530
|
-
id: GeneratedAlways<number>;
|
|
531
|
-
title: string;
|
|
532
|
-
type: string;
|
|
533
|
-
socialPostId: number;
|
|
534
|
-
};
|
|
535
529
|
export type SocialProfile = {
|
|
536
530
|
id: GeneratedAlways<number>;
|
|
537
531
|
socialId: string | null;
|
|
@@ -590,7 +584,7 @@ export type TrolleyPayment = {
|
|
|
590
584
|
paymentId: string;
|
|
591
585
|
type: trolleyPaymentType | null;
|
|
592
586
|
status: trolleyPaymentStatus;
|
|
593
|
-
optInId: number;
|
|
587
|
+
optInId: number | null;
|
|
594
588
|
paymentAmount: number;
|
|
595
589
|
metaData: Generated<Json>;
|
|
596
590
|
};
|
|
@@ -731,7 +725,6 @@ export type DB = {
|
|
|
731
725
|
sequencestep: SequenceStep;
|
|
732
726
|
sociallisteninglist: SocialListeningList;
|
|
733
727
|
socialpost: SocialPost;
|
|
734
|
-
socialposttag: SocialPostTag;
|
|
735
728
|
socialprofile: SocialProfile;
|
|
736
729
|
state: State;
|
|
737
730
|
step: Step;
|