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