@creator.co/creatorco-kysely-types 1.0.17 → 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/enums.ts +2 -3
- package/index.d.ts +2 -9
- package/package.json +1 -1
package/enums.ts
CHANGED
|
@@ -5,9 +5,8 @@ export const trolleyPaymentType = {
|
|
|
5
5
|
} as const;
|
|
6
6
|
export type trolleyPaymentType = (typeof trolleyPaymentType)[keyof typeof trolleyPaymentType];
|
|
7
7
|
export const trolleyPaymentStatus = {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
deleted: "deleted",
|
|
8
|
+
pending: "pending",
|
|
9
|
+
processing: "processing",
|
|
11
10
|
processed: "processed",
|
|
12
11
|
failed: "failed",
|
|
13
12
|
returned: "returned"
|
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;
|
|
@@ -589,8 +583,8 @@ export type TrolleyPayment = {
|
|
|
589
583
|
id: GeneratedAlways<number>;
|
|
590
584
|
paymentId: string;
|
|
591
585
|
type: trolleyPaymentType | null;
|
|
592
|
-
status:
|
|
593
|
-
optInId: number;
|
|
586
|
+
status: trolleyPaymentStatus;
|
|
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;
|