@creator.co/creatorco-kysely-types 1.0.17 → 1.0.18

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 +1 -1
  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
@@ -589,7 +589,7 @@ export type TrolleyPayment = {
589
589
  id: GeneratedAlways<number>;
590
590
  paymentId: string;
591
591
  type: trolleyPaymentType | null;
592
- status: Generated<trolleyPaymentStatus>;
592
+ status: trolleyPaymentStatus;
593
593
  optInId: number;
594
594
  paymentAmount: number;
595
595
  metaData: Generated<Json>;
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.18",
4
4
  "types": "./index.d.ts",
5
5
  "type": "module",
6
6
  "devDependencies": {