@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/index-browser.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'
|
package/index.d.ts
CHANGED
|
@@ -333,9 +333,8 @@ export type trolleyPaymentType = (typeof trolleyPaymentType)[keyof typeof trolle
|
|
|
333
333
|
|
|
334
334
|
|
|
335
335
|
export const trolleyPaymentStatus: {
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
deleted: 'deleted',
|
|
336
|
+
pending: 'pending',
|
|
337
|
+
processing: 'processing',
|
|
339
338
|
processed: 'processed',
|
|
340
339
|
failed: 'failed',
|
|
341
340
|
returned: 'returned'
|
|
@@ -81436,7 +81435,7 @@ export namespace Prisma {
|
|
|
81436
81435
|
export type TrolleyPaymentCreateInput = {
|
|
81437
81436
|
paymentId: string
|
|
81438
81437
|
type?: $Enums.trolleyPaymentType | null
|
|
81439
|
-
status
|
|
81438
|
+
status: $Enums.trolleyPaymentStatus
|
|
81440
81439
|
paymentAmount: number
|
|
81441
81440
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
81442
81441
|
optIn: OptInCreateNestedOneWithoutTrolleyPaymentsInput
|
|
@@ -81446,7 +81445,7 @@ export namespace Prisma {
|
|
|
81446
81445
|
id?: number
|
|
81447
81446
|
paymentId: string
|
|
81448
81447
|
type?: $Enums.trolleyPaymentType | null
|
|
81449
|
-
status
|
|
81448
|
+
status: $Enums.trolleyPaymentStatus
|
|
81450
81449
|
optInId: number
|
|
81451
81450
|
paymentAmount: number
|
|
81452
81451
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
@@ -81475,7 +81474,7 @@ export namespace Prisma {
|
|
|
81475
81474
|
id?: number
|
|
81476
81475
|
paymentId: string
|
|
81477
81476
|
type?: $Enums.trolleyPaymentType | null
|
|
81478
|
-
status
|
|
81477
|
+
status: $Enums.trolleyPaymentStatus
|
|
81479
81478
|
optInId: number
|
|
81480
81479
|
paymentAmount: number
|
|
81481
81480
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
@@ -105059,7 +105058,7 @@ export namespace Prisma {
|
|
|
105059
105058
|
export type TrolleyPaymentCreateWithoutOptInInput = {
|
|
105060
105059
|
paymentId: string
|
|
105061
105060
|
type?: $Enums.trolleyPaymentType | null
|
|
105062
|
-
status
|
|
105061
|
+
status: $Enums.trolleyPaymentStatus
|
|
105063
105062
|
paymentAmount: number
|
|
105064
105063
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
105065
105064
|
}
|
|
@@ -105068,7 +105067,7 @@ export namespace Prisma {
|
|
|
105068
105067
|
id?: number
|
|
105069
105068
|
paymentId: string
|
|
105070
105069
|
type?: $Enums.trolleyPaymentType | null
|
|
105071
|
-
status
|
|
105070
|
+
status: $Enums.trolleyPaymentStatus
|
|
105072
105071
|
paymentAmount: number
|
|
105073
105072
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
105074
105073
|
}
|
|
@@ -115520,7 +115519,7 @@ export namespace Prisma {
|
|
|
115520
115519
|
id?: number
|
|
115521
115520
|
paymentId: string
|
|
115522
115521
|
type?: $Enums.trolleyPaymentType | null
|
|
115523
|
-
status
|
|
115522
|
+
status: $Enums.trolleyPaymentStatus
|
|
115524
115523
|
paymentAmount: number
|
|
115525
115524
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
115526
115525
|
}
|