@creator.co/creatorco-prisma-client 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/edge.js +6 -7
- package/index-browser.js +2 -3
- package/index.d.ts +8 -9
- package/index.js +6 -7
- package/package.json +1 -1
- package/schema.prisma +3 -4
- package/wasm.js +2 -3
package/package.json
CHANGED
package/schema.prisma
CHANGED
|
@@ -706,7 +706,7 @@ model TrolleyPayment {
|
|
|
706
706
|
id Int @id @default(autoincrement())
|
|
707
707
|
paymentId String @unique
|
|
708
708
|
type trolleyPaymentType?
|
|
709
|
-
status trolleyPaymentStatus
|
|
709
|
+
status trolleyPaymentStatus
|
|
710
710
|
optInId Int
|
|
711
711
|
paymentAmount Int
|
|
712
712
|
metaData Json @default("{}")
|
|
@@ -721,9 +721,8 @@ enum trolleyPaymentType {
|
|
|
721
721
|
}
|
|
722
722
|
|
|
723
723
|
enum trolleyPaymentStatus {
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
deleted
|
|
724
|
+
pending
|
|
725
|
+
processing
|
|
727
726
|
processed
|
|
728
727
|
failed
|
|
729
728
|
returned
|
package/wasm.js
CHANGED
|
@@ -1180,9 +1180,8 @@ exports.trolleyPaymentType = exports.$Enums.trolleyPaymentType = {
|
|
|
1180
1180
|
};
|
|
1181
1181
|
|
|
1182
1182
|
exports.trolleyPaymentStatus = exports.$Enums.trolleyPaymentStatus = {
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
deleted: 'deleted',
|
|
1183
|
+
pending: 'pending',
|
|
1184
|
+
processing: 'processing',
|
|
1186
1185
|
processed: 'processed',
|
|
1187
1186
|
failed: 'failed',
|
|
1188
1187
|
returned: 'returned'
|