@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.
Files changed (3) hide show
  1. package/enums.ts +2 -3
  2. package/index.d.ts +2 -9
  3. 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
- created: "created",
9
- updated: "updated",
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: Generated<trolleyPaymentStatus>;
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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@creator.co/creatorco-kysely-types",
3
- "version": "1.0.17",
3
+ "version": "1.0.19",
4
4
  "types": "./index.d.ts",
5
5
  "type": "module",
6
6
  "devDependencies": {