@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.
- package/enums.ts +2 -3
- package/index.d.ts +1 -1
- 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
|
@@ -589,7 +589,7 @@ export type TrolleyPayment = {
|
|
|
589
589
|
id: GeneratedAlways<number>;
|
|
590
590
|
paymentId: string;
|
|
591
591
|
type: trolleyPaymentType | null;
|
|
592
|
-
status:
|
|
592
|
+
status: trolleyPaymentStatus;
|
|
593
593
|
optInId: number;
|
|
594
594
|
paymentAmount: number;
|
|
595
595
|
metaData: Generated<Json>;
|