@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/package.json CHANGED
@@ -68,7 +68,7 @@
68
68
  },
69
69
  "./*": "./*"
70
70
  },
71
- "version": "1.0.17",
71
+ "version": "1.0.18",
72
72
  "sideEffects": false,
73
73
  "description": "Prisma client for creatorco Database"
74
74
  }
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 @default(created)
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
- created
725
- updated
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
- created: 'created',
1184
- updated: 'updated',
1185
- deleted: 'deleted',
1183
+ pending: 'pending',
1184
+ processing: 'processing',
1186
1185
  processed: 'processed',
1187
1186
  failed: 'failed',
1188
1187
  returned: 'returned'