diff --git a/packages/core/package.json b/packages/core/package.json index 9a5dd00ff..77177ebdf 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -8,8 +8,8 @@ "compile": "tsc -p tsconfig.json && yarn fix:paths", "compile:watch": "tsc-watch --onSuccess \"yarn fix:paths\"", "fix:paths": "tscpaths -p tsconfig.json -s ./src -o ./dist", - "seed": "ts-node -r dotenv/config prisma/seed.ts", "studio": "prisma studio", + "seed": "prisma migrate reset --force && ts-node --transpile -r dotenv/config prisma/seed.ts", "db:sync": "prisma migrate deploy", "create:schema": "find prisma -name '*.prisma' -not -name \"schema.prisma\" -exec cat {} + > prisma/schema.prisma && prisma format", "create:migration": "yarn create:schema && prisma migrate dev" diff --git a/packages/core/prisma/firestore/firestore.ts b/packages/core/prisma/firestore/firestore.ts index efd38efa8..043123252 100644 --- a/packages/core/prisma/firestore/firestore.ts +++ b/packages/core/prisma/firestore/firestore.ts @@ -2,4 +2,9 @@ import { FirebaseToolkit } from '@common/core'; FirebaseToolkit.InitializeFirebase(); -export const db = FirebaseToolkit.getDb(); \ No newline at end of file +export const db = FirebaseToolkit.getDb(); + +export const ProposalsCollection = db.collection('proposals'); +export const PaymentsCollection = db.collection('payments'); +export const CardsCollection = db.collection('cards'); +export const UsersCollection = db.collection('users'); diff --git a/packages/core/prisma/firestore/helpers/getEmail.ts b/packages/core/prisma/firestore/helpers/getEmail.ts new file mode 100644 index 000000000..1b9f2b5b4 --- /dev/null +++ b/packages/core/prisma/firestore/helpers/getEmail.ts @@ -0,0 +1,7 @@ +import { UsersCollection } from '../firestore'; + +export const getEmail = async (uid: string): Promise => { + return (await UsersCollection + .doc(uid) + .get()).data()?.email; +}; \ No newline at end of file diff --git a/packages/core/prisma/firestore/importers/importCards.ts b/packages/core/prisma/firestore/importers/importCards.ts new file mode 100644 index 000000000..5ba9ad2a7 --- /dev/null +++ b/packages/core/prisma/firestore/importers/importCards.ts @@ -0,0 +1,60 @@ +// @ts-ignore +import path from 'path'; +// @ts-ignore +import fs from 'fs'; + +import { CardsCollection } from '../firestore'; +import { seeder } from '../../seed'; +import { CardNetwork } from '@prisma/client'; + +export const importCards = async (date: Date) => { + const firebaseCards = (await CardsCollection.get()) + .docs.map(e => e.data()); + + const promises: Promise[] = []; + + const results: any[] = []; + const errored: any[] = []; + + for (const fc of firebaseCards) { + promises.push((async () => { + try { + const card = await seeder.card + .create({ + data: { + id: fc.id, + + circleCardId: fc.circleCardId, + + cvvCheck: fc.verification?.cvv || 'no verification', + avsCheck: 'no verification', + + digits: fc.metadata?.digits || '', + network: fc.metadata?.network || CardNetwork.VISA, + + user: { + connect: { + id: fc.ownerId + } + } + } + }); + + results.push(card); + } catch (e) { + errored.push({ + proposal: fc, + error: { + message: e.message, + stack: e.stack + } + }); + } + })()); + } + + await Promise.all(promises); + + fs.writeFileSync(path.join(__dirname, `../../result/${+date}/cardImports-errors.json`), JSON.stringify(errored)); + fs.writeFileSync(path.join(__dirname, `../../result/${+date}/cardImports-results.json`), JSON.stringify(results)); +}; \ No newline at end of file diff --git a/packages/core/prisma/firestore/importers/importCommons.ts b/packages/core/prisma/firestore/importers/importCommons.ts index 7cba9382b..94e42132e 100644 --- a/packages/core/prisma/firestore/importers/importCommons.ts +++ b/packages/core/prisma/firestore/importers/importCommons.ts @@ -28,8 +28,8 @@ export const importCommons = async () => { name: common.name, image: common.image, - balance: common.balance, - raised: common.raised, + balance: Math.round(common.balance), + raised: Math.round(common.raised), byline: common.metadata.byline, description: common.metadata.description, @@ -81,6 +81,5 @@ export const importCommons = async () => { } } - console.log(failedCommons); - console.log(createdCommons); + console.log('[LogTag: 1333]', failedCommons); }; \ No newline at end of file diff --git a/packages/core/prisma/firestore/importers/importFundingProposals.ts b/packages/core/prisma/firestore/importers/importFundingProposals.ts index 3e08a6435..6607f94ce 100644 --- a/packages/core/prisma/firestore/importers/importFundingProposals.ts +++ b/packages/core/prisma/firestore/importers/importFundingProposals.ts @@ -1,9 +1,10 @@ -import { db } from '../firestore'; +import { ProposalsCollection } from '../firestore'; import { seeder } from '../../seed'; import { IFundingRequestProposal, FundingRequestState } from '@common/types'; import { FundingState, ProposalState, ProposalType } from '@prisma/client'; +import { getEmail } from '../helpers/getEmail'; -const transformState = (state: FundingRequestState): ProposalState => { +export const transformState = (state: FundingRequestState): ProposalState => { switch (state) { case 'failed': return ProposalState.Rejected; @@ -16,81 +17,110 @@ const transformState = (state: FundingRequestState): ProposalState => { }; export const importFundingProposals = async () => { - const ProposalsCollection = db.collection('proposals'); - const firebaseFundingProposals = (await ProposalsCollection .where('type', '==', 'fundingRequest').get()) .docs.map(e => e.data()); + const promises: Promise[] = []; + for (const fp of firebaseFundingProposals as IFundingRequestProposal[]) { - console.log('Importing proposal'); - - try { - const ifp = await seeder.proposal - .create({ - data: { - common: { - connect: { - id: fp.commonId - } - }, + promises.push((async () => { + console.log('Importing proposal'); + + try { + const memberExists = !!(await seeder.commonMember.count({ + where: { + userId: fp.proposerId, + commonId: fp.commonId + } + })); + + const user = await seeder.user.findUnique({ + where: { + id: fp.proposerId + } + }) || await seeder.user.findUnique({ + where: { + email: await getEmail(fp.proposerId) + } + }); - commonMember: { - connect: { - userId_commonId: { - userId: fp.proposerId, - commonId: fp.commonId + const ifp = await seeder.proposal + .create({ + data: { + id: fp.id, + + common: { + connect: { + id: fp.commonId } - } - }, + }, + + ...memberExists && { + commonMember: { + connect: { + userId_commonId: { + userId: fp.proposerId, + commonId: fp.commonId + } + } + } + }, - user: { - connect: { - id: fp.proposerId - } - }, + user: { + connect: { + id: user?.id || 'default' + } + }, + + type: ProposalType.FundingRequest, + + title: (fp.description as any).title, + description: (fp.description as any).description, - type: ProposalType.FundingRequest, + files: (fp.description as any)?.files?.map((f: any) => ({ + value: f.value + })) || [], - title: (fp.description as any).title, - description: (fp.description as any).description, + images: (fp.description as any)?.images?.map((f: any) => ({ + value: f.value + })) || [], - files: (fp.description as any)?.files.map((f: any) => ({ - value: f.value - })), + links: (fp.description as any)?.links?.map((f: any) => ({ + title: f.title || '', + url: f.value + })) || [], - images: (fp.description as any)?.images.map((f: any) => ({ - value: f.value - })), + state: transformState(fp.state), - links: (fp.description as any)?.links.map((f: any) => ({ - title: f.title || '', - url: f.value - })), + expiresAt: + new Date( + fp.createdAt.toDate().getTime() + + fp.countdownPeriod * 1000 + ), - state: transformState(fp.state), + votesFor: fp.votesFor, + votesAgainst: fp.votesAgainst, - expiresAt: - new Date( - fp.createdAt.toDate().getTime() + - fp.countdownPeriod * 1000 - ), + importedFrom: JSON.stringify(fp), - votesFor: fp.votesFor, - votesAgainst: fp.votesAgainst, + funding: { + create: { + id: fp.id, - funding: { - create: { - fundingState: FundingState.NotEligible, - amount: fp.fundingRequest.amount + fundingState: FundingState.NotEligible, + amount: Math.round(fp.fundingRequest.amount) + } } } - } - }); + }); - console.log('Imported proposal'); - } catch (e) { - console.log('Failed importing funding request', e); - } + console.log('Imported proposal'); + } catch (e) { + console.log('Failed importing funding request', fp, e); + } + })()); } + + await Promise.all(promises); }; \ No newline at end of file diff --git a/packages/core/prisma/firestore/importers/importJoinProposals.ts b/packages/core/prisma/firestore/importers/importJoinProposals.ts new file mode 100644 index 000000000..62ad86464 --- /dev/null +++ b/packages/core/prisma/firestore/importers/importJoinProposals.ts @@ -0,0 +1,152 @@ +// @ts-ignore +import fs from 'fs'; +// @ts-ignore +import path from 'path'; + +import { ProposalsCollection } from '../firestore'; +import { seeder } from '../../seed'; +import { getEmail } from '../helpers/getEmail'; +import { ProposalType } from '@prisma/client'; +import { transformState } from './importFundingProposals'; +import { FundingType } from 'admin/src/core/graphql'; + +export const transformFundingType = (ct: string): FundingType => { + switch (ct) { + case 'one-time': + return FundingType.OneTime; + case 'monthly': + return FundingType.Monthly; + default: + return FundingType.OneTime; + } +}; + +export const importJoinProposals = async (date: Date) => { + const firebaseJoinProposals = (await ProposalsCollection + .where('type', '==', 'join').get()) + .docs.map(e => e.data()); + + const promises: Promise[] = []; + + const results: any[] = []; + const errored: any[] = []; + + for (const jp of firebaseJoinProposals) { + promises.push((async () => { + try { + const memberExists = !!(await seeder.commonMember.count({ + where: { + userId: jp.proposerId, + commonId: jp.commonId + } + })); + + const user = await seeder.user.findUnique({ + where: { + id: jp.proposerId + } + }) || await seeder.user.findUnique({ + where: { + email: await getEmail(jp.proposerId) + } + }); + + const cjp = await seeder.proposal + .create({ + data: { + id: jp.id, + + common: { + connect: { + id: jp.commonId + } + }, + + ...memberExists && { + commonMember: { + connect: { + userId_commonId: { + userId: jp.proposerId, + commonId: jp.commonId + } + } + } + }, + + user: { + connect: { + id: user?.id || 'default' + } + }, + + type: ProposalType.JoinRequest, + + title: (jp.description as any).title, + description: (jp.description as any).description, + + files: (jp.description as any)?.files?.map((f: any) => ({ + value: f.value + })) || [], + + images: (jp.description as any)?.images?.map((f: any) => ({ + value: f.value + })) || [], + + links: (jp.description as any)?.links?.map((f: any) => ({ + title: f.title || '', + url: f.value + })) || [], + + state: transformState(jp.state), + + ipAddress: jp.join.ip, + + expiresAt: + new Date( + jp.createdAt.toDate().getTime() + + jp.countdownPeriod * 1000 + ), + + votesFor: jp.votesFor, + votesAgainst: jp.votesAgainst, + + importedFrom: JSON.stringify(jp), + + join: { + create: { + id: jp.id, + + ...(jp.join.cardId && { + card: { + connect: { + id: jp.join.cardId + } + } + }), + + fundingType: transformFundingType(jp.join.contributionType), + + funding: jp.join.funding + } + } + } + }); + + results.push(cjp); + } catch (e) { + errored.push({ + proposal: jp, + error: { + message: e.message, + stack: e.stack + } + }); + } + })()); + } + + await Promise.all(promises); + + fs.writeFileSync(path.join(__dirname, `../../result/${+date}/joinProposalsImport-errors.json`), JSON.stringify(errored)); + fs.writeFileSync(path.join(__dirname, `../../result/${+date}/joinProposalsImport-results.json`), JSON.stringify(results)); +}; \ No newline at end of file diff --git a/packages/core/prisma/firestore/importers/importUsers.ts b/packages/core/prisma/firestore/importers/importUsers.ts index c38171d8e..b1752bcb2 100644 --- a/packages/core/prisma/firestore/importers/importUsers.ts +++ b/packages/core/prisma/firestore/importers/importUsers.ts @@ -1,10 +1,8 @@ import { User } from '@prisma/client'; -import { db } from '../firestore'; +import { UsersCollection } from '../firestore'; import { seeder } from '../../seed'; export const importUsers = async () => { - const UsersCollection = db.collection('users'); - const firebaseUsers = (await UsersCollection.get()).docs.map(u => u.data()); const failedUsers: { @@ -44,6 +42,17 @@ export const importUsers = async () => { } } - console.log(failedUsers); - console.log(createdUsers); + // Create default user + await seeder.user.create({ + data: { + id: 'default', + firstName: 'Default User', + lastName: '', + email: 'default@common.com', + photo: '' + } + }); + + console.log('[LogTag: 1332]', failedUsers); + // console.log(createdUsers); }; \ No newline at end of file diff --git a/packages/core/prisma/firestore/importers/paymentImporter.ts b/packages/core/prisma/firestore/importers/paymentImporter.ts new file mode 100644 index 000000000..4eda72141 --- /dev/null +++ b/packages/core/prisma/firestore/importers/paymentImporter.ts @@ -0,0 +1,132 @@ +// @ts-ignore +import path from 'path'; +// @ts-ignore +import fs from 'fs'; + +import { PaymentStatus } from '@prisma/client'; + +import { PaymentsCollection } from '../firestore'; +import { seeder } from '../../seed'; + +export const convertCirclePaymentStatus = (status: string): any => { + switch (status) { + case 'confirmed': + case 'paid': + return PaymentStatus.Successful; + case 'failed': + return PaymentStatus.Unsuccessful; + case 'pending': + return PaymentStatus.Pending; + default: + throw new Error(`Unknown circle status ${status}`); + } +}; + + +export const importPayments = async (date: Date) => { + const firebasePayments = (await PaymentsCollection.get()) + .docs.map(e => e.data()); + + const promises: Promise[] = []; + + const results: any[] = []; + const errored: any[] = []; + + for (const fp of firebasePayments) { + promises.push((async () => { + try { + console.log('Importing Payment'); + + const join = await seeder.proposal + .findUnique({ + where: { + id: fp.proposalId || '' + } + }) + .join({ + include: { + subscription: true, + proposal: true + } + }); + + if (!fp.userId) { + console.log(fp); + + errored.push({ + reason: 'No user ID', + payment: fp + }); + } + + const payment = await seeder.payment + .create({ + data: { + id: fp.id, + + type: 'ImportedPayment', + status: convertCirclePaymentStatus(fp.status), + + amount: Math.round(parseFloat(fp.amount.amount)), + + circlePaymentStatus: fp.status, + circlePaymentId: fp.circlePaymentId, + + user: { + connect: { + id: fp.userId + } + }, + + card: { + connect: { + id: fp.source.id + } + }, + + ...(join && { + join: { + connect: { + id: join.id + } + } + }), + + ...(join?.proposal?.commonId && { + common: { + connect: { + id: join.proposal?.commonId + } + } + }), + + ...(join?.subscription && { + subscription: { + connect: { + id: join.subscription?.id + } + } + }) + } + }); + + results.push(payment); + } catch (e) { + console.log(e); + + errored.push({ + payment: fp, + error: { + message: e.message, + stack: e.stack + } + }); + } + })()); + } + + await Promise.all(promises); + + fs.writeFileSync(path.join(__dirname, `../../result/${+date}/paymentImports-errors.json`), JSON.stringify(errored)); + fs.writeFileSync(path.join(__dirname, `../../result/${+date}/paymentImports-results.json`), JSON.stringify(results)); +}; \ No newline at end of file diff --git a/packages/core/prisma/migrations/20210517055035_imported_from/migration.sql b/packages/core/prisma/migrations/20210517055035_imported_from/migration.sql new file mode 100644 index 000000000..d4197db16 --- /dev/null +++ b/packages/core/prisma/migrations/20210517055035_imported_from/migration.sql @@ -0,0 +1,2 @@ +-- AlterTable +ALTER TABLE "Proposal" ADD COLUMN "importedFrom" JSONB; diff --git a/packages/core/prisma/migrations/20210518073408_ease_contstraints_migration/migration.sql b/packages/core/prisma/migrations/20210518073408_ease_contstraints_migration/migration.sql new file mode 100644 index 000000000..49c1ecb00 --- /dev/null +++ b/packages/core/prisma/migrations/20210518073408_ease_contstraints_migration/migration.sql @@ -0,0 +1,3 @@ +-- AlterTable +ALTER TABLE "Payment" ALTER COLUMN "joinId" DROP NOT NULL, +ALTER COLUMN "commonId" DROP NOT NULL; diff --git a/packages/core/prisma/migrations/20210518083113_new_payment_type/migration.sql b/packages/core/prisma/migrations/20210518083113_new_payment_type/migration.sql new file mode 100644 index 000000000..46429902e --- /dev/null +++ b/packages/core/prisma/migrations/20210518083113_new_payment_type/migration.sql @@ -0,0 +1,2 @@ +-- AlterEnum +ALTER TYPE "PaymentType" ADD VALUE 'ImportedPayment'; diff --git a/packages/core/prisma/models/all.prisma b/packages/core/prisma/models/all.prisma index 3ffee3a29..9df82c9c0 100644 --- a/packages/core/prisma/models/all.prisma +++ b/packages/core/prisma/models/all.prisma @@ -17,17 +17,17 @@ model Payment { card Card @relation(fields: [cardId], references: [id]) - user User @relation(fields: [userId], references: [id]) - common Common @relation(fields: [commonId], references: [id]) + user User @relation(fields: [userId], references: [id]) + common Common? @relation(fields: [commonId], references: [id]) - join JoinProposal @relation(fields: [joinId], references: [id]) + join JoinProposal? @relation(fields: [joinId], references: [id]) subscription Subscription? @relation(fields: [subscriptionId], references: [id]) subscriptionId String? - joinId String + joinId String? userId String - commonId String + commonId String? cardId String } @@ -37,6 +37,8 @@ enum PaymentType { SubscriptionInitialPayment SubscriptionSequentialPayment + + ImportedPayment } enum PaymentCircleStatus { @@ -67,7 +69,6 @@ model Card { cvvCheck String avsCheck String - user User @relation(fields: [userId], references: [id]) payments Payment[] diff --git a/packages/core/prisma/models/proposals/Proposal.prisma b/packages/core/prisma/models/proposals/Proposal.prisma index 3f1a0b4a3..232c64efd 100644 --- a/packages/core/prisma/models/proposals/Proposal.prisma +++ b/packages/core/prisma/models/proposals/Proposal.prisma @@ -39,4 +39,6 @@ model Proposal { userId String commonId String commonMemberId String? + + importedFrom Json? } \ No newline at end of file diff --git a/packages/core/prisma/result/.gitkeep b/packages/core/prisma/result/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/packages/core/prisma/result/1621327212154/cardImports-errors.json b/packages/core/prisma/result/1621327212154/cardImports-errors.json new file mode 100644 index 000000000..130ded27a --- /dev/null +++ b/packages/core/prisma/result/1621327212154/cardImports-errors.json @@ -0,0 +1,6382 @@ +[ + { + "proposal": { + "id": "002c2c5e-cb97-45c8-b130-3f83fce2b758", + "creationData": { + "_seconds": 1603122911, + "_nanoseconds": 572000000 + }, + "payments": [], + "proposals": [], + "userId": "BONVnugkzuhlKnhSTvQSlYGZMEy1" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '002c2c5e-cb97-45c8-b130-3f83fce2b758',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '002c2c5e-cb97-45c8-b130-3f83fce2b758',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposals": [ + "1f81aca0-7ac2-4f1b-9593-40326aa1cbc1" + ], + "creationDate": { + "_seconds": 1606659413, + "_nanoseconds": 681000000 + }, + "id": "007cd628-b725-4724-871a-4eba2c84bfab", + "payments": [ + "bdad5e45-2cba-4918-83ea-3052ce36d557" + ], + "userId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '007cd628-b725-4724-871a-4eba2c84bfab',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '007cd628-b725-4724-871a-4eba2c84bfab',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposals": [ + "d23a0c59-e1f2-42bf-9e36-dcaa7f806611" + ], + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "creationDate": { + "_seconds": 1606390802, + "_nanoseconds": 568000000 + }, + "id": "00a4ce34-105d-4a56-a0ec-8129ffe85980", + "payments": [ + "7d948268-3d71-40ad-b157-f10c982d5813" + ] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '00a4ce34-105d-4a56-a0ec-8129ffe85980',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '00a4ce34-105d-4a56-a0ec-8129ffe85980',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "id": "025e81b5-55ab-4b5d-bb1b-17a1efe72ee9", + "userId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "creationData": { + "_seconds": 1603620088, + "_nanoseconds": 823000000 + }, + "payments": [], + "proposals": [ + "0x183634308f78876a4a4ccc2ca88077d58af78148c815c3c9dd0b9cfe89eecdfa" + ] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '025e81b5-55ab-4b5d-bb1b-17a1efe72ee9',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '025e81b5-55ab-4b5d-bb1b-17a1efe72ee9',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposals": [], + "id": "02e1fa34-65a3-4f73-a006-6e6959051c96", + "creationData": { + "_seconds": 1603967350, + "_nanoseconds": 910000000 + }, + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "payments": [] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '02e1fa34-65a3-4f73-a006-6e6959051c96',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '02e1fa34-65a3-4f73-a006-6e6959051c96',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposals": [ + "4c363c17-cb50-4c7b-b21b-6ed77597158f" + ], + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "creationDate": { + "_seconds": 1607586862, + "_nanoseconds": 34000000 + }, + "id": "03ec81b7-d29e-410c-a0d6-ce516a9a4cc7", + "payments": [ + "f9f767e7-4516-49bc-8257-32c6c2af42b6" + ] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '03ec81b7-d29e-410c-a0d6-ce516a9a4cc7',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '03ec81b7-d29e-410c-a0d6-ce516a9a4cc7',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "userId": "Xlun3Ux94Zfc73axkiuVdkktOWf1", + "creationData": { + "_seconds": 1603369005, + "_nanoseconds": 19000000 + }, + "payments": [], + "proposals": [], + "id": "064d67d6-2864-4168-897b-351f65aa2650" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '064d67d6-2864-4168-897b-351f65aa2650',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '064d67d6-2864-4168-897b-351f65aa2650',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "creationData": { + "_seconds": 1603275379, + "_nanoseconds": 586000000 + }, + "userId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1", + "proposals": [ + "0xb1209d7a35378d20551fa773e5f9e8ce912bfe4c6593257ab70a1145d84e97bc" + ], + "id": "089987da-e373-41af-9d1f-69f778c352b3", + "payments": [] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '089987da-e373-41af-9d1f-69f778c352b3',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '089987da-e373-41af-9d1f-69f778c352b3',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "userId": "7rUTurSrx8gJcfaGaoh29uPKvjU2", + "creationData": { + "_seconds": 1606141272, + "_nanoseconds": 119000000 + }, + "payments": [ + "6ac8b0bc-eb1f-4935-8c0a-04fe5e83e7ef" + ], + "proposals": [ + "a62e9218-10ac-4f9f-964b-094e8ea90f2f" + ], + "id": "0a9df2a8-351b-4875-bdcd-29eec0ddbe7e" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '0a9df2a8-351b-4875-bdcd-29eec0ddbe7e',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '0a9df2a8-351b-4875-bdcd-29eec0ddbe7e',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "id": "0b84d80b-3591-419b-a719-e6d2af37447b", + "payments": [], + "proposals": [ + "0x5c5b2663f208b930ce1b7c9cab6a61897ce6259bf14c8491ef0f221c8fc727cd" + ], + "creationData": { + "_seconds": 1603963697, + "_nanoseconds": 578000000 + } + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '0b84d80b-3591-419b-a719-e6d2af37447b',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '0b84d80b-3591-419b-a719-e6d2af37447b',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "payments": [], + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "proposals": [ + "0xc08471da26eb0285d197f6c3977909286d0af03d784a61c41bc7b0859fd61b01" + ], + "id": "0f83c5c8-94cf-423f-8123-fd4a5fd6633c", + "creationData": { + "_seconds": 1602745094, + "_nanoseconds": 660000000 + } + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '0f83c5c8-94cf-423f-8123-fd4a5fd6633c',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '0f83c5c8-94cf-423f-8123-fd4a5fd6633c',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "userId": "b0Kxsd0x4OMLeOlDnheysBz5THo1", + "payments": [], + "proposals": [ + "0x114f8b20d67f3b1d1b18544cb539fe90bcefa6754822233b76a462a30842106f" + ], + "creationData": { + "_seconds": 1601972785, + "_nanoseconds": 592000000 + }, + "id": "0xf43ceb55dfa5da6eb03a872f4e61eb8e94285be8e6b983a6a10a00867a85e4ae", + "cardId": "b3e661d5-39d8-4bcc-89ce-af3bbea8fd45" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '0xf43ceb55dfa5da6eb03a872f4e61eb8e94285be8e6b983a6a10a00867a85e4ae',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '0xf43ceb55dfa5da6eb03a872f4e61eb8e94285be8e6b983a6a10a00867a85e4ae',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposals": [ + "0x09ac00544964182489f109c401904d6b5a6e179f70bab6ec436ee93f90056917" + ], + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "payments": [], + "creationData": { + "_seconds": 1605096597, + "_nanoseconds": 370000000 + }, + "id": "111be224-293a-4229-ae69-7c75f1f4e414" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '111be224-293a-4229-ae69-7c75f1f4e414',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '111be224-293a-4229-ae69-7c75f1f4e414',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "payments": [], + "id": "117cff3b-306d-41ae-8fa6-f7bd415dcbde", + "userId": "b0Kxsd0x4OMLeOlDnheysBz5THo1", + "proposals": [], + "creationData": { + "_seconds": 1604388917, + "_nanoseconds": 286000000 + } + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '117cff3b-306d-41ae-8fa6-f7bd415dcbde',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '117cff3b-306d-41ae-8fa6-f7bd415dcbde',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "creationData": { + "_seconds": 1604412994, + "_nanoseconds": 470000000 + }, + "userId": "Sxv19oCvKAZq2vntJdYCTYSpWWN2", + "id": "117e6c5d-3b0a-44f8-a8d6-2f450813f539", + "proposals": [ + "0xced6c8cf34e3898489e2f04e61fe4a4878c02431dbc43b15b6c502d8575f4e17" + ], + "payments": [] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '117e6c5d-3b0a-44f8-a8d6-2f450813f539',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '117e6c5d-3b0a-44f8-a8d6-2f450813f539',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "creationDate": { + "_seconds": 1606405611, + "_nanoseconds": 450000000 + }, + "id": "1632c6dd-e21c-46a4-b92b-121633d87c27", + "payments": [], + "proposals": [ + "7952aca4-fe54-45c7-b93f-54e49d867d79" + ], + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '1632c6dd-e21c-46a4-b92b-121633d87c27',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '1632c6dd-e21c-46a4-b92b-121633d87c27',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "id": "174cab3b-f22e-4620-a4ea-0bf4d109c83f", + "creationDate": { + "_seconds": 1607247985, + "_nanoseconds": 761000000 + }, + "payments": [ + "81f13af0-a865-4c94-a9ed-4060e928be5b" + ], + "proposals": [ + "cb0d5019-24fc-4332-9ef1-f704b656a5ef" + ] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '174cab3b-f22e-4620-a4ea-0bf4d109c83f',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '174cab3b-f22e-4620-a4ea-0bf4d109c83f',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "userId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "id": "175e742b-2d16-455a-9b2e-33d72e9cdbee", + "proposals": [ + "0xb731f7cafd7db1963fad2cfca5dbf34aea04d9a3a46b78db879b3ee42d875912" + ], + "creationData": { + "_seconds": 1603892618, + "_nanoseconds": 630000000 + }, + "payments": [] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '175e742b-2d16-455a-9b2e-33d72e9cdbee',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '175e742b-2d16-455a-9b2e-33d72e9cdbee',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "userId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1", + "id": "1816f712-bc5a-41a5-afc6-a5d9ff4b7b48", + "creationData": { + "_seconds": 1606076511, + "_nanoseconds": 580000000 + }, + "payments": [ + "3e3d28df-1cdd-437c-925a-9b07be2613cc" + ], + "proposals": [ + "67bb711d-85b8-4a79-8d59-3e6277b8c389" + ] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '1816f712-bc5a-41a5-afc6-a5d9ff4b7b48',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '1816f712-bc5a-41a5-afc6-a5d9ff4b7b48',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposals": [ + "0x4606c01a1af5d6f59c058086ce564140cdd2576c71c47ce3e32d73553ad674f3" + ], + "creationData": { + "_seconds": 1603011760, + "_nanoseconds": 945000000 + }, + "payments": [], + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "id": "18687649-47b7-43cd-b913-ec58f9f0cf3b" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '18687649-47b7-43cd-b913-ec58f9f0cf3b',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '18687649-47b7-43cd-b913-ec58f9f0cf3b',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "userId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1", + "proposals": [ + "0xb422a2320911836109bcffa4b177f86bb52152dc99f6ba3be214f977f805aff7" + ], + "creationData": { + "_seconds": 1603047432, + "_nanoseconds": 356000000 + }, + "id": "18dc81c6-58f2-44bc-b964-ce2f607f997f", + "payments": [] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '18dc81c6-58f2-44bc-b964-ce2f607f997f',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '18dc81c6-58f2-44bc-b964-ce2f607f997f',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposals": [ + "0xcf6adb9416107a4d42ea5caff0cf9e9dee7b9cab8eb31303fc9c792c243ffbfc" + ], + "userId": "Sxv19oCvKAZq2vntJdYCTYSpWWN2", + "creationData": { + "_seconds": 1603283439, + "_nanoseconds": 887000000 + }, + "id": "1a3b69e6-38c3-43b3-be1c-26ff4a6c19c5", + "payments": [] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '1a3b69e6-38c3-43b3-be1c-26ff4a6c19c5',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '1a3b69e6-38c3-43b3-be1c-26ff4a6c19c5',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "userId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "id": "1a5387c4-c7f5-4001-ac5e-cf9a1f70e06a", + "proposals": [ + "4a79cb5d-e110-4a6b-945c-806fb53b42c4" + ], + "creationData": { + "_seconds": 1605802602, + "_nanoseconds": 853000000 + }, + "payments": [] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '1a5387c4-c7f5-4001-ac5e-cf9a1f70e06a',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '1a5387c4-c7f5-4001-ac5e-cf9a1f70e06a',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "creationData": { + "_seconds": 1603119420, + "_nanoseconds": 273000000 + }, + "payments": [], + "proposals": [ + "0x6eb70b082f41f7c0d976ff5b2f07a408b2f803bafa1ace19f12d1963228d7c7e" + ], + "id": "1b7b0eaa-5eaa-4807-baa5-360d3ae82d0e", + "userId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '1b7b0eaa-5eaa-4807-baa5-360d3ae82d0e',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '1b7b0eaa-5eaa-4807-baa5-360d3ae82d0e',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "payments": [], + "proposals": [ + "0x15dc0ccd6c95e3f666a4ba756e39da9b2d37daf5d6a344eef1ca430376dceb7e" + ], + "userId": "Xlun3Ux94Zfc73axkiuVdkktOWf1", + "creationData": { + "_seconds": 1603267113, + "_nanoseconds": 740000000 + }, + "id": "1b8e238f-1158-4b39-8747-c61cbc968dfc" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '1b8e238f-1158-4b39-8747-c61cbc968dfc',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '1b8e238f-1158-4b39-8747-c61cbc968dfc',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "payments": [ + "186dcd41-8419-45b9-b352-715eb0b99297" + ], + "id": "1dc92d98-3449-4743-911f-b2f5a3143741", + "userId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "creationDate": { + "_seconds": 1606926463, + "_nanoseconds": 521000000 + }, + "proposals": [ + "1861ad79-6e8b-40ec-8b57-23a0f01e0a7c" + ] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '1dc92d98-3449-4743-911f-b2f5a3143741',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '1dc92d98-3449-4743-911f-b2f5a3143741',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "payments": [], + "id": "206335b6-0b33-45b3-b65b-aebd289b4fe9", + "userId": "BkBeEzL55mW6Z2HHuQnxJ3Ov73p1", + "creationData": { + "_seconds": 1602677792, + "_nanoseconds": 190000000 + }, + "proposals": [ + "0x33b30333df176f0f74528b6749e6d76a30bcddb0297fb02400d4812f9db53723" + ] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '206335b6-0b33-45b3-b65b-aebd289b4fe9',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '206335b6-0b33-45b3-b65b-aebd289b4fe9',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposals": [], + "payments": [], + "userId": "b0Kxsd0x4OMLeOlDnheysBz5THo1", + "id": "219e8e30-d8d1-4cff-aec4-d68e49bf4430", + "creationData": { + "_seconds": 1605770651, + "_nanoseconds": 740000000 + } + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '219e8e30-d8d1-4cff-aec4-d68e49bf4430',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '219e8e30-d8d1-4cff-aec4-d68e49bf4430',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposals": [ + "0xa7bdbc1f7e131e41d0acc975726283bdb3aa5ff70423ad44551f61d8dc5f680a" + ], + "creationData": { + "_seconds": 1605022096, + "_nanoseconds": 988000000 + }, + "userId": "Xlun3Ux94Zfc73axkiuVdkktOWf1", + "payments": [], + "id": "2230db00-59c5-481e-8c1f-019c82d2c973" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '2230db00-59c5-481e-8c1f-019c82d2c973',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '2230db00-59c5-481e-8c1f-019c82d2c973',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "creationData": { + "_seconds": 1603297340, + "_nanoseconds": 869000000 + }, + "userId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "payments": [], + "proposals": [], + "id": "22df14c7-af3f-42ad-8312-9467a3838b6f" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '22df14c7-af3f-42ad-8312-9467a3838b6f',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '22df14c7-af3f-42ad-8312-9467a3838b6f',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposals": [ + "0xc9ab05ed65d8d35a94703b61e657eacef16d5923066ec43ed2186b0aa2a74a83" + ], + "id": "247520b0-6429-442f-8861-af9db57b649f", + "creationData": { + "_seconds": 1604418437, + "_nanoseconds": 49000000 + }, + "payments": [], + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '247520b0-6429-442f-8861-af9db57b649f',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '247520b0-6429-442f-8861-af9db57b649f',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "payments": [], + "userId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "proposals": [], + "creationData": { + "_seconds": 1603354300, + "_nanoseconds": 632000000 + }, + "id": "25eed769-4f44-499c-8cc7-ea28b0f3c581" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '25eed769-4f44-499c-8cc7-ea28b0f3c581',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '25eed769-4f44-499c-8cc7-ea28b0f3c581',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "payments": [], + "id": "26bdc62c-4315-4a53-a90c-7fbdbbc6a9de", + "proposals": [ + "0x4f86d62176dece43ff3eaa4930a8e2ffe557a43703faa0a82c1e0e2065ba8706" + ], + "creationData": { + "_seconds": 1604568344, + "_nanoseconds": 326000000 + } + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '26bdc62c-4315-4a53-a90c-7fbdbbc6a9de',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '26bdc62c-4315-4a53-a90c-7fbdbbc6a9de',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "creationData": { + "_seconds": 1603052966, + "_nanoseconds": 41000000 + }, + "userId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1", + "payments": [], + "proposals": [ + "0x212ff2bc361700d68ff9f88a355f9d7bc45509a3ca76c9b77049119a050d9f5a" + ], + "id": "27305098-7472-4bd0-a618-fa2a791bccc5" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '27305098-7472-4bd0-a618-fa2a791bccc5',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '27305098-7472-4bd0-a618-fa2a791bccc5',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposals": [ + "0x2917ec9d043622737a1a64008e71f802cb2ef2a3fcf137d269b74101c4481304" + ], + "id": "277a4b32-92dd-4043-a2ae-fd7e060831b1", + "payments": [], + "userId": "BONVnugkzuhlKnhSTvQSlYGZMEy1", + "creationData": { + "_seconds": 1603294828, + "_nanoseconds": 342000000 + } + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '277a4b32-92dd-4043-a2ae-fd7e060831b1',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '277a4b32-92dd-4043-a2ae-fd7e060831b1',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "creationDate": { + "_seconds": 1606289582, + "_nanoseconds": 5000000 + }, + "payments": [], + "id": "2a001314-594a-4c49-bd16-80ed035e836d", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '2a001314-594a-4c49-bd16-80ed035e836d',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '2a001314-594a-4c49-bd16-80ed035e836d',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposals": [ + "0x3fec237eb9fa2f2aabb706e76bb3c8c2679aa533637d80c9303bf365d86ca28e" + ], + "payments": [], + "userId": "BONVnugkzuhlKnhSTvQSlYGZMEy1", + "creationData": { + "_seconds": 1603017729, + "_nanoseconds": 203000000 + }, + "id": "2a3c7f1f-77c3-4d90-9fca-b820e350b2c0" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '2a3c7f1f-77c3-4d90-9fca-b820e350b2c0',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '2a3c7f1f-77c3-4d90-9fca-b820e350b2c0',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "creationData": { + "_seconds": 1603277291, + "_nanoseconds": 327000000 + }, + "payments": [], + "proposals": [ + "0xda9a75e1aecdd98da86427572c2ae834bd0f3f08868391a7f52bef92bb13a6d5" + ], + "id": "2aee439d-3538-43f7-a658-dba843d1a10c", + "userId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '2aee439d-3538-43f7-a658-dba843d1a10c',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '2aee439d-3538-43f7-a658-dba843d1a10c',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposals": [], + "creationDate": { + "_seconds": 1606727021, + "_nanoseconds": 56000000 + }, + "payments": [], + "userId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1", + "id": "2b02d934-3b37-4f6d-b40b-4fcb776d85ae" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '2b02d934-3b37-4f6d-b40b-4fcb776d85ae',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '2b02d934-3b37-4f6d-b40b-4fcb776d85ae',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "id": "2b46c334-f3fc-44bf-bb83-43c6981df384", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "creationDate": { + "_seconds": 1606206969, + "_nanoseconds": 800000000 + }, + "payments": [] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '2b46c334-f3fc-44bf-bb83-43c6981df384',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '2b46c334-f3fc-44bf-bb83-43c6981df384',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "id": "2d71165b-70d1-4d0b-9752-a3270cb15de0", + "proposals": [ + "243615da-77da-41a7-aea1-181b4751c0c5" + ], + "payments": [ + "0ec6a781-caf4-42d2-a5aa-b876157e5e04" + ], + "creationDate": { + "_seconds": 1607363578, + "_nanoseconds": 239000000 + }, + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '2d71165b-70d1-4d0b-9752-a3270cb15de0',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '2d71165b-70d1-4d0b-9752-a3270cb15de0',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "id": "2f6ebac9-68fb-48cf-b2b8-a1b7b75199c6", + "payments": [], + "proposals": [ + "0x60f344f8be69796b45105853dda192a9df4de094fc051f04d15b3ef73d527526" + ], + "creationData": { + "_seconds": 1603275307, + "_nanoseconds": 187000000 + }, + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '2f6ebac9-68fb-48cf-b2b8-a1b7b75199c6',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '2f6ebac9-68fb-48cf-b2b8-a1b7b75199c6',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "proposals": [ + "7da9eeb8-ab28-4168-97f2-053a61a4385d" + ], + "id": "2ff8cbc9-eb7b-448f-8300-8d120c02051f", + "payments": [ + "c71c3835-378b-4759-979f-81ebe03afb3f" + ], + "creationData": { + "_seconds": 1606036939, + "_nanoseconds": 718000000 + } + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '2ff8cbc9-eb7b-448f-8300-8d120c02051f',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '2ff8cbc9-eb7b-448f-8300-8d120c02051f',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "payments": [ + "3d737367-9dec-4dc0-835a-b9045095bc61" + ], + "creationDate": { + "_seconds": 1607011500, + "_nanoseconds": 305000000 + }, + "proposals": [ + "d95a1b9c-7492-4905-9e5a-f65ebd072938" + ], + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "id": "3374c74d-35aa-4da0-a160-a76a1d3f1a8f" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '3374c74d-35aa-4da0-a160-a76a1d3f1a8f',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '3374c74d-35aa-4da0-a160-a76a1d3f1a8f',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "payments": [], + "id": "33d375b2-3145-433e-8136-1ad0b8a3f2c8", + "proposals": [ + "0x5d5ef27435fa671af5b69553abeb04f18d078f7e9712a35c6a3f52c5bb502950" + ], + "creationData": { + "_seconds": 1604418382, + "_nanoseconds": 459000000 + }, + "userId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '33d375b2-3145-433e-8136-1ad0b8a3f2c8',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '33d375b2-3145-433e-8136-1ad0b8a3f2c8',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposals": [ + "0xbb2676ce2b5f1f4b20a0025c1ae8203eb1fbd95c7d83fa23d5c08f29ea2cff4a" + ], + "creationData": { + "_seconds": 1602680328, + "_nanoseconds": 963000000 + }, + "userId": "BkBeEzL55mW6Z2HHuQnxJ3Ov73p1", + "id": "34a6bf45-a9ad-468a-ac31-7b7942c2d7dc", + "payments": [] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '34a6bf45-a9ad-468a-ac31-7b7942c2d7dc',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '34a6bf45-a9ad-468a-ac31-7b7942c2d7dc',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposals": [ + "7c5ea967-1a0e-4362-913a-0c857fde6a52" + ], + "creationData": { + "_seconds": 1605798788, + "_nanoseconds": 981000000 + }, + "userId": "b0Kxsd0x4OMLeOlDnheysBz5THo1", + "payments": [], + "id": "35755446-f082-427f-9954-b74492b2a469" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '35755446-f082-427f-9954-b74492b2a469',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '35755446-f082-427f-9954-b74492b2a469',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "payments": [], + "proposals": [ + "0x5e2b5f2ac98e13f3605f08268552fd8832850179aff94358cd86f25ad5244e78" + ], + "id": "36888a4c-9efa-4f0f-a8ea-82d299f78cfb", + "creationData": { + "_seconds": 1603200234, + "_nanoseconds": 262000000 + }, + "userId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '36888a4c-9efa-4f0f-a8ea-82d299f78cfb',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '36888a4c-9efa-4f0f-a8ea-82d299f78cfb',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposals": [ + "0xd7553b058a1073605189fdcb141fe16ac48245125ca0117a607a375b444b0883" + ], + "payments": [], + "userId": "Xlun3Ux94Zfc73axkiuVdkktOWf1", + "id": "3a2fdecd-c69b-432b-8ab3-a37a8b1850c2", + "creationData": { + "_seconds": 1603271408, + "_nanoseconds": 807000000 + } + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '3a2fdecd-c69b-432b-8ab3-a37a8b1850c2',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '3a2fdecd-c69b-432b-8ab3-a37a8b1850c2',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "id": "3b9342c7-4913-4d85-8318-a776fc563ae5", + "payments": [], + "proposals": [], + "creationData": { + "_seconds": 1603895057, + "_nanoseconds": 344000000 + }, + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '3b9342c7-4913-4d85-8318-a776fc563ae5',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '3b9342c7-4913-4d85-8318-a776fc563ae5',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposals": [ + "0xe36f8de30e659476932cb20dd18ed28f125ffb87e6ce3aef0d68b80ec98700a6" + ], + "userId": "XMAGwJIOilXUABsdC7KWsDY2v4E3", + "creationData": { + "_seconds": 1603285484, + "_nanoseconds": 197000000 + }, + "id": "3c76bf58-5b09-45ee-8fb5-3e0e25e21137", + "payments": [] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '3c76bf58-5b09-45ee-8fb5-3e0e25e21137',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '3c76bf58-5b09-45ee-8fb5-3e0e25e21137',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "creationDate": { + "_seconds": 1606726897, + "_nanoseconds": 664000000 + }, + "id": "3d1522cf-9928-4976-9a2a-f701050353f4", + "payments": [], + "userId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1", + "proposals": [] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '3d1522cf-9928-4976-9a2a-f701050353f4',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '3d1522cf-9928-4976-9a2a-f701050353f4',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "id": "3d578db5-5d99-4493-b084-8e26f4737d04", + "creationData": { + "_seconds": 1603275826, + "_nanoseconds": 773000000 + }, + "proposals": [ + "0x94b3914eb13c8d33c86b2915342d62bb20ed6553fb4975c1c8ef3f3f4d239d55" + ], + "payments": [], + "userId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '3d578db5-5d99-4493-b084-8e26f4737d04',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '3d578db5-5d99-4493-b084-8e26f4737d04',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "id": "3d6cb864-4273-48a9-acd6-4ba593a7a592", + "creationData": { + "_seconds": 1604568288, + "_nanoseconds": 155000000 + }, + "proposals": [ + "0xe307eecb9d6a0500bcc9fdfd90ceb8e6aedf8051f3a8b2e152479205ad1f07aa" + ], + "userId": "h59V0do13qhpeH9xDyoLaCZucTm1", + "payments": [] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '3d6cb864-4273-48a9-acd6-4ba593a7a592',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '3d6cb864-4273-48a9-acd6-4ba593a7a592',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposals": [ + "0xa27ee6c46df16aef40a80ba0f90250555bba9c711eafb95acc995c61ed4f520a" + ], + "id": "3e027e99-8d71-4489-a093-fd5edc30e501", + "payments": [], + "creationData": { + "_seconds": 1604771727, + "_nanoseconds": 5000000 + }, + "userId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '3e027e99-8d71-4489-a093-fd5edc30e501',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '3e027e99-8d71-4489-a093-fd5edc30e501',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposals": [ + "f71acb63-7859-47a5-8785-14c7f99d2448" + ], + "payments": [], + "creationData": { + "_seconds": 1605790229, + "_nanoseconds": 751000000 + }, + "userId": "b0Kxsd0x4OMLeOlDnheysBz5THo1", + "id": "3e9d3843-f3c6-45eb-8769-7dd39b8c3aa3" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '3e9d3843-f3c6-45eb-8769-7dd39b8c3aa3',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '3e9d3843-f3c6-45eb-8769-7dd39b8c3aa3',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposals": [ + "0x2898ef46b9d7f2216baf89119c2bbbe70583de11dc44d9892648dc8a14b9ce9e" + ], + "creationData": { + "_seconds": 1603101423, + "_nanoseconds": 149000000 + }, + "id": "3f8d5852-1ade-4638-b7dd-ca3f4c1a8945", + "payments": [], + "userId": "Xlun3Ux94Zfc73axkiuVdkktOWf1" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '3f8d5852-1ade-4638-b7dd-ca3f4c1a8945',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '3f8d5852-1ade-4638-b7dd-ca3f4c1a8945',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposals": [ + "0x37eb0c65279be1737f4d25bc89c096d18396beb42e6d48ee8edec2578fa3a51d" + ], + "userId": "BONVnugkzuhlKnhSTvQSlYGZMEy1", + "creationData": { + "_seconds": 1603026956, + "_nanoseconds": 896000000 + }, + "payments": [], + "id": "40fe8f54-6334-4912-aebb-8a522c48b688" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '40fe8f54-6334-4912-aebb-8a522c48b688',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '40fe8f54-6334-4912-aebb-8a522c48b688',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposals": [], + "creationData": { + "_seconds": 1603201465, + "_nanoseconds": 605000000 + }, + "id": "41de580c-db31-4a5d-ab85-9c1fb25cbc4d", + "payments": [], + "userId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '41de580c-db31-4a5d-ab85-9c1fb25cbc4d',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '41de580c-db31-4a5d-ab85-9c1fb25cbc4d',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "userId": "XMAGwJIOilXUABsdC7KWsDY2v4E3", + "creationData": { + "_seconds": 1603287319, + "_nanoseconds": 35000000 + }, + "id": "434d1c4f-c617-4a3c-b739-df49c80477dd", + "proposals": [ + "0xefabc621861b1814704478b9adb407965cb8b7d4969f4bda32c10f5b1b77d61c" + ], + "payments": [] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '434d1c4f-c617-4a3c-b739-df49c80477dd',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '434d1c4f-c617-4a3c-b739-df49c80477dd',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "creationData": { + "_seconds": 1602744845, + "_nanoseconds": 439000000 + }, + "payments": [], + "proposals": [ + "0x39965cc7eaa9551d6dc0e58fdd52e6da88c2e1f7e27c5179e25285ff1a21699e" + ], + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "id": "44ca3e56-7b97-469d-8a9b-2776c8e193e8" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '44ca3e56-7b97-469d-8a9b-2776c8e193e8',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '44ca3e56-7b97-469d-8a9b-2776c8e193e8',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "id": "477a7736-7d75-4fd7-ae82-2840656f1af3", + "payments": [], + "proposals": [ + "0xb3de942fff756b28b08c6e1f9f50202288bee8e894881bb535592964d3dd2b53" + ], + "creationData": { + "_seconds": 1603024913, + "_nanoseconds": 59000000 + }, + "userId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '477a7736-7d75-4fd7-ae82-2840656f1af3',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '477a7736-7d75-4fd7-ae82-2840656f1af3',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "payments": [], + "creationData": { + "_seconds": 1603285694, + "_nanoseconds": 136000000 + }, + "proposals": [ + "0x67b0685e0fde2815f4f610ad3ffdfdd45323f0924bd7691090923471c5c1ee83" + ], + "userId": "XMAGwJIOilXUABsdC7KWsDY2v4E3", + "id": "47e27b50-e87d-4d7e-bcc9-095c6f86f8dc" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '47e27b50-e87d-4d7e-bcc9-095c6f86f8dc',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '47e27b50-e87d-4d7e-bcc9-095c6f86f8dc',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "payments": [], + "creationDate": { + "_seconds": 1606827846, + "_nanoseconds": 166000000 + }, + "proposals": [ + "b6d5ddec-bde5-4dd2-8a5e-25ced7eb0301" + ], + "id": "4810a1f7-2f2f-4c6b-ae8a-106a9b8fc1fc" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '4810a1f7-2f2f-4c6b-ae8a-106a9b8fc1fc',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '4810a1f7-2f2f-4c6b-ae8a-106a9b8fc1fc',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "creationData": { + "_seconds": 1603177723, + "_nanoseconds": 275000000 + }, + "proposals": [ + "0x03e934688cdaa3d1378d4c068fd2255b71b8695a872bf208307739ad83d6d88a" + ], + "userId": "H5ZkcKBX5eXXNyBiPaph8EHCiax2", + "id": "493c6b70-83fc-4bbb-96d6-50e68623f8c7", + "payments": [] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '493c6b70-83fc-4bbb-96d6-50e68623f8c7',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '493c6b70-83fc-4bbb-96d6-50e68623f8c7',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "creationData": { + "_seconds": 1603286160, + "_nanoseconds": 787000000 + }, + "proposals": [ + "0x1df16ee4576e32c1f3d111086427ed42d92cead8c48db606992cda10bc5c85a1" + ], + "payments": [], + "id": "4a72000e-d812-477c-9742-08960359c069", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '4a72000e-d812-477c-9742-08960359c069',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '4a72000e-d812-477c-9742-08960359c069',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposals": [ + "0xc25933ec3c99f1de1fe3405dc402ae00fe326fd5e6c8e857a42c284f8f6ac4fd" + ], + "id": "4c127e33-c648-4015-abe1-0c0e7728d53d", + "creationData": { + "_seconds": 1604480400, + "_nanoseconds": 370000000 + }, + "payments": [], + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '4c127e33-c648-4015-abe1-0c0e7728d53d',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '4c127e33-c648-4015-abe1-0c0e7728d53d',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "userId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "creationData": { + "_seconds": 1603354263, + "_nanoseconds": 201000000 + }, + "payments": [], + "proposals": [], + "id": "4ccc6d6b-4714-421b-acac-434ee5eb4ea1" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '4ccc6d6b-4714-421b-acac-434ee5eb4ea1',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '4ccc6d6b-4714-421b-acac-434ee5eb4ea1',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "userId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1", + "proposals": [], + "payments": [], + "creationDate": { + "_seconds": 1606726814, + "_nanoseconds": 601000000 + }, + "id": "4d5bf905-f44c-4a00-8fa2-3c492cccc7ff" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '4d5bf905-f44c-4a00-8fa2-3c492cccc7ff',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '4d5bf905-f44c-4a00-8fa2-3c492cccc7ff',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposals": [ + "5b1858a0-6903-4b8f-93ee-c237262a42ca" + ], + "id": "4e5d25f8-6505-4f12-a42b-c36aee5f1bf5", + "userId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1", + "creationDate": { + "_seconds": 1607243600, + "_nanoseconds": 739000000 + }, + "payments": [] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '4e5d25f8-6505-4f12-a42b-c36aee5f1bf5',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '4e5d25f8-6505-4f12-a42b-c36aee5f1bf5',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "creationData": { + "_seconds": 1603099295, + "_nanoseconds": 438000000 + }, + "proposals": [ + "0xd1e764db91d08f970fdc4e31bbd3dc2874c6e74f04c446061131202347240adc" + ], + "userId": "Xlun3Ux94Zfc73axkiuVdkktOWf1", + "payments": [], + "id": "4e6a9f81-d86f-4bba-b1ff-d1b3c8b61e9f" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '4e6a9f81-d86f-4bba-b1ff-d1b3c8b61e9f',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '4e6a9f81-d86f-4bba-b1ff-d1b3c8b61e9f',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "userId": "BONVnugkzuhlKnhSTvQSlYGZMEy1", + "proposals": [ + "0xff3a00842d8abdafc07c1a0d4e7104110bdcafc868718df06042ea8bbfb0a5b8" + ], + "creationData": { + "_seconds": 1603122289, + "_nanoseconds": 555000000 + }, + "id": "4f54f9b1-657e-48ae-9040-a12d1df35406", + "payments": [] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '4f54f9b1-657e-48ae-9040-a12d1df35406',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '4f54f9b1-657e-48ae-9040-a12d1df35406',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposals": [ + "0x49f1b23a50f4fb8587b7dadabbe1c13f16df9ca1a94922a7277a44a941af928c" + ], + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "payments": [], + "id": "4fcb8791-e72c-43a1-a94e-edf83e958df6", + "creationData": { + "_seconds": 1603096797, + "_nanoseconds": 138000000 + } + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '4fcb8791-e72c-43a1-a94e-edf83e958df6',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '4fcb8791-e72c-43a1-a94e-edf83e958df6',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposals": [], + "payments": [], + "creationData": { + "_seconds": 1604834408, + "_nanoseconds": 84000000 + }, + "id": "50d93fe4-f49b-4ae4-9a78-da2b526f93c3", + "userId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '50d93fe4-f49b-4ae4-9a78-da2b526f93c3',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '50d93fe4-f49b-4ae4-9a78-da2b526f93c3',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "proposals": [ + "0xffc6cbd6f8310f12be87cacd9030740577c897b79751d66c744a2f23efe0972f" + ], + "id": "50e71ca6-4961-4303-8795-557e4d277723", + "payments": [], + "creationData": { + "_seconds": 1603011655, + "_nanoseconds": 594000000 + } + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '50e71ca6-4961-4303-8795-557e4d277723',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '50e71ca6-4961-4303-8795-557e4d277723',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "userId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1", + "id": "51182340-7d63-4f9b-b31a-d80bdd0d9d4b", + "proposals": [ + "0xa088cb45fb914a371f61356998e20f392b6e7be6874432bcc97426d36cf091bd" + ], + "creationData": { + "_seconds": 1603275153, + "_nanoseconds": 141000000 + }, + "payments": [] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '51182340-7d63-4f9b-b31a-d80bdd0d9d4b',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '51182340-7d63-4f9b-b31a-d80bdd0d9d4b',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "creationDate": { + "_seconds": 1606291540, + "_nanoseconds": 28000000 + }, + "payments": [], + "id": "51c6695b-e389-4c1f-9507-d07eb4628847", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '51c6695b-e389-4c1f-9507-d07eb4628847',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '51c6695b-e389-4c1f-9507-d07eb4628847',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposals": [], + "userId": "BONVnugkzuhlKnhSTvQSlYGZMEy1", + "id": "52df574a-0e4c-446f-889c-8aaf4e49f0ed", + "creationData": { + "_seconds": 1603122018, + "_nanoseconds": 426000000 + }, + "payments": [] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '52df574a-0e4c-446f-889c-8aaf4e49f0ed',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '52df574a-0e4c-446f-889c-8aaf4e49f0ed',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "userId": "XMAGwJIOilXUABsdC7KWsDY2v4E3", + "id": "53851862-6837-4aaf-812e-1c104e7cd446", + "payments": [], + "proposals": [], + "creationData": { + "_seconds": 1603285955, + "_nanoseconds": 942000000 + } + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '53851862-6837-4aaf-812e-1c104e7cd446',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '53851862-6837-4aaf-812e-1c104e7cd446',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "userId": "b0Kxsd0x4OMLeOlDnheysBz5THo1", + "id": "5648f085-ecc3-424d-9602-f1ac5bd4c13f", + "payments": [ + "710af75d-6a75-4cba-8a52-a167490eb3dc" + ], + "creationDate": { + "_seconds": 1606297369, + "_nanoseconds": 710000000 + } + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '5648f085-ecc3-424d-9602-f1ac5bd4c13f',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '5648f085-ecc3-424d-9602-f1ac5bd4c13f',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "userId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "payments": [], + "creationDate": { + "_seconds": 1606407111, + "_nanoseconds": 743000000 + }, + "proposals": [ + "9fc9d73d-9862-4744-b7a2-b32041e3e84d" + ], + "id": "57065bd4-7fde-4ad5-8d69-7f3463caee97" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '57065bd4-7fde-4ad5-8d69-7f3463caee97',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '57065bd4-7fde-4ad5-8d69-7f3463caee97',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposals": [ + "0x114f8b20d67f3b1d1b18544cb539fe90bcefa6754822233b76a462a30842106f", + "0x5001ddeb8b8699832162a44bc88464265ac59ec09983f8eeae6ff68d0c8a7d3c" + ], + "id": "587dcee0-7a03-4900-9c08-bd81d6e98f690x114f8b20d67f3b1d1b18544cb539fe90bcefa6754822233b76a462a30842106f", + "payments": [ + "0d082e1a-ee95-44ba-bbf3-85cb4edaf88f", + "318912d0-1bf0-4990-8231-1aa4fd836327" + ], + "userId": "b0Kxsd0x4OMLeOlDnheysBz5THo1", + "cardId": "587dcee0-7a03-4900-9c08-bd81d6e98f69", + "creationData": { + "_seconds": 1601824663, + "_nanoseconds": 630000000 + } + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '587dcee0-7a03-4900-9c08-bd81d6e98f690x114f8b20d67f3b1d1b18544cb539fe90bcefa6754822233b76a462a30842106f',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '587dcee0-7a03-4900-9c08-bd81d6e98f690x114f8b20d67f3b1d1b18544cb539fe90bcefa6754822233b76a462a30842106f',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "payments": [ + "2808cd51-af14-4119-b601-a8f27f854d75" + ], + "creationDate": { + "_seconds": 1607587078, + "_nanoseconds": 950000000 + }, + "userId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "id": "592cc159-a1f6-40e8-ab40-d17eb7594cbf", + "proposals": [ + "f8860433-6965-42ac-bd9d-ee116e5e0f44" + ] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '592cc159-a1f6-40e8-ab40-d17eb7594cbf',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '592cc159-a1f6-40e8-ab40-d17eb7594cbf',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "payments": [], + "proposals": [ + "0xba8e26eb5debafbe5f09ae3a622a30bdd78592eac1e3f4df15aa15f93b2cb165" + ], + "id": "59ef4fff-717e-41f2-b4b5-7bb3abf880ea", + "userId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1", + "creationData": { + "_seconds": 1603049224, + "_nanoseconds": 469000000 + } + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '59ef4fff-717e-41f2-b4b5-7bb3abf880ea',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '59ef4fff-717e-41f2-b4b5-7bb3abf880ea',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "creationData": { + "_seconds": 1603892609, + "_nanoseconds": 380000000 + }, + "payments": [], + "proposals": [ + "0xd5af14adc91aafb1306026964d101fa0d13f5cf73fca98d0d822b3fbdca1ae70" + ], + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "id": "5dc3b561-4c56-479d-8d74-cacfde0da41c" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '5dc3b561-4c56-479d-8d74-cacfde0da41c',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '5dc3b561-4c56-479d-8d74-cacfde0da41c',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "userId": "Xlun3Ux94Zfc73axkiuVdkktOWf1", + "creationData": { + "_seconds": 1603356042, + "_nanoseconds": 563000000 + }, + "payments": [], + "proposals": [ + "0xff0eaaa7f1e9ce88972d6a14dfe11ea74d279fcf2045969ef2c0b67651346fd3" + ], + "id": "5efad991-f23c-420a-a5e6-5d088e400d77" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '5efad991-f23c-420a-a5e6-5d088e400d77',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '5efad991-f23c-420a-a5e6-5d088e400d77',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "userId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1", + "id": "5f35b146-e300-4621-b973-02cbd1dc846a", + "proposals": [ + "0xf1adb26a208aaaef62f64718cb49890be2d86dfc50ade33f0c988e5814e2e432" + ], + "creationData": { + "_seconds": 1603362252, + "_nanoseconds": 253000000 + }, + "payments": [] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '5f35b146-e300-4621-b973-02cbd1dc846a',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '5f35b146-e300-4621-b973-02cbd1dc846a',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "payments": [ + "90c682ee-ff57-44b7-a301-89e3537cc594" + ], + "userId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "id": "5fb1c43e-ebab-449f-8c34-356080163e09", + "proposals": [ + "ab5299b5-bbf5-40f3-956b-1271e6bd970c" + ], + "creationDate": { + "_seconds": 1607365121, + "_nanoseconds": 39000000 + } + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '5fb1c43e-ebab-449f-8c34-356080163e09',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '5fb1c43e-ebab-449f-8c34-356080163e09',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "userId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1", + "id": "5fb1ebb5-c76e-4394-b3c5-ecd8a309c312", + "creationData": { + "_seconds": 1603699819, + "_nanoseconds": 306000000 + }, + "proposals": [ + "0xa3e730dcec6dd1ff35aed1d34749928bd0720658ffbb6481468b9af4bab8900f" + ], + "payments": [] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '5fb1ebb5-c76e-4394-b3c5-ecd8a309c312',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '5fb1ebb5-c76e-4394-b3c5-ecd8a309c312',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "userId": "BONVnugkzuhlKnhSTvQSlYGZMEy1", + "id": "60fa6247-6e02-4cd8-8933-9fc143bf6782", + "payments": [], + "proposals": [ + "0x0591164db16d69f2251ecf111daa10919c9c2aff2fcfb21384f1a0b09ff4e330" + ], + "creationData": { + "_seconds": 1603018512, + "_nanoseconds": 43000000 + } + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '60fa6247-6e02-4cd8-8933-9fc143bf6782',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '60fa6247-6e02-4cd8-8933-9fc143bf6782',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "id": "612aa905-35eb-498f-b983-e46871b8bc18", + "creationData": { + "_seconds": 1604567631, + "_nanoseconds": 356000000 + }, + "payments": [], + "userId": "h59V0do13qhpeH9xDyoLaCZucTm1", + "proposals": [ + "0x1fd8c36685b9a59132466ee785f559bdf5199b0047343098aafecdd94aeb9c3b" + ] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '612aa905-35eb-498f-b983-e46871b8bc18',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '612aa905-35eb-498f-b983-e46871b8bc18',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "payments": [], + "id": "61d429ca-0313-4092-9705-bef6897da1e5", + "proposals": [ + "9538edc1-05fc-466d-8f06-e66115804ee2" + ], + "userId": "Sxv19oCvKAZq2vntJdYCTYSpWWN2", + "creationDate": { + "_seconds": 1607364415, + "_nanoseconds": 583000000 + } + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '61d429ca-0313-4092-9705-bef6897da1e5',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '61d429ca-0313-4092-9705-bef6897da1e5',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "creationDate": { + "_seconds": 1607364261, + "_nanoseconds": 341000000 + }, + "id": "65d09245-2d95-4b05-8319-0e03181b8d7d", + "proposals": [ + "6e62034e-8dc0-4029-8b6c-f4c388e27761" + ], + "userId": "Sxv19oCvKAZq2vntJdYCTYSpWWN2", + "payments": [] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '65d09245-2d95-4b05-8319-0e03181b8d7d',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '65d09245-2d95-4b05-8319-0e03181b8d7d',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposals": [ + "0x5929bf7c1a2407f4fc3f715a9e90e13c268632f73502c07b26695fd22f1c08cc" + ], + "userId": "XMAGwJIOilXUABsdC7KWsDY2v4E3", + "payments": [], + "id": "65db014c-57ca-4bbd-9ff9-09ab4f96ce10", + "creationData": { + "_seconds": 1603286180, + "_nanoseconds": 262000000 + } + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '65db014c-57ca-4bbd-9ff9-09ab4f96ce10',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '65db014c-57ca-4bbd-9ff9-09ab4f96ce10',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposals": [ + "0x6f5dde6e826f4265f43e71b582d4ac878f4cc6443c1cbf286f193d03e021c7b3" + ], + "payments": [], + "id": "67f667f6-6a39-460e-9508-4338f240cb5d", + "creationData": { + "_seconds": 1603295937, + "_nanoseconds": 603000000 + }, + "userId": "Xlun3Ux94Zfc73axkiuVdkktOWf1" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '67f667f6-6a39-460e-9508-4338f240cb5d',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '67f667f6-6a39-460e-9508-4338f240cb5d',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "creationDate": { + "_seconds": 1607522583, + "_nanoseconds": 962000000 + }, + "proposals": [ + "8f82d13b-575f-492b-a39a-6500b6e13d35" + ], + "userId": "Sxv19oCvKAZq2vntJdYCTYSpWWN2", + "id": "684427c7-e5e7-497e-9d5f-a1ac9cbf593f", + "payments": [] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '684427c7-e5e7-497e-9d5f-a1ac9cbf593f',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '684427c7-e5e7-497e-9d5f-a1ac9cbf593f',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "id": "69d73724-2cc1-4054-88f9-ac95e0ac2f5d", + "payments": [ + "1c01690d-5aa9-483e-be98-39aaca1ebea6" + ], + "creationData": { + "_seconds": 1606143708, + "_nanoseconds": 382000000 + }, + "proposals": [ + "164ef986-a97d-4bef-a34b-b7b56542b3cf" + ], + "userId": "Xlun3Ux94Zfc73axkiuVdkktOWf1" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '69d73724-2cc1-4054-88f9-ac95e0ac2f5d',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '69d73724-2cc1-4054-88f9-ac95e0ac2f5d',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "payments": [], + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "creationDate": { + "_seconds": 1606206004, + "_nanoseconds": 987000000 + }, + "id": "6aa7b3ab-754b-4d44-afed-ae3f7405ea5e" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '6aa7b3ab-754b-4d44-afed-ae3f7405ea5e',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '6aa7b3ab-754b-4d44-afed-ae3f7405ea5e',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "proposals": [], + "id": "6ab7272c-8719-43e9-b61c-82a7e4a848d5", + "payments": [], + "creationData": { + "_seconds": 1603286127, + "_nanoseconds": 998000000 + } + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '6ab7272c-8719-43e9-b61c-82a7e4a848d5',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '6ab7272c-8719-43e9-b61c-82a7e4a848d5',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "userId": "Xlun3Ux94Zfc73axkiuVdkktOWf1", + "id": "6b4091c8-fc2e-42a2-96b0-666b9a674377", + "payments": [], + "creationData": { + "_seconds": 1604904151, + "_nanoseconds": 551000000 + }, + "proposals": [ + "0xf147d6577ffd78928d823b0c6a538d5a58377cc99c2da8778ae3339649fd414f" + ] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '6b4091c8-fc2e-42a2-96b0-666b9a674377',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '6b4091c8-fc2e-42a2-96b0-666b9a674377',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "creationData": { + "_seconds": 1603016948, + "_nanoseconds": 191000000 + }, + "userId": "BONVnugkzuhlKnhSTvQSlYGZMEy1", + "proposals": [ + "0x3a38b85939a81b5701f7014708c6447ad9fc4030b9e1948217fc3bf1c647245e" + ], + "id": "6cd83e37-b3db-4d53-8657-a0a573fb8ca4", + "payments": [] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '6cd83e37-b3db-4d53-8657-a0a573fb8ca4',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '6cd83e37-b3db-4d53-8657-a0a573fb8ca4',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "userId": "XMAGwJIOilXUABsdC7KWsDY2v4E3", + "creationData": { + "_seconds": 1603199946, + "_nanoseconds": 792000000 + }, + "id": "6cfda27d-fc6c-4da4-a66e-011b65346eb8", + "payments": [], + "proposals": [ + "0xec638563b96df0d5e52bdc1c33316690e729086591cb877dcaa3c443566f476a" + ] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '6cfda27d-fc6c-4da4-a66e-011b65346eb8',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '6cfda27d-fc6c-4da4-a66e-011b65346eb8',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposals": [ + "0x30c797b443e62fcb844c6c7985597cb2197e385a7a98ee0fa1a2bda5e2abe69a" + ], + "payments": [], + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "creationData": { + "_seconds": 1603789531, + "_nanoseconds": 760000000 + }, + "id": "70e7c991-002a-4389-82a5-7749fa6f0ae8" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '70e7c991-002a-4389-82a5-7749fa6f0ae8',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '70e7c991-002a-4389-82a5-7749fa6f0ae8',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposals": [ + "0x7eb7377c4673ee5a6d0d4702a59bb2fb5de8f31d4391ba05b561f64cd3ff1385" + ], + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "id": "7129c23b-e099-4ab2-ac46-340ef5da8d03", + "creationData": { + "_seconds": 1603297829, + "_nanoseconds": 914000000 + }, + "payments": [] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '7129c23b-e099-4ab2-ac46-340ef5da8d03',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '7129c23b-e099-4ab2-ac46-340ef5da8d03',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposals": [ + "0x597571cb8be1957cb28043c6e3249bd666bbfaf038fe2b7332625c6cffb2f326" + ], + "id": "7385edb4-692f-4a3d-be67-44175ac3f47e", + "payments": [], + "userId": "H5ZkcKBX5eXXNyBiPaph8EHCiax2", + "creationData": { + "_seconds": 1602735195, + "_nanoseconds": 282000000 + } + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '7385edb4-692f-4a3d-be67-44175ac3f47e',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '7385edb4-692f-4a3d-be67-44175ac3f47e',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "userId": "Xlun3Ux94Zfc73axkiuVdkktOWf1", + "id": "7415f530-f574-42f5-93bf-904cee4350cf", + "creationDate": { + "_seconds": 1606392577, + "_nanoseconds": 760000000 + }, + "payments": [], + "proposals": [ + "dc0f3793-567c-4745-9d14-5ac4a23a58d7" + ] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '7415f530-f574-42f5-93bf-904cee4350cf',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '7415f530-f574-42f5-93bf-904cee4350cf',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "userId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "creationDate": { + "_seconds": 1606232601, + "_nanoseconds": 106000000 + }, + "id": "751cac3a-ed59-482e-9a9e-eac279702bed", + "payments": [] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '751cac3a-ed59-482e-9a9e-eac279702bed',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '751cac3a-ed59-482e-9a9e-eac279702bed',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "id": "774258aa-50e2-41b5-8235-4523f1421178", + "proposals": [ + "77b7f069-d403-4a38-b57e-f9ad2c69af72" + ], + "userId": "b0Kxsd0x4OMLeOlDnheysBz5THo1", + "creationData": { + "_seconds": 1605799969, + "_nanoseconds": 321000000 + }, + "payments": [] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '774258aa-50e2-41b5-8235-4523f1421178',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '774258aa-50e2-41b5-8235-4523f1421178',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposals": [ + "d4152242-e2a8-4274-97af-3f9ab8d44a72" + ], + "creationDate": { + "_seconds": 1606406787, + "_nanoseconds": 479000000 + }, + "id": "78f5f734-0a2e-43f5-aae8-33365539ddbd", + "payments": [], + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '78f5f734-0a2e-43f5-aae8-33365539ddbd',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '78f5f734-0a2e-43f5-aae8-33365539ddbd',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "userId": "H5ZkcKBX5eXXNyBiPaph8EHCiax2", + "id": "79e2151d-9fb5-49b5-839a-9437511fa698", + "creationData": { + "_seconds": 1603177316, + "_nanoseconds": 775000000 + }, + "payments": [], + "proposals": [ + "0x9155970ef1712aef0754df4182c48f8acbacf80004bcf3d6c5357fcae96b2611" + ] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '79e2151d-9fb5-49b5-839a-9437511fa698',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '79e2151d-9fb5-49b5-839a-9437511fa698',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "userId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "creationData": { + "_seconds": 1604493928, + "_nanoseconds": 739000000 + }, + "proposals": [ + "0xbc5b19eae1f17f25263f515c899d06807bef96afbfbd5d9b3b0ea3f382c8730e" + ], + "id": "7f9f9d85-207d-424a-bbfb-5b65721c40c6", + "payments": [] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '7f9f9d85-207d-424a-bbfb-5b65721c40c6',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '7f9f9d85-207d-424a-bbfb-5b65721c40c6',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "id": "80dc5271-c266-46c8-8cbe-5daf92bad59c", + "proposals": [ + "0x3bc3cea5bcb2e03a5876187950e3d2a2ca39bbd1335a3d79f197a22dcf40783b" + ], + "creationData": { + "_seconds": 1604487196, + "_nanoseconds": 399000000 + }, + "userId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "payments": [] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '80dc5271-c266-46c8-8cbe-5daf92bad59c',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '80dc5271-c266-46c8-8cbe-5daf92bad59c',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposals": [ + "0xef81b25a5d9b3889748e1ad1813238413173218631d0bf5fe214cfecdb8ffa7f" + ], + "userId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "id": "82bb1316-1888-49f5-b7ce-2a38ba020654", + "creationData": { + "_seconds": 1603895015, + "_nanoseconds": 106000000 + }, + "payments": [] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '82bb1316-1888-49f5-b7ce-2a38ba020654',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '82bb1316-1888-49f5-b7ce-2a38ba020654',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "payments": [], + "userId": "b0Kxsd0x4OMLeOlDnheysBz5THo1", + "proposals": [ + "0x114f8b20d67f3b1d1b18544cb539fe90bcefa6754822233b76a462a30842106f" + ], + "id": "831b8ca8-c050-4659-926f-2e34287a8dee0x114f8b20d67f3b1d1b18544cb539fe90bcefa6754822233b76a462a30842106f", + "cardId": "831b8ca8-c050-4659-926f-2e34287a8dee", + "creationData": { + "_seconds": 1601909647, + "_nanoseconds": 187000000 + } + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '831b8ca8-c050-4659-926f-2e34287a8dee0x114f8b20d67f3b1d1b18544cb539fe90bcefa6754822233b76a462a30842106f',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '831b8ca8-c050-4659-926f-2e34287a8dee0x114f8b20d67f3b1d1b18544cb539fe90bcefa6754822233b76a462a30842106f',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "payments": [ + "68ef54e6-fa1c-423c-bd22-3a7130cf159a" + ], + "proposals": [ + "abb314c8-2c9e-4715-8a94-cb6d18bd84ea" + ], + "creationData": { + "_seconds": 1605802569, + "_nanoseconds": 484000000 + }, + "id": "88e9cd48-66a9-422a-a343-11ef5cea5b73", + "userId": "b0Kxsd0x4OMLeOlDnheysBz5THo1" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '88e9cd48-66a9-422a-a343-11ef5cea5b73',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '88e9cd48-66a9-422a-a343-11ef5cea5b73',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "creationData": { + "_seconds": 1604834408, + "_nanoseconds": 690000000 + }, + "payments": [], + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "id": "896f6897-01f8-4d2a-85c9-4a1d73f82f1a", + "proposals": [] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '896f6897-01f8-4d2a-85c9-4a1d73f82f1a',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '896f6897-01f8-4d2a-85c9-4a1d73f82f1a',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposals": [ + "0xab97be67eb5f0cd9aecde0db8cc829a34dd6ae6104d6a67a856e5baaf82897eb" + ], + "id": "8aab4077-6445-44d3-b174-e68489a2b872", + "creationData": { + "_seconds": 1605194915, + "_nanoseconds": 850000000 + }, + "userId": "BONVnugkzuhlKnhSTvQSlYGZMEy1", + "payments": [] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '8aab4077-6445-44d3-b174-e68489a2b872',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '8aab4077-6445-44d3-b174-e68489a2b872',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "creationData": { + "_seconds": 1605885884, + "_nanoseconds": 696000000 + }, + "payments": [], + "proposals": [ + "6b5ad855-694c-44fc-ab9e-9efe5b5fb1e2" + ], + "userId": "7rUTurSrx8gJcfaGaoh29uPKvjU2", + "id": "8b5acb9b-42e1-443e-8016-1d45efc4a648" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '8b5acb9b-42e1-443e-8016-1d45efc4a648',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '8b5acb9b-42e1-443e-8016-1d45efc4a648',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "id": "8bb65b58-2198-4951-ad46-d25528c6befe", + "creationData": { + "_seconds": 1603176737, + "_nanoseconds": 435000000 + }, + "proposals": [ + "0xd8121d8d0ba20dc8fd9ba8ce482f66cf06368c3e4d8a6dcc52a2a0c297c1880f" + ], + "userId": "H5ZkcKBX5eXXNyBiPaph8EHCiax2", + "payments": [] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '8bb65b58-2198-4951-ad46-d25528c6befe',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '8bb65b58-2198-4951-ad46-d25528c6befe',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "creationData": { + "_seconds": 1602670320, + "_nanoseconds": 71000000 + }, + "payments": [], + "proposals": [ + "proposalId" + ], + "userId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1", + "id": "8c403a1f-c375-44dd-b175-5ffa80d78c20" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '8c403a1f-c375-44dd-b175-5ffa80d78c20',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '8c403a1f-c375-44dd-b175-5ffa80d78c20',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "id": "8ca28f79-06ee-43ad-b877-6d5398a5dbab", + "proposals": [ + "0x5f5a3005ec2eecb07a3ffeaf69be4381e8c2ec146fae5bbc7e20241c71cf3005" + ], + "creationData": { + "_seconds": 1603297250, + "_nanoseconds": 414000000 + }, + "userId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "payments": [] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '8ca28f79-06ee-43ad-b877-6d5398a5dbab',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '8ca28f79-06ee-43ad-b877-6d5398a5dbab',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "creationData": { + "_seconds": 1603356026, + "_nanoseconds": 850000000 + }, + "payments": [], + "id": "8d7465da-824a-4128-b501-70f8ef3d97da", + "userId": "Xlun3Ux94Zfc73axkiuVdkktOWf1", + "proposals": [] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '8d7465da-824a-4128-b501-70f8ef3d97da',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '8d7465da-824a-4128-b501-70f8ef3d97da',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "userId": "XMAGwJIOilXUABsdC7KWsDY2v4E3", + "payments": [], + "id": "8df0dbae-0a0a-41a0-93e0-4298e45eab3c", + "creationData": { + "_seconds": 1603285626, + "_nanoseconds": 816000000 + }, + "proposals": [ + "0xfdc117743c93024d9691a9912ede0872a12608fe1068d3e1fcf24f0bb2e7128a" + ] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '8df0dbae-0a0a-41a0-93e0-4298e45eab3c',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '8df0dbae-0a0a-41a0-93e0-4298e45eab3c',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "payments": [], + "proposals": [ + "0x6eb44870e0f1f31f440de8df42352846d541bd6b8b3562dc7ad889636448d9f7" + ], + "userId": "Xlun3Ux94Zfc73axkiuVdkktOWf1", + "id": "8f11a858-adbe-4093-b612-42477ebeadf6", + "creationData": { + "_seconds": 1604483445, + "_nanoseconds": 971000000 + } + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '8f11a858-adbe-4093-b612-42477ebeadf6',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '8f11a858-adbe-4093-b612-42477ebeadf6',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "userId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "creationData": { + "_seconds": 1604480214, + "_nanoseconds": 772000000 + }, + "proposals": [ + "0x738e32ae3b0731c1ff8226ab4ec1f26f5bbcd50adb7b464b7ea6b6a033476f43" + ], + "payments": [], + "id": "90c2fcd7-0d3d-4e80-8e31-c1056b8195f4" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '90c2fcd7-0d3d-4e80-8e31-c1056b8195f4',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '90c2fcd7-0d3d-4e80-8e31-c1056b8195f4',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "payments": [ + "adc05e05-1ffb-418d-85b6-0f201e0c3ca0" + ], + "id": "92a3dd16-2de3-466b-bc20-b7db19939035", + "creationData": { + "_seconds": 1606035392, + "_nanoseconds": 625000000 + }, + "proposals": [ + "88e6c363-f776-41f2-87ad-7bc16feeb06d" + ], + "userId": "XMAGwJIOilXUABsdC7KWsDY2v4E3" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '92a3dd16-2de3-466b-bc20-b7db19939035',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '92a3dd16-2de3-466b-bc20-b7db19939035',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "userId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "payments": [], + "id": "9322cad4-1e5a-4061-8f45-3e06137abb8f", + "creationData": { + "_seconds": 1603297378, + "_nanoseconds": 205000000 + }, + "proposals": [] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '9322cad4-1e5a-4061-8f45-3e06137abb8f',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '9322cad4-1e5a-4061-8f45-3e06137abb8f',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposals": [ + "0x9704e8fc74cf269feec47eaf0fef8996f1a43c92d14037f262fd0ae2077098a9" + ], + "userId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1", + "id": "9345b1c8-7052-4a53-9403-c5d7dbb0ca16", + "creationData": { + "_seconds": 1603275914, + "_nanoseconds": 552000000 + }, + "payments": [] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '9345b1c8-7052-4a53-9403-c5d7dbb0ca16',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '9345b1c8-7052-4a53-9403-c5d7dbb0ca16',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposals": [], + "payments": [], + "id": "962562f9-f7d9-4499-bacb-bb0f08f7e852", + "creationData": { + "_seconds": 1604403544, + "_nanoseconds": 464000000 + }, + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '962562f9-f7d9-4499-bacb-bb0f08f7e852',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '962562f9-f7d9-4499-bacb-bb0f08f7e852',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "userId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "creationData": { + "_seconds": 1603354378, + "_nanoseconds": 886000000 + }, + "payments": [], + "id": "96a9ddf7-42e7-4b5a-b922-dffde23d0eaa", + "proposals": [] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '96a9ddf7-42e7-4b5a-b922-dffde23d0eaa',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '96a9ddf7-42e7-4b5a-b922-dffde23d0eaa',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposals": [ + "0x3dd62074c952fd4c60b35324f05fd4c87ebf0ac7ee87ba732c4b1c74efd690d4" + ], + "creationData": { + "_seconds": 1603016567, + "_nanoseconds": 447000000 + }, + "payments": [], + "userId": "BONVnugkzuhlKnhSTvQSlYGZMEy1", + "id": "99cd44f8-0a3b-4af0-8bc0-d280bc03b5ee" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '99cd44f8-0a3b-4af0-8bc0-d280bc03b5ee',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: '99cd44f8-0a3b-4af0-8bc0-d280bc03b5ee',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "userId": "BONVnugkzuhlKnhSTvQSlYGZMEy1", + "proposals": [ + "0xab9cc892e1e8aee29457b8475042023b3eefc7aa3ecd640f8265be859b1690d7" + ], + "creationData": { + "_seconds": 1602836925, + "_nanoseconds": 676000000 + }, + "payments": [], + "id": "a144d2c7-3336-4454-9fd4-78c2acdf4a01" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'a144d2c7-3336-4454-9fd4-78c2acdf4a01',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'a144d2c7-3336-4454-9fd4-78c2acdf4a01',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposals": [ + "9824e72f-3b5c-4597-b5d4-3a5f1fca2378" + ], + "creationDate": { + "_seconds": 1607362766, + "_nanoseconds": 647000000 + }, + "id": "a1626928-aaea-4f9d-a6ea-9b9930bab558", + "payments": [], + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'a1626928-aaea-4f9d-a6ea-9b9930bab558',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'a1626928-aaea-4f9d-a6ea-9b9930bab558',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "payments": [], + "creationDate": { + "_seconds": 1606205969, + "_nanoseconds": 203000000 + }, + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "id": "a1ad1de7-102d-4043-a1c4-16a6e1307ce3" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'a1ad1de7-102d-4043-a1c4-16a6e1307ce3',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'a1ad1de7-102d-4043-a1c4-16a6e1307ce3',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "id": "a238e8be-250b-4b67-810a-3a41edcc6161", + "userId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "payments": [ + "78b38ddb-9552-4bfa-bad3-ff1c302a8082" + ], + "proposals": [ + "6b3dc5b4-d0f0-4e5d-9515-329932b5634f" + ], + "creationDate": { + "_seconds": 1606380855, + "_nanoseconds": 110000000 + } + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'a238e8be-250b-4b67-810a-3a41edcc6161',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'a238e8be-250b-4b67-810a-3a41edcc6161',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposals": [ + "0x4adea73c8b74b7c81dcfa557b611c3c8a10d9578f09ba6ecef38f8864478bd49" + ], + "payments": [], + "creationData": { + "_seconds": 1603018063, + "_nanoseconds": 233000000 + }, + "userId": "BONVnugkzuhlKnhSTvQSlYGZMEy1", + "id": "a45ae246-6d27-4d3a-b708-7be363fe2660" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'a45ae246-6d27-4d3a-b708-7be363fe2660',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'a45ae246-6d27-4d3a-b708-7be363fe2660',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "payments": [], + "id": "a7611bf4-82a9-4dc9-8392-89e2ec34a9b3", + "proposals": [ + "304de529-cd8a-49a5-8ae4-d3a64712ad5d" + ], + "userId": "H5ZkcKBX5eXXNyBiPaph8EHCiax2", + "creationDate": { + "_seconds": 1606302447, + "_nanoseconds": 229000000 + } + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'a7611bf4-82a9-4dc9-8392-89e2ec34a9b3',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'a7611bf4-82a9-4dc9-8392-89e2ec34a9b3',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposals": [ + "0xfb4883c6ce36decc4a4ba84f7a29fe5475a5d50286e9cfa8005b8cf79dac1c54" + ], + "id": "a7d6d48d-6ab4-493a-936a-34502f79d013", + "payments": [], + "userId": "Xlun3Ux94Zfc73axkiuVdkktOWf1", + "creationData": { + "_seconds": 1604999869, + "_nanoseconds": 728000000 + } + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'a7d6d48d-6ab4-493a-936a-34502f79d013',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'a7d6d48d-6ab4-493a-936a-34502f79d013',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "payments": [], + "proposals": [ + "0x069d4ed68538c212d43cec067770bd111b0cca91e7a491c60299a91d24dddf0e" + ], + "id": "ab6d218f-f902-411c-b016-8d4f6f863a37", + "userId": "H5ZkcKBX5eXXNyBiPaph8EHCiax2", + "creationData": { + "_seconds": 1602679466, + "_nanoseconds": 493000000 + } + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'ab6d218f-f902-411c-b016-8d4f6f863a37',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'ab6d218f-f902-411c-b016-8d4f6f863a37',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposals": [ + "0x780112af4ea739f0c8b2456051bcb49bbe2f966b44eddf9813fef5c70ba00487" + ], + "creationData": { + "_seconds": 1604413359, + "_nanoseconds": 947000000 + }, + "payments": [], + "id": "ac9b4481-b7c1-41c9-8a07-207dbf39133d", + "userId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'ac9b4481-b7c1-41c9-8a07-207dbf39133d',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'ac9b4481-b7c1-41c9-8a07-207dbf39133d',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposals": [], + "userId": "0gzqlV9O9vWWe6i2wagAZHMMDDD2", + "creationData": { + "_seconds": 1603780203, + "_nanoseconds": 334000000 + }, + "id": "ad3f8cd4-1243-472e-8dd8-54c454bb0732", + "payments": [] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'ad3f8cd4-1243-472e-8dd8-54c454bb0732',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'ad3f8cd4-1243-472e-8dd8-54c454bb0732',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "userId": "Xlun3Ux94Zfc73axkiuVdkktOWf1", + "id": "af431e1f-6a6a-469f-a17b-1d38364d3bbf", + "payments": [], + "proposals": [ + "0xcf015a7f519ac4d92f4db42ae9fee548a5ebb435c021ef9e77848ba8731ec696" + ], + "creationData": { + "_seconds": 1603296578, + "_nanoseconds": 15000000 + } + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'af431e1f-6a6a-469f-a17b-1d38364d3bbf',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'af431e1f-6a6a-469f-a17b-1d38364d3bbf',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "id": "afb9c94f-3f92-4d56-9cf5-6206e9320195", + "creationData": { + "_seconds": 1603297424, + "_nanoseconds": 296000000 + }, + "userId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "payments": [], + "proposals": [] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'afb9c94f-3f92-4d56-9cf5-6206e9320195',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'afb9c94f-3f92-4d56-9cf5-6206e9320195',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposals": [ + "0xe64b823bc4a796156ff286a0cd5c7db9703bb36df03f5d4b5b951eb79cf6af63" + ], + "creationData": { + "_seconds": 1603354340, + "_nanoseconds": 32000000 + }, + "payments": [], + "id": "b01206b9-71fa-4f23-895a-ebe71b04481b", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'b01206b9-71fa-4f23-895a-ebe71b04481b',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'b01206b9-71fa-4f23-895a-ebe71b04481b',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "userId": "b0Kxsd0x4OMLeOlDnheysBz5THo1", + "creationData": { + "_seconds": 1604389166, + "_nanoseconds": 753000000 + }, + "proposals": [], + "id": "b0e7639b-198b-4af5-90fa-498411a8405e", + "payments": [] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'b0e7639b-198b-4af5-90fa-498411a8405e',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'b0e7639b-198b-4af5-90fa-498411a8405e',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "id": "b2397628-141f-494a-91b4-cab480e22278", + "proposals": [ + "3dbbebfd-ed77-4078-b568-4580b022f8bd" + ], + "creationDate": { + "_seconds": 1606382551, + "_nanoseconds": 137000000 + }, + "payments": [ + "fa84e5d1-5751-46de-89e0-d302a60b9633" + ], + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'b2397628-141f-494a-91b4-cab480e22278',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'b2397628-141f-494a-91b4-cab480e22278',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "payments": [], + "userId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "creationData": { + "_seconds": 1604403058, + "_nanoseconds": 537000000 + }, + "proposals": [ + "0x9b5fb60f63e7fed0910dbcc09db8a0312ba8f33b4abf7135f8c963168515a61f" + ], + "id": "b2a7901b-af24-45a7-a1d1-8d1aa583d31c" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'b2a7901b-af24-45a7-a1d1-8d1aa583d31c',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'b2a7901b-af24-45a7-a1d1-8d1aa583d31c',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposals": [ + "0xcb93c7c23207c07076aec54c637c8365f6129e7220ded22bcb724bd9f2cd4da9" + ], + "userId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1", + "id": "b2b12741-4512-4d62-a502-0c448035f66a", + "creationData": { + "_seconds": 1603268870, + "_nanoseconds": 530000000 + }, + "payments": [] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'b2b12741-4512-4d62-a502-0c448035f66a',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'b2b12741-4512-4d62-a502-0c448035f66a',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "creationDate": { + "_seconds": 1606840641, + "_nanoseconds": 903000000 + }, + "id": "b39e18bc-816a-4026-a563-194eb2e17b25", + "userId": "Xlun3Ux94Zfc73axkiuVdkktOWf1", + "proposals": [ + "7a2d6bab-2b13-496b-b707-346545eb64b7" + ], + "payments": [] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'b39e18bc-816a-4026-a563-194eb2e17b25',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'b39e18bc-816a-4026-a563-194eb2e17b25',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "creationData": { + "_seconds": 1603285075, + "_nanoseconds": 554000000 + }, + "userId": "Xlun3Ux94Zfc73axkiuVdkktOWf1", + "id": "b5245b89-213f-45da-ab8f-86eaa61880fe", + "payments": [], + "proposals": [ + "0xe2ab4a41c4138fe2a3d4a142a7f99f5365a090e8859e6364c8466baab9e9afcd" + ] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'b5245b89-213f-45da-ab8f-86eaa61880fe',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'b5245b89-213f-45da-ab8f-86eaa61880fe',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "userId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1", + "creationData": { + "_seconds": 1603632294, + "_nanoseconds": 91000000 + }, + "proposals": [], + "id": "b56d5ce3-e13b-448d-8d4d-ff9e36ddf6a4", + "payments": [] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'b56d5ce3-e13b-448d-8d4d-ff9e36ddf6a4',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'b56d5ce3-e13b-448d-8d4d-ff9e36ddf6a4',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "creationDate": { + "_seconds": 1606205897, + "_nanoseconds": 98000000 + }, + "payments": [], + "id": "b5ae8862-960f-4bc3-876f-a45a07d45a5d" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'b5ae8862-960f-4bc3-876f-a45a07d45a5d',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'b5ae8862-960f-4bc3-876f-a45a07d45a5d',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "creationData": { + "_seconds": 1602672957, + "_nanoseconds": 527000000 + }, + "userId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1", + "proposals": [ + "0x11ca7b22f632915244d5137dcb8e848ceaa3c8d1e00899bfee90529869611e1d" + ], + "payments": [], + "id": "b696604a-3ead-4ea5-b69d-41f3a485db7f" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'b696604a-3ead-4ea5-b69d-41f3a485db7f',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'b696604a-3ead-4ea5-b69d-41f3a485db7f',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposals": [ + "0x8916c0b6de78694f159889e69fb94ce92e6de67b526e023391485f0d85776cd0" + ], + "creationData": { + "_seconds": 1602695976, + "_nanoseconds": 982000000 + }, + "payments": [], + "userId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1", + "id": "b77cbcda-973a-4efe-a069-08153329a47f" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'b77cbcda-973a-4efe-a069-08153329a47f',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'b77cbcda-973a-4efe-a069-08153329a47f',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "userId": "H5ZkcKBX5eXXNyBiPaph8EHCiax2", + "proposals": [], + "id": "b8dbe402-c31f-44f7-9311-8b0c30305bae", + "creationData": { + "_seconds": 1603434337, + "_nanoseconds": 869000000 + }, + "payments": [] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'b8dbe402-c31f-44f7-9311-8b0c30305bae',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'b8dbe402-c31f-44f7-9311-8b0c30305bae',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposals": [ + "0x31f52ac18829ec30ad65ce2bd9427afef63b683898f596b5bcc4ef554bab2f67" + ], + "userId": "7rUTurSrx8gJcfaGaoh29uPKvjU2", + "payments": [], + "id": "bacba743-76c7-4012-9e18-0d7ae49597be", + "creationData": { + "_seconds": 1604587299, + "_nanoseconds": 396000000 + } + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'bacba743-76c7-4012-9e18-0d7ae49597be',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'bacba743-76c7-4012-9e18-0d7ae49597be',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "id": "baf1ec02-6d0f-4689-a868-69c320a34317", + "creationData": { + "_seconds": 1603276776, + "_nanoseconds": 631000000 + }, + "userId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "payments": [], + "proposals": [ + "0xd30fc88b0950b5eebdb77a6a191c02a4815c4f91378548560b0f61f00a8b9420" + ] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'baf1ec02-6d0f-4689-a868-69c320a34317',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'baf1ec02-6d0f-4689-a868-69c320a34317',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "creationDate": { + "_seconds": 1607506862, + "_nanoseconds": 249000000 + }, + "proposals": [ + "c96e8ee3-6cf2-4173-bd86-80965c0a1af7" + ], + "payments": [], + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "id": "baf9889d-a7ad-422a-b599-da4644a7bf01" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'baf9889d-a7ad-422a-b599-da4644a7bf01',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'baf9889d-a7ad-422a-b599-da4644a7bf01',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposals": [ + "6b94ce16-f91b-46c2-bd90-2d957e462f57" + ], + "creationDate": { + "_seconds": 1606316356, + "_nanoseconds": 937000000 + }, + "userId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1", + "payments": [], + "id": "bc671a7a-bab1-4e37-a0f8-465960cc1f2c" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'bc671a7a-bab1-4e37-a0f8-465960cc1f2c',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'bc671a7a-bab1-4e37-a0f8-465960cc1f2c',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "userId": "b0Kxsd0x4OMLeOlDnheysBz5THo1", + "creationData": { + "_seconds": 1605793407, + "_nanoseconds": 389000000 + }, + "payments": [], + "id": "bccc22df-085f-42c4-91f1-238b2d6417c9", + "proposals": [ + "7cc8c5ca-6d98-4b08-acbb-b1dcf5027f34" + ] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'bccc22df-085f-42c4-91f1-238b2d6417c9',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'bccc22df-085f-42c4-91f1-238b2d6417c9',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposals": [ + "c9f728aa-92c5-4b46-9afc-db35b0b5e4f2" + ], + "payments": [ + "5f04961e-e91e-4ebe-ba62-f6d4dcce4de3" + ], + "creationData": { + "_seconds": 1605808505, + "_nanoseconds": 83000000 + }, + "userId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "id": "be591ca1-707f-4bf1-a4bc-e6b47090f4ba" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'be591ca1-707f-4bf1-a4bc-e6b47090f4ba',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'be591ca1-707f-4bf1-a4bc-e6b47090f4ba',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "creationData": { + "_seconds": 1603285907, + "_nanoseconds": 726000000 + }, + "proposals": [ + "0xe8e2379068b1ae95044eb7dcca81f2670e802074982c6cbdb6975c42b7484dc8" + ], + "userId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "payments": [], + "id": "bebe1f63-55a1-450d-acb7-8c4680e0b921" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'bebe1f63-55a1-450d-acb7-8c4680e0b921',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'bebe1f63-55a1-450d-acb7-8c4680e0b921',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposals": [ + "0xc24b57b5436a1420913a166c8fb01af1d27fa71702e93f0730191485cee6cede" + ], + "creationData": { + "_seconds": 1603369056, + "_nanoseconds": 260000000 + }, + "payments": [], + "userId": "Xlun3Ux94Zfc73axkiuVdkktOWf1", + "id": "bf510082-8aef-4e2b-839a-0a4e80b7941b" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'bf510082-8aef-4e2b-839a-0a4e80b7941b',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'bf510082-8aef-4e2b-839a-0a4e80b7941b',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "creationData": { + "_seconds": 1603294752, + "_nanoseconds": 958000000 + }, + "proposals": [], + "id": "bf99c453-8cdd-41a9-9783-432f77cf1147", + "payments": [], + "userId": "BONVnugkzuhlKnhSTvQSlYGZMEy1" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'bf99c453-8cdd-41a9-9783-432f77cf1147',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'bf99c453-8cdd-41a9-9783-432f77cf1147',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposals": [ + "0x4cf913b3cd07684e44ad7928c70b08ad3c94371062503c8c033b3fd262b769db" + ], + "creationData": { + "_seconds": 1602767935, + "_nanoseconds": 622000000 + }, + "payments": [], + "userId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "id": "bfe95d5a-7ac9-4d84-9e21-df8e29a378e5" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'bfe95d5a-7ac9-4d84-9e21-df8e29a378e5',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'bfe95d5a-7ac9-4d84-9e21-df8e29a378e5',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "userId": "BONVnugkzuhlKnhSTvQSlYGZMEy1", + "creationData": { + "_seconds": 1603029163, + "_nanoseconds": 820000000 + }, + "payments": [], + "id": "c0573446-8b76-4ae4-9664-2fa020415731", + "proposals": [ + "0xc1e99225166d3e063dae886c66c411c7fac1a78c081ae36a573d13c5db0d8319" + ] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'c0573446-8b76-4ae4-9664-2fa020415731',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'c0573446-8b76-4ae4-9664-2fa020415731',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposals": [ + "0x3eafaafc9530d0d26ef5672e29b118c90df15a4a21b372f2338115a4c9a50851" + ], + "userId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1", + "payments": [], + "id": "c19c02fd-9b66-43d7-833c-f3e77f45b836", + "creationData": { + "_seconds": 1603713087, + "_nanoseconds": 905000000 + } + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'c19c02fd-9b66-43d7-833c-f3e77f45b836',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'c19c02fd-9b66-43d7-833c-f3e77f45b836',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "payments": [], + "creationDate": { + "_seconds": 1607518467, + "_nanoseconds": 693000000 + }, + "id": "c2b3160c-4807-4995-90bd-7fb5a79f92f4", + "proposals": [ + "5c2e7953-d9c6-4541-a006-9ff6365d7185" + ] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'c2b3160c-4807-4995-90bd-7fb5a79f92f4',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'c2b3160c-4807-4995-90bd-7fb5a79f92f4',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposals": [ + "e6718178-dd54-426c-a4b4-49cd50bcfd04" + ], + "payments": [], + "userId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "id": "c300a81a-3640-4b38-b6a5-9c11cf0d19d9", + "creationDate": { + "_seconds": 1607362104, + "_nanoseconds": 639000000 + } + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'c300a81a-3640-4b38-b6a5-9c11cf0d19d9',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'c300a81a-3640-4b38-b6a5-9c11cf0d19d9',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposals": [ + "5a15758b-47c3-440f-8a9e-061cb2bd1ebc" + ], + "userId": "Xlun3Ux94Zfc73axkiuVdkktOWf1", + "id": "c3b1b468-2e2d-4bf2-b802-fcd91f956964", + "creationDate": { + "_seconds": 1606392983, + "_nanoseconds": 756000000 + }, + "payments": [] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'c3b1b468-2e2d-4bf2-b802-fcd91f956964',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'c3b1b468-2e2d-4bf2-b802-fcd91f956964',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "id": "c45072ea-b30d-4862-9e28-597470e82e16", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "payments": [], + "creationDate": { + "_seconds": 1606392286, + "_nanoseconds": 386000000 + }, + "proposals": [ + "2b02f83d-c9bf-4cd6-9793-9d6babe2cc1b" + ] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'c45072ea-b30d-4862-9e28-597470e82e16',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'c45072ea-b30d-4862-9e28-597470e82e16',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposals": [ + "3b32fe7e-4286-48c7-a02d-027d9f496697" + ], + "userId": "qhAR5tQSz5bc1ad0GrMM41KNhrJ3", + "id": "c4518c24-378c-40af-ad6e-f595944fb737", + "creationData": { + "_seconds": 1606144371, + "_nanoseconds": 290000000 + }, + "payments": [ + "3354b3ac-a15f-49d2-bf1e-5bc09dfbecbc" + ] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'c4518c24-378c-40af-ad6e-f595944fb737',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'c4518c24-378c-40af-ad6e-f595944fb737',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "payments": [], + "userId": "Xlun3Ux94Zfc73axkiuVdkktOWf1", + "proposals": [], + "creationData": { + "_seconds": 1604999527, + "_nanoseconds": 372000000 + }, + "id": "c4937c5f-8a13-4122-bfff-4a5e218ddb56" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'c4937c5f-8a13-4122-bfff-4a5e218ddb56',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'c4937c5f-8a13-4122-bfff-4a5e218ddb56',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "payments": [], + "proposals": [ + "0xd4ccf52b3e82de0147e8845205f988750176be381902fb594421d0c2f89686b9" + ], + "id": "c80b5a57-2de5-494f-a799-cbf414b09aa3", + "creationData": { + "_seconds": 1603277532, + "_nanoseconds": 278000000 + }, + "userId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'c80b5a57-2de5-494f-a799-cbf414b09aa3',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'c80b5a57-2de5-494f-a799-cbf414b09aa3',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "payments": [ + "ebd4b83b-fbce-46a0-a243-67d044d5ce27" + ], + "userId": "0gzqlV9O9vWWe6i2wagAZHMMDDD2", + "id": "c93a3055-c423-4f00-8414-8f725e8a45ee", + "proposals": [ + "56347912-fe0f-4d66-b3ce-d4c0172bffeb" + ], + "creationData": { + "_seconds": 1605806113, + "_nanoseconds": 581000000 + } + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'c93a3055-c423-4f00-8414-8f725e8a45ee',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'c93a3055-c423-4f00-8414-8f725e8a45ee',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposals": [ + "60a63a5f-8b83-40aa-8bf3-eaac431c86f1" + ], + "creationDate": { + "_seconds": 1607507342, + "_nanoseconds": 798000000 + }, + "payments": [], + "id": "c95b0491-20b5-4df3-b42e-2560179fe9cd", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'c95b0491-20b5-4df3-b42e-2560179fe9cd',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'c95b0491-20b5-4df3-b42e-2560179fe9cd',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "id": "cb565ef2-716a-49c0-9246-3ad3c76d6e21", + "creationDate": { + "_seconds": 1606232780, + "_nanoseconds": 999000000 + }, + "payments": [], + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'cb565ef2-716a-49c0-9246-3ad3c76d6e21',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'cb565ef2-716a-49c0-9246-3ad3c76d6e21',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "id": "cc877bbb-f9f1-4128-8243-566f3eebd54c", + "payments": [], + "proposals": [ + "0xfa395a52aba98808acbf0a67cbb1519073c650aa145e04243cca9190539057e3" + ], + "userId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1", + "creationData": { + "_seconds": 1603277623, + "_nanoseconds": 215000000 + } + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'cc877bbb-f9f1-4128-8243-566f3eebd54c',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'cc877bbb-f9f1-4128-8243-566f3eebd54c',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposals": [], + "id": "cd78fbb6-d723-4bd3-a429-c11e49a3ec08", + "userId": "XMAGwJIOilXUABsdC7KWsDY2v4E3", + "payments": [], + "creationData": { + "_seconds": 1603286373, + "_nanoseconds": 151000000 + } + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'cd78fbb6-d723-4bd3-a429-c11e49a3ec08',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'cd78fbb6-d723-4bd3-a429-c11e49a3ec08',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposals": [ + "0x00d2eb7555ed5c355fd7754cf2834c4bd0abb1bc933920130b5bc85b3cfc5b79" + ], + "payments": [], + "id": "cf3878b5-4b3c-44ce-abf1-b4eb9c624dfd", + "creationData": { + "_seconds": 1604487469, + "_nanoseconds": 120000000 + }, + "userId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'cf3878b5-4b3c-44ce-abf1-b4eb9c624dfd',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'cf3878b5-4b3c-44ce-abf1-b4eb9c624dfd',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "id": "cf56312f-5514-41e0-93cb-9423a0257dce", + "proposals": [ + "5be0e468-cf17-4ef8-8f1f-81ecb6337568" + ], + "userId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "creationDate": { + "_seconds": 1606390551, + "_nanoseconds": 276000000 + }, + "payments": [ + "9a90ac90-dadf-474d-8588-be45c4464c09" + ] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'cf56312f-5514-41e0-93cb-9423a0257dce',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'cf56312f-5514-41e0-93cb-9423a0257dce',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "payments": [], + "userId": "7rUTurSrx8gJcfaGaoh29uPKvjU2", + "id": "d12a5049-15f7-4f1a-8e46-df68c5ac3ec6", + "creationData": { + "_seconds": 1606140966, + "_nanoseconds": 136000000 + }, + "proposals": [ + "4bbc26c0-8937-4cda-8b30-f04d467cad0e" + ] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'd12a5049-15f7-4f1a-8e46-df68c5ac3ec6',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'd12a5049-15f7-4f1a-8e46-df68c5ac3ec6',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "userId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "creationDate": { + "_seconds": 1607270872, + "_nanoseconds": 543000000 + }, + "payments": [], + "proposals": [ + "4e34ecb0-62cc-4cf9-b182-ab6f3f6b44e8" + ], + "id": "d34e42f6-b308-4840-9fbd-40a5ac03de9a" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'd34e42f6-b308-4840-9fbd-40a5ac03de9a',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'd34e42f6-b308-4840-9fbd-40a5ac03de9a',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "userId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1", + "payments": [], + "proposals": [], + "creationData": { + "_seconds": 1603632355, + "_nanoseconds": 352000000 + }, + "id": "d65b90e5-8b7b-49a1-a3d1-d0caf081986f" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'd65b90e5-8b7b-49a1-a3d1-d0caf081986f',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'd65b90e5-8b7b-49a1-a3d1-d0caf081986f',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "id": "d847c998-2c6c-4097-88cf-a5accb4ab6fc", + "userId": "Sxv19oCvKAZq2vntJdYCTYSpWWN2", + "proposals": [ + "0x79b9682854fcb707219c85c75df7e99b1ac41796e8b307ebdd6b49aa72e2fbdf" + ], + "creationData": { + "_seconds": 1603027214, + "_nanoseconds": 617000000 + }, + "payments": [] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'd847c998-2c6c-4097-88cf-a5accb4ab6fc',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'd847c998-2c6c-4097-88cf-a5accb4ab6fc',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposals": [ + "0x86d8ef6392b40fd8b05fa3c492f896b3329831c4a373195775741ad6e7a4ccbe" + ], + "id": "d8599ed1-73af-4897-bf64-4352acfc7d32", + "payments": [], + "creationData": { + "_seconds": 1603027659, + "_nanoseconds": 66000000 + }, + "userId": "Sxv19oCvKAZq2vntJdYCTYSpWWN2" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'd8599ed1-73af-4897-bf64-4352acfc7d32',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'd8599ed1-73af-4897-bf64-4352acfc7d32',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "creationData": { + "_seconds": 1604413520, + "_nanoseconds": 851000000 + }, + "payments": [], + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "id": "d8907e12-9ee4-4c33-abc1-0520eab94a94", + "proposals": [ + "0x5c730650b31471fee8f823bc4f4443deb4a3554f80cbc8c8150519c09be3e3bf" + ] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'd8907e12-9ee4-4c33-abc1-0520eab94a94',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'd8907e12-9ee4-4c33-abc1-0520eab94a94',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "payments": [ + "4d6a497e-ab6e-4f6b-9ac5-23b7d1fb920c" + ], + "proposals": [ + "41509c76-89f6-424a-aa09-ec546df05292" + ], + "userId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "creationData": { + "_seconds": 1606037014, + "_nanoseconds": 947000000 + }, + "id": "d8f48208-117b-410b-8639-943ee1b6c9f4" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'd8f48208-117b-410b-8639-943ee1b6c9f4',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'd8f48208-117b-410b-8639-943ee1b6c9f4',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "id": "daa181fc-5581-4d2a-bd0a-0b49894310ea", + "proposals": [ + "b1eda04f-fc40-425b-a2b4-9792897e5ad0" + ], + "creationDate": { + "_seconds": 1607544639, + "_nanoseconds": 634000000 + }, + "payments": [ + "a8c567a2-3819-44d1-b636-96df60e66cbe" + ], + "userId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'daa181fc-5581-4d2a-bd0a-0b49894310ea',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'daa181fc-5581-4d2a-bd0a-0b49894310ea',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "id": "dab4ddda-bdb8-44cd-9384-a647fe9a3c8d", + "payments": [], + "proposals": [], + "userId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "creationData": { + "_seconds": 1603297359, + "_nanoseconds": 701000000 + } + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'dab4ddda-bdb8-44cd-9384-a647fe9a3c8d',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'dab4ddda-bdb8-44cd-9384-a647fe9a3c8d',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "id": "db05372b-4bbd-43ca-84ab-b41abe3952d9", + "creationData": { + "_seconds": 1605987417, + "_nanoseconds": 707000000 + }, + "proposals": [ + "32e2d739-1115-415a-9b83-57608ca1df36" + ], + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "payments": [ + "ba78f98b-0ef5-4232-a7a6-0a261c6c2985" + ] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'db05372b-4bbd-43ca-84ab-b41abe3952d9',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'db05372b-4bbd-43ca-84ab-b41abe3952d9',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "creationData": { + "_seconds": 1603015894, + "_nanoseconds": 346000000 + }, + "payments": [], + "proposals": [ + "0x078abd9ffa9d25f7e4d37bd815e333fa99d6b8a93ef8138a62225578c9b88e37" + ], + "userId": "BONVnugkzuhlKnhSTvQSlYGZMEy1", + "id": "dc07d408-7c39-4d18-bef8-c63fb6925abb" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'dc07d408-7c39-4d18-bef8-c63fb6925abb',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'dc07d408-7c39-4d18-bef8-c63fb6925abb',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "id": "dc08608d-7b27-4d38-889f-319a91567400", + "creationDate": { + "_seconds": 1606390981, + "_nanoseconds": 588000000 + }, + "proposals": [ + "6f5fb4ef-b304-4189-b991-61398cfd985f" + ], + "payments": [ + "fa47ee70-5b38-4f39-807f-ba378ddb3b11" + ], + "userId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'dc08608d-7b27-4d38-889f-319a91567400',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'dc08608d-7b27-4d38-889f-319a91567400',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposals": [], + "userId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1", + "payments": [], + "id": "dc9a9015-119f-4611-8d89-01521281e0bd", + "creationData": { + "_seconds": 1605773435, + "_nanoseconds": 738000000 + } + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'dc9a9015-119f-4611-8d89-01521281e0bd',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'dc9a9015-119f-4611-8d89-01521281e0bd',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "payments": [ + "06fe5d04-8932-4922-92e0-542bef1fb397" + ], + "creationData": { + "_seconds": 1605787938, + "_nanoseconds": 649000000 + }, + "proposals": [ + "a2f5960c-b2e8-4db9-ac0f-ad267f407b64" + ], + "userId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1", + "id": "dd1440ff-0ab6-43f3-9f68-311997e2f23d" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'dd1440ff-0ab6-43f3-9f68-311997e2f23d',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'dd1440ff-0ab6-43f3-9f68-311997e2f23d',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposals": [], + "id": "dda89625-e1af-455c-89b4-f984b91200e6", + "userId": "0gzqlV9O9vWWe6i2wagAZHMMDDD2", + "creationData": { + "_seconds": 1603780192, + "_nanoseconds": 108000000 + }, + "payments": [] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'dda89625-e1af-455c-89b4-f984b91200e6',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'dda89625-e1af-455c-89b4-f984b91200e6',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "userId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "payments": [], + "creationDate": { + "_seconds": 1606206118, + "_nanoseconds": 89000000 + }, + "id": "dde4206f-60d9-445a-b64e-6c62432fcb66" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'dde4206f-60d9-445a-b64e-6c62432fcb66',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'dde4206f-60d9-445a-b64e-6c62432fcb66',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "userId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "id": "de073e32-7476-4399-8f7e-8d4312def0b5", + "proposals": [ + "bbc95a94-957f-44d5-8414-a91b068ef160" + ], + "creationDate": { + "_seconds": 1607247724, + "_nanoseconds": 525000000 + }, + "payments": [ + "5951c8a0-e506-49b6-b019-bdb451b60d48" + ] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'de073e32-7476-4399-8f7e-8d4312def0b5',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'de073e32-7476-4399-8f7e-8d4312def0b5',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposals": [ + "0x611d7be684e46fc32dd4d8ebff1d1cb25664047a46d6a2685c8e1a75692b86a9" + ], + "userId": "Xlun3Ux94Zfc73axkiuVdkktOWf1", + "creationData": { + "_seconds": 1603100322, + "_nanoseconds": 93000000 + }, + "id": "de781360-a3c6-4ac5-932e-42e3bb0cfed0", + "payments": [] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'de781360-a3c6-4ac5-932e-42e3bb0cfed0',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'de781360-a3c6-4ac5-932e-42e3bb0cfed0',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "userId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1", + "proposals": [ + "0xeea0aaac7973f055667ab0b7bd8b0224727939d1a4d4b3ba338c66c9a3e79bd1" + ], + "creationData": { + "_seconds": 1603275511, + "_nanoseconds": 472000000 + }, + "id": "e11eba8d-3c8c-4d20-9ca0-52d3560c827e", + "payments": [] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'e11eba8d-3c8c-4d20-9ca0-52d3560c827e',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'e11eba8d-3c8c-4d20-9ca0-52d3560c827e',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "payments": [], + "id": "e1d674e9-9122-4470-b3be-b3e2b38b5e30", + "creationData": { + "_seconds": 1602691058, + "_nanoseconds": 30000000 + }, + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "proposals": [ + "0x18b5f34c5c1d29fa247f64bd5b46be26aeda8d37fc3f698cabcce84da1e7eac9" + ] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'e1d674e9-9122-4470-b3be-b3e2b38b5e30',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'e1d674e9-9122-4470-b3be-b3e2b38b5e30',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "userId": "BONVnugkzuhlKnhSTvQSlYGZMEy1", + "id": "e23c88f7-a3f3-4b73-86bf-be594922e172", + "creationData": { + "_seconds": 1602838657, + "_nanoseconds": 271000000 + }, + "proposals": [ + "0x37bc32ce064790c69219f3b4f405f13ed3e27ec9a7f9f9e49ee11bc5d93b6bfd" + ], + "payments": [] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'e23c88f7-a3f3-4b73-86bf-be594922e172',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'e23c88f7-a3f3-4b73-86bf-be594922e172',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "id": "e279c907-a900-4636-8382-99c1f9d7b9b8", + "userId": "b0Kxsd0x4OMLeOlDnheysBz5THo1", + "payments": [], + "creationDate": { + "_seconds": 1606747642, + "_nanoseconds": 134000000 + }, + "proposals": [ + "2ffdf9f5-e841-49a5-ac7c-9bd6643c2f14" + ] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'e279c907-a900-4636-8382-99c1f9d7b9b8',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'e279c907-a900-4636-8382-99c1f9d7b9b8',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "payments": [], + "proposals": [ + "2ee5dcf8-23a7-4443-9985-40db5000998f" + ], + "creationDate": { + "_seconds": 1606926939, + "_nanoseconds": 547000000 + }, + "id": "e38c3e21-9b0a-4605-b7ec-92a09d3b2f18" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'e38c3e21-9b0a-4605-b7ec-92a09d3b2f18',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'e38c3e21-9b0a-4605-b7ec-92a09d3b2f18',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposals": [ + "0x76d9f91cb23d291fe9ca7190c4a1a0ae1d3f9388748889bc8eb5894d0edbc516" + ], + "userId": "b0Kxsd0x4OMLeOlDnheysBz5THo1", + "id": "e3df706a-e22b-48f3-a1d0-d326a5beab29", + "payments": [], + "creationData": { + "_seconds": 1603361567, + "_nanoseconds": 17000000 + } + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'e3df706a-e22b-48f3-a1d0-d326a5beab29',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'e3df706a-e22b-48f3-a1d0-d326a5beab29',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "id": "e3f541de-b52f-4960-8bb8-00cb077a6b0b", + "creationData": { + "_seconds": 1603287145, + "_nanoseconds": 540000000 + }, + "payments": [], + "proposals": [], + "userId": "XMAGwJIOilXUABsdC7KWsDY2v4E3" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'e3f541de-b52f-4960-8bb8-00cb077a6b0b',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'e3f541de-b52f-4960-8bb8-00cb077a6b0b',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "id": "e473fe20-0cc1-40e9-baaa-0d8dd2a152ae", + "userId": "b0Kxsd0x4OMLeOlDnheysBz5THo1", + "proposals": [ + "f0cc8207-c39b-4d0f-98f7-498d7af4ce46" + ], + "creationDate": { + "_seconds": 1606826132, + "_nanoseconds": 37000000 + }, + "payments": [ + "e65912ce-75cc-48a0-a32d-3a3001b4bd61" + ] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'e473fe20-0cc1-40e9-baaa-0d8dd2a152ae',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'e473fe20-0cc1-40e9-baaa-0d8dd2a152ae',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "userId": "H5ZkcKBX5eXXNyBiPaph8EHCiax2", + "proposals": [], + "id": "e4bd49ba-699c-4643-81bd-0bd8d7622696", + "payments": [], + "creationData": { + "_seconds": 1603177684, + "_nanoseconds": 365000000 + } + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'e4bd49ba-699c-4643-81bd-0bd8d7622696',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'e4bd49ba-699c-4643-81bd-0bd8d7622696',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "creationData": { + "_seconds": 1603277722, + "_nanoseconds": 343000000 + }, + "proposals": [ + "0x713e8a17f488dc69e97d2b3a790774e3ef63fe988d3aeaa03c6ecdeb1cb0d215" + ], + "userId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1", + "id": "e4f1283b-8d58-429f-bb3c-31f1aa56bd33", + "payments": [] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'e4f1283b-8d58-429f-bb3c-31f1aa56bd33',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'e4f1283b-8d58-429f-bb3c-31f1aa56bd33',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "creationDate": { + "_seconds": 1606841867, + "_nanoseconds": 760000000 + }, + "userId": "Xlun3Ux94Zfc73axkiuVdkktOWf1", + "payments": [ + "c0971f92-d170-410b-ad64-cea774835f46" + ], + "proposals": [ + "1298f330-52ce-4b9d-9e5e-ba4638588a05" + ], + "id": "e513f72f-fc7a-4bba-8781-90925f7d69af" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'e513f72f-fc7a-4bba-8781-90925f7d69af',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'e513f72f-fc7a-4bba-8781-90925f7d69af',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "creationData": { + "_seconds": 1603177687, + "_nanoseconds": 845000000 + }, + "payments": [], + "proposals": [ + "0x685953445758701b1ee49b43808fa7fa53ba99ef64acb8024ab909450a04a6de" + ], + "id": "e5c6cf6d-7fbf-4051-9e11-269809cd14de", + "userId": "BONVnugkzuhlKnhSTvQSlYGZMEy1" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'e5c6cf6d-7fbf-4051-9e11-269809cd14de',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'e5c6cf6d-7fbf-4051-9e11-269809cd14de',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "id": "e635af56-52ef-4373-8363-bacccf2ab193", + "payments": [], + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "creationData": { + "_seconds": 1603895015, + "_nanoseconds": 993000000 + }, + "proposals": [] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'e635af56-52ef-4373-8363-bacccf2ab193',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'e635af56-52ef-4373-8363-bacccf2ab193',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "userId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "creationData": { + "_seconds": 1603298062, + "_nanoseconds": 554000000 + }, + "payments": [], + "proposals": [ + "0xed4cdd54d89e75424da932c31f25c5354a35ebbb7108c25a9fd5b1b338364a16" + ], + "id": "e7841556-329e-45fd-b2b0-527e8444fdbb" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'e7841556-329e-45fd-b2b0-527e8444fdbb',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'e7841556-329e-45fd-b2b0-527e8444fdbb',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "creationData": { + "_seconds": 1605096425, + "_nanoseconds": 106000000 + }, + "payments": [], + "proposals": [ + "0x62be60651a181e6ecd03e0b130b6bbbe8c0c10fa95162d32dcee8e57874f34f5" + ], + "userId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "id": "ea73568f-68b7-4bfb-a3ae-d1f2c69c4918" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'ea73568f-68b7-4bfb-a3ae-d1f2c69c4918',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'ea73568f-68b7-4bfb-a3ae-d1f2c69c4918',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "payments": [], + "id": "ea93f75e-83db-4d3b-b657-c1c043279d64", + "creationData": { + "_seconds": 1603032157, + "_nanoseconds": 206000000 + }, + "userId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "proposals": [ + "0x37c0abca02548ed0902c36920caadc2287651bae2c6277bb772d10a73a3e1d56" + ] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'ea93f75e-83db-4d3b-b657-c1c043279d64',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'ea93f75e-83db-4d3b-b657-c1c043279d64',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposals": [ + "4625682b-34e5-4df7-89b2-e93877686bfc" + ], + "id": "ec318069-6263-4840-a0e9-fb3343946775", + "payments": [], + "creationDate": { + "_seconds": 1606831286, + "_nanoseconds": 897000000 + }, + "userId": "Xlun3Ux94Zfc73axkiuVdkktOWf1" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'ec318069-6263-4840-a0e9-fb3343946775',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'ec318069-6263-4840-a0e9-fb3343946775',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "payments": [ + "05b16940-fa74-4984-94bb-5cfbc41713f9" + ], + "id": "ecce7580-8db4-4698-946a-02485174b1c0", + "proposals": [ + "698c38fc-0056-4148-8a31-296484bb9969" + ], + "userId": "h59V0do13qhpeH9xDyoLaCZucTm1", + "creationData": { + "_seconds": 1606137150, + "_nanoseconds": 328000000 + } + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'ecce7580-8db4-4698-946a-02485174b1c0',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'ecce7580-8db4-4698-946a-02485174b1c0',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "payments": [], + "userId": "Xlun3Ux94Zfc73axkiuVdkktOWf1", + "proposals": [ + "0x2f1cdbd039d9a90f4c7d5f646ef44ecaf2cf72db5f67a896b13e1062d23627eb" + ], + "id": "ed3cd280-d961-4b8d-8c08-929d01d66be2", + "creationData": { + "_seconds": 1605021423, + "_nanoseconds": 227000000 + } + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'ed3cd280-d961-4b8d-8c08-929d01d66be2',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'ed3cd280-d961-4b8d-8c08-929d01d66be2',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "creationDate": { + "_seconds": 1606830658, + "_nanoseconds": 153000000 + }, + "id": "eef9e66f-d9bd-4f05-b7d1-bd6edfbf5633", + "payments": [ + "a0302865-3690-4b32-8311-ef9ed79fa899" + ], + "proposals": [ + "57b071b1-3bf3-47c6-99aa-35d1896e04ba" + ], + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'eef9e66f-d9bd-4f05-b7d1-bd6edfbf5633',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'eef9e66f-d9bd-4f05-b7d1-bd6edfbf5633',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "creationData": { + "_seconds": 1603620088, + "_nanoseconds": 620000000 + }, + "id": "ef366f88-d267-4ca7-9f65-65f32648340e", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "proposals": [ + "0xbff4ba88e19be06faae470f712d450d11f3259b52346eba64abc488c1fec4e0f" + ], + "payments": [] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'ef366f88-d267-4ca7-9f65-65f32648340e',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'ef366f88-d267-4ca7-9f65-65f32648340e',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "payments": [ + "3a21996e-e094-4037-a5cb-00245d0e459d" + ], + "creationDate": { + "_seconds": 1606291524, + "_nanoseconds": 189000000 + }, + "id": "f0421244-ac40-49fe-9400-b9bfecc24ea7" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'f0421244-ac40-49fe-9400-b9bfecc24ea7',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'f0421244-ac40-49fe-9400-b9bfecc24ea7',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "userId": "XMAGwJIOilXUABsdC7KWsDY2v4E3", + "proposals": [], + "payments": [], + "id": "f0df6856-5e26-42da-9fec-14b005fb7592", + "creationData": { + "_seconds": 1603286121, + "_nanoseconds": 514000000 + } + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'f0df6856-5e26-42da-9fec-14b005fb7592',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'f0df6856-5e26-42da-9fec-14b005fb7592',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "id": "f126a1da-e175-4338-923d-968921b250ea", + "proposals": [], + "userId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1", + "creationData": { + "_seconds": 1603632353, + "_nanoseconds": 24000000 + }, + "payments": [] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'f126a1da-e175-4338-923d-968921b250ea',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'f126a1da-e175-4338-923d-968921b250ea',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "payments": [], + "creationData": { + "_seconds": 1604403208, + "_nanoseconds": 943000000 + }, + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "proposals": [], + "id": "f224e3e0-329a-46d9-8e22-7559a5cfdeb8" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'f224e3e0-329a-46d9-8e22-7559a5cfdeb8',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'f224e3e0-329a-46d9-8e22-7559a5cfdeb8',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposals": [ + "0xb1b258a10aa7e181463e582de6686b8f86363899c6cc760957efbb8607d1b96e" + ], + "payments": [], + "userId": "BONVnugkzuhlKnhSTvQSlYGZMEy1", + "id": "f23d82f3-befd-4b21-b052-a98ea7cd366c", + "creationData": { + "_seconds": 1603298183, + "_nanoseconds": 597000000 + } + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'f23d82f3-befd-4b21-b052-a98ea7cd366c',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'f23d82f3-befd-4b21-b052-a98ea7cd366c',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposals": [ + "aab1c1cc-d6e1-4cda-88f2-d3b4b3d38950" + ], + "payments": [ + "abeb73bc-094c-4409-852e-002e5267c3b3" + ], + "creationDate": { + "_seconds": 1607270485, + "_nanoseconds": 651000000 + }, + "id": "f3e13d4d-a642-42d2-ab78-c3b245944afd", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'f3e13d4d-a642-42d2-ab78-c3b245944afd',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'f3e13d4d-a642-42d2-ab78-c3b245944afd',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "creationData": { + "_seconds": 1605113485, + "_nanoseconds": 601000000 + }, + "payments": [], + "id": "f5533f28-9253-4eff-aa2c-9e69d8b36b31", + "proposals": [ + "0x6611d79dfb362d30fc24f658541fdd5fbebf82c9fcbfe25e6425f2d9c05ea303" + ], + "userId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'f5533f28-9253-4eff-aa2c-9e69d8b36b31',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'f5533f28-9253-4eff-aa2c-9e69d8b36b31',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "payments": [ + "505cab4e-f792-4831-8c79-327be96fec86" + ], + "id": "f6ceba5d-da91-4d1e-b519-19c47fcca013", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "creationDate": { + "_seconds": 1606899257, + "_nanoseconds": 883000000 + }, + "proposals": [ + "32b199d5-cefe-41b8-a450-de197ab97193" + ] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'f6ceba5d-da91-4d1e-b519-19c47fcca013',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'f6ceba5d-da91-4d1e-b519-19c47fcca013',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "id": "f7aa3dff-6aac-4f89-8b24-595354fc8db1", + "proposals": [ + "0x98c69b072de67fc4d297071d5809c13cadaab9cdb8627c256c719a6f4e7d66fd" + ], + "creationData": { + "_seconds": 1603963692, + "_nanoseconds": 348000000 + }, + "payments": [], + "userId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'f7aa3dff-6aac-4f89-8b24-595354fc8db1',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'f7aa3dff-6aac-4f89-8b24-595354fc8db1',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "creationData": { + "_seconds": 1603275638, + "_nanoseconds": 22000000 + }, + "proposals": [ + "0xb504fedf4cc1ad2f737a1e351cdb76cb019bc89597bdb8ce9ac53b38531a83ec" + ], + "userId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1", + "id": "f81a60b1-5512-4355-9c74-c64c6e6e4826", + "payments": [] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'f81a60b1-5512-4355-9c74-c64c6e6e4826',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'f81a60b1-5512-4355-9c74-c64c6e6e4826',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "payments": [], + "userId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "proposals": [ + "0xfcf096a1784d2bb372da0cf72a543cf92498f703b8c6f226f09ac2454cd7827b" + ], + "id": "fa54066f-bc6f-4d9a-af80-ee897d70a54c", + "creationData": { + "_seconds": 1602959002, + "_nanoseconds": 180000000 + } + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'fa54066f-bc6f-4d9a-af80-ee897d70a54c',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'fa54066f-bc6f-4d9a-af80-ee897d70a54c',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "creationData": { + "_seconds": 1604771655, + "_nanoseconds": 762000000 + }, + "proposals": [ + "0x166c119f1ece7cc5c5964a6fc03f5340af0af3cab7dbb726a5569c1eb387ba78" + ], + "payments": [], + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "id": "fa716b9c-ecfd-49dc-93ef-870a2f158795" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'fa716b9c-ecfd-49dc-93ef-870a2f158795',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'fa716b9c-ecfd-49dc-93ef-870a2f158795',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "userId": "Sxv19oCvKAZq2vntJdYCTYSpWWN2", + "creationDate": { + "_seconds": 1607526002, + "_nanoseconds": 911000000 + }, + "payments": [], + "id": "fbdfbf1c-6c2e-41b6-a8ad-efc6a54acd9b", + "proposals": [ + "717469e2-6d9f-41d0-ad89-a127bcf53cb0" + ] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'fbdfbf1c-6c2e-41b6-a8ad-efc6a54acd9b',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'fbdfbf1c-6c2e-41b6-a8ad-efc6a54acd9b',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "creationData": { + "_seconds": 1603298164, + "_nanoseconds": 588000000 + }, + "proposals": [ + "0xceabb9d5f7fd9af20c6fa14d0a61496b0bb221a92deb45230718e3628d067bad" + ], + "userId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "id": "fbedd013-61b5-456a-87c2-af08dad3e81e", + "payments": [] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'fbedd013-61b5-456a-87c2-af08dad3e81e',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'fbedd013-61b5-456a-87c2-af08dad3e81e',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "id": "fd12f37d-6219-42e6-b3c3-ae2bc32597ee", + "userId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "creationData": { + "_seconds": 1605800935, + "_nanoseconds": 759000000 + }, + "payments": [], + "proposals": [ + "49bf6c6a-9734-44c5-a9c4-28a2e4f0b30b" + ] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'fd12f37d-6219-42e6-b3c3-ae2bc32597ee',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'fd12f37d-6219-42e6-b3c3-ae2bc32597ee',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "userId": "BONVnugkzuhlKnhSTvQSlYGZMEy1", + "creationData": { + "_seconds": 1604676829, + "_nanoseconds": 568000000 + }, + "proposals": [ + "0x8c22f1fe607647ec7e245dda5a9b633de78ea7aeed8c3d3a9c5c8f3c9d9e0a09" + ], + "id": "fd979c44-3927-4625-ac84-b1d403fcc0c2", + "payments": [] + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'fd979c44-3927-4625-ac84-b1d403fcc0c2',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'fd979c44-3927-4625-ac84-b1d403fcc0c2',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "id": "ff9d7545-a048-47fb-bf52-e0f02c1f10a0", + "proposals": [ + "0x5932727f4467677fffb940437cb7ccae07618474422db6299c7493f27c8ab613" + ], + "userId": "XMAGwJIOilXUABsdC7KWsDY2v4E3", + "payments": [], + "creationData": { + "_seconds": 1603285846, + "_nanoseconds": 784000000 + } + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'ff9d7545-a048-47fb-bf52-e0f02c1f10a0',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n{\n data: {\n id: 'ff9d7545-a048-47fb-bf52-e0f02c1f10a0',\n+ circleCardId: String,\n cvvCheck: 'no verification',\n avsCheck: 'no verification',\n digits: '',\n network: 'VISA',\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutCardsInput | UserUncheckedCreateWithoutCardsInput\n? }\n },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? payments?: {\n? create?: PaymentCreateWithoutCardInput | PaymentCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput | PaymentUncheckedCreateWithoutCardInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutCardInput | PaymentCreateOrConnectWithoutCardInput,\n? createMany?: PaymentCreateManyCardInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? proposal?: {\n? create?: JoinProposalCreateWithoutCardInput | JoinProposalCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput | JoinProposalUncheckedCreateWithoutCardInput,\n? connectOrCreate?: JoinProposalCreateOrConnectWithoutCardInput | JoinProposalCreateOrConnectWithoutCardInput,\n? createMany?: JoinProposalCreateManyCardInputEnvelope,\n? connect?: JoinProposalWhereUniqueInput | JoinProposalWhereUniqueInput\n? },\n? subscriptions?: {\n? create?: SubscriptionCreateWithoutCardInput | SubscriptionCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput | SubscriptionUncheckedCreateWithoutCardInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutCardInput | SubscriptionCreateOrConnectWithoutCardInput,\n? createMany?: SubscriptionCreateManyCardInputEnvelope,\n? connect?: SubscriptionWhereUniqueInput | SubscriptionWhereUniqueInput\n? },\n? billingDetails?: {\n? create?: CardBillingDetailCreateWithoutCardInput | CardBillingDetailUncheckedCreateWithoutCardInput,\n? connectOrCreate?: CardBillingDetailCreateOrConnectWithoutCardInput,\n? connect?: CardBillingDetailWhereUniqueInput\n? }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\nArgument circleCardId for data.circleCardId is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "circleCardId": "2ca6559d-d27e-473a-9401-81b248464274", + "createdAt": { + "_seconds": 1617090169, + "_nanoseconds": 152000000 + }, + "updatedAt": { + "_seconds": 1617090169, + "_nanoseconds": 551000000 + }, + "ownerId": "RoUaatJIeccpYxcDD7v1fqJrHZx2", + "metadata": { + "billingDetails": { + "postalCode": "234234", + "line1": "Df Gdf Gdf", + "country": "US", + "city": "Sdf Dfg Df", + "name": "Pavel Meyer", + "district": "DF" + }, + "digits": "4242", + "network": "VISA" + }, + "id": "0322bc46-bae8-4f8e-854c-22b894d9d74a", + "verification": { + "cvv": "pass" + } + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "createdAt": { + "_seconds": 1615999551, + "_nanoseconds": 848000000 + }, + "updatedAt": { + "_seconds": 1615999552, + "_nanoseconds": 142000000 + }, + "ownerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "circleCardId": "326c2a05-479a-4867-9de0-599562b84002", + "metadata": { + "network": "MASTERCARD", + "digits": "4444", + "billingDetails": { + "city": "Rbrh", + "country": "IL", + "postalCode": "Dbdb", + "line1": "Rbrb", + "name": "Tan Leather" + } + }, + "verification": { + "cvv": "pass" + }, + "id": "0a5532ff-e90c-44e3-b15c-771a1f9e484e" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "createdAt": { + "_seconds": 1609147621, + "_nanoseconds": 530000000 + }, + "updatedAt": { + "_seconds": 1609147621, + "_nanoseconds": 530000000 + }, + "circleCardId": "259084bd-07c5-42d2-9f5c-85cb8a87381f", + "metadata": { + "digits": "4444", + "billingDetails": { + "city": "Th", + "postalCode": "Dg", + "country": "AD", + "line1": "Rh", + "name": "יניב יצחקי" + }, + "network": "MASTERCARD" + }, + "id": "0eff7b34-fea4-497b-85b8-868c51b6eb9f", + "ownerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "updatedAt": { + "_seconds": 1608125413, + "_nanoseconds": 695000000 + }, + "createdAt": { + "_seconds": 1608125413, + "_nanoseconds": 695000000 + }, + "id": "1d099018-3e1d-4ae6-b2f3-f131e69feb28", + "circleCardId": "f445a07d-0a40-4892-8f4f-5218e3bee2d9", + "ownerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "metadata": { + "digits": "0007", + "billingDetails": { + "city": "Db", + "name": "Best Regards", + "line1": "Fbfb", + "country": "AD", + "postalCode": "12334" + }, + "network": "VISA" + } + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "metadata": { + "digits": "0007", + "network": "VISA", + "billingDetails": { + "city": "Test", + "name": "Lyubomir Petkov", + "line1": "Test", + "postalCode": "123", + "country": "AD" + } + }, + "createdAt": { + "_seconds": 1608130929, + "_nanoseconds": 198000000 + }, + "updatedAt": { + "_seconds": 1608130929, + "_nanoseconds": 198000000 + }, + "id": "1f02d991-147c-4f3b-91c2-5dcd878cc43e", + "circleCardId": "e17160c9-5fb6-4329-809d-ebb07eb918b8", + "ownerId": "Xlun3Ux94Zfc73axkiuVdkktOWf1" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "createdAt": { + "_seconds": 1618471591, + "_nanoseconds": 153999000 + }, + "verification": { + "cvv": "pass" + }, + "circleCardId": "1882a92d-05bc-438a-a179-4553abfb8560", + "metadata": { + "network": "VISA", + "billingDetails": { + "postalCode": "123123", + "country": "US", + "line1": "Asd As Das D", + "city": "Asd As D", + "district": "AS", + "name": "PAVEL MEYaasd" + }, + "digits": "4242" + }, + "updatedAt": { + "_seconds": 1618471591, + "_nanoseconds": 480000000 + }, + "id": "229d40bb-9680-44ad-b638-49b7cb774ca0", + "ownerId": "RoUaatJIeccpYxcDD7v1fqJrHZx2" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "ownerId": "Xlun3Ux94Zfc73axkiuVdkktOWf1", + "updatedAt": { + "_seconds": 1608273592, + "_nanoseconds": 348000000 + }, + "circleCardId": "ce968493-3895-4d02-9bda-10679af5f582", + "metadata": { + "billingDetails": { + "postalCode": "1836", + "city": "Test", + "line1": "Test", + "country": "AD", + "name": "Lyubomir Petkov" + }, + "network": "VISA", + "digits": "0007" + }, + "id": "237ff48d-6a2a-45cb-af4a-a7b707b4333e", + "createdAt": { + "_seconds": 1608273592, + "_nanoseconds": 348000000 + } + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "circleCardId": "5747494c-b588-43c0-b414-2e70c917e2df", + "ownerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "updatedAt": { + "_seconds": 1611839405, + "_nanoseconds": 949000000 + }, + "createdAt": { + "_seconds": 1611839405, + "_nanoseconds": 575000000 + }, + "metadata": { + "network": "MASTERCARD", + "digits": "4444", + "billingDetails": { + "country": "IL", + "name": "Jo Gg", + "postalCode": "474647", + "line1": "Fbfb ", + "city": "Ffbfb" + } + }, + "verification": { + "cvv": "pass" + }, + "id": "2723c4ad-8f5f-4e08-923a-adc26bad8ad5" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "verification": { + "cvv": "pass" + }, + "updatedAt": { + "_seconds": 1610442212, + "_nanoseconds": 629000000 + }, + "id": "434966d9-4e13-4c7b-998f-d7e447cadfbb", + "circleCardId": "2b9ef358-b06b-4ab9-b1d9-bc06bcdcbade", + "metadata": { + "network": "MASTERCARD", + "digits": "4444", + "billingDetails": { + "line1": "קראוזה", + "postalCode": "580250", + "country": "AD", + "name": "יניב יצחקי", + "city": "חולון" + } + }, + "ownerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "createdAt": { + "_seconds": 1610442212, + "_nanoseconds": 143000000 + } + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "verification": { + "cvv": "pass" + }, + "metadata": { + "digits": "4242", + "network": "VISA", + "billingDetails": { + "name": "Pavel Meyer", + "city": "Dnjxbdhf", + "line1": "Rbjxbdbfbd", + "postalCode": "2201111", + "country": "BY" + } + }, + "updatedAt": { + "_seconds": 1616662469, + "_nanoseconds": 86000000 + }, + "id": "56bda85a-f6bc-4dfa-9ad3-1cb68e14bd10", + "circleCardId": "6ff804d4-f69a-4195-9b4d-6ecea66f8e03", + "ownerId": "RoUaatJIeccpYxcDD7v1fqJrHZx2", + "createdAt": { + "_seconds": 1616662468, + "_nanoseconds": 822000000 + } + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "ownerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "createdAt": { + "_seconds": 1607859311, + "_nanoseconds": 927000000 + }, + "id": "58545097-65aa-4510-9a4a-21bdd9b2802f", + "metadata": { + "digits": "0007", + "network": "VISA", + "billingDetails": { + "postalCode": "1123", + "country": "AD", + "city": "כחי", + "name": "Good Morning", + "district": "GG", + "line1": "Fhdh" + } + }, + "updatedAt": { + "_seconds": 1607859311, + "_nanoseconds": 927000000 + }, + "circleCardId": "564fabaf-5b20-4ddd-be18-62b2cbda31d8" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "metadata": { + "billingDetails": { + "district": "TT", + "country": "AD", + "city": "Test", + "name": "Lyubomir Petkov", + "postalCode": "123", + "line1": "Test" + }, + "network": "VISA", + "digits": "0007" + }, + "updatedAt": { + "_seconds": 1608201955, + "_nanoseconds": 472000000 + }, + "circleCardId": "b302ac9d-f766-41b4-adb2-d4a98dcf96bf", + "id": "5a2cae48-269d-4f55-b9c5-f7a7797a85a0", + "ownerId": "Xlun3Ux94Zfc73axkiuVdkktOWf1", + "createdAt": { + "_seconds": 1608201955, + "_nanoseconds": 472000000 + } + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "createdAt": { + "_seconds": 1618394278, + "_nanoseconds": 20999000 + }, + "verification": { + "cvv": "pass" + }, + "metadata": { + "billingDetails": { + "line1": "Sdf As Fsd", + "city": "Sf Sdf Sd", + "name": "Patel Meyer", + "country": "US", + "district": "SD", + "postalCode": "123213" + }, + "network": "VISA", + "digits": "4242" + }, + "id": "5c9feca2-8d57-4f08-a681-4c47b3ea69d1", + "circleCardId": "e1b78aca-a8d7-4ecf-82b6-0d08e01801b9", + "ownerId": "RoUaatJIeccpYxcDD7v1fqJrHZx2", + "updatedAt": { + "_seconds": 1618394278, + "_nanoseconds": 263000000 + } + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "verification": { + "cvv": "pass" + }, + "circleCardId": "58bd8ed6-e062-43a9-8349-1cda30e78efe", + "metadata": { + "billingDetails": { + "name": "Pavel Meyer", + "line1": "Dfgdfg4", + "country": "US", + "district": "DF", + "city": "Fdgdfgdf", + "postalCode": "22013" + }, + "digits": "4242", + "network": "VISA" + }, + "id": "5faed414-e41f-4f4d-b5b3-143b8fb8a983", + "createdAt": { + "_seconds": 1618313166, + "_nanoseconds": 387000000 + }, + "updatedAt": { + "_seconds": 1618313166, + "_nanoseconds": 664999000 + }, + "ownerId": "RoUaatJIeccpYxcDD7v1fqJrHZx2" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "updatedAt": { + "_seconds": 1610637117, + "_nanoseconds": 972000000 + }, + "metadata": { + "digits": "4444", + "network": "MASTERCARD", + "billingDetails": { + "line1": "Hh", + "country": "AD", + "postalCode": "Yu", + "name": "יניב יצחקי", + "city": "Hh" + } + }, + "verification": { + "cvv": "pass" + }, + "ownerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "createdAt": { + "_seconds": 1610637117, + "_nanoseconds": 271000000 + }, + "circleCardId": "53e9b455-688a-4c25-afb8-b670b5f65822", + "id": "7344748c-cf9a-4638-b29b-8181638a5b4b" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "ownerId": "RoUaatJIeccpYxcDD7v1fqJrHZx2", + "verification": { + "cvv": "pass" + }, + "createdAt": { + "_seconds": 1617022108, + "_nanoseconds": 901000000 + }, + "id": "73ccfc67-6690-4ceb-8297-2bbb0b2f9f80", + "metadata": { + "digits": "4242", + "billingDetails": { + "country": "US", + "line1": "Asda Dasdas", + "district": "SD", + "postalCode": "22013", + "city": "Assad Das", + "name": "Pavel Meyer" + }, + "network": "VISA" + }, + "updatedAt": { + "_seconds": 1617022109, + "_nanoseconds": 280000000 + }, + "circleCardId": "7124dd97-14b2-464c-82b5-1bd058c78873" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "id": "8a53525e-b172-4cf7-b791-5679e5bffd18", + "circleCardId": "4fa636f9-2eb9-409a-bf59-2c2018842cbe", + "updatedAt": { + "_seconds": 1608542899, + "_nanoseconds": 406000000 + }, + "createdAt": { + "_seconds": 1608542899, + "_nanoseconds": 406000000 + }, + "metadata": { + "digits": "4444", + "network": "MASTERCARD", + "billingDetails": { + "city": "Fbfb", + "name": "Good Afternoon", + "line1": "Cfbb", + "country": "AD", + "postalCode": "Rbrb" + } + }, + "ownerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "verification": { + "cvv": "pass" + }, + "metadata": { + "digits": "0007", + "network": "VISA", + "billingDetails": { + "line1": "Dh", + "city": "Eh", + "postalCode": "377", + "country": "AD", + "name": "יניב יצחקי" + } + }, + "createdAt": { + "_seconds": 1610610575, + "_nanoseconds": 547000000 + }, + "updatedAt": { + "_seconds": 1610610575, + "_nanoseconds": 969000000 + }, + "circleCardId": "9f25ee6d-0ca4-40af-aa01-c9bea66bc086", + "id": "084979f0-85f3-4226-ae4f-70cff789beaa", + "ownerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "ownerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "circleCardId": "fa882cb3-4145-4f5f-a900-3b78d287f976", + "id": "08817a26-12a0-45ae-9b61-380f87aa3a20", + "metadata": { + "billingDetails": { + "city": "Dhdh", + "country": "AD", + "line1": "Dbdbbd", + "name": "Happy Birthday", + "postalCode": "12333" + }, + "digits": "4444", + "network": "MASTERCARD" + }, + "updatedAt": { + "_seconds": 1608456065, + "_nanoseconds": 884000000 + }, + "createdAt": { + "_seconds": 1608456065, + "_nanoseconds": 884000000 + } + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "id": "24b5beee-df8d-471a-bbfd-d75d6bdb947b", + "verification": { + "cvv": "pass" + }, + "updatedAt": { + "_seconds": 1609404592, + "_nanoseconds": 457000000 + }, + "createdAt": { + "_seconds": 1609404592, + "_nanoseconds": 264000000 + }, + "metadata": { + "billingDetails": { + "city": "Dh", + "line1": "Rj", + "postalCode": "Rhr", + "country": "AD", + "name": "יניב יצחקי" + }, + "digits": "0007", + "network": "VISA" + }, + "ownerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "circleCardId": "c497f6c3-fe71-4ba3-8289-43a05c8404b6" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "createdAt": { + "_seconds": 1618835785, + "_nanoseconds": 964000000 + }, + "updatedAt": { + "_seconds": 1618835786, + "_nanoseconds": 292999000 + }, + "id": "29302870-816d-42a5-b57a-7ba431c2769f", + "metadata": { + "digits": "4242", + "network": "VISA", + "billingDetails": { + "line1": "Werwerwer", + "country": "US", + "district": "ER", + "postalCode": "123123", + "city": "Werwerwer", + "name": "Werwe Werwe" + } + }, + "verification": { + "cvv": "pass" + }, + "circleCardId": "db75c973-014b-4b1e-ab9f-bc4a09ca1a26", + "ownerId": "RoUaatJIeccpYxcDD7v1fqJrHZx2" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "metadata": { + "digits": "4242", + "network": "VISA", + "billingDetails": { + "postalCode": "12311", + "line1": "Asdasdasd", + "country": "US", + "district": "AS", + "city": "Asdkakdas", + "name": "PAVEL MYERas" + } + }, + "ownerId": "RoUaatJIeccpYxcDD7v1fqJrHZx2", + "id": "3664dd4a-627b-45f4-9171-43ffccb41978", + "createdAt": { + "_seconds": 1619596692, + "_nanoseconds": 813000000 + }, + "updatedAt": { + "_seconds": 1619596693, + "_nanoseconds": 77000000 + }, + "verification": { + "cvv": "pass" + }, + "circleCardId": "87bb4a6c-5171-4aac-b6fa-6d818cd5bf46" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "ownerId": "RoUaatJIeccpYxcDD7v1fqJrHZx2", + "verification": { + "cvv": "pass" + }, + "metadata": { + "network": "VISA", + "billingDetails": { + "postalCode": "22103", + "name": "PAVEL MEYER", + "line1": "Rasda Sdasd", + "city": "Asd Asd As Das", + "district": "AS", + "country": "US" + }, + "digits": "4242" + }, + "id": "39afeecc-9f13-4683-8e1f-8f99a355b20d", + "createdAt": { + "_seconds": 1618321223, + "_nanoseconds": 980999000 + }, + "circleCardId": "746a8626-2f68-4787-8488-111af648769a", + "updatedAt": { + "_seconds": 1618321224, + "_nanoseconds": 419000000 + } + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "ownerId": "Xlun3Ux94Zfc73axkiuVdkktOWf1", + "id": "3a46a1ce-0af1-44ff-b639-41dcf715df54", + "createdAt": { + "_seconds": 1608130866, + "_nanoseconds": 143000000 + }, + "updatedAt": { + "_seconds": 1608130866, + "_nanoseconds": 143000000 + }, + "metadata": { + "billingDetails": { + "name": "Lyubomir Petkov", + "city": "Тест", + "country": "AD", + "line1": "Тест", + "postalCode": "1111" + }, + "digits": "0007", + "network": "VISA" + }, + "circleCardId": "d7649cff-bdaa-4f06-9250-f19755734904" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "circleCardId": "b9127cb3-e192-4fe2-8d26-999d990d5b96", + "metadata": { + "network": "MASTERCARD", + "digits": "4444", + "billingDetails": { + "name": "Hi The", + "line1": "028067460", + "postalCode": "Rh", + "city": "Dh", + "country": "IL" + } + }, + "verification": { + "cvv": "pass" + }, + "ownerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "updatedAt": { + "_seconds": 1612191705, + "_nanoseconds": 881000000 + }, + "createdAt": { + "_seconds": 1612191705, + "_nanoseconds": 552000000 + }, + "id": "409a1949-bae5-40a8-8ab3-2c2947c14a82" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "metadata": { + "network": "MASTERCARD", + "digits": "4444", + "billingDetails": { + "city": "View", + "postalCode": "123456", + "name": "Version Of", + "district": "NN", + "line1": "For Your", + "country": "AD" + } + }, + "ownerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "circleCardId": "217b37eb-74aa-4160-ae80-39d40e747ce8", + "createdAt": { + "_seconds": 1608126917, + "_nanoseconds": 141000000 + }, + "id": "423e3a83-3bcd-4cbb-abcf-f0b8486d75f0", + "updatedAt": { + "_seconds": 1608126917, + "_nanoseconds": 142000000 + } + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "verification": { + "cvv": "pass" + }, + "updatedAt": { + "_seconds": 1612691062, + "_nanoseconds": 802000000 + }, + "createdAt": { + "_seconds": 1612691062, + "_nanoseconds": 348000000 + }, + "ownerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "circleCardId": "5a42671b-86da-4e82-a61d-a1c5bef86fcd", + "metadata": { + "network": "VISA", + "digits": "0007", + "billingDetails": { + "name": "How Are", + "city": "How", + "country": "IL", + "line1": "Tj", + "postalCode": "Ahdg" + } + }, + "id": "47f53dd0-7fcc-4c95-9566-8f8d5da5f82c" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "verification": { + "cvv": "pass" + }, + "circleCardId": "6839c2a3-b91c-4bf7-83ba-f888b61619aa", + "ownerId": "RoUaatJIeccpYxcDD7v1fqJrHZx2", + "id": "4a537af3-1eea-4d16-9391-0aec6f50c3b2", + "metadata": { + "digits": "4242", + "billingDetails": { + "city": "Sdfsdfsdf", + "postalCode": "213121", + "country": "US", + "district": "FD", + "name": "PAVEL MEYER", + "line1": "Dsfsdfsdf" + }, + "network": "VISA" + }, + "createdAt": { + "_seconds": 1619595438, + "_nanoseconds": 561000000 + }, + "updatedAt": { + "_seconds": 1619595439, + "_nanoseconds": 3000000 + } + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "ownerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "updatedAt": { + "_seconds": 1609747155, + "_nanoseconds": 225000000 + }, + "verification": { + "cvv": "pass" + }, + "id": "5166f473-79cd-4f80-985e-e29789416738", + "metadata": { + "billingDetails": { + "postalCode": "Xhdh", + "country": "AD", + "city": "G", + "line1": "Gg", + "name": "יניב יצחקי" + }, + "network": "VISA", + "digits": "0007" + }, + "createdAt": { + "_seconds": 1609747154, + "_nanoseconds": 861000000 + }, + "circleCardId": "248f3f64-1cbb-4cb3-9e44-f64804c2b09c" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "createdAt": { + "_seconds": 1611676221, + "_nanoseconds": 253000000 + }, + "metadata": { + "digits": "0007", + "network": "VISA", + "billingDetails": { + "name": "Lyubo Petkov", + "city": "Test", + "line1": "Test", + "district": "TH", + "postalCode": "1234", + "country": "US" + } + }, + "circleCardId": "04602b0f-4d06-4fe2-ba8f-273da3b428d7", + "updatedAt": { + "_seconds": 1611676221, + "_nanoseconds": 614000000 + }, + "id": "596fcf9d-e8c1-4961-90e9-3c5ee05c58f4", + "verification": { + "cvv": "pass" + }, + "ownerId": "Xlun3Ux94Zfc73axkiuVdkktOWf1" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "ownerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "circleCardId": "3fe5a0cf-625d-46f9-947d-0687808778f4", + "createdAt": { + "_seconds": 1608127038, + "_nanoseconds": 956000000 + }, + "updatedAt": { + "_seconds": 1608127038, + "_nanoseconds": 956000000 + }, + "metadata": { + "digits": "4444", + "network": "MASTERCARD", + "billingDetails": { + "name": "Version Of", + "country": "AD", + "line1": "For Your", + "district": "NN", + "postalCode": "123456", + "city": "View" + } + }, + "id": "627a517e-4b23-487b-aef2-79ea3385e987" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "id": "6df95903-092c-4474-bf1a-861c82f6135d", + "verification": { + "cvv": "pass" + }, + "metadata": { + "billingDetails": { + "line1": "Asdasdasd", + "postalCode": "22013", + "name": "Pavel Test", + "country": "US", + "city": "Sdasdasda", + "district": "AS" + }, + "digits": "4242", + "network": "VISA" + }, + "ownerId": "RoUaatJIeccpYxcDD7v1fqJrHZx2", + "createdAt": { + "_seconds": 1618309714, + "_nanoseconds": 367000000 + }, + "circleCardId": "851552ba-10aa-4554-ba2f-6d44eca78dfd", + "updatedAt": { + "_seconds": 1618309714, + "_nanoseconds": 756999000 + } + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "circleCardId": "c996c8d8-549a-487a-8407-fb50bcf037f4", + "ownerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "metadata": { + "billingDetails": { + "name": "יניב יצחקי", + "country": "AD", + "city": "Xvxvb", + "postalCode": "Fhddhdh", + "line1": "Rvrb" + }, + "network": "MASTERCARD", + "digits": "4444" + }, + "id": "74edc491-f263-4765-baf4-13ecff441206", + "updatedAt": { + "_seconds": 1609228950, + "_nanoseconds": 212000000 + }, + "createdAt": { + "_seconds": 1609228950, + "_nanoseconds": 212000000 + } + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "updatedAt": { + "_seconds": 1618303210, + "_nanoseconds": 904000000 + }, + "id": "795b28eb-2fdb-4349-8604-6f21c4688ab2", + "metadata": { + "billingDetails": { + "line1": "Bhjbvv", + "name": "Pavel Meyer", + "postalCode": "22442", + "city": "Gjvhh", + "country": "BY" + }, + "network": "VISA", + "digits": "4242" + }, + "verification": { + "cvv": "pass" + }, + "circleCardId": "8e6a1bc0-baf1-4408-9d60-4690851eb94d", + "ownerId": "RoUaatJIeccpYxcDD7v1fqJrHZx2", + "createdAt": { + "_seconds": 1618303210, + "_nanoseconds": 512000000 + } + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "metadata": { + "network": "VISA", + "billingDetails": { + "city": "Test", + "name": "Lyubo Petkov", + "country": "US", + "postalCode": "1234", + "line1": "Test", + "district": "TE" + }, + "digits": "0007" + }, + "ownerId": "Xlun3Ux94Zfc73axkiuVdkktOWf1", + "createdAt": { + "_seconds": 1611820550, + "_nanoseconds": 386000000 + }, + "verification": { + "cvv": "pass" + }, + "id": "7e231bf6-dcd4-4f98-b240-67383cb17a54", + "updatedAt": { + "_seconds": 1611820550, + "_nanoseconds": 731000000 + }, + "circleCardId": "c3445bfd-ff6b-4f11-b60d-5bb55bf33f0f" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "ownerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "metadata": { + "digits": "0007", + "network": "VISA", + "billingDetails": { + "line1": "אח", + "name": "יניב יצחקי", + "city": "עחע", + "postalCode": "חע", + "country": "IL" + } + }, + "createdAt": { + "_seconds": 1610989368, + "_nanoseconds": 642000000 + }, + "circleCardId": "5e1414a6-87a9-40e4-be82-7c82ce50280b", + "id": "7ec73788-1c33-4e60-86be-e524d495610c", + "updatedAt": { + "_seconds": 1610989368, + "_nanoseconds": 984000000 + }, + "verification": { + "cvv": "pass" + } + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "circleCardId": "c5a2d970-02e7-40c0-b3d2-07a898b331d2", + "id": "84cd18eb-2fe0-49a1-9759-36843c45b026", + "metadata": { + "billingDetails": { + "postalCode": "Xh", + "name": "יניב יצחקי", + "line1": "028067460", + "city": "Dh", + "country": "AD" + }, + "digits": "4444", + "network": "MASTERCARD" + }, + "createdAt": { + "_seconds": 1610274815, + "_nanoseconds": 193000000 + }, + "verification": { + "cvv": "pass" + }, + "ownerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "updatedAt": { + "_seconds": 1610274815, + "_nanoseconds": 420000000 + } + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "id": "8a9fef18-f80e-4883-8c39-db3cd1dc9e90", + "circleCardId": "886e9e55-712b-4a83-aa47-9f1e309726a2", + "updatedAt": { + "_seconds": 1617175226, + "_nanoseconds": 157000000 + }, + "verification": { + "cvv": "pass" + }, + "metadata": { + "network": "VISA", + "digits": "4242", + "billingDetails": { + "line1": "Asdasd", + "country": "US", + "district": "AS", + "name": "Pavel Meyer", + "city": "Asdasd", + "postalCode": "22131" + } + }, + "createdAt": { + "_seconds": 1617175225, + "_nanoseconds": 866000000 + }, + "ownerId": "RoUaatJIeccpYxcDD7v1fqJrHZx2" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "ownerId": "Xlun3Ux94Zfc73axkiuVdkktOWf1", + "createdAt": { + "_seconds": 1614692217, + "_nanoseconds": 489000000 + }, + "updatedAt": { + "_seconds": 1614692217, + "_nanoseconds": 762000000 + }, + "id": "93eb4c4d-9652-4a85-b951-79590276c3f2", + "metadata": { + "network": "VISA", + "digits": "0007", + "billingDetails": { + "postalCode": "1234", + "city": "Test", + "country": "US", + "line1": "Testtest", + "district": "TE", + "name": "Lyubo Petkov" + } + }, + "circleCardId": "e476c2e6-a1db-4a15-8e1a-a72e38b561db", + "verification": { + "cvv": "pass" + } + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "updatedAt": { + "_seconds": 1608456336, + "_nanoseconds": 263000000 + }, + "createdAt": { + "_seconds": 1608456336, + "_nanoseconds": 263000000 + }, + "id": "949b3114-f29f-4ae5-84bd-5fce9bb38888", + "metadata": { + "digits": "0007", + "network": "VISA", + "billingDetails": { + "district": "DH", + "line1": "Dhdgg", + "postalCode": "12233", + "country": "AD", + "name": "Happy Fjfbfbfb", + "city": "Dhd" + } + }, + "ownerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "circleCardId": "30d76779-1254-4354-9536-1478b3a0ac84" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "metadata": { + "digits": "0007", + "billingDetails": { + "postalCode": "1234", + "country": "US", + "line1": "Test", + "city": "Test", + "district": "TE", + "name": "Lyubo Petkov" + }, + "network": "VISA" + }, + "updatedAt": { + "_seconds": 1611820912, + "_nanoseconds": 872000000 + }, + "verification": { + "cvv": "pass" + }, + "createdAt": { + "_seconds": 1611820912, + "_nanoseconds": 643000000 + }, + "circleCardId": "f58caf39-0da7-40b4-81e0-3537e6252df6", + "id": "953a5d9d-e763-4ab2-94ab-07b2b60996c5", + "ownerId": "Xlun3Ux94Zfc73axkiuVdkktOWf1" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "updatedAt": { + "_seconds": 1618835714, + "_nanoseconds": 598000000 + }, + "verification": { + "cvv": "pass" + }, + "ownerId": "RoUaatJIeccpYxcDD7v1fqJrHZx2", + "createdAt": { + "_seconds": 1618835714, + "_nanoseconds": 247000000 + }, + "circleCardId": "c96e276d-3ff3-4c85-bb02-282c987428bf", + "metadata": { + "network": "VISA", + "billingDetails": { + "name": "Asd Asd", + "country": "US", + "line1": "Asdsadasdas", + "postalCode": "213123", + "district": "GG", + "city": "Sad Asd " + }, + "digits": "4242" + }, + "id": "96074871-bece-425a-af5a-8000734a63cc" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "metadata": { + "billingDetails": { + "name": "Best Regards", + "city": "Rurh", + "line1": "Rhrh", + "postalCode": "383838", + "country": "AD" + }, + "network": "VISA", + "digits": "0007" + }, + "id": "97d16bcf-df1b-4814-865b-041be22e4d18", + "circleCardId": "599d3e20-2acc-4e38-8567-04409e5cc04a", + "ownerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "updatedAt": { + "_seconds": 1608132227, + "_nanoseconds": 597000000 + }, + "createdAt": { + "_seconds": 1608132227, + "_nanoseconds": 597000000 + } + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "metadata": { + "network": "MASTERCARD", + "digits": "4444", + "billingDetails": { + "postalCode": "3737", + "city": "חולון", + "line1": "חדשות", + "country": "AD", + "name": "יניב יצחקי" + } + }, + "verification": { + "cvv": "pass" + }, + "updatedAt": { + "_seconds": 1609410922, + "_nanoseconds": 756000000 + }, + "createdAt": { + "_seconds": 1609410922, + "_nanoseconds": 379000000 + }, + "id": "9ade2732-2d2f-41d8-9267-2f80337bc304", + "circleCardId": "81e87b5a-a6e2-422b-ba5c-cc64a6c6528c", + "ownerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "createdAt": { + "_seconds": 1610268615, + "_nanoseconds": 478000000 + }, + "verification": { + "cvv": "pass" + }, + "id": "a37a64f1-e7be-4a71-90d7-59936423b864", + "updatedAt": { + "_seconds": 1610268615, + "_nanoseconds": 720000000 + }, + "metadata": { + "billingDetails": { + "country": "AD", + "line1": "Jj", + "name": "יניב יצחקי", + "postalCode": "Rjr", + "city": "Good" + }, + "digits": "4444", + "network": "MASTERCARD" + }, + "ownerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "circleCardId": "50dfd309-a996-4614-9ca6-b8bdd19759cf" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "updatedAt": { + "_seconds": 1618479119, + "_nanoseconds": 969999000 + }, + "metadata": { + "network": "VISA", + "digits": "4242", + "billingDetails": { + "district": "AS", + "postalCode": "123112", + "name": "PAsdasdasd Adsdas", + "city": "Asdasd as Das", + "line1": "Asdas Das Das", + "country": "US" + } + }, + "ownerId": "RoUaatJIeccpYxcDD7v1fqJrHZx2", + "createdAt": { + "_seconds": 1618479119, + "_nanoseconds": 660000000 + }, + "verification": { + "cvv": "pass" + }, + "id": "a6e1cc55-cfe6-4e83-8946-3142eedb5082", + "circleCardId": "70a59c02-5a82-45f7-8f55-b7568f128b96" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "id": "b8f29793-7883-4dd4-9b0d-e8e6ff75fd67", + "metadata": { + "digits": "4444", + "billingDetails": { + "city": "Gg", + "postalCode": "363636", + "name": "Ya Be", + "line1": "Fhfh", + "country": "AD" + }, + "network": "MASTERCARD" + }, + "updatedAt": { + "_seconds": 1608455364, + "_nanoseconds": 589000000 + }, + "createdAt": { + "_seconds": 1608455364, + "_nanoseconds": 589000000 + }, + "circleCardId": "22fef37a-6244-4a2c-a5db-832a5c2b91cd", + "ownerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "id": "bca3559c-2f4b-4f89-853c-4e0425f88f6f", + "circleCardId": "b00e5949-4b1a-4f12-bfed-ebd16e094109", + "updatedAt": { + "_seconds": 1608193135, + "_nanoseconds": 901000000 + }, + "metadata": { + "billingDetails": { + "postalCode": "363636", + "line1": "Dhrh", + "country": "AD", + "name": "Just That", + "city": "Yd" + }, + "network": "VISA", + "digits": "0007" + }, + "createdAt": { + "_seconds": 1608193135, + "_nanoseconds": 901000000 + }, + "ownerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "circleCardId": "d9c45bbd-948f-4aec-9680-7b2f3fcecb43", + "ownerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "updatedAt": { + "_seconds": 1607873180, + "_nanoseconds": 322000000 + }, + "id": "c1780060-74f1-4a7c-b32c-d421580cd176", + "metadata": { + "billingDetails": { + "line1": "Gg", + "name": "Happy Birthday", + "postalCode": "1223344", + "country": "AD", + "city": "עי" + }, + "digits": "4444", + "network": "MASTERCARD" + }, + "createdAt": { + "_seconds": 1607873180, + "_nanoseconds": 322000000 + } + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "metadata": { + "billingDetails": { + "name": "Sdfsdf Sdfsd", + "postalCode": "123123", + "country": "US", + "district": "SD", + "line1": "Sdf Sdf Sdf Sdf", + "city": "Sdf Sdf Sdf" + }, + "network": "VISA", + "digits": "4242" + }, + "ownerId": "RoUaatJIeccpYxcDD7v1fqJrHZx2", + "createdAt": { + "_seconds": 1618834413, + "_nanoseconds": 879000000 + }, + "updatedAt": { + "_seconds": 1618834414, + "_nanoseconds": 272999000 + }, + "id": "c8f04825-c4bb-4156-b774-fc8a79a35d2c", + "verification": { + "cvv": "pass" + }, + "circleCardId": "83988911-542b-4f16-bf06-480816aace6c" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "createdAt": { + "_seconds": 1608201872, + "_nanoseconds": 650000000 + }, + "id": "c998554c-d0f6-41c9-9e83-b2c062518820", + "ownerId": "Xlun3Ux94Zfc73axkiuVdkktOWf1", + "updatedAt": { + "_seconds": 1608201872, + "_nanoseconds": 650000000 + }, + "metadata": { + "network": "VISA", + "billingDetails": { + "district": "TT", + "city": "Test", + "name": "Lyubomir Petkov", + "country": "AD", + "postalCode": "123", + "line1": "Test" + }, + "digits": "0007" + }, + "circleCardId": "9437dcf8-3d67-4c83-bddc-6e607a1c7e79" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "ownerId": "Xlun3Ux94Zfc73axkiuVdkktOWf1", + "circleCardId": "802a25a1-b4bb-4156-8399-f26a25412b2a", + "id": "cca27641-2e8f-4ec9-84b3-986f6f791669", + "updatedAt": { + "_seconds": 1617171487, + "_nanoseconds": 845000000 + }, + "metadata": { + "network": "VISA", + "billingDetails": { + "city": "Test", + "postalCode": "1234", + "name": "Lyubo Petkov", + "line1": "Test", + "country": "US", + "district": "TE" + }, + "digits": "0007" + }, + "createdAt": { + "_seconds": 1617171487, + "_nanoseconds": 575000000 + }, + "verification": { + "cvv": "pass" + } + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "verification": { + "cvv": "pass" + }, + "metadata": { + "billingDetails": { + "line1": "Sdfsdf Sdf", + "city": "Sdf sdf Fsd Fs", + "name": "Ada Asd", + "postalCode": "2131", + "district": "SA", + "country": "US" + }, + "digits": "4242", + "network": "VISA" + }, + "ownerId": "RoUaatJIeccpYxcDD7v1fqJrHZx2", + "circleCardId": "0b8ef7af-0c02-4e9d-b8db-9b5cb30331cd", + "createdAt": { + "_seconds": 1618310293, + "_nanoseconds": 631000000 + }, + "updatedAt": { + "_seconds": 1618310293, + "_nanoseconds": 927000000 + }, + "id": "cdbbd798-4910-46a2-85ba-ceef7af8cedd" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "ownerId": "Xlun3Ux94Zfc73axkiuVdkktOWf1", + "id": "d280f770-b416-4659-bc36-95429e2eef26", + "updatedAt": { + "_seconds": 1608202511, + "_nanoseconds": 435000000 + }, + "metadata": { + "digits": "0007", + "billingDetails": { + "line1": "Test", + "city": "Test", + "district": "TE", + "country": "AD", + "name": "Lyubomir Petkov", + "postalCode": "123" + }, + "network": "VISA" + }, + "createdAt": { + "_seconds": 1608202511, + "_nanoseconds": 435000000 + }, + "circleCardId": "28c0038c-e6ec-4a94-9bf9-19b24703964a" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "metadata": { + "billingDetails": { + "country": "US", + "postalCode": "1234", + "district": "TE", + "city": "Test", + "name": "Lyubo Petkov", + "line1": "Test" + }, + "digits": "0007", + "network": "VISA" + }, + "ownerId": "Xlun3Ux94Zfc73axkiuVdkktOWf1", + "id": "d2971292-2b9e-45f3-b2d0-17bfe0c369b6", + "updatedAt": { + "_seconds": 1611050509, + "_nanoseconds": 275000000 + }, + "circleCardId": "2ae64c85-a8be-49b6-937c-2a7fb0836ad3", + "verification": { + "cvv": "pass" + }, + "createdAt": { + "_seconds": 1611050508, + "_nanoseconds": 909000000 + } + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "metadata": { + "digits": "4444", + "billingDetails": { + "line1": "כחכי", + "country": "IL", + "name": "Good B", + "city": "כיכי", + "postalCode": "כיככי" + }, + "network": "MASTERCARD" + }, + "ownerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "createdAt": { + "_seconds": 1611233213, + "_nanoseconds": 156000000 + }, + "id": "d6aefbd2-a6e5-4f20-923b-375115f78ae1", + "circleCardId": "485b2168-7cdf-4fdf-b956-f9019f8a1286", + "updatedAt": { + "_seconds": 1611233213, + "_nanoseconds": 545000000 + }, + "verification": { + "cvv": "pass" + } + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "updatedAt": { + "_seconds": 1612858787, + "_nanoseconds": 640000000 + }, + "createdAt": { + "_seconds": 1612858787, + "_nanoseconds": 313000000 + }, + "metadata": { + "digits": "4444", + "network": "MASTERCARD", + "billingDetails": { + "city": "Fhfh", + "name": "Dh Fb", + "postalCode": "Ffh", + "country": "IL", + "line1": "Rhth" + } + }, + "verification": { + "cvv": "pass" + }, + "id": "d83e3944-985e-46cb-85fa-2ac249a51ab0", + "circleCardId": "c4d3f7e5-56af-4f00-a9b5-87920c4adc86", + "ownerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "verification": { + "cvv": "pass" + }, + "ownerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "circleCardId": "72410c87-c819-4e2d-be9e-409960d6bf0c", + "id": "d8bc7562-aeb6-4112-ab0e-70fd7899a02a", + "metadata": { + "billingDetails": { + "name": "Fb Gn", + "line1": "Ththhtj", + "postalCode": "Fhfh", + "city": "Tjth", + "country": "IL" + }, + "network": "MASTERCARD", + "digits": "4444" + }, + "createdAt": { + "_seconds": 1612701701, + "_nanoseconds": 490000000 + }, + "updatedAt": { + "_seconds": 1612701703, + "_nanoseconds": 313000000 + } + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "ownerId": "Xlun3Ux94Zfc73axkiuVdkktOWf1", + "updatedAt": { + "_seconds": 1609422642, + "_nanoseconds": 736000000 + }, + "verification": { + "cvv": "pass" + }, + "metadata": { + "network": "VISA", + "billingDetails": { + "line1": "Test", + "country": "AD", + "district": "TE", + "city": "Test", + "name": "Lyubomir Petkov", + "postalCode": "2121" + }, + "digits": "0007" + }, + "createdAt": { + "_seconds": 1609422642, + "_nanoseconds": 251000000 + }, + "circleCardId": "fc9e4b38-99c5-46a9-92ed-8132365e8f30", + "id": "dc17179c-5c03-49f2-b29f-9f572f409609" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "verification": { + "cvv": "pass" + }, + "createdAt": { + "_seconds": 1612425286, + "_nanoseconds": 280000000 + }, + "updatedAt": { + "_seconds": 1612425286, + "_nanoseconds": 599000000 + }, + "metadata": { + "network": "MASTERCARD", + "billingDetails": { + "line1": "Rjrh Rb", + "name": "Dh The", + "postalCode": "4774", + "city": "Fjfj", + "country": "IL" + }, + "digits": "4444" + }, + "ownerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "circleCardId": "5427c5b3-a24b-4dad-a1c3-c1b5e6290440", + "id": "e5ff0c5f-f33a-4f89-9846-8a59347ab115" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "verification": { + "cvv": "pass" + }, + "metadata": { + "network": "VISA", + "billingDetails": { + "city": "Asd As Das Das", + "name": "Apsdasd Asdasd", + "country": "US", + "district": "AS", + "postalCode": "1231231", + "line1": "Asd As Das Das D" + }, + "digits": "4242" + }, + "createdAt": { + "_seconds": 1618826623, + "_nanoseconds": 135000000 + }, + "circleCardId": "4ad1b7f3-25be-4d2f-8dc0-9176f12d5590", + "id": "e954ba2f-41df-4bf3-9e20-285b07297253", + "ownerId": "RoUaatJIeccpYxcDD7v1fqJrHZx2", + "updatedAt": { + "_seconds": 1618826623, + "_nanoseconds": 558000000 + } + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "createdAt": { + "_seconds": 1609423926, + "_nanoseconds": 139000000 + }, + "ownerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "id": "f1180d0a-f5c5-4ba1-b021-228e7481f42b", + "updatedAt": { + "_seconds": 1609423926, + "_nanoseconds": 410000000 + }, + "verification": { + "cvv": "pass" + }, + "circleCardId": "6296b607-2968-4329-81cc-a012e7c0ed0c", + "metadata": { + "network": "VISA", + "digits": "0007", + "billingDetails": { + "name": "יניב יצחקי", + "city": "Dbbd", + "postalCode": "Ur", + "country": "AD", + "line1": "Dhrh" + } + } + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "metadata": { + "billingDetails": { + "city": "יחגמ כמכי", + "line1": "רירי", + "country": "AD", + "name": "יניב יצחקי", + "postalCode": "0288" + }, + "digits": "4444", + "network": "MASTERCARD" + }, + "createdAt": { + "_seconds": 1608557891, + "_nanoseconds": 783000000 + }, + "circleCardId": "4a936808-30a8-4ba1-8a3f-142c3d3153d2", + "updatedAt": { + "_seconds": 1608557891, + "_nanoseconds": 783000000 + }, + "ownerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "id": "f8fdaba3-878c-498a-a97a-ab7a08d5b5c0" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "id": "f98b764f-9a3d-421f-934b-1c07943aa508", + "updatedAt": { + "_seconds": 1616742240, + "_nanoseconds": 719000000 + }, + "verification": { + "cvv": "pass" + }, + "metadata": { + "billingDetails": { + "city": "Sdf Sdf Sdf ", + "postalCode": "21321", + "district": "SD", + "line1": "Sdf Sdf Sd", + "name": "Pavel Meyer", + "country": "US" + }, + "digits": "4242", + "network": "VISA" + }, + "ownerId": "RoUaatJIeccpYxcDD7v1fqJrHZx2", + "circleCardId": "53388019-4cd4-4039-97fc-61fffb7b7ad8", + "createdAt": { + "_seconds": 1616742240, + "_nanoseconds": 409000000 + } + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "verification": { + "cvv": "pass" + }, + "createdAt": { + "_seconds": 1618835859, + "_nanoseconds": 224000000 + }, + "updatedAt": { + "_seconds": 1618835859, + "_nanoseconds": 512999000 + }, + "circleCardId": "d13ee899-7c27-4a4c-93d1-b2062ec31c1a", + "ownerId": "RoUaatJIeccpYxcDD7v1fqJrHZx2", + "id": "f9b32a8f-0943-45c6-80a4-d72268bc0101", + "metadata": { + "billingDetails": { + "postalCode": "231231", + "district": "SD", + "line1": "Sdfsd Fsd Fsd", + "city": "Sdfsdfsdfsdf", + "country": "US", + "name": "Sdfsdfsd Sdfsdf" + }, + "digits": "4242", + "network": "VISA" + } + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "createdAt": { + "_seconds": 1609423564, + "_nanoseconds": 828000000 + }, + "metadata": { + "network": "MASTERCARD", + "digits": "4444", + "billingDetails": { + "postalCode": "Dhd", + "country": "AD", + "name": "יניב יצחקי", + "city": "Rj", + "line1": "Nn" + } + }, + "verification": { + "cvv": "pass" + }, + "updatedAt": { + "_seconds": 1609423565, + "_nanoseconds": 83000000 + }, + "ownerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "circleCardId": "330a66f4-6716-43b9-b283-1cffef08da88", + "id": "fc0112f9-653f-42c4-83af-3b4caff2ed86" + }, + "error": { + "message": "\nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.", + "stack": "Error: \nInvalid `prisma.card.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Card' record(s)) was found for a nested connect on one-to-many relation 'CardToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + } +] \ No newline at end of file diff --git a/packages/core/prisma/result/1621327212154/cardImports-results.json b/packages/core/prisma/result/1621327212154/cardImports-results.json new file mode 100644 index 000000000..21b18d3c7 --- /dev/null +++ b/packages/core/prisma/result/1621327212154/cardImports-results.json @@ -0,0 +1,3423 @@ +[ + { + "id": "04c64b65-a59e-4c6a-8df1-ff9cd28114ef", + "circleCardId": "a12124ef-1c64-4b35-97b4-80d71b7be4a2", + "createdAt": "2021-05-18T08:40:14.079Z", + "updatedAt": "2021-05-18T08:40:14.079Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "no verification", + "avsCheck": "no verification", + "userId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1" + }, + { + "id": "06ae077d-09f8-4d70-bcd0-2a087a361544", + "circleCardId": "e1aebb62-4329-4001-9d48-13e6c89394f3", + "createdAt": "2021-05-18T08:40:14.079Z", + "updatedAt": "2021-05-18T08:40:14.080Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + { + "id": "00cb169b-1819-4e64-a6c5-6bb502a2fac4", + "circleCardId": "f0b4d708-bbc7-42e2-853d-98c7a1bbccd6", + "createdAt": "2021-05-18T08:40:14.078Z", + "updatedAt": "2021-05-18T08:40:14.079Z", + "digits": "0006", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "b0Kxsd0x4OMLeOlDnheysBz5THo1" + }, + { + "id": "0857a600-f970-4729-ba7c-93a19b8402dd", + "circleCardId": "d363fc0b-a9c8-4acc-b124-0602df85153e", + "createdAt": "2021-05-18T08:40:14.080Z", + "updatedAt": "2021-05-18T08:40:14.080Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2" + }, + { + "id": "08b65514-cb2e-45ba-ba34-ed9ee235f0a9", + "circleCardId": "a8d7f860-b686-4af1-abf2-e549c5e281c2", + "createdAt": "2021-05-18T08:40:14.080Z", + "updatedAt": "2021-05-18T08:40:14.081Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "no verification", + "avsCheck": "no verification", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + { + "id": "13c4eb3a-d440-4afd-87f1-dbc1c7aab4ab", + "circleCardId": "3d671788-8f16-4700-8402-2d7747893e21", + "createdAt": "2021-05-18T08:40:14.085Z", + "updatedAt": "2021-05-18T08:40:14.086Z", + "digits": "0006", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "H5ZkcKBX5eXXNyBiPaph8EHCiax2" + }, + { + "id": "155feb02-72a0-4ab5-9fc6-eba42139d398", + "circleCardId": "823bac63-02f6-479b-ba24-f800239eb41e", + "createdAt": "2021-05-18T08:40:14.086Z", + "updatedAt": "2021-05-18T08:40:14.087Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "Wz0ZgOvKnafrjLDeAeWqx182uBq2" + }, + { + "id": "101726dc-b799-4287-a0f9-0f75455b874b", + "circleCardId": "c0aacaa8-203e-4f4b-bcc3-d70e17b33d16", + "createdAt": "2021-05-18T08:40:14.084Z", + "updatedAt": "2021-05-18T08:40:14.084Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2" + }, + { + "id": "15e1e8e0-bf1c-4193-b5fa-ffea9d38cd0d", + "circleCardId": "47a2e60c-9a6b-441d-8fed-cc8c0ad3db86", + "createdAt": "2021-05-18T08:40:14.087Z", + "updatedAt": "2021-05-18T08:40:14.088Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2" + }, + { + "id": "167895ab-33c5-42e4-a1d4-d159a6d3f48e", + "circleCardId": "aac79b24-7a21-4963-9453-1d4a59d2fc48", + "createdAt": "2021-05-18T08:40:14.088Z", + "updatedAt": "2021-05-18T08:40:14.088Z", + "digits": "0006", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "y2wLlb4FV6PehGGAmj9akMnwkzl2" + }, + { + "id": "17b65cce-72e3-4e86-ae6a-38a17207b3e6", + "circleCardId": "97a100c4-31bb-4e95-8dd0-25820f013633", + "createdAt": "2021-05-18T08:40:14.088Z", + "updatedAt": "2021-05-18T08:40:14.089Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "2HM9WnVvr9aDYbckjCo4cIDjncY2" + }, + { + "id": "1a3e7e34-01c5-4c1a-bf00-7cdba3b49f3e", + "circleCardId": "14e3a157-6714-46e1-9648-541ec454917b", + "createdAt": "2021-05-18T08:40:14.089Z", + "updatedAt": "2021-05-18T08:40:14.090Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2" + }, + { + "id": "0d3651da-faac-4135-8e4c-46c41a30b678", + "circleCardId": "898b14d2-f816-40ff-a88f-56c7c19cf6fd", + "createdAt": "2021-05-18T08:40:14.082Z", + "updatedAt": "2021-05-18T08:40:14.083Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "no verification", + "avsCheck": "no verification", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + { + "id": "12c3fe6f-8a21-4a53-9293-530a31651290", + "circleCardId": "183a291e-6a04-4c3b-8da9-48f7a7112cb9", + "createdAt": "2021-05-18T08:40:14.085Z", + "updatedAt": "2021-05-18T08:40:14.085Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + { + "id": "1b2280a9-a9cc-4e5d-87d0-a80f101d77ba", + "circleCardId": "08bb72ff-c333-41b6-b811-36694d979878", + "createdAt": "2021-05-18T08:40:14.090Z", + "updatedAt": "2021-05-18T08:40:14.091Z", + "digits": "8090", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "WKODFO6A3VMqWLYE2rrmrSGRrKF2" + }, + { + "id": "25533db6-4fd5-4606-b477-90e885f1a7e5", + "circleCardId": "fcca39d1-bcdc-4f3d-813d-1108b8e11ee4", + "createdAt": "2021-05-18T08:40:14.094Z", + "updatedAt": "2021-05-18T08:40:14.095Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "no verification", + "avsCheck": "no verification", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2" + }, + { + "id": "27b36c07-bb18-40fa-af74-6aabed9a22d1", + "circleCardId": "b6352239-cc9a-44c7-9b9e-ec02022eba12", + "createdAt": "2021-05-18T08:40:14.095Z", + "updatedAt": "2021-05-18T08:40:14.096Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "P21SZrJ6z5YjyF8WFaHv5eRsoFo1" + }, + { + "id": "290e2649-8ae7-4e66-b4ba-044817358361", + "circleCardId": "3d81abc7-b6c4-4762-8999-6df4eeb3d24e", + "createdAt": "2021-05-18T08:40:14.096Z", + "updatedAt": "2021-05-18T08:40:14.097Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "no verification", + "avsCheck": "no verification", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + { + "id": "29225a20-fc52-4877-a391-a5eb7104c21a", + "circleCardId": "bfea80ba-db1d-4e4e-bf9a-83ff8cf2980e", + "createdAt": "2021-05-18T08:40:14.096Z", + "updatedAt": "2021-05-18T08:40:14.097Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + { + "id": "29f0fe31-b43c-407b-b80e-dc174011e2cb", + "circleCardId": "f0277bb5-7e01-4cf7-b127-f17551efb584", + "createdAt": "2021-05-18T08:40:14.097Z", + "updatedAt": "2021-05-18T08:40:14.098Z", + "digits": "0006", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "b0Kxsd0x4OMLeOlDnheysBz5THo1" + }, + { + "id": "2bfd94b1-3c30-454c-8d47-647d1d3f461c", + "circleCardId": "3829e16e-773e-4557-bc6c-c054678d42b2", + "createdAt": "2021-05-18T08:40:14.098Z", + "updatedAt": "2021-05-18T08:40:14.099Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2" + }, + { + "id": "2c2c927b-3746-4df1-8467-644a1c0b7626", + "circleCardId": "edfcd0ee-ab1e-447f-8aa2-fafbc6416241", + "createdAt": "2021-05-18T08:40:14.098Z", + "updatedAt": "2021-05-18T08:40:14.099Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + { + "id": "2d0603bb-ca88-4a4c-b5e6-74a63426032b", + "circleCardId": "a46dd219-b6a6-445b-9f3c-59b584c11719", + "createdAt": "2021-05-18T08:40:14.099Z", + "updatedAt": "2021-05-18T08:40:14.100Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "2HM9WnVvr9aDYbckjCo4cIDjncY2" + }, + { + "id": "2ef4e4b7-3739-4f48-a590-e908a0af8419", + "circleCardId": "6250bffe-4c92-4896-82ab-d37c22bcff6f", + "createdAt": "2021-05-18T08:40:14.100Z", + "updatedAt": "2021-05-18T08:40:14.100Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "RN4V4T2Z4gf2ld9QhwanrQbSnP23" + }, + { + "id": "2faeaa61-8998-4eff-b03f-b4588f564ac4", + "circleCardId": "1309c7b2-f303-40eb-bef9-46a61cdfdfec", + "createdAt": "2021-05-18T08:40:14.100Z", + "updatedAt": "2021-05-18T08:40:14.101Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "Wz0ZgOvKnafrjLDeAeWqx182uBq2" + }, + { + "id": "329d73e0-041b-4139-9163-cb0e56919032", + "circleCardId": "369a5aa6-15b0-4a64-a5c5-4c2c16017464", + "createdAt": "2021-05-18T08:40:14.101Z", + "updatedAt": "2021-05-18T08:40:14.102Z", + "digits": "0006", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "b0Kxsd0x4OMLeOlDnheysBz5THo1" + }, + { + "id": "351b8c5e-5c97-418d-a986-4b1fe7fca81a", + "circleCardId": "2c6a380c-4e99-46b4-9e4d-3d3e2d1c20b2", + "createdAt": "2021-05-18T08:40:14.102Z", + "updatedAt": "2021-05-18T08:40:14.102Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "P21SZrJ6z5YjyF8WFaHv5eRsoFo1" + }, + { + "id": "35722e7d-b933-42f4-8025-2c39c6aa1da6", + "circleCardId": "6d4ccb1b-af35-4fe9-8645-a60fac1d6c13", + "createdAt": "2021-05-18T08:40:14.102Z", + "updatedAt": "2021-05-18T08:40:14.103Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + { + "id": "368bd20d-3bd5-4ed9-86fb-6c84152ae5a0", + "circleCardId": "8c5bc519-878b-40d6-9300-ecdb6b7e7aca", + "createdAt": "2021-05-18T08:40:14.103Z", + "updatedAt": "2021-05-18T08:40:14.104Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + { + "id": "381204e2-5e5f-4edf-a869-16375cf2ebfd", + "circleCardId": "be9a6133-9207-43a7-8242-192679ae8bf7", + "createdAt": "2021-05-18T08:40:14.104Z", + "updatedAt": "2021-05-18T08:40:14.104Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2" + }, + { + "id": "3867ac82-7eac-4e4d-9c97-a18c9cb8f021", + "circleCardId": "00cb92ca-8c27-41dc-8558-1a9d4036399d", + "createdAt": "2021-05-18T08:40:14.104Z", + "updatedAt": "2021-05-18T08:40:14.105Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + { + "id": "39bcdf0f-57d0-45dc-b64e-bcda06a7d1cc", + "circleCardId": "fdb6a15e-8c03-432e-8751-fd1cf2253cdb", + "createdAt": "2021-05-18T08:40:14.105Z", + "updatedAt": "2021-05-18T08:40:14.106Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "no verification", + "avsCheck": "no verification", + "userId": "Sxv19oCvKAZq2vntJdYCTYSpWWN2" + }, + { + "id": "3b73cf25-661e-46e4-81b2-ae2e8d0561fc", + "circleCardId": "079cc214-6576-41ad-9f14-418b0999412e", + "createdAt": "2021-05-18T08:40:14.106Z", + "updatedAt": "2021-05-18T08:40:14.106Z", + "digits": "1111", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "0gzqlV9O9vWWe6i2wagAZHMMDDD2" + }, + { + "id": "3d6ee220-2b7f-4acd-93cd-4638f79119f6", + "circleCardId": "a4aa7cba-e698-4995-8cac-366d2be1282b", + "createdAt": "2021-05-18T08:40:14.106Z", + "updatedAt": "2021-05-18T08:40:14.107Z", + "digits": "0006", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "y2wLlb4FV6PehGGAmj9akMnwkzl2" + }, + { + "id": "3e2af28d-9599-45aa-97cd-e58031ed571c", + "circleCardId": "54b059fd-b6a8-4128-81a6-7c7d3fae2211", + "createdAt": "2021-05-18T08:40:14.107Z", + "updatedAt": "2021-05-18T08:40:14.108Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "Wz0ZgOvKnafrjLDeAeWqx182uBq2" + }, + { + "id": "402c805b-95c7-4674-920a-ef932dff425a", + "circleCardId": "6c39d717-24a8-492d-8ca9-5db1ced3e830", + "createdAt": "2021-05-18T08:40:14.108Z", + "updatedAt": "2021-05-18T08:40:14.108Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2" + }, + { + "id": "422e2efb-c64a-4679-8387-8862b1588840", + "circleCardId": "1a088964-926a-4022-89db-0deb0de1d697", + "createdAt": "2021-05-18T08:40:14.108Z", + "updatedAt": "2021-05-18T08:40:14.109Z", + "digits": "0006", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "y2wLlb4FV6PehGGAmj9akMnwkzl2" + }, + { + "id": "4265f3fe-6b46-400c-83c1-c090f24b0a05", + "circleCardId": "9ff53a07-14b7-46a0-a31a-beb778a544d7", + "createdAt": "2021-05-18T08:40:14.109Z", + "updatedAt": "2021-05-18T08:40:14.110Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "5Bi1KZGIYzW5UIljHgBlO98NXaI2" + }, + { + "id": "4455e524-378d-46ca-88e8-d82263e3b359", + "circleCardId": "23648443-6907-4db0-b284-aef1ef1422fd", + "createdAt": "2021-05-18T08:40:14.110Z", + "updatedAt": "2021-05-18T08:40:14.111Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "P21SZrJ6z5YjyF8WFaHv5eRsoFo1" + }, + { + "id": "479bd585-1216-4fe6-a6e6-795169cd5cbe", + "circleCardId": "eaed3f36-cd91-4948-84ce-4a9adbbcc912", + "createdAt": "2021-05-18T08:40:14.111Z", + "updatedAt": "2021-05-18T08:40:14.112Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "P21SZrJ6z5YjyF8WFaHv5eRsoFo1" + }, + { + "id": "4825d0cc-cbe4-46e0-8a19-b527d6b02515", + "circleCardId": "d9cac7b9-c0e3-49cd-ac2f-1e8d0ce29b55", + "createdAt": "2021-05-18T08:40:14.111Z", + "updatedAt": "2021-05-18T08:40:14.112Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "P21SZrJ6z5YjyF8WFaHv5eRsoFo1" + }, + { + "id": "49cdacee-5331-4222-960a-6dc776f1640f", + "circleCardId": "b8121aba-7b0b-4d54-83aa-d4788b3b140f", + "createdAt": "2021-05-18T08:40:14.112Z", + "updatedAt": "2021-05-18T08:40:14.113Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "P21SZrJ6z5YjyF8WFaHv5eRsoFo1" + }, + { + "id": "4a7a25ba-5861-4822-a6d1-55a7e4612c89", + "circleCardId": "0a036f37-1c27-468d-ac71-c5555f075608", + "createdAt": "2021-05-18T08:40:14.113Z", + "updatedAt": "2021-05-18T08:40:14.113Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + { + "id": "4b3fe9b6-51d6-4012-a13f-9a0cc0c3b038", + "circleCardId": "9f65f7c8-f945-4e48-9497-1636912292b1", + "createdAt": "2021-05-18T08:40:14.113Z", + "updatedAt": "2021-05-18T08:40:14.114Z", + "digits": "0006", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "b0Kxsd0x4OMLeOlDnheysBz5THo1" + }, + { + "id": "4da6f08e-8c8b-4be6-b02e-386abfd20c1b", + "circleCardId": "d95b54b6-85da-452b-ac47-60a2d91e78c6", + "createdAt": "2021-05-18T08:40:14.114Z", + "updatedAt": "2021-05-18T08:40:14.115Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + { + "id": "4e40b470-fc0a-45ad-8e2a-32dfded0f190", + "circleCardId": "83aa9f0f-b612-46f5-9f1f-54b52bf15157", + "createdAt": "2021-05-18T08:40:14.115Z", + "updatedAt": "2021-05-18T08:40:14.115Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "no verification", + "avsCheck": "no verification", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2" + }, + { + "id": "5108dfec-a7b1-4d88-998a-828ac991acd5", + "circleCardId": "beb85fd6-8495-4171-90c0-3ee1e929fdca", + "createdAt": "2021-05-18T08:40:14.115Z", + "updatedAt": "2021-05-18T08:40:14.116Z", + "digits": "0006", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "Sxv19oCvKAZq2vntJdYCTYSpWWN2" + }, + { + "id": "5167e82e-e709-48aa-b8b8-4586e6e0bb94", + "circleCardId": "1d5cbbfb-eded-4742-8e43-30ca4046dc46", + "createdAt": "2021-05-18T08:40:14.116Z", + "updatedAt": "2021-05-18T08:40:14.117Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "5Bi1KZGIYzW5UIljHgBlO98NXaI2" + }, + { + "id": "51cdb580-2e60-436e-8c1c-9cae3d52c336", + "circleCardId": "3cb93465-20c3-4ad3-83d3-2af6b152ea2a", + "createdAt": "2021-05-18T08:40:14.117Z", + "updatedAt": "2021-05-18T08:40:14.117Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "Wz0ZgOvKnafrjLDeAeWqx182uBq2" + }, + { + "id": "53ac2bc5-037a-4b58-a60e-643f3ddfcf1f", + "circleCardId": "209d3758-2f53-4d2a-8653-c59f8a4b6120", + "createdAt": "2021-05-18T08:40:14.117Z", + "updatedAt": "2021-05-18T08:40:14.118Z", + "digits": "0006", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "XMAGwJIOilXUABsdC7KWsDY2v4E3" + }, + { + "id": "55a1b873-d694-44fa-b4d4-ced44a16553d", + "circleCardId": "206c75ab-e2df-46ad-bf74-99a1898accef", + "createdAt": "2021-05-18T08:40:14.118Z", + "updatedAt": "2021-05-18T08:40:14.119Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "h59V0do13qhpeH9xDyoLaCZucTm1" + }, + { + "id": "57030f8f-da87-44fc-8001-d0dabbff6dcd", + "circleCardId": "4c4f98c2-ce93-4e8f-9be7-47345bca4ba9", + "createdAt": "2021-05-18T08:40:14.119Z", + "updatedAt": "2021-05-18T08:40:14.120Z", + "digits": "0006", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "b0Kxsd0x4OMLeOlDnheysBz5THo1" + }, + { + "id": "58f49768-c13b-4ced-b3ec-d112c298bb8d", + "circleCardId": "4d217e08-c00f-4ec0-b1ac-d6f2d74c6483", + "createdAt": "2021-05-18T08:40:14.120Z", + "updatedAt": "2021-05-18T08:40:14.121Z", + "digits": "0006", + "network": "VISA", + "cvvCheck": "no verification", + "avsCheck": "no verification", + "userId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1" + }, + { + "id": "5c283616-7442-44c9-ab83-ac22e9f79430", + "circleCardId": "4b8d3879-0267-4e1a-99a9-a0b894a9a4ed", + "createdAt": "2021-05-18T08:40:14.121Z", + "updatedAt": "2021-05-18T08:40:14.122Z", + "digits": "0006", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "2HM9WnVvr9aDYbckjCo4cIDjncY2" + }, + { + "id": "5f35a8ca-274d-48cb-b80a-71b4214ce061", + "circleCardId": "0364a5f2-f399-4460-88ae-a68ee5db106f", + "createdAt": "2021-05-18T08:40:14.122Z", + "updatedAt": "2021-05-18T08:40:14.123Z", + "digits": "0006", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "b0Kxsd0x4OMLeOlDnheysBz5THo1" + }, + { + "id": "61076520-ec64-4313-a791-1d69d0e2308a", + "circleCardId": "807ccc6c-9f3c-45d4-9458-ce92cbec7143", + "createdAt": "2021-05-18T08:40:14.124Z", + "updatedAt": "2021-05-18T08:40:14.124Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + { + "id": "62e367b3-6e16-44d8-9407-d5f9486924f4", + "circleCardId": "7a8430b7-d7b7-41d1-872b-48e444ea42a4", + "createdAt": "2021-05-18T08:40:14.124Z", + "updatedAt": "2021-05-18T08:40:14.125Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2" + }, + { + "id": "63ea9f37-0866-4576-baad-74b09da55a8a", + "circleCardId": "3819fca3-fac6-4e3c-9ab4-25f770a1c348", + "createdAt": "2021-05-18T08:40:14.125Z", + "updatedAt": "2021-05-18T08:40:14.126Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + { + "id": "6482f011-df90-4e18-89ea-89e28c51f234", + "circleCardId": "147e2a64-2dd9-4e83-9aed-57b623b131c0", + "createdAt": "2021-05-18T08:40:14.125Z", + "updatedAt": "2021-05-18T08:40:14.126Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "fail", + "avsCheck": "no verification", + "userId": "RN4V4T2Z4gf2ld9QhwanrQbSnP23" + }, + { + "id": "67a07784-215f-44d5-8c70-f8942d615cf2", + "circleCardId": "bfd8e6b5-e0fe-4846-90f7-d07dacaba3d9", + "createdAt": "2021-05-18T08:40:14.126Z", + "updatedAt": "2021-05-18T08:40:14.127Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + { + "id": "681bb36e-6f7c-4151-9bc2-6c0a68c1f8f5", + "circleCardId": "ad1e1277-7350-4877-895c-cda570af23ba", + "createdAt": "2021-05-18T08:40:14.127Z", + "updatedAt": "2021-05-18T08:40:14.128Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + { + "id": "6a3236c1-b4e1-407d-bf62-ea7947feefe8", + "circleCardId": "bdad3651-8f36-49f3-9161-bd8091f49050", + "createdAt": "2021-05-18T08:40:14.128Z", + "updatedAt": "2021-05-18T08:40:14.128Z", + "digits": "0006", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "Sxv19oCvKAZq2vntJdYCTYSpWWN2" + }, + { + "id": "6b5de506-d0cf-4635-a0ee-8185a300f3ba", + "circleCardId": "17c6cf31-1d62-4642-8be8-e6f7e97e5962", + "createdAt": "2021-05-18T08:40:14.128Z", + "updatedAt": "2021-05-18T08:40:14.129Z", + "digits": "0006", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "b0Kxsd0x4OMLeOlDnheysBz5THo1" + }, + { + "id": "6ce969b5-241c-4154-a25e-0e49f840b34a", + "circleCardId": "d3ac415e-839d-4c2e-b4d8-489a35da6938", + "createdAt": "2021-05-18T08:40:14.129Z", + "updatedAt": "2021-05-18T08:40:14.130Z", + "digits": "0006", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "b0Kxsd0x4OMLeOlDnheysBz5THo1" + }, + { + "id": "6e1f5a4c-f0f6-4ef0-8a76-7542caa33a68", + "circleCardId": "c7519490-6d00-4886-a21c-420b86c49944", + "createdAt": "2021-05-18T08:40:14.129Z", + "updatedAt": "2021-05-18T08:40:14.130Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + { + "id": "707e4ba4-7520-498d-b077-b2db650200b9", + "circleCardId": "cd164d37-6f5b-4b20-8a36-d6840772daa8", + "createdAt": "2021-05-18T08:40:14.130Z", + "updatedAt": "2021-05-18T08:40:14.131Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "no verification", + "avsCheck": "no verification", + "userId": "Sxv19oCvKAZq2vntJdYCTYSpWWN2" + }, + { + "id": "71fccffd-14f1-409a-97bb-09765f8a0b98", + "circleCardId": "6dafed5e-6a32-4f0d-a025-9180d4bc1490", + "createdAt": "2021-05-18T08:40:14.131Z", + "updatedAt": "2021-05-18T08:40:14.132Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "Wz0ZgOvKnafrjLDeAeWqx182uBq2" + }, + { + "id": "72bbd9dc-3d01-4f2e-af4c-95adcb33f326", + "circleCardId": "9aea6a22-36a2-4315-aca4-eb91e225c2de", + "createdAt": "2021-05-18T08:40:14.132Z", + "updatedAt": "2021-05-18T08:40:14.132Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "no verification", + "avsCheck": "no verification", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + { + "id": "77190ee7-652b-4e3e-95ea-e8570a52b649", + "circleCardId": "2af62258-ae5f-4422-92ed-7dbced456e8e", + "createdAt": "2021-05-18T08:40:14.134Z", + "updatedAt": "2021-05-18T08:40:14.134Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "P21SZrJ6z5YjyF8WFaHv5eRsoFo1" + }, + { + "id": "78342511-79f3-44fe-94ee-e1816efe4f02", + "circleCardId": "bddef98a-3638-448d-b7a2-13f8726e5fde", + "createdAt": "2021-05-18T08:40:14.134Z", + "updatedAt": "2021-05-18T08:40:14.135Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "2HM9WnVvr9aDYbckjCo4cIDjncY2" + }, + { + "id": "793ee515-5666-4df3-a8bb-de01a0a382be", + "circleCardId": "25777018-7943-4279-955a-38679aad48d9", + "createdAt": "2021-05-18T08:40:14.135Z", + "updatedAt": "2021-05-18T08:40:14.135Z", + "digits": "0006", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "y2wLlb4FV6PehGGAmj9akMnwkzl2" + }, + { + "id": "79ce8aad-73d0-4e6d-b039-b57bf810ea37", + "circleCardId": "8f92b3fb-757f-4198-8be0-a14de4932c25", + "createdAt": "2021-05-18T08:40:14.135Z", + "updatedAt": "2021-05-18T08:40:14.136Z", + "digits": "0006", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "b0Kxsd0x4OMLeOlDnheysBz5THo1" + }, + { + "id": "7b284f88-d6ca-424f-8e7e-6ccaac3a1b98", + "circleCardId": "d36696d0-0868-45c9-980c-aa91ee9f74cf", + "createdAt": "2021-05-18T08:40:14.135Z", + "updatedAt": "2021-05-18T08:40:14.136Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2" + }, + { + "id": "7da5a61c-64e6-46db-9963-b455ede5389d", + "circleCardId": "770556dc-331b-4b29-91d6-d2be29acd6b1", + "createdAt": "2021-05-18T08:40:14.136Z", + "updatedAt": "2021-05-18T08:40:14.137Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2" + }, + { + "id": "7f17a5ed-e4b9-4e4b-9ca9-10a360dc8505", + "circleCardId": "d817a3ac-e487-4003-8bff-fbeee4f162f7", + "createdAt": "2021-05-18T08:40:14.137Z", + "updatedAt": "2021-05-18T08:40:14.138Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "2HM9WnVvr9aDYbckjCo4cIDjncY2" + }, + { + "id": "7e8e6a74-f013-4138-912f-9cc9a5c8eb24", + "circleCardId": "91b8f95e-b9d1-4641-913d-a14048537708", + "createdAt": "2021-05-18T08:40:14.137Z", + "updatedAt": "2021-05-18T08:40:14.138Z", + "digits": "0006", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "b0Kxsd0x4OMLeOlDnheysBz5THo1" + }, + { + "id": "806ccc56-1bab-4abf-8dc0-cd4a189042c8", + "circleCardId": "2de86dcd-13fc-4c23-b810-01794f3dcac9", + "createdAt": "2021-05-18T08:40:14.138Z", + "updatedAt": "2021-05-18T08:40:14.139Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2" + }, + { + "id": "81263804-e428-4c0f-aee8-aac100a8c615", + "circleCardId": "4abffd1b-807d-4730-b29b-7aefffba9126", + "createdAt": "2021-05-18T08:40:14.139Z", + "updatedAt": "2021-05-18T08:40:14.140Z", + "digits": "0006", + "network": "VISA", + "cvvCheck": "no verification", + "avsCheck": "no verification", + "userId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1" + }, + { + "id": "8251a6c6-102e-4734-a2f6-38ce3c1bf157", + "circleCardId": "3cb0047e-e36f-457e-bb66-517b95b276b8", + "createdAt": "2021-05-18T08:40:14.140Z", + "updatedAt": "2021-05-18T08:40:14.140Z", + "digits": "0006", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "b0Kxsd0x4OMLeOlDnheysBz5THo1" + }, + { + "id": "82c7b3bb-3cf1-495e-a1c5-9514c1f6cda8", + "circleCardId": "11932382-f8f8-4d77-b55b-33a9438f524e", + "createdAt": "2021-05-18T08:40:14.140Z", + "updatedAt": "2021-05-18T08:40:14.141Z", + "digits": "0006", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "b0Kxsd0x4OMLeOlDnheysBz5THo1" + }, + { + "id": "8688dfe5-2d4c-427d-921d-3898f45f2e98", + "circleCardId": "1bb9c284-7beb-4cb5-9004-81963c8ba43b", + "createdAt": "2021-05-18T08:40:14.141Z", + "updatedAt": "2021-05-18T08:40:14.142Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "P21SZrJ6z5YjyF8WFaHv5eRsoFo1" + }, + { + "id": "871ae21c-88c6-4553-bc29-568a2d343721", + "circleCardId": "1bba31c7-cf83-42d9-8a4e-47b43977c9c1", + "createdAt": "2021-05-18T08:40:14.142Z", + "updatedAt": "2021-05-18T08:40:14.142Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + { + "id": "8d7ebe5c-9547-44a0-99aa-217d623f42c2", + "circleCardId": "0b6b85d0-ff0a-41dc-9822-cb05cb327df4", + "createdAt": "2021-05-18T08:40:14.143Z", + "updatedAt": "2021-05-18T08:40:14.144Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "no verification", + "avsCheck": "no verification", + "userId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1" + }, + { + "id": "040a04f7-713d-46df-ae2d-28a73615e699", + "circleCardId": "8fd8e704-9d9e-425a-acb6-2997788ab04d", + "createdAt": "2021-05-18T08:40:14.157Z", + "updatedAt": "2021-05-18T08:40:14.158Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "2HM9WnVvr9aDYbckjCo4cIDjncY2" + }, + { + "id": "0b67bfcb-4af0-4c02-85ae-32f22a3abe02", + "circleCardId": "bb56c928-a9f2-43a4-b309-62147b286a5a", + "createdAt": "2021-05-18T08:40:14.160Z", + "updatedAt": "2021-05-18T08:40:14.160Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + { + "id": "05fdcbd7-e16c-47c9-bcff-27dcda711141", + "circleCardId": "614f4699-de0d-403d-91ef-6c10eb0507ec", + "createdAt": "2021-05-18T08:40:14.162Z", + "updatedAt": "2021-05-18T08:40:14.163Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "WKODFO6A3VMqWLYE2rrmrSGRrKF2" + }, + { + "id": "0fb1b45d-0cc5-4005-81b1-4c8462e14a65", + "circleCardId": "6d88bf0c-96d1-4458-9b06-816a6760e798", + "createdAt": "2021-05-18T08:40:14.165Z", + "updatedAt": "2021-05-18T08:40:14.165Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2" + }, + { + "id": "02cd176f-3479-445c-bbb5-452528282b2b", + "circleCardId": "3ed5182c-db66-4cef-aedd-7f4d2ee25bcc", + "createdAt": "2021-05-18T08:40:14.167Z", + "updatedAt": "2021-05-18T08:40:14.167Z", + "digits": "0006", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "y2wLlb4FV6PehGGAmj9akMnwkzl2" + }, + { + "id": "09410e41-8fe9-491b-b928-163a57e3dea6", + "circleCardId": "bf3e024a-0ee8-41ff-aa4e-b9cf7cce44d5", + "createdAt": "2021-05-18T08:40:14.170Z", + "updatedAt": "2021-05-18T08:40:14.170Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "P21SZrJ6z5YjyF8WFaHv5eRsoFo1" + }, + { + "id": "14830c05-9828-4e91-bfb6-28b6b6e43e35", + "circleCardId": "4ef1b4c8-fb51-4e8f-8631-a4318b612b63", + "createdAt": "2021-05-18T08:40:14.171Z", + "updatedAt": "2021-05-18T08:40:14.172Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + { + "id": "159109ab-5bb3-495f-8a3e-d7661a835503", + "circleCardId": "95b9495f-c2f5-4e47-b4f4-1d15f5d8c6ee", + "createdAt": "2021-05-18T08:40:14.173Z", + "updatedAt": "2021-05-18T08:40:14.174Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "Wz0ZgOvKnafrjLDeAeWqx182uBq2" + }, + { + "id": "12a07ec9-f9aa-4715-bf67-b27564eab32a", + "circleCardId": "e242fe3c-d82b-44a0-8e80-e1c162dd1a06", + "createdAt": "2021-05-18T08:40:14.174Z", + "updatedAt": "2021-05-18T08:40:14.175Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "skBkfQh8E1f4eOGBSVLaiuJ097v1" + }, + { + "id": "16456dc2-8832-4e6b-9850-52ad626cd4fd", + "circleCardId": "e7f97c2d-f47b-465c-aeeb-2c99da6187b6", + "createdAt": "2021-05-18T08:40:14.176Z", + "updatedAt": "2021-05-18T08:40:14.177Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2" + }, + { + "id": "17068acf-2691-44a5-a309-cf907b4d29fd", + "circleCardId": "972fea1a-f39f-4818-bfcb-2ea7bf3ec6a3", + "createdAt": "2021-05-18T08:40:14.177Z", + "updatedAt": "2021-05-18T08:40:14.178Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "RN4V4T2Z4gf2ld9QhwanrQbSnP23" + }, + { + "id": "199e6e76-bfed-435f-81d5-96754618c7ff", + "circleCardId": "091ebed9-b815-4a17-b93e-f294e553b92f", + "createdAt": "2021-05-18T08:40:14.179Z", + "updatedAt": "2021-05-18T08:40:14.179Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "no verification", + "avsCheck": "no verification", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2" + }, + { + "id": "1e99d969-888c-470a-90c0-d49b56879aed", + "circleCardId": "257c65af-c9ab-4028-a45c-750a630bc93f", + "createdAt": "2021-05-18T08:40:14.180Z", + "updatedAt": "2021-05-18T08:40:14.181Z", + "digits": "0006", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "y2wLlb4FV6PehGGAmj9akMnwkzl2" + }, + { + "id": "1b1cedb4-4912-4d20-9eb5-287afdbc2fa4", + "circleCardId": "fdd9e388-5024-4fc4-89bd-9109f6e5130f", + "createdAt": "2021-05-18T08:40:14.182Z", + "updatedAt": "2021-05-18T08:40:14.183Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "5Bi1KZGIYzW5UIljHgBlO98NXaI2" + }, + { + "id": "0ec88fb4-3c8c-4265-971a-4aa8f02ed8cd", + "circleCardId": "0377c5e8-fb99-428d-8514-1c5a1c3ad050", + "createdAt": "2021-05-18T08:40:14.184Z", + "updatedAt": "2021-05-18T08:40:14.184Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2" + }, + { + "id": "2185ca88-2775-4a6a-a75a-397e6ed9f309", + "circleCardId": "b038d619-3232-47ad-9ff1-fb06192ed6fa", + "createdAt": "2021-05-18T08:40:14.185Z", + "updatedAt": "2021-05-18T08:40:14.186Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "P21SZrJ6z5YjyF8WFaHv5eRsoFo1" + }, + { + "id": "2314d4f2-faae-40fa-aa00-4a57f34a0d0f", + "circleCardId": "3e6bcb14-ce27-41f0-8cee-193c0c60aef9", + "createdAt": "2021-05-18T08:40:14.187Z", + "updatedAt": "2021-05-18T08:40:14.188Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + { + "id": "13596755-c2f5-4edf-b237-8e070d8d3260", + "circleCardId": "b14dfb19-33b2-4287-854e-7860df510f46", + "createdAt": "2021-05-18T08:40:14.191Z", + "updatedAt": "2021-05-18T08:40:14.192Z", + "digits": "0006", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1" + }, + { + "id": "1d036016-3431-4205-95ea-360c890e1dbf", + "circleCardId": "52b06da2-71b2-412f-a6ef-c5556d93ad83", + "createdAt": "2021-05-18T08:40:14.192Z", + "updatedAt": "2021-05-18T08:40:14.193Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + { + "id": "27747ea6-98ce-494c-8b06-8f3720897e67", + "circleCardId": "f3fb8bba-fdb7-4d8d-920a-6c6f1f15ceea", + "createdAt": "2021-05-18T08:40:14.194Z", + "updatedAt": "2021-05-18T08:40:14.194Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + { + "id": "258ab551-c7aa-4dcd-8d38-576781a198f5", + "circleCardId": "da90eab1-aaca-406e-83f7-2836261f8622", + "createdAt": "2021-05-18T08:40:14.195Z", + "updatedAt": "2021-05-18T08:40:14.196Z", + "digits": "1111", + "network": "VISA", + "cvvCheck": "no verification", + "avsCheck": "no verification", + "userId": "DAawzIgIIifv6GfzdDJRJ1kZl7J2" + }, + { + "id": "2805976b-5fec-4626-b48e-67df1b354b71", + "circleCardId": "bf7f00d8-af58-4888-8f42-653f774f3025", + "createdAt": "2021-05-18T08:40:14.197Z", + "updatedAt": "2021-05-18T08:40:14.198Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "5Bi1KZGIYzW5UIljHgBlO98NXaI2" + }, + { + "id": "291a4dd4-d968-45e4-bf86-a01fa52f7883", + "circleCardId": "bc500b73-e7d7-4678-8ab9-e898404979eb", + "createdAt": "2021-05-18T08:40:14.198Z", + "updatedAt": "2021-05-18T08:40:14.199Z", + "digits": "0006", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "y2wLlb4FV6PehGGAmj9akMnwkzl2" + }, + { + "id": "2a888024-7c50-4324-a1f7-7b0b6ee47c18", + "circleCardId": "35b0d3b1-e7ee-4890-840f-e3542b460599", + "createdAt": "2021-05-18T08:40:14.201Z", + "updatedAt": "2021-05-18T08:40:14.202Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "no verification", + "avsCheck": "no verification", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2" + }, + { + "id": "2c22d073-273d-44ad-81fd-e76cf538f3cd", + "circleCardId": "de7b29b5-1368-408e-82a5-2528bfbe0066", + "createdAt": "2021-05-18T08:40:14.203Z", + "updatedAt": "2021-05-18T08:40:14.203Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "2HM9WnVvr9aDYbckjCo4cIDjncY2" + }, + { + "id": "2c4c6485-30eb-4d06-a5f7-ddd4f8306174", + "circleCardId": "8fa71121-eb34-4921-8f8f-74e8f167ac59", + "createdAt": "2021-05-18T08:40:14.204Z", + "updatedAt": "2021-05-18T08:40:14.205Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + { + "id": "2d5f22e5-8404-4c69-9617-cf2a0a4a7a45", + "circleCardId": "0934e877-97c0-472b-9dab-b09fba9acdad", + "createdAt": "2021-05-18T08:40:14.205Z", + "updatedAt": "2021-05-18T08:40:14.206Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "5Bi1KZGIYzW5UIljHgBlO98NXaI2" + }, + { + "id": "2f2a93ba-2b91-423b-9db6-2077541b0668", + "circleCardId": "80539329-bcba-44e7-ab8a-10b4f61dd19b", + "createdAt": "2021-05-18T08:40:14.207Z", + "updatedAt": "2021-05-18T08:40:14.207Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "P21SZrJ6z5YjyF8WFaHv5eRsoFo1" + }, + { + "id": "30078ef5-5d51-481c-96dd-8ba858fee10c", + "circleCardId": "b223db84-e47b-4f85-95bf-793d5b681247", + "createdAt": "2021-05-18T08:40:14.208Z", + "updatedAt": "2021-05-18T08:40:14.209Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "kDtKMg9SJ5R5zoit1h3vLNcVYsR2" + }, + { + "id": "3329d258-e799-47a8-a343-80ac673e5f09", + "circleCardId": "8eb7def3-1958-4940-a175-e43332de802e", + "createdAt": "2021-05-18T08:40:14.209Z", + "updatedAt": "2021-05-18T08:40:14.210Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "5Bi1KZGIYzW5UIljHgBlO98NXaI2" + }, + { + "id": "355e1f42-7c98-498e-a964-c7f757a8b103", + "circleCardId": "23fbbac7-bc48-4c0c-9cb5-d19777ac89a3", + "createdAt": "2021-05-18T08:40:14.211Z", + "updatedAt": "2021-05-18T08:40:14.211Z", + "digits": "0006", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "b0Kxsd0x4OMLeOlDnheysBz5THo1" + }, + { + "id": "38004bd6-fa1b-4ae7-b845-cb764beb3915", + "circleCardId": "89a03d5c-296d-4b93-82c9-e1a9dcd5e834", + "createdAt": "2021-05-18T08:40:14.214Z", + "updatedAt": "2021-05-18T08:40:14.215Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "5Bi1KZGIYzW5UIljHgBlO98NXaI2" + }, + { + "id": "38227d96-9caf-4704-ba68-2797f55227d3", + "circleCardId": "4dcb4c2f-fa33-4823-8841-b48b558b5c68", + "createdAt": "2021-05-18T08:40:14.215Z", + "updatedAt": "2021-05-18T08:40:14.216Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + { + "id": "3bc9e7a6-4524-44dc-b4a6-89434e840a40", + "circleCardId": "5e0c361e-3af6-477e-97ff-8e510992b572", + "createdAt": "2021-05-18T08:40:14.219Z", + "updatedAt": "2021-05-18T08:40:14.220Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2" + }, + { + "id": "3d7302fa-be10-4c8d-9b6e-4a2bb28bdd75", + "circleCardId": "5ad588eb-d11f-4196-b18d-7c3f6036f8a9", + "createdAt": "2021-05-18T08:40:14.221Z", + "updatedAt": "2021-05-18T08:40:14.221Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "P21SZrJ6z5YjyF8WFaHv5eRsoFo1" + }, + { + "id": "3f05676f-863b-48f9-80b1-d45b9e77d51c", + "circleCardId": "94443dbf-0b87-44f2-adf5-b585aa82cfa7", + "createdAt": "2021-05-18T08:40:14.222Z", + "updatedAt": "2021-05-18T08:40:14.223Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + { + "id": "435acc7d-a615-4b8d-a793-420902e5f759", + "circleCardId": "8f76dc0f-9827-42b6-961d-7a17610aec17", + "createdAt": "2021-05-18T08:40:14.225Z", + "updatedAt": "2021-05-18T08:40:14.225Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "no verification", + "avsCheck": "no verification", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2" + }, + { + "id": "430d2926-591e-481a-b351-f9481165608b", + "circleCardId": "bf314167-2e8e-46d0-a12a-4d1b31680ecb", + "createdAt": "2021-05-18T08:40:14.228Z", + "updatedAt": "2021-05-18T08:40:14.229Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2" + }, + { + "id": "471fbee2-e22a-422f-9b5e-e7afd632209a", + "circleCardId": "6045e435-a6a9-4fd4-87a4-50fc57ccf57c", + "createdAt": "2021-05-18T08:40:14.229Z", + "updatedAt": "2021-05-18T08:40:14.230Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + { + "id": "485ed61f-c58c-40ff-8cae-4d2f6f17be52", + "circleCardId": "94b3073b-d39f-420e-add8-1b3ad2c1ef77", + "createdAt": "2021-05-18T08:40:14.232Z", + "updatedAt": "2021-05-18T08:40:14.233Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + { + "id": "4aee0d17-a330-40e6-9ecb-f34c9554b4b5", + "circleCardId": "80f4c160-0db3-4257-bdc6-37f8bf0c9c48", + "createdAt": "2021-05-18T08:40:14.235Z", + "updatedAt": "2021-05-18T08:40:14.235Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2" + }, + { + "id": "4d600cd7-ee6c-4ca8-bc5a-3cc3ecba3be4", + "circleCardId": "783e58da-460a-441a-8a17-baa1df598b90", + "createdAt": "2021-05-18T08:40:14.236Z", + "updatedAt": "2021-05-18T08:40:14.237Z", + "digits": "0006", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "Sxv19oCvKAZq2vntJdYCTYSpWWN2" + }, + { + "id": "4e00f0e5-58f8-4c19-8b9a-b2826aaeafea", + "circleCardId": "685f13fa-9013-4fa9-929a-338ee52233bd", + "createdAt": "2021-05-18T08:40:14.237Z", + "updatedAt": "2021-05-18T08:40:14.238Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "2HM9WnVvr9aDYbckjCo4cIDjncY2" + }, + { + "id": "50d5d7c5-6a64-4876-bb4a-56e5abfb6f94", + "circleCardId": "b28dd4aa-b2b1-47a0-bbc4-b75cf94efa20", + "createdAt": "2021-05-18T08:40:14.239Z", + "updatedAt": "2021-05-18T08:40:14.239Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2" + }, + { + "id": "51b28aea-b7d5-4671-aea1-49dd13e95f31", + "circleCardId": "142a34ab-1a9d-4430-b801-1bde26211963", + "createdAt": "2021-05-18T08:40:14.241Z", + "updatedAt": "2021-05-18T08:40:14.242Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + { + "id": "52d2c563-b305-4d29-97f1-d7cea96d9ac1", + "circleCardId": "053e9d22-b49f-4c5f-bcd7-03675cccf6cc", + "createdAt": "2021-05-18T08:40:14.243Z", + "updatedAt": "2021-05-18T08:40:14.243Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "P21SZrJ6z5YjyF8WFaHv5eRsoFo1" + }, + { + "id": "56d5620d-eefd-4cf4-a324-5e37bc842b47", + "circleCardId": "ea08739b-3d2a-45f3-aa1c-690477956320", + "createdAt": "2021-05-18T08:40:14.245Z", + "updatedAt": "2021-05-18T08:40:14.245Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "2HM9WnVvr9aDYbckjCo4cIDjncY2" + }, + { + "id": "540c01df-40b0-4ae1-8d42-e7231176ce86", + "circleCardId": "56f12ded-1aa6-49c0-b674-fb6db053275f", + "createdAt": "2021-05-18T08:40:14.247Z", + "updatedAt": "2021-05-18T08:40:14.247Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2" + }, + { + "id": "55fbeba4-880f-4a3c-a63c-858eaba6ffc0", + "circleCardId": "c5cdc206-4c72-4248-a8df-6e23495168ad", + "createdAt": "2021-05-18T08:40:14.248Z", + "updatedAt": "2021-05-18T08:40:14.249Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + { + "id": "58b29c63-5981-4482-9c3f-766ac7d030af", + "circleCardId": "d0b20317-3cda-4a0b-b0af-3c0773200e5b", + "createdAt": "2021-05-18T08:40:14.250Z", + "updatedAt": "2021-05-18T08:40:14.250Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "WMzKDGJSlWM2Rjx9JVp9StB2Bni2" + }, + { + "id": "57d34321-2abc-4982-a86a-a60719133c09", + "circleCardId": "a84feb89-0db9-45fd-9549-8984583f2c5a", + "createdAt": "2021-05-18T08:40:14.252Z", + "updatedAt": "2021-05-18T08:40:14.252Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2" + }, + { + "id": "5a7f4ae1-45bc-4c96-b270-5f61fe92e416", + "circleCardId": "d916ffc4-9a33-499e-9dfc-ee07ee601fcf", + "createdAt": "2021-05-18T08:40:14.253Z", + "updatedAt": "2021-05-18T08:40:14.254Z", + "digits": "0006", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "5Bi1KZGIYzW5UIljHgBlO98NXaI2" + }, + { + "id": "5cddc89b-2b68-483a-94a0-c5612c30456c", + "circleCardId": "a7e3425d-be6d-4a44-bca2-90b433757db3", + "createdAt": "2021-05-18T08:40:14.256Z", + "updatedAt": "2021-05-18T08:40:14.257Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "5Bi1KZGIYzW5UIljHgBlO98NXaI2" + }, + { + "id": "5c2c3de6-8a24-4bb5-ae5e-089eefa12e45", + "circleCardId": "c34e3adf-d513-4af4-95dc-3baec6012b63", + "createdAt": "2021-05-18T08:40:14.258Z", + "updatedAt": "2021-05-18T08:40:14.259Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "no verification", + "avsCheck": "no verification", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2" + }, + { + "id": "60402aef-a583-4c7f-b0fe-d69cb822a0f0", + "circleCardId": "496adbf3-e629-421b-9dc3-71eba23c9e9c", + "createdAt": "2021-05-18T08:40:14.259Z", + "updatedAt": "2021-05-18T08:40:14.260Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + { + "id": "5f57274a-e165-4d63-bb81-7005bec1fca5", + "circleCardId": "1d122a89-1877-461c-acd2-132801ba73ae", + "createdAt": "2021-05-18T08:40:14.261Z", + "updatedAt": "2021-05-18T08:40:14.262Z", + "digits": "0006", + "network": "MASTERCARD", + "cvvCheck": "fail", + "avsCheck": "no verification", + "userId": "5Bi1KZGIYzW5UIljHgBlO98NXaI2" + }, + { + "id": "637d0c47-c8a7-4f96-a83c-58f13d548d35", + "circleCardId": "f1df2ca3-7dcc-4e0d-8b3e-b8d05ea8ba2f", + "createdAt": "2021-05-18T08:40:14.264Z", + "updatedAt": "2021-05-18T08:40:14.265Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "5Bi1KZGIYzW5UIljHgBlO98NXaI2" + }, + { + "id": "6462a6cf-b565-4d53-8d39-7075347707a8", + "circleCardId": "4a9fa440-d273-4dfd-ad1d-518ed20cbe45", + "createdAt": "2021-05-18T08:40:14.265Z", + "updatedAt": "2021-05-18T08:40:14.266Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "2HM9WnVvr9aDYbckjCo4cIDjncY2" + }, + { + "id": "66f3b178-dd82-4a06-bdb3-fac12c9c2e00", + "circleCardId": "83dacac1-eae7-4369-a757-8d514f82f41a", + "createdAt": "2021-05-18T08:40:14.267Z", + "updatedAt": "2021-05-18T08:40:14.267Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "2HM9WnVvr9aDYbckjCo4cIDjncY2" + }, + { + "id": "67a2887b-49d3-4722-a05e-6bced412639b", + "circleCardId": "a1506c70-a334-4fa6-bc71-3336a64ca97d", + "createdAt": "2021-05-18T08:40:14.268Z", + "updatedAt": "2021-05-18T08:40:14.269Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "2HM9WnVvr9aDYbckjCo4cIDjncY2" + }, + { + "id": "6882c14f-1a0e-4327-bab0-059d9288eca0", + "circleCardId": "0e255e86-c086-4b03-b1d9-3ccd232c7329", + "createdAt": "2021-05-18T08:40:14.269Z", + "updatedAt": "2021-05-18T08:40:14.270Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "Wz0ZgOvKnafrjLDeAeWqx182uBq2" + }, + { + "id": "6a32b85e-6d01-4d74-9400-6e44fe83b5b0", + "circleCardId": "f0521ac7-e8bd-4684-96e2-d5a5596c5047", + "createdAt": "2021-05-18T08:40:14.271Z", + "updatedAt": "2021-05-18T08:40:14.271Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + { + "id": "6befc5a5-67c6-4649-bd48-397e198e5a6f", + "circleCardId": "f5174fbd-cf57-4f99-94fc-2229bb0622e1", + "createdAt": "2021-05-18T08:40:14.272Z", + "updatedAt": "2021-05-18T08:40:14.273Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "5Bi1KZGIYzW5UIljHgBlO98NXaI2" + }, + { + "id": "6e3aeca4-ddb0-4031-a7e1-b1c11893d58c", + "circleCardId": "6d38263a-7361-47c4-ac60-f2f8d18990f5", + "createdAt": "2021-05-18T08:40:14.275Z", + "updatedAt": "2021-05-18T08:40:14.275Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2" + }, + { + "id": "716a66ed-cd92-4e53-812a-46e21b0f5b90", + "circleCardId": "7d234a1b-27eb-426d-86b2-6f2fb14aa7bb", + "createdAt": "2021-05-18T08:40:14.276Z", + "updatedAt": "2021-05-18T08:40:14.277Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2" + }, + { + "id": "739a102c-0bc2-4335-bcbf-97a5657770a0", + "circleCardId": "99a37867-673b-45e7-b1e5-5aa0907b0b87", + "createdAt": "2021-05-18T08:40:14.277Z", + "updatedAt": "2021-05-18T08:40:14.278Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "WKODFO6A3VMqWLYE2rrmrSGRrKF2" + }, + { + "id": "729a57dd-b161-4064-bdfc-b961942c7e96", + "circleCardId": "a35e31f4-0088-40e9-88cf-5baeba8c87a4", + "createdAt": "2021-05-18T08:40:14.282Z", + "updatedAt": "2021-05-18T08:40:14.283Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + { + "id": "7324fa58-463e-4cfe-a8b4-37b771edc2a2", + "circleCardId": "5eacddd1-3a05-42e5-92c5-a9fdc71315b6", + "createdAt": "2021-05-18T08:40:14.284Z", + "updatedAt": "2021-05-18T08:40:14.285Z", + "digits": "0006", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "b0Kxsd0x4OMLeOlDnheysBz5THo1" + }, + { + "id": "7795d36c-8fa0-4a3f-97a9-233ae9aa7a37", + "circleCardId": "8377e44e-da44-4a03-bb4b-4579f7df1196", + "createdAt": "2021-05-18T08:40:14.288Z", + "updatedAt": "2021-05-18T08:40:14.288Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "2HM9WnVvr9aDYbckjCo4cIDjncY2" + }, + { + "id": "7929a735-ee33-4802-b26d-2efd3067f422", + "circleCardId": "6f6dea6f-0438-4a65-9945-fe7f700e6b61", + "createdAt": "2021-05-18T08:40:14.289Z", + "updatedAt": "2021-05-18T08:40:14.290Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2" + }, + { + "id": "7a48b2f3-412e-4b41-a0a4-1cb999b1d9d8", + "circleCardId": "e4d68cf7-a754-4f4e-8557-8ebba9426ed3", + "createdAt": "2021-05-18T08:40:14.292Z", + "updatedAt": "2021-05-18T08:40:14.292Z", + "digits": "0006", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "b0Kxsd0x4OMLeOlDnheysBz5THo1" + }, + { + "id": "7b664bf4-4f89-4f6e-ba64-79aac3c910b2", + "circleCardId": "e99a7e96-4369-4f7b-8021-b8f23b2c5bbe", + "createdAt": "2021-05-18T08:40:14.293Z", + "updatedAt": "2021-05-18T08:40:14.294Z", + "digits": "0006", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "b0Kxsd0x4OMLeOlDnheysBz5THo1" + }, + { + "id": "7f942e2f-cbf7-4b14-aae2-853eaa9bb532", + "circleCardId": "bc7fca63-c2a0-4eac-b68d-c5d6b94b260f", + "createdAt": "2021-05-18T08:40:14.296Z", + "updatedAt": "2021-05-18T08:40:14.296Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2" + }, + { + "id": "80dc9bfe-387e-4aaf-a9dc-f738813a5ece", + "circleCardId": "0b8978d9-f06d-439d-a11f-a264be7ae6a0", + "createdAt": "2021-05-18T08:40:14.298Z", + "updatedAt": "2021-05-18T08:40:14.299Z", + "digits": "0006", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "y2wLlb4FV6PehGGAmj9akMnwkzl2" + }, + { + "id": "81acf4a6-f262-42c8-80d5-5156bb98f185", + "circleCardId": "c583bed1-a38b-4411-a19f-90770f347b25", + "createdAt": "2021-05-18T08:40:14.300Z", + "updatedAt": "2021-05-18T08:40:14.300Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "no verification", + "avsCheck": "no verification", + "userId": "Sxv19oCvKAZq2vntJdYCTYSpWWN2" + }, + { + "id": "82be3cf8-e0d7-42c1-85f6-5862dd555937", + "circleCardId": "6a2ac1a3-101a-4387-b751-9d077ce75273", + "createdAt": "2021-05-18T08:40:14.301Z", + "updatedAt": "2021-05-18T08:40:14.302Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "Wz0ZgOvKnafrjLDeAeWqx182uBq2" + }, + { + "id": "86ce22a8-5532-4655-8c59-7501489715bc", + "circleCardId": "96563efb-24db-41b2-9583-9feab90779d7", + "createdAt": "2021-05-18T08:40:14.304Z", + "updatedAt": "2021-05-18T08:40:14.304Z", + "digits": "0006", + "network": "VISA", + "cvvCheck": "no verification", + "avsCheck": "no verification", + "userId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1" + }, + { + "id": "89c548aa-b302-4126-810c-8f949dc1fbfe", + "circleCardId": "ce594e37-db43-4f30-a3e5-921c27b06cc2", + "createdAt": "2021-05-18T08:40:14.307Z", + "updatedAt": "2021-05-18T08:40:14.308Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "Wz0ZgOvKnafrjLDeAeWqx182uBq2" + }, + { + "id": "8e1ed663-eb80-4d7e-aa6b-56df028a0806", + "circleCardId": "fd5e1085-6abd-4db0-bc7d-82a0a0915b46", + "createdAt": "2021-05-18T08:40:14.308Z", + "updatedAt": "2021-05-18T08:40:14.309Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + { + "id": "9056d1a0-988e-4099-a37d-7163004bf96d", + "circleCardId": "a593e8cc-3633-4f08-99df-f6a5773b4a96", + "createdAt": "2021-05-18T08:40:14.312Z", + "updatedAt": "2021-05-18T08:40:14.312Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "no verification", + "avsCheck": "no verification", + "userId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1" + }, + { + "id": "91584f4e-e4a8-489e-92c2-b7b08b5e51a2", + "circleCardId": "67b5731c-0e70-48b1-9ff9-27bb9efe6e2e", + "createdAt": "2021-05-18T08:40:14.313Z", + "updatedAt": "2021-05-18T08:40:14.313Z", + "digits": "0006", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "Sxv19oCvKAZq2vntJdYCTYSpWWN2" + }, + { + "id": "91d6f450-537b-4117-b552-c6510d55afcb", + "circleCardId": "254e14db-ab2d-44ed-b313-4448fed7b61f", + "createdAt": "2021-05-18T08:40:14.314Z", + "updatedAt": "2021-05-18T08:40:14.315Z", + "digits": "0006", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "5Bi1KZGIYzW5UIljHgBlO98NXaI2" + }, + { + "id": "925ad53b-5229-4c01-bc36-6e629d611a62", + "circleCardId": "94eb0dac-4899-40c5-b014-095dcab0e756", + "createdAt": "2021-05-18T08:40:14.316Z", + "updatedAt": "2021-05-18T08:40:14.317Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "P21SZrJ6z5YjyF8WFaHv5eRsoFo1" + }, + { + "id": "93792c31-877c-4671-b8c1-3066165f0063", + "circleCardId": "9b28ff9e-0d08-492d-b8fb-114f4743ee8c", + "createdAt": "2021-05-18T08:40:14.318Z", + "updatedAt": "2021-05-18T08:40:14.319Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "2HM9WnVvr9aDYbckjCo4cIDjncY2" + }, + { + "id": "939f88dd-6a1b-4fc0-aeff-f87367998301", + "circleCardId": "50c95603-d0c6-415f-bb13-cccbeb5b0d24", + "createdAt": "2021-05-18T08:40:14.319Z", + "updatedAt": "2021-05-18T08:40:14.320Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "P21SZrJ6z5YjyF8WFaHv5eRsoFo1" + }, + { + "id": "940ba45b-2151-4623-83a1-52583ba832d8", + "circleCardId": "3ce9a032-7eb0-4c7a-a033-e26b5f0cc7ec", + "createdAt": "2021-05-18T08:40:14.323Z", + "updatedAt": "2021-05-18T08:40:14.323Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "Wz0ZgOvKnafrjLDeAeWqx182uBq2" + }, + { + "id": "9416d635-bd22-40f9-a6fd-2eefc20b8d17", + "circleCardId": "132ea4ab-c46c-4f58-9f99-17d8495490ff", + "createdAt": "2021-05-18T08:40:14.324Z", + "updatedAt": "2021-05-18T08:40:14.325Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "no verification", + "avsCheck": "no verification", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2" + }, + { + "id": "95a762a2-e592-4d78-8688-cf4c1231fbe0", + "circleCardId": "2030885a-5d89-416d-8c72-ff128f667818", + "createdAt": "2021-05-18T08:40:14.328Z", + "updatedAt": "2021-05-18T08:40:14.329Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "2HM9WnVvr9aDYbckjCo4cIDjncY2" + }, + { + "id": "96accb3a-cac1-4e05-81e9-7175c1b0f3e5", + "circleCardId": "d5614812-8ac7-434f-94dc-2a8e73041663", + "createdAt": "2021-05-18T08:40:14.331Z", + "updatedAt": "2021-05-18T08:40:14.331Z", + "digits": "8090", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "RN4V4T2Z4gf2ld9QhwanrQbSnP23" + }, + { + "id": "970cbfb0-783a-4010-bc7d-db88c8e3db59", + "circleCardId": "4edcded3-5567-4667-bb4c-93ea060c3149", + "createdAt": "2021-05-18T08:40:14.332Z", + "updatedAt": "2021-05-18T08:40:14.333Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + { + "id": "97125bde-8bf4-4d90-a462-14a643d33824", + "circleCardId": "e89258fe-5d4b-43bf-8911-7878ed931f3d", + "createdAt": "2021-05-18T08:40:14.333Z", + "updatedAt": "2021-05-18T08:40:14.334Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "5Bi1KZGIYzW5UIljHgBlO98NXaI2" + }, + { + "id": "972e852a-b33f-43bf-993c-27be0d24ae5d", + "circleCardId": "d9e9b1bf-e617-4efe-b666-62f3d4c3a46d", + "createdAt": "2021-05-18T08:40:14.335Z", + "updatedAt": "2021-05-18T08:40:14.335Z", + "digits": "0006", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1" + }, + { + "id": "99838f31-d607-41c2-99e9-2ef6a62d4d74", + "circleCardId": "1b8b2484-e491-45c9-b8de-c270d0130e81", + "createdAt": "2021-05-18T08:40:14.337Z", + "updatedAt": "2021-05-18T08:40:14.338Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + { + "id": "999d64b1-496b-4e12-8686-82a7b7e96b6f", + "circleCardId": "a3bb9d48-2af1-40e1-bbfc-e8546e7ad7ae", + "createdAt": "2021-05-18T08:40:14.339Z", + "updatedAt": "2021-05-18T08:40:14.339Z", + "digits": "1111", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "BONVnugkzuhlKnhSTvQSlYGZMEy1" + }, + { + "id": "9a162409-5f54-41f9-b98d-8da738136c8f", + "circleCardId": "1a38e801-7982-4c75-9048-978002f97bc7", + "createdAt": "2021-05-18T08:40:14.340Z", + "updatedAt": "2021-05-18T08:40:14.341Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "2HM9WnVvr9aDYbckjCo4cIDjncY2" + }, + { + "id": "9cc2ad86-79a7-4484-85be-a7d47173d4e8", + "circleCardId": "c57ebf50-7ce5-4fc8-a4f1-ea823f1f7d3d", + "createdAt": "2021-05-18T08:40:14.343Z", + "updatedAt": "2021-05-18T08:40:14.344Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2" + }, + { + "id": "9da72721-c7e5-4f3e-be23-757baecc2627", + "circleCardId": "e25e23dd-cd9d-46b3-8f27-16eaa0b22457", + "createdAt": "2021-05-18T08:40:14.344Z", + "updatedAt": "2021-05-18T08:40:14.345Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + { + "id": "9dbd8d1a-95b9-46bf-accd-f26adab9a5e1", + "circleCardId": "d17f0028-9a42-424a-90e9-09a81e793b0c", + "createdAt": "2021-05-18T08:40:14.346Z", + "updatedAt": "2021-05-18T08:40:14.346Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "no verification", + "avsCheck": "no verification", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2" + }, + { + "id": "9dccfee9-0815-46c2-8d8e-ed22b0c1519f", + "circleCardId": "40df8e4b-b60d-40a7-bb82-a3833abccc87", + "createdAt": "2021-05-18T08:40:14.347Z", + "updatedAt": "2021-05-18T08:40:14.348Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "P21SZrJ6z5YjyF8WFaHv5eRsoFo1" + }, + { + "id": "9e21b3c3-6da6-4198-af36-28507b2a98e0", + "circleCardId": "83ded171-c4a4-49e6-91b7-e4ce8106934d", + "createdAt": "2021-05-18T08:40:14.349Z", + "updatedAt": "2021-05-18T08:40:14.349Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "5Bi1KZGIYzW5UIljHgBlO98NXaI2" + }, + { + "id": "9e38e55a-a450-4b30-baeb-56b78117ef7f", + "circleCardId": "1e1aaf2c-492e-4315-aed3-15b60dacb105", + "createdAt": "2021-05-18T08:40:14.350Z", + "updatedAt": "2021-05-18T08:40:14.351Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "P21SZrJ6z5YjyF8WFaHv5eRsoFo1" + }, + { + "id": "9e8ab842-e93a-4883-a5e1-6b103b57978e", + "circleCardId": "48d1468b-f310-416e-87ba-afee4fa697ba", + "createdAt": "2021-05-18T08:40:14.352Z", + "updatedAt": "2021-05-18T08:40:14.353Z", + "digits": "1111", + "network": "VISA", + "cvvCheck": "no verification", + "avsCheck": "no verification", + "userId": "DAawzIgIIifv6GfzdDJRJ1kZl7J2" + }, + { + "id": "9f83bcb7-39ac-4fda-afe4-4270b90af88d", + "circleCardId": "49460e21-5c12-4e9b-bc29-b57fc5806a89", + "createdAt": "2021-05-18T08:40:14.353Z", + "updatedAt": "2021-05-18T08:40:14.354Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "2HM9WnVvr9aDYbckjCo4cIDjncY2" + }, + { + "id": "9fda336b-15fa-4b52-9d35-3134006220a4", + "circleCardId": "4e80158f-7df1-4a9c-a099-fbc8bab7a899", + "createdAt": "2021-05-18T08:40:14.355Z", + "updatedAt": "2021-05-18T08:40:14.356Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "2HM9WnVvr9aDYbckjCo4cIDjncY2" + }, + { + "id": "a03a98e8-f816-42df-a3aa-e4a43896a041", + "circleCardId": "852015e1-4eb8-4202-a2c1-c3a502fcb29a", + "createdAt": "2021-05-18T08:40:14.356Z", + "updatedAt": "2021-05-18T08:40:14.357Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "5Bi1KZGIYzW5UIljHgBlO98NXaI2" + }, + { + "id": "a047480e-cc26-4d15-adb3-7d86fd57d6bf", + "circleCardId": "b2522578-cd45-4d54-992d-a240bf656827", + "createdAt": "2021-05-18T08:40:14.358Z", + "updatedAt": "2021-05-18T08:40:14.358Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "no verification", + "avsCheck": "no verification", + "userId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1" + }, + { + "id": "a05d17f3-b66e-4d62-9501-d9bde0bb0b76", + "circleCardId": "b52efd53-437e-4e8f-8a1c-744e892c17c4", + "createdAt": "2021-05-18T08:40:14.359Z", + "updatedAt": "2021-05-18T08:40:14.360Z", + "digits": "1111", + "network": "VISA", + "cvvCheck": "no verification", + "avsCheck": "no verification", + "userId": "DAawzIgIIifv6GfzdDJRJ1kZl7J2" + }, + { + "id": "a0c40fe8-76c6-4afb-8de4-ece828d54a44", + "circleCardId": "c9e54c7a-374c-4d51-9bab-4b777386cf6f", + "createdAt": "2021-05-18T08:40:14.360Z", + "updatedAt": "2021-05-18T08:40:14.361Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "Wz0ZgOvKnafrjLDeAeWqx182uBq2" + }, + { + "id": "a10a2603-e9b1-4f97-a936-44875e2f3853", + "circleCardId": "1498ef44-c6f5-4350-b4bc-ead4cce53eba", + "createdAt": "2021-05-18T08:40:14.362Z", + "updatedAt": "2021-05-18T08:40:14.362Z", + "digits": "4242", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "WMzKDGJSlWM2Rjx9JVp9StB2Bni2" + }, + { + "id": "a1180192-e4e8-436a-a9b0-e3c15951689e", + "circleCardId": "47b35454-6455-4602-8fca-6113da589f1e", + "createdAt": "2021-05-18T08:40:14.364Z", + "updatedAt": "2021-05-18T08:40:14.364Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "P21SZrJ6z5YjyF8WFaHv5eRsoFo1" + }, + { + "id": "a18672f4-1902-4259-8652-4ba994aea1c0", + "circleCardId": "d30fd63f-d500-409e-a399-e2de7ec84cee", + "createdAt": "2021-05-18T08:40:14.365Z", + "updatedAt": "2021-05-18T08:40:14.366Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "P21SZrJ6z5YjyF8WFaHv5eRsoFo1" + }, + { + "id": "a1b4adfc-7b1b-4855-b6bf-ca4a56132ba2", + "circleCardId": "f4013aec-f00c-41a0-882f-a600071cc4f3", + "createdAt": "2021-05-18T08:40:14.366Z", + "updatedAt": "2021-05-18T08:40:14.367Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "no verification", + "avsCheck": "no verification", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2" + }, + { + "id": "a1d86b39-c283-4295-8506-bbdbd9e0b52e", + "circleCardId": "f9d72e0f-c2ba-4652-9ec3-534e33288990", + "createdAt": "2021-05-18T08:40:14.368Z", + "updatedAt": "2021-05-18T08:40:14.369Z", + "digits": "1111", + "network": "VISA", + "cvvCheck": "no verification", + "avsCheck": "no verification", + "userId": "DAawzIgIIifv6GfzdDJRJ1kZl7J2" + }, + { + "id": "a27ba10a-1f7f-43f5-9a10-b97fbbd05550", + "circleCardId": "092f17ce-3324-4fe6-b269-ef1f64bbab9c", + "createdAt": "2021-05-18T08:40:14.371Z", + "updatedAt": "2021-05-18T08:40:14.371Z", + "digits": "0006", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "y2wLlb4FV6PehGGAmj9akMnwkzl2" + }, + { + "id": "a2cf1b42-5558-4e26-8067-a1dd000264fd", + "circleCardId": "494da545-f542-421c-b5cc-6fd6f44ae220", + "createdAt": "2021-05-18T08:40:14.372Z", + "updatedAt": "2021-05-18T08:40:14.373Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + { + "id": "a38d72f9-f44a-4e62-a8ec-43818b512029", + "circleCardId": "be0a6967-680d-4e25-ba10-bf5149f6ec40", + "createdAt": "2021-05-18T08:40:14.375Z", + "updatedAt": "2021-05-18T08:40:14.376Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + { + "id": "a3b95531-e57f-4764-a8f4-61cb7c7eae9e", + "circleCardId": "3545c838-6c3f-47a3-8db7-094bf395f57c", + "createdAt": "2021-05-18T08:40:14.377Z", + "updatedAt": "2021-05-18T08:40:14.377Z", + "digits": "0006", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1" + }, + { + "id": "a45ba1ce-e37a-4096-ad21-5876d71b7d77", + "circleCardId": "ebe094fb-ccdb-4736-9579-f0be07ae28f4", + "createdAt": "2021-05-18T08:40:14.378Z", + "updatedAt": "2021-05-18T08:40:14.379Z", + "digits": "0006", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "b0Kxsd0x4OMLeOlDnheysBz5THo1" + }, + { + "id": "a5af045d-ebc8-404d-9324-763a106c6f87", + "circleCardId": "1ab13dbe-c02a-4253-9adc-3aeb6d27de49", + "createdAt": "2021-05-18T08:40:14.380Z", + "updatedAt": "2021-05-18T08:40:14.381Z", + "digits": "4242", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "PIpHij5Ft2RdmMZ4C8w4Wi0G2pv2" + }, + { + "id": "a7aa3ad9-6b13-45b3-9efe-c6c19d371402", + "circleCardId": "67d91227-a9d6-4ac1-8356-e1c82c5a4aab", + "createdAt": "2021-05-18T08:40:14.383Z", + "updatedAt": "2021-05-18T08:40:14.383Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "no verification", + "avsCheck": "no verification", + "userId": "H5ZkcKBX5eXXNyBiPaph8EHCiax2" + }, + { + "id": "a82c3afd-5e49-446e-96b2-5dd5159404a5", + "circleCardId": "dfd1bfbe-aec8-4b37-9c1e-76678f2b9f1d", + "createdAt": "2021-05-18T08:40:14.385Z", + "updatedAt": "2021-05-18T08:40:14.385Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "no verification", + "avsCheck": "no verification", + "userId": "7a3rK55ZsdShvRd27sntddN2v7H2" + }, + { + "id": "a9bb2ab0-ac0a-4588-9ac5-8f95ca2247bc", + "circleCardId": "c3520c1a-9154-4366-9ddf-80f58f13d7b0", + "createdAt": "2021-05-18T08:40:14.386Z", + "updatedAt": "2021-05-18T08:40:14.387Z", + "digits": "0006", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "H5ZkcKBX5eXXNyBiPaph8EHCiax2" + }, + { + "id": "aa97c7c0-f474-418e-b829-06b4b8089e34", + "circleCardId": "efae3dc5-f1d7-42df-932f-850a2e597f08", + "createdAt": "2021-05-18T08:40:14.388Z", + "updatedAt": "2021-05-18T08:40:14.389Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + { + "id": "ab648950-3587-4a4d-bbfe-a3dc0f7eba24", + "circleCardId": "1c436917-ff89-4201-8106-365f2dd73da4", + "createdAt": "2021-05-18T08:40:14.389Z", + "updatedAt": "2021-05-18T08:40:14.390Z", + "digits": "0006", + "network": "VISA", + "cvvCheck": "fail", + "avsCheck": "no verification", + "userId": "H5ZkcKBX5eXXNyBiPaph8EHCiax2" + }, + { + "id": "ad5921af-1441-4ace-a548-441e1d755357", + "circleCardId": "13b3c3a0-a8e9-4dbb-851e-bc5925a34762", + "createdAt": "2021-05-18T08:40:14.393Z", + "updatedAt": "2021-05-18T08:40:14.393Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + { + "id": "aebc5ee1-a5bc-4e12-be1d-35dd72f43003", + "circleCardId": "1d1bb527-149a-4598-a2b4-ecce015505b2", + "createdAt": "2021-05-18T08:40:14.394Z", + "updatedAt": "2021-05-18T08:40:14.395Z", + "digits": "0006", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "Wz0ZgOvKnafrjLDeAeWqx182uBq2" + }, + { + "id": "b114aec7-cc92-4d1f-9109-2c223483ef99", + "circleCardId": "8e51a567-730d-4563-9f9e-67eac1aef7e0", + "createdAt": "2021-05-18T08:40:14.395Z", + "updatedAt": "2021-05-18T08:40:14.396Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + { + "id": "b29d502d-98f4-4efa-8e81-b5fc6df45a1a", + "circleCardId": "cc88ebf2-2627-4fab-8f6a-e69757fd3f7f", + "createdAt": "2021-05-18T08:40:14.397Z", + "updatedAt": "2021-05-18T08:40:14.398Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "2HM9WnVvr9aDYbckjCo4cIDjncY2" + }, + { + "id": "b3750031-2009-437e-b7b0-64555bd13711", + "circleCardId": "c96a077e-c3f6-4ba7-a6ba-5a3576687007", + "createdAt": "2021-05-18T08:40:14.399Z", + "updatedAt": "2021-05-18T08:40:14.400Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "P21SZrJ6z5YjyF8WFaHv5eRsoFo1" + }, + { + "id": "b44edd3a-9ad9-487d-b8b2-f983009871dc", + "circleCardId": "5b362ae4-55e1-42c2-a6b4-fffdd1132df7", + "createdAt": "2021-05-18T08:40:14.400Z", + "updatedAt": "2021-05-18T08:40:14.401Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "Wz0ZgOvKnafrjLDeAeWqx182uBq2" + }, + { + "id": "b4f0c75b-9e9e-427d-bfa5-76b1db785cc7", + "circleCardId": "237b941a-3bd6-43fe-a6e3-950e37df3eca", + "createdAt": "2021-05-18T08:40:14.402Z", + "updatedAt": "2021-05-18T08:40:14.403Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2" + }, + { + "id": "b60ef01a-40ef-4737-804e-e4453f8d2763", + "circleCardId": "f1b1b5dc-34fa-4c5a-8289-9d3b7f0c1d73", + "createdAt": "2021-05-18T08:40:14.403Z", + "updatedAt": "2021-05-18T08:40:14.404Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "no verification", + "avsCheck": "no verification", + "userId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1" + }, + { + "id": "b8bf75eb-e057-4fc5-a6a6-ad2bf2ef4b16", + "circleCardId": "7445e270-2f18-4ab5-a804-4d20f1d5164b", + "createdAt": "2021-05-18T08:40:14.405Z", + "updatedAt": "2021-05-18T08:40:14.405Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "no verification", + "avsCheck": "no verification", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + { + "id": "b90824fc-0673-4485-8faf-cca838fd5d73", + "circleCardId": "a392b6f4-9aaf-4d83-b4bc-4e7c1c68ab87", + "createdAt": "2021-05-18T08:40:14.407Z", + "updatedAt": "2021-05-18T08:40:14.408Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "no verification", + "avsCheck": "no verification", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + { + "id": "b9761076-d54f-453c-85b4-311839ac2e88", + "circleCardId": "7188dd28-d489-4d2c-90d8-b8fdbb37ac01", + "createdAt": "2021-05-18T08:40:14.409Z", + "updatedAt": "2021-05-18T08:40:14.410Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "P21SZrJ6z5YjyF8WFaHv5eRsoFo1" + }, + { + "id": "ba78840a-2dd1-4883-bee4-3530e1e0fa2c", + "circleCardId": "3c6cf975-3b32-4560-8403-a99984b04b73", + "createdAt": "2021-05-18T08:40:14.412Z", + "updatedAt": "2021-05-18T08:40:14.412Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "P21SZrJ6z5YjyF8WFaHv5eRsoFo1" + }, + { + "id": "bae23947-2b37-4572-aaea-0c998b2a2ea8", + "circleCardId": "a1116302-9712-499c-a2fb-921a20e99387", + "createdAt": "2021-05-18T08:40:14.413Z", + "updatedAt": "2021-05-18T08:40:14.414Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "Wz0ZgOvKnafrjLDeAeWqx182uBq2" + }, + { + "id": "bbe77e8e-0ce7-45ac-92d8-76640579e0d3", + "circleCardId": "7a1e27d5-d807-487a-a6f1-e249944ff1c0", + "createdAt": "2021-05-18T08:40:14.414Z", + "updatedAt": "2021-05-18T08:40:14.415Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2" + }, + { + "id": "bc2af06f-7272-40eb-b962-01b47f892a77", + "circleCardId": "497ca0e8-8fdd-43a3-80bc-5a8276e0ab51", + "createdAt": "2021-05-18T08:40:14.416Z", + "updatedAt": "2021-05-18T08:40:14.416Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2" + }, + { + "id": "bd5d1f06-d4bd-497e-948d-658baabbbec1", + "circleCardId": "513610eb-a444-45d6-8f17-c6a73dfb544d", + "createdAt": "2021-05-18T08:40:14.420Z", + "updatedAt": "2021-05-18T08:40:14.420Z", + "digits": "1111", + "network": "VISA", + "cvvCheck": "no verification", + "avsCheck": "no verification", + "userId": "DAawzIgIIifv6GfzdDJRJ1kZl7J2" + }, + { + "id": "be3cf56b-fe49-4bf6-9a26-1a6cbb650d58", + "circleCardId": "663c9ff2-e639-4c28-8731-0f9e7801e864", + "createdAt": "2021-05-18T08:40:14.421Z", + "updatedAt": "2021-05-18T08:40:14.421Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + { + "id": "be78531d-fe2c-4bb1-aa90-1ece28d1b38a", + "circleCardId": "c70a89d0-7949-4541-bb4a-2d25182578f0", + "createdAt": "2021-05-18T08:40:14.422Z", + "updatedAt": "2021-05-18T08:40:14.423Z", + "digits": "0006", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "b0Kxsd0x4OMLeOlDnheysBz5THo1" + }, + { + "id": "be9524d6-5cbf-4d95-b3cd-9aaa0355d660", + "circleCardId": "4d165a49-ec51-4653-ad14-2343b88eb11f", + "createdAt": "2021-05-18T08:40:14.424Z", + "updatedAt": "2021-05-18T08:40:14.424Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2" + }, + { + "id": "bfc0d675-a732-44ab-a5d2-2fa9a10dcc73", + "circleCardId": "8a62d591-be72-4bd1-895b-045fd1426fe4", + "createdAt": "2021-05-18T08:40:14.425Z", + "updatedAt": "2021-05-18T08:40:14.426Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "5Bi1KZGIYzW5UIljHgBlO98NXaI2" + }, + { + "id": "c07730b5-b029-4678-a886-118058cee81b", + "circleCardId": "f29f5db0-6d65-4001-984b-5f418256a5dc", + "createdAt": "2021-05-18T08:40:14.427Z", + "updatedAt": "2021-05-18T08:40:14.428Z", + "digits": "0006", + "network": "VISA", + "cvvCheck": "no verification", + "avsCheck": "no verification", + "userId": "H5ZkcKBX5eXXNyBiPaph8EHCiax2" + }, + { + "id": "c0bf4eaa-0786-4e6e-bdc8-94bfa5811c78", + "circleCardId": "da6401d2-2707-40d1-a2a2-c9d3af150f21", + "createdAt": "2021-05-18T08:40:14.428Z", + "updatedAt": "2021-05-18T08:40:14.429Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "Wz0ZgOvKnafrjLDeAeWqx182uBq2" + }, + { + "id": "c14a1243-8a15-47b9-90e8-a4549026495e", + "circleCardId": "70f38a21-f37b-47f5-84d5-134de87dbdd3", + "createdAt": "2021-05-18T08:40:14.430Z", + "updatedAt": "2021-05-18T08:40:14.430Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "no verification", + "avsCheck": "no verification", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2" + }, + { + "id": "c156c3e9-5414-4bf6-85e4-71e7c1757980", + "circleCardId": "3f45bdb6-4ddb-4271-9b10-875edb854be9", + "createdAt": "2021-05-18T08:40:14.432Z", + "updatedAt": "2021-05-18T08:40:14.432Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "no verification", + "avsCheck": "no verification", + "userId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1" + }, + { + "id": "c284ad0e-3fdd-4509-8f5a-1f72b686ae7d", + "circleCardId": "9a124d0b-a797-4e73-b83c-517ff9f05ee5", + "createdAt": "2021-05-18T08:40:14.434Z", + "updatedAt": "2021-05-18T08:40:14.435Z", + "digits": "0006", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "y2wLlb4FV6PehGGAmj9akMnwkzl2" + }, + { + "id": "c2952c4c-6762-4718-957c-271f5e6e6820", + "circleCardId": "70d741b1-72c8-42f2-ba20-0100997931d1", + "createdAt": "2021-05-18T08:40:14.435Z", + "updatedAt": "2021-05-18T08:40:14.436Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + { + "id": "c2edb873-ae3c-4de3-ac3b-b332ab7581d8", + "circleCardId": "b8ed1347-a482-468c-a3d2-97637770a038", + "createdAt": "2021-05-18T08:40:14.437Z", + "updatedAt": "2021-05-18T08:40:14.437Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "no verification", + "avsCheck": "no verification", + "userId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1" + }, + { + "id": "c317cfbb-32a0-434b-921b-ac2a557ba728", + "circleCardId": "0514d7be-3ce0-4eb8-8ff6-499725989e81", + "createdAt": "2021-05-18T08:40:14.438Z", + "updatedAt": "2021-05-18T08:40:14.439Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "P21SZrJ6z5YjyF8WFaHv5eRsoFo1" + }, + { + "id": "c383e053-3564-47df-ab25-6a6007673b38", + "circleCardId": "955287f0-094e-4a17-b039-ee1e60a84b93", + "createdAt": "2021-05-18T08:40:14.440Z", + "updatedAt": "2021-05-18T08:40:14.441Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "5Bi1KZGIYzW5UIljHgBlO98NXaI2" + }, + { + "id": "c3b6c07f-3a2d-49ca-9b5b-408fbf0b8760", + "circleCardId": "c902a04c-c4bf-4b53-90fd-a1fff414a8ed", + "createdAt": "2021-05-18T08:40:14.442Z", + "updatedAt": "2021-05-18T08:40:14.442Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "2HM9WnVvr9aDYbckjCo4cIDjncY2" + }, + { + "id": "c3d5d874-5a07-4872-8963-0d0a7391fd61", + "circleCardId": "f1f387f2-f5fa-4676-a086-1e8e8e351630", + "createdAt": "2021-05-18T08:40:14.443Z", + "updatedAt": "2021-05-18T08:40:14.444Z", + "digits": "1111", + "network": "VISA", + "cvvCheck": "no verification", + "avsCheck": "no verification", + "userId": "DAawzIgIIifv6GfzdDJRJ1kZl7J2" + }, + { + "id": "c5678569-d2ba-49d5-bb47-e41da3650589", + "circleCardId": "8a84e242-8757-48c2-9061-8a5ca077e256", + "createdAt": "2021-05-18T08:40:14.445Z", + "updatedAt": "2021-05-18T08:40:14.446Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "2HM9WnVvr9aDYbckjCo4cIDjncY2" + }, + { + "id": "c5c7ed13-9e01-4839-8d2b-caafc4a3616a", + "circleCardId": "69bfc8a2-3e1e-4a8a-b604-fb7cd7b4768c", + "createdAt": "2021-05-18T08:40:14.447Z", + "updatedAt": "2021-05-18T08:40:14.447Z", + "digits": "0006", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "b0Kxsd0x4OMLeOlDnheysBz5THo1" + }, + { + "id": "c5f70d50-0686-44ab-8589-98f6b8131682", + "circleCardId": "0725de4a-0863-4f9f-b72f-581d5919314a", + "createdAt": "2021-05-18T08:40:14.449Z", + "updatedAt": "2021-05-18T08:40:14.449Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + { + "id": "c60a0dec-3189-41e1-b83e-91f89b3fc3f4", + "circleCardId": "531d3bc2-9062-487e-8cc5-028f1070c1a1", + "createdAt": "2021-05-18T08:40:14.451Z", + "updatedAt": "2021-05-18T08:40:14.451Z", + "digits": "1111", + "network": "VISA", + "cvvCheck": "no verification", + "avsCheck": "no verification", + "userId": "BONVnugkzuhlKnhSTvQSlYGZMEy1" + }, + { + "id": "c77c21ce-dd4b-47c3-b236-0427921ad393", + "circleCardId": "a8648587-7aba-4844-b05d-38c81f9b134f", + "createdAt": "2021-05-18T08:40:14.452Z", + "updatedAt": "2021-05-18T08:40:14.453Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "2HM9WnVvr9aDYbckjCo4cIDjncY2" + }, + { + "id": "c7d1c8b4-e1d2-40c9-a3a0-e0b7b1df1b65", + "circleCardId": "8e78ea3d-3588-4139-847f-9e1628b99e72", + "createdAt": "2021-05-18T08:40:14.454Z", + "updatedAt": "2021-05-18T08:40:14.455Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + { + "id": "c800953e-7f49-4452-ae1b-c7e8e03edee7", + "circleCardId": "faf5beaa-e681-49ec-89cc-c3a0bfe06437", + "createdAt": "2021-05-18T08:40:14.455Z", + "updatedAt": "2021-05-18T08:40:14.456Z", + "digits": "0006", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "b0Kxsd0x4OMLeOlDnheysBz5THo1" + }, + { + "id": "c8b2999a-f93f-4afa-9438-1a51fd36ad7c", + "circleCardId": "5f3ae8b4-88c1-44f2-abc5-e814fdca01c6", + "createdAt": "2021-05-18T08:40:14.457Z", + "updatedAt": "2021-05-18T08:40:14.458Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "no verification", + "avsCheck": "no verification", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + { + "id": "ca514300-eb86-45e2-b373-bb9f111a4ea3", + "circleCardId": "1dc7cba1-ef22-4d6c-b6b4-42aee7666473", + "createdAt": "2021-05-18T08:40:14.462Z", + "updatedAt": "2021-05-18T08:40:14.462Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + { + "id": "cb1bd98f-337f-439c-9665-70f22ad55ae5", + "circleCardId": "8b22a53a-6733-4ba7-b537-419d85c2e16d", + "createdAt": "2021-05-18T08:40:14.463Z", + "updatedAt": "2021-05-18T08:40:14.464Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + { + "id": "cb4cbd98-6908-4a7d-95d8-838e52339a12", + "circleCardId": "cc6bc775-63db-41a1-9ac7-4d478f854444", + "createdAt": "2021-05-18T08:40:14.465Z", + "updatedAt": "2021-05-18T08:40:14.465Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + { + "id": "cc0f5ae0-949d-4f46-ae28-b91af687f1f9", + "circleCardId": "3cde1ae1-3862-4255-b9db-bdc6d0ffe5eb", + "createdAt": "2021-05-18T08:40:14.468Z", + "updatedAt": "2021-05-18T08:40:14.468Z", + "digits": "0006", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "b0Kxsd0x4OMLeOlDnheysBz5THo1" + }, + { + "id": "ccf98595-b08e-413f-a14d-9848e11c3b5f", + "circleCardId": "1ef1c742-f57b-452d-b9d6-a2a4d7744533", + "createdAt": "2021-05-18T08:40:14.471Z", + "updatedAt": "2021-05-18T08:40:14.471Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "Wz0ZgOvKnafrjLDeAeWqx182uBq2" + }, + { + "id": "ceba0925-7ae1-48b1-b028-8ca57c41d026", + "circleCardId": "61b1429d-f012-4762-aac1-c3f32eb8f203", + "createdAt": "2021-05-18T08:40:14.474Z", + "updatedAt": "2021-05-18T08:40:14.474Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "P21SZrJ6z5YjyF8WFaHv5eRsoFo1" + }, + { + "id": "cebed72d-b875-4682-91f3-f917f3adfcf2", + "circleCardId": "9d91f70e-78d6-4764-b9ed-fff8ae183640", + "createdAt": "2021-05-18T08:40:14.475Z", + "updatedAt": "2021-05-18T08:40:14.476Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2" + }, + { + "id": "d0bda0d5-bc79-438a-a12d-41b7ccc8f2e8", + "circleCardId": "a33cf59e-d2c9-4a8f-abaf-5c4de0eab75d", + "createdAt": "2021-05-18T08:40:14.477Z", + "updatedAt": "2021-05-18T08:40:14.477Z", + "digits": "0006", + "network": "VISA", + "cvvCheck": "no verification", + "avsCheck": "no verification", + "userId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1" + }, + { + "id": "d1965564-b177-4a0b-8dd6-73aebe6d7de9", + "circleCardId": "774bebdd-7979-443d-a81a-d2c42291dcbc", + "createdAt": "2021-05-18T08:40:14.479Z", + "updatedAt": "2021-05-18T08:40:14.479Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "2HM9WnVvr9aDYbckjCo4cIDjncY2" + }, + { + "id": "d2d5d482-285a-4fd0-b511-479cf13e5fd5", + "circleCardId": "8e84f589-03d1-4ffe-ab21-b5e353b2b5e5", + "createdAt": "2021-05-18T08:40:14.484Z", + "updatedAt": "2021-05-18T08:40:14.484Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2" + }, + { + "id": "d455ed3b-b10c-4a4c-930e-baef9faf6cd1", + "circleCardId": "7446f112-6620-4241-86fe-df22b469d1c2", + "createdAt": "2021-05-18T08:40:14.486Z", + "updatedAt": "2021-05-18T08:40:14.486Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "P21SZrJ6z5YjyF8WFaHv5eRsoFo1" + }, + { + "id": "d5556782-e437-472f-9f62-9091aaf03db2", + "circleCardId": "06ac2d05-2be0-4fbf-98f8-ba4f556d97ea", + "createdAt": "2021-05-18T08:40:14.487Z", + "updatedAt": "2021-05-18T08:40:14.488Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "Wz0ZgOvKnafrjLDeAeWqx182uBq2" + }, + { + "id": "d6a6a039-2e9c-4f88-be90-af3487fc951a", + "circleCardId": "302fd36d-1e5a-4367-a980-a8d8767ccb5b", + "createdAt": "2021-05-18T08:40:14.490Z", + "updatedAt": "2021-05-18T08:40:14.491Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "Wz0ZgOvKnafrjLDeAeWqx182uBq2" + }, + { + "id": "d79e0a9b-5221-4cd3-a6cc-b4dcb278ffe4", + "circleCardId": "06cf607a-34fd-44db-abd9-1f2c64cc6e1b", + "createdAt": "2021-05-18T08:40:14.493Z", + "updatedAt": "2021-05-18T08:40:14.494Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "5Bi1KZGIYzW5UIljHgBlO98NXaI2" + }, + { + "id": "d807dd9d-10de-46e4-9020-846e2bdcc623", + "circleCardId": "5df7487c-1c4d-4483-9fb5-32102c9b10de", + "createdAt": "2021-05-18T08:40:14.494Z", + "updatedAt": "2021-05-18T08:40:14.495Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + { + "id": "d867ee05-8c06-478f-8db4-4891de693910", + "circleCardId": "33a5348b-5f14-4b81-a024-aacbfe7ef122", + "createdAt": "2021-05-18T08:40:14.498Z", + "updatedAt": "2021-05-18T08:40:14.499Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2" + }, + { + "id": "d9a8837c-8a6b-4bc1-96e7-cadf24ca45d5", + "circleCardId": "7a02c6d4-e516-496a-b7db-e0d8ff13ba88", + "createdAt": "2021-05-18T08:40:14.501Z", + "updatedAt": "2021-05-18T08:40:14.501Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "5Bi1KZGIYzW5UIljHgBlO98NXaI2" + }, + { + "id": "dac8b43c-c120-4a27-a9e5-cfa3e0300409", + "circleCardId": "1e5b48a4-80b1-477f-86ec-1eac5ac73841", + "createdAt": "2021-05-18T08:40:14.502Z", + "updatedAt": "2021-05-18T08:40:14.503Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "P21SZrJ6z5YjyF8WFaHv5eRsoFo1" + }, + { + "id": "db2b8f95-4b8d-42c9-be03-fe0eb29f604e", + "circleCardId": "1c4cb94c-32eb-4ce3-8d59-8b7ddcc9834a", + "createdAt": "2021-05-18T08:40:14.504Z", + "updatedAt": "2021-05-18T08:40:14.505Z", + "digits": "0006", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1" + }, + { + "id": "db69fcb6-cc65-49f3-a753-2068750394ab", + "circleCardId": "ed0756a0-cff1-4f2a-9d59-ea0e6f740da1", + "createdAt": "2021-05-18T08:40:14.506Z", + "updatedAt": "2021-05-18T08:40:14.506Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "h59V0do13qhpeH9xDyoLaCZucTm1" + }, + { + "id": "dc2eca6d-494f-4dff-92e1-f07b0e461ba2", + "circleCardId": "41240dd9-63d0-46a4-a9d9-dd12fb3278fd", + "createdAt": "2021-05-18T08:40:14.509Z", + "updatedAt": "2021-05-18T08:40:14.510Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "2HM9WnVvr9aDYbckjCo4cIDjncY2" + }, + { + "id": "dd546425-c098-4486-9c18-d52b2720764d", + "circleCardId": "e42c8053-0aca-42ae-b84a-ce32b471fff1", + "createdAt": "2021-05-18T08:40:14.510Z", + "updatedAt": "2021-05-18T08:40:14.511Z", + "digits": "0006", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "b0Kxsd0x4OMLeOlDnheysBz5THo1" + }, + { + "id": "dd6a5275-3d66-4e43-8e24-21b928fbb5f4", + "circleCardId": "6b86c0e9-6fc0-46c6-8eb0-c6633b8ae5ef", + "createdAt": "2021-05-18T08:40:14.512Z", + "updatedAt": "2021-05-18T08:40:14.513Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "no verification", + "avsCheck": "no verification", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2" + }, + { + "id": "dddb3d2e-05cd-4e1b-ab0c-b5bf11c539cf", + "circleCardId": "ac8605fb-2bcf-4ec6-8071-2bcd589f69b3", + "createdAt": "2021-05-18T08:40:14.513Z", + "updatedAt": "2021-05-18T08:40:14.514Z", + "digits": "0006", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "b0Kxsd0x4OMLeOlDnheysBz5THo1" + }, + { + "id": "ddfbfe2e-5519-48c2-ad41-53d9c5f9da41", + "circleCardId": "0e31e3b1-caed-4b51-880e-e12bb14b26b4", + "createdAt": "2021-05-18T08:40:14.515Z", + "updatedAt": "2021-05-18T08:40:14.515Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + { + "id": "de2f8590-4576-4aca-a408-0b606ca565e4", + "circleCardId": "d273f4df-c1d7-487a-a34e-2bb021d4f747", + "createdAt": "2021-05-18T08:40:14.517Z", + "updatedAt": "2021-05-18T08:40:14.518Z", + "digits": "0006", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "5Bi1KZGIYzW5UIljHgBlO98NXaI2" + }, + { + "id": "dee6da80-b7ab-40fa-8715-7ba104c61d3b", + "circleCardId": "22b9dd11-ef7f-4aab-9468-805ec176da3f", + "createdAt": "2021-05-18T08:40:14.520Z", + "updatedAt": "2021-05-18T08:40:14.520Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + { + "id": "df0b58f1-25cb-4891-b175-18dea28d676b", + "circleCardId": "06ea4168-180e-4027-9389-7e98e76fe477", + "createdAt": "2021-05-18T08:40:14.521Z", + "updatedAt": "2021-05-18T08:40:14.522Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "P21SZrJ6z5YjyF8WFaHv5eRsoFo1" + }, + { + "id": "e0832154-659e-4582-b6da-918a904610c7", + "circleCardId": "ad0ac769-1bce-4ee4-a257-94d28b8f0d28", + "createdAt": "2021-05-18T08:40:14.523Z", + "updatedAt": "2021-05-18T08:40:14.523Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "no verification", + "avsCheck": "no verification", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + { + "id": "e1cb026f-32c9-4bb0-a82b-65021c81b6c5", + "circleCardId": "d6699b52-c1d0-486f-870f-c45034db781c", + "createdAt": "2021-05-18T08:40:14.524Z", + "updatedAt": "2021-05-18T08:40:14.525Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "2HM9WnVvr9aDYbckjCo4cIDjncY2" + }, + { + "id": "e37d423e-4e10-4483-9ec6-a90e7b7abe7b", + "circleCardId": "848e1c92-dfbb-433c-8591-bccd2ac7fee5", + "createdAt": "2021-05-18T08:40:14.525Z", + "updatedAt": "2021-05-18T08:40:14.526Z", + "digits": "0006", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "Wz0ZgOvKnafrjLDeAeWqx182uBq2" + }, + { + "id": "e388f1d9-270e-4977-b836-3398cbac8991", + "circleCardId": "ee6877da-fd43-4dae-9bf9-46a2ff6b67e7", + "createdAt": "2021-05-18T08:40:14.527Z", + "updatedAt": "2021-05-18T08:40:14.527Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + { + "id": "e39877c9-91be-47fc-9abd-7c25a1379790", + "circleCardId": "9ae0cdad-af3b-48d6-8478-8203f67b6bd1", + "createdAt": "2021-05-18T08:40:14.528Z", + "updatedAt": "2021-05-18T08:40:14.529Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + { + "id": "e464ec20-4204-4d11-b66c-8d94dc12dbce", + "circleCardId": "eede1eca-8f6d-4ad9-805f-fcb05d791fb3", + "createdAt": "2021-05-18T08:40:14.530Z", + "updatedAt": "2021-05-18T08:40:14.530Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + { + "id": "e48bdae1-1024-4fcf-84d0-8e57046f2307", + "circleCardId": "ee0f2efa-2ab3-4098-b211-49913bb2c870", + "createdAt": "2021-05-18T08:40:14.532Z", + "updatedAt": "2021-05-18T08:40:14.532Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + { + "id": "e5c6a948-dcb8-401f-b043-b89f82a0dfb8", + "circleCardId": "e22c39e0-7a95-4f72-ab67-7cc1e92661dc", + "createdAt": "2021-05-18T08:40:14.533Z", + "updatedAt": "2021-05-18T08:40:14.534Z", + "digits": "0006", + "network": "VISA", + "cvvCheck": "no verification", + "avsCheck": "no verification", + "userId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1" + }, + { + "id": "e643b7ba-7381-40d9-ad91-4abed216957a", + "circleCardId": "faf00b35-967a-479b-9e3f-92aef845dab7", + "createdAt": "2021-05-18T08:40:14.539Z", + "updatedAt": "2021-05-18T08:40:14.540Z", + "digits": "0006", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "b0Kxsd0x4OMLeOlDnheysBz5THo1" + }, + { + "id": "e67c3711-3d52-4bac-90dd-0c641169ab20", + "circleCardId": "23cc431f-1598-4226-ba5d-3ab7d793cffb", + "createdAt": "2021-05-18T08:40:14.541Z", + "updatedAt": "2021-05-18T08:40:14.541Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "no verification", + "avsCheck": "no verification", + "userId": "7a3rK55ZsdShvRd27sntddN2v7H2" + }, + { + "id": "e713ca10-7f86-4ab3-aa05-d9794be86cb0", + "circleCardId": "7342c393-84b3-4b60-9941-037c6cd060c7", + "createdAt": "2021-05-18T08:40:14.542Z", + "updatedAt": "2021-05-18T08:40:14.543Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2" + }, + { + "id": "e7ded3ee-230d-480f-a496-20e016babd00", + "circleCardId": "4228e17d-8a19-46ff-af8a-db44dca9fc3c", + "createdAt": "2021-05-18T08:40:14.544Z", + "updatedAt": "2021-05-18T08:40:14.544Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "no verification", + "avsCheck": "no verification", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + { + "id": "e8a2c186-b1b2-44dd-b36d-2af457125347", + "circleCardId": "4595a340-9eae-4481-bae8-bca212377aa8", + "createdAt": "2021-05-18T08:40:14.545Z", + "updatedAt": "2021-05-18T08:40:14.546Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "no verification", + "avsCheck": "no verification", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + { + "id": "ea427191-98b7-458b-b42b-92dc54021a74", + "circleCardId": "d5bd6b7f-f141-4f17-a012-a41f70631bd8", + "createdAt": "2021-05-18T08:40:14.548Z", + "updatedAt": "2021-05-18T08:40:14.549Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + { + "id": "eaca84ce-8d6a-46ef-972a-4dbb6f476738", + "circleCardId": "8a60263c-80a5-4714-97be-6e5286e47acd", + "createdAt": "2021-05-18T08:40:14.550Z", + "updatedAt": "2021-05-18T08:40:14.550Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "0jL6u33k2rMoEY8wUmnIvkJM48O2" + }, + { + "id": "eb0b0cdd-f1f7-4c5f-85c0-7824ff7c015a", + "circleCardId": "fa62cd58-ccfa-4927-a510-17c39cb1d4fa", + "createdAt": "2021-05-18T08:40:14.551Z", + "updatedAt": "2021-05-18T08:40:14.552Z", + "digits": "0006", + "network": "VISA", + "cvvCheck": "no verification", + "avsCheck": "no verification", + "userId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1" + }, + { + "id": "ebc19a40-2e32-401e-b7d5-d0027c6d8bd2", + "circleCardId": "8bbedb20-5d85-4915-aa1a-d09b8a795a5c", + "createdAt": "2021-05-18T08:40:14.552Z", + "updatedAt": "2021-05-18T08:40:14.553Z", + "digits": "0006", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "d3jPxOeMtnVqHTjJ5ILfuOHQQPQ2" + }, + { + "id": "ec1279be-0082-41ee-95fd-8b7c02f763d9", + "circleCardId": "a0502a15-2218-4ade-acda-3b6fb0e53b77", + "createdAt": "2021-05-18T08:40:14.554Z", + "updatedAt": "2021-05-18T08:40:14.554Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "no verification", + "avsCheck": "no verification", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2" + }, + { + "id": "ec53ddbf-c626-4aed-ad0c-d8b558ccfdee", + "circleCardId": "7143cc03-a582-444f-922b-0b0c7c05144e", + "createdAt": "2021-05-18T08:40:14.555Z", + "updatedAt": "2021-05-18T08:40:14.556Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "P21SZrJ6z5YjyF8WFaHv5eRsoFo1" + }, + { + "id": "ed436bdc-dd4f-41b6-93f9-d7c9143a72c4", + "circleCardId": "98ae661d-5d34-4f9d-826f-92207c2af376", + "createdAt": "2021-05-18T08:40:14.557Z", + "updatedAt": "2021-05-18T08:40:14.557Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "no verification", + "avsCheck": "no verification", + "userId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1" + }, + { + "id": "ee509c32-eabe-4f12-b7ba-4903e08c0510", + "circleCardId": "6f5ff102-1bdc-4a01-96c3-dc78de89a55b", + "createdAt": "2021-05-18T08:40:14.558Z", + "updatedAt": "2021-05-18T08:40:14.559Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2" + }, + { + "id": "ef06a200-7934-4c40-b82d-512a241afa15", + "circleCardId": "78b0160e-d07a-499a-9166-4600649c9d7e", + "createdAt": "2021-05-18T08:40:14.559Z", + "updatedAt": "2021-05-18T08:40:14.560Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2" + }, + { + "id": "ef4bf363-64bb-4413-bdb0-ddb8caa69db6", + "circleCardId": "5f998272-26d2-487e-b957-f488ee5549f1", + "createdAt": "2021-05-18T08:40:14.561Z", + "updatedAt": "2021-05-18T08:40:14.562Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + { + "id": "efc5aaad-1ea2-4764-b51a-4225fcf32508", + "circleCardId": "4a26e20a-4c48-4038-8ad3-e6b527e2f106", + "createdAt": "2021-05-18T08:40:14.562Z", + "updatedAt": "2021-05-18T08:40:14.563Z", + "digits": "0006", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "Sxv19oCvKAZq2vntJdYCTYSpWWN2" + }, + { + "id": "f067ed3b-6ad3-4f5a-8ef5-9c37cbc839fa", + "circleCardId": "fa38e77a-4c13-4474-ab47-7d82e56d3db9", + "createdAt": "2021-05-18T08:40:14.564Z", + "updatedAt": "2021-05-18T08:40:14.565Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "P21SZrJ6z5YjyF8WFaHv5eRsoFo1" + }, + { + "id": "f2ef3272-a69c-4fbd-a56a-6ac304a6bdc0", + "circleCardId": "da4adbc4-0e78-4d33-9cdb-f80ec24caaaa", + "createdAt": "2021-05-18T08:40:14.567Z", + "updatedAt": "2021-05-18T08:40:14.567Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + { + "id": "f3ed9074-797c-4f43-bc91-4ae4c56a1325", + "circleCardId": "23ed601c-9d4e-4b7c-afad-843444d19939", + "createdAt": "2021-05-18T08:40:14.568Z", + "updatedAt": "2021-05-18T08:40:14.569Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "skBkfQh8E1f4eOGBSVLaiuJ097v1" + }, + { + "id": "f693b44c-2b93-4a37-8486-1407a05d9e67", + "circleCardId": "90e0cd3f-42b5-41d0-9c26-0f75f91ec684", + "createdAt": "2021-05-18T08:40:14.570Z", + "updatedAt": "2021-05-18T08:40:14.571Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "no verification", + "avsCheck": "no verification", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2" + }, + { + "id": "f6ec1e38-3512-433e-996d-8afbee76c3cc", + "circleCardId": "dca822c4-b771-4282-82f3-826d779e9d96", + "createdAt": "2021-05-18T08:40:14.572Z", + "updatedAt": "2021-05-18T08:40:14.572Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "no verification", + "avsCheck": "no verification", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2" + }, + { + "id": "f8374386-8442-4ae9-b07f-a02e7d500573", + "circleCardId": "d97cab17-02fd-49f9-992b-98ca2a8e9ba7", + "createdAt": "2021-05-18T08:40:14.573Z", + "updatedAt": "2021-05-18T08:40:14.574Z", + "digits": "0006", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "b0Kxsd0x4OMLeOlDnheysBz5THo1" + }, + { + "id": "faad10ad-a986-46e7-8845-3bef0ec7ccf2", + "circleCardId": "8c9be879-7c27-4411-9401-28fa3ef207bd", + "createdAt": "2021-05-18T08:40:14.579Z", + "updatedAt": "2021-05-18T08:40:14.580Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2" + }, + { + "id": "faf2e66f-fa2a-46ef-a924-77a3c08f8291", + "circleCardId": "63a3c6f6-c12f-4638-b40f-c7c0e767cf6c", + "createdAt": "2021-05-18T08:40:14.582Z", + "updatedAt": "2021-05-18T08:40:14.583Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "no verification", + "avsCheck": "no verification", + "userId": "7a3rK55ZsdShvRd27sntddN2v7H2" + }, + { + "id": "fbb1312b-0020-419e-b72d-136455543008", + "circleCardId": "720c0333-37da-454d-977e-81df36156587", + "createdAt": "2021-05-18T08:40:14.583Z", + "updatedAt": "2021-05-18T08:40:14.584Z", + "digits": "4444", + "network": "MASTERCARD", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + { + "id": "fbc5f9a1-3be9-4777-8d42-4364e4ff22ec", + "circleCardId": "7d8c8cba-fa23-45de-b877-e39903743072", + "createdAt": "2021-05-18T08:40:14.585Z", + "updatedAt": "2021-05-18T08:40:14.586Z", + "digits": "0006", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "b0Kxsd0x4OMLeOlDnheysBz5THo1" + }, + { + "id": "fc4982f0-60d3-460a-a1ca-1b999b4a322f", + "circleCardId": "744b1bc5-ca00-4623-bc36-7aa9b6088ea2", + "createdAt": "2021-05-18T08:40:14.589Z", + "updatedAt": "2021-05-18T08:40:14.589Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "no verification", + "avsCheck": "no verification", + "userId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1" + }, + { + "id": "fd6bbb0c-cf95-4fef-95eb-1fa8ed93eb36", + "circleCardId": "148a6d19-dba5-41ff-b7a7-fdeda15deb79", + "createdAt": "2021-05-18T08:40:14.591Z", + "updatedAt": "2021-05-18T08:40:14.592Z", + "digits": "0007", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "5Bi1KZGIYzW5UIljHgBlO98NXaI2" + }, + { + "id": "fd9b2f1f-411c-4a22-9e6d-70e86749fc80", + "circleCardId": "26b145c2-3321-4c3c-8ead-c647fa0adc9c", + "createdAt": "2021-05-18T08:40:14.593Z", + "updatedAt": "2021-05-18T08:40:14.593Z", + "digits": "0006", + "network": "VISA", + "cvvCheck": "pass", + "avsCheck": "no verification", + "userId": "Sxv19oCvKAZq2vntJdYCTYSpWWN2" + } +] \ No newline at end of file diff --git a/packages/core/prisma/result/1621327212154/joinProposalsImport-errors.json b/packages/core/prisma/result/1621327212154/joinProposalsImport-errors.json new file mode 100644 index 000000000..1db1db9ef --- /dev/null +++ b/packages/core/prisma/result/1621327212154/joinProposalsImport-errors.json @@ -0,0 +1,9260 @@ +[ + { + "proposal": { + "quietEndingPeriod": 3600, + "proposerId": "2HM9WnVvr9aDYbckjCo4cIDjncY2", + "id": "024c5e97-4168-452d-ab67-762c0ef1e3f1", + "createdAt": { + "_seconds": 1618989989, + "_nanoseconds": 100999000 + }, + "join": { + "fundingType": "one-time", + "payments": [], + "ip": "178.120.3.148", + "funding": 0 + }, + "state": "failed", + "description": { + "links": [], + "description": "Hdhdb" + }, + "type": "join", + "votes": [], + "commonId": "df03a155-7908-44a2-9b08-f29082d96247", + "votesAgainst": 0, + "updatedAt": { + "_seconds": 1619047800, + "_nanoseconds": 399000000 + }, + "votesFor": 0, + "countdownPeriod": 57600 + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '024c5e97-4168-452d-ab67-762c0ef1e3f1',\n common: {\n connect: {\n id: 'df03a155-7908-44a2-9b08-f29082d96247'\n }\n },\n user: {\n connect: {\n id: '2HM9WnVvr9aDYbckjCo4cIDjncY2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Hdhdb',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '178.120.3.148',\n expiresAt: new Date('2021-04-21T23:26:29.101Z'),\n votesFor: 0,\n votesAgainst: 0,\n importedFrom: '{\"quietEndingPeriod\":3600,\"proposerId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\",\"id\":\"024c5e97-4168-452d-ab67-762c0ef1e3f1\",\"createdAt\":{\"_seconds\":1618989989,\"_nanoseconds\":100999000},\"join\":{\"fundingType\":\"one-time\",\"payments\":[],\"ip\":\"178.120.3.148\",\"funding\":0},\"state\":\"failed\",\"description\":{\"links\":[],\"description\":\"Hdhdb\"},\"type\":\"join\",\"votes\":[],\"commonId\":\"df03a155-7908-44a2-9b08-f29082d96247\",\"votesAgainst\":0,\"updatedAt\":{\"_seconds\":1619047800,\"_nanoseconds\":399000000},\"votesFor\":0,\"countdownPeriod\":57600}',\n join: {\n create: {\n id: '024c5e97-4168-452d-ab67-762c0ef1e3f1',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '024c5e97-4168-452d-ab67-762c0ef1e3f1',\n common: {\n connect: {\n id: 'df03a155-7908-44a2-9b08-f29082d96247'\n }\n },\n user: {\n connect: {\n id: '2HM9WnVvr9aDYbckjCo4cIDjncY2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Hdhdb',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '178.120.3.148',\n expiresAt: new Date('2021-04-21T23:26:29.101Z'),\n votesFor: 0,\n votesAgainst: 0,\n importedFrom: '{\"quietEndingPeriod\":3600,\"proposerId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\",\"id\":\"024c5e97-4168-452d-ab67-762c0ef1e3f1\",\"createdAt\":{\"_seconds\":1618989989,\"_nanoseconds\":100999000},\"join\":{\"fundingType\":\"one-time\",\"payments\":[],\"ip\":\"178.120.3.148\",\"funding\":0},\"state\":\"failed\",\"description\":{\"links\":[],\"description\":\"Hdhdb\"},\"type\":\"join\",\"votes\":[],\"commonId\":\"df03a155-7908-44a2-9b08-f29082d96247\",\"votesAgainst\":0,\"updatedAt\":{\"_seconds\":1619047800,\"_nanoseconds\":399000000},\"votesFor\":0,\"countdownPeriod\":57600}',\n join: {\n create: {\n id: '024c5e97-4168-452d-ab67-762c0ef1e3f1',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "createdAt": { + "_seconds": 1615457783, + "_nanoseconds": 385000000 + }, + "quietEndingPeriod": 3600, + "join": { + "funding": 0, + "fundingType": "one-time", + "ip": "178.120.66.122", + "payments": [] + }, + "votesFor": 4, + "votes": [ + { + "voteOutcome": "approved", + "voterId": "tPfZmRJnQjdnXIlgMZyfphEat3n2", + "voteId": "61b95b4f-f833-474d-876a-8d22c0edaaf9" + }, + { + "voteOutcome": "approved", + "voterId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1", + "voteId": "16b7d1c2-1a57-4b5f-aef7-1158a77ec6c3" + }, + { + "voteOutcome": "approved", + "voterId": "H5ZkcKBX5eXXNyBiPaph8EHCiax2", + "voteId": "3453eafe-9ff4-4802-a971-f23ef970bb5c" + }, + { + "voterId": "skBkfQh8E1f4eOGBSVLaiuJ097v1", + "voteId": "69af4acb-7179-4c24-afdc-9a5bfe09993a", + "voteOutcome": "approved" + } + ], + "state": "passed", + "id": "07cd3fe5-262f-4119-b4ee-c320c668cc13", + "votesAgainst": 0, + "proposerId": "Wz0ZgOvKnafrjLDeAeWqx182uBq2", + "countdownPeriod": 57600, + "type": "join", + "updatedAt": { + "_seconds": 1615458416, + "_nanoseconds": 480000000 + }, + "commonId": "858836dc-776d-4b5d-a999-4cc154f81e11", + "description": { + "description": "Test", + "links": [] + } + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '07cd3fe5-262f-4119-b4ee-c320c668cc13',\n common: {\n connect: {\n id: '858836dc-776d-4b5d-a999-4cc154f81e11'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: 'Wz0ZgOvKnafrjLDeAeWqx182uBq2',\n commonId: '858836dc-776d-4b5d-a999-4cc154f81e11'\n }\n }\n },\n user: {\n connect: {\n id: 'Wz0ZgOvKnafrjLDeAeWqx182uBq2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Test',\n files: [],\n images: [],\n links: [],\n state: 'Accepted',\n ipAddress: '178.120.66.122',\n expiresAt: new Date('2021-03-12T02:16:23.385Z'),\n votesFor: 4,\n votesAgainst: 0,\n importedFrom: '{\"createdAt\":{\"_seconds\":1615457783,\"_nanoseconds\":385000000},\"quietEndingPeriod\":3600,\"join\":{\"funding\":0,\"fundingType\":\"one-time\",\"ip\":\"178.120.66.122\",\"payments\":[]},\"votesFor\":4,\"votes\":[{\"voteOutcome\":\"approved\",\"voterId\":\"tPfZmRJnQjdnXIlgMZyfphEat3n2\",\"voteId\":\"61b95b4f-f833-474d-876a-8d22c0edaaf9\"},{\"voteOutcome\":\"approved\",\"voterId\":\"11j4NvvZ4kMRf4BFBUHdbRiXKMp1\",\"voteId\":\"16b7d1c2-1a57-4b5f-aef7-1158a77ec6c3\"},{\"voteOutcome\":\"approved\",\"voterId\":\"H5ZkcKBX5eXXNyBiPaph8EHCiax2\",\"voteId\":\"3453eafe-9ff4-4802-a971-f23ef970bb5c\"},{\"voterId\":\"skBkfQh8E1f4eOGBSVLaiuJ097v1\",\"voteId\":\"69af4acb-7179-4c24-afdc-9a5bfe09993a\",\"voteOutcome\":\"approved\"}],\"state\":\"passed\",\"id\":\"07cd3fe5-262f-4119-b4ee-c320c668cc13\",\"votesAgainst\":0,\"proposerId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"countdownPeriod\":57600,\"type\":\"join\",\"updatedAt\":{\"_seconds\":1615458416,\"_nanoseconds\":480000000},\"commonId\":\"858836dc-776d-4b5d-a999-4cc154f81e11\",\"description\":{\"description\":\"Test\",\"links\":[]}}',\n join: {\n create: {\n id: '07cd3fe5-262f-4119-b4ee-c320c668cc13',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '07cd3fe5-262f-4119-b4ee-c320c668cc13',\n common: {\n connect: {\n id: '858836dc-776d-4b5d-a999-4cc154f81e11'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: 'Wz0ZgOvKnafrjLDeAeWqx182uBq2',\n commonId: '858836dc-776d-4b5d-a999-4cc154f81e11'\n }\n }\n },\n user: {\n connect: {\n id: 'Wz0ZgOvKnafrjLDeAeWqx182uBq2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Test',\n files: [],\n images: [],\n links: [],\n state: 'Accepted',\n ipAddress: '178.120.66.122',\n expiresAt: new Date('2021-03-12T02:16:23.385Z'),\n votesFor: 4,\n votesAgainst: 0,\n importedFrom: '{\"createdAt\":{\"_seconds\":1615457783,\"_nanoseconds\":385000000},\"quietEndingPeriod\":3600,\"join\":{\"funding\":0,\"fundingType\":\"one-time\",\"ip\":\"178.120.66.122\",\"payments\":[]},\"votesFor\":4,\"votes\":[{\"voteOutcome\":\"approved\",\"voterId\":\"tPfZmRJnQjdnXIlgMZyfphEat3n2\",\"voteId\":\"61b95b4f-f833-474d-876a-8d22c0edaaf9\"},{\"voteOutcome\":\"approved\",\"voterId\":\"11j4NvvZ4kMRf4BFBUHdbRiXKMp1\",\"voteId\":\"16b7d1c2-1a57-4b5f-aef7-1158a77ec6c3\"},{\"voteOutcome\":\"approved\",\"voterId\":\"H5ZkcKBX5eXXNyBiPaph8EHCiax2\",\"voteId\":\"3453eafe-9ff4-4802-a971-f23ef970bb5c\"},{\"voterId\":\"skBkfQh8E1f4eOGBSVLaiuJ097v1\",\"voteId\":\"69af4acb-7179-4c24-afdc-9a5bfe09993a\",\"voteOutcome\":\"approved\"}],\"state\":\"passed\",\"id\":\"07cd3fe5-262f-4119-b4ee-c320c668cc13\",\"votesAgainst\":0,\"proposerId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"countdownPeriod\":57600,\"type\":\"join\",\"updatedAt\":{\"_seconds\":1615458416,\"_nanoseconds\":480000000},\"commonId\":\"858836dc-776d-4b5d-a999-4cc154f81e11\",\"description\":{\"description\":\"Test\",\"links\":[]}}',\n join: {\n create: {\n id: '07cd3fe5-262f-4119-b4ee-c320c668cc13',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "votes": [ + { + "voterId": "Wz0ZgOvKnafrjLDeAeWqx182uBq2", + "voteId": "a140c874-4b87-407a-9ea3-870597d6fc11", + "voteOutcome": "rejected" + } + ], + "createdAt": { + "_seconds": 1616010156, + "_nanoseconds": 851000000 + }, + "type": "join", + "commonId": "82bfdd51-6da9-447a-9eb4-f8c9b9d01cbd", + "countdownPeriod": 57600, + "updatedAt": { + "_seconds": 1616067900, + "_nanoseconds": 509000000 + }, + "proposerId": "2HM9WnVvr9aDYbckjCo4cIDjncY2", + "description": { + "links": [], + "description": "We" + }, + "votesAgainst": 1, + "quietEndingPeriod": 3600, + "join": { + "ip": "178.120.61.209", + "payments": [], + "fundingType": "one-time", + "funding": 0 + }, + "state": "failed", + "id": "08a17b67-ec83-40ef-b1c0-3f56c8a43fb3", + "votesFor": 0 + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '08a17b67-ec83-40ef-b1c0-3f56c8a43fb3',\n common: {\n connect: {\n id: '82bfdd51-6da9-447a-9eb4-f8c9b9d01cbd'\n }\n },\n user: {\n connect: {\n id: '2HM9WnVvr9aDYbckjCo4cIDjncY2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'We',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '178.120.61.209',\n expiresAt: new Date('2021-03-18T11:42:36.851Z'),\n votesFor: 0,\n votesAgainst: 1,\n importedFrom: '{\"votes\":[{\"voterId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"voteId\":\"a140c874-4b87-407a-9ea3-870597d6fc11\",\"voteOutcome\":\"rejected\"}],\"createdAt\":{\"_seconds\":1616010156,\"_nanoseconds\":851000000},\"type\":\"join\",\"commonId\":\"82bfdd51-6da9-447a-9eb4-f8c9b9d01cbd\",\"countdownPeriod\":57600,\"updatedAt\":{\"_seconds\":1616067900,\"_nanoseconds\":509000000},\"proposerId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\",\"description\":{\"links\":[],\"description\":\"We\"},\"votesAgainst\":1,\"quietEndingPeriod\":3600,\"join\":{\"ip\":\"178.120.61.209\",\"payments\":[],\"fundingType\":\"one-time\",\"funding\":0},\"state\":\"failed\",\"id\":\"08a17b67-ec83-40ef-b1c0-3f56c8a43fb3\",\"votesFor\":0}',\n join: {\n create: {\n id: '08a17b67-ec83-40ef-b1c0-3f56c8a43fb3',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '08a17b67-ec83-40ef-b1c0-3f56c8a43fb3',\n common: {\n connect: {\n id: '82bfdd51-6da9-447a-9eb4-f8c9b9d01cbd'\n }\n },\n user: {\n connect: {\n id: '2HM9WnVvr9aDYbckjCo4cIDjncY2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'We',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '178.120.61.209',\n expiresAt: new Date('2021-03-18T11:42:36.851Z'),\n votesFor: 0,\n votesAgainst: 1,\n importedFrom: '{\"votes\":[{\"voterId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"voteId\":\"a140c874-4b87-407a-9ea3-870597d6fc11\",\"voteOutcome\":\"rejected\"}],\"createdAt\":{\"_seconds\":1616010156,\"_nanoseconds\":851000000},\"type\":\"join\",\"commonId\":\"82bfdd51-6da9-447a-9eb4-f8c9b9d01cbd\",\"countdownPeriod\":57600,\"updatedAt\":{\"_seconds\":1616067900,\"_nanoseconds\":509000000},\"proposerId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\",\"description\":{\"links\":[],\"description\":\"We\"},\"votesAgainst\":1,\"quietEndingPeriod\":3600,\"join\":{\"ip\":\"178.120.61.209\",\"payments\":[],\"fundingType\":\"one-time\",\"funding\":0},\"state\":\"failed\",\"id\":\"08a17b67-ec83-40ef-b1c0-3f56c8a43fb3\",\"votesFor\":0}',\n join: {\n create: {\n id: '08a17b67-ec83-40ef-b1c0-3f56c8a43fb3',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "type": "join", + "updatedAt": { + "_seconds": 1614929554, + "_nanoseconds": 716000000 + }, + "createdAt": { + "_seconds": 1614929419, + "_nanoseconds": 99000000 + }, + "votesFor": 0, + "id": "10262edb-4ce3-4519-b4b5-4f667a058218", + "description": { + "links": [], + "description": "Fire" + }, + "join": { + "funding": 0, + "fundingType": "one-time", + "payments": [], + "ip": "46.56.229.118" + }, + "proposerId": "Wz0ZgOvKnafrjLDeAeWqx182uBq2", + "countdownPeriod": 57600, + "commonId": "004abe8d-1006-4b63-9e7a-5d824c4fb1fd", + "votes": [ + { + "voterId": "2HM9WnVvr9aDYbckjCo4cIDjncY2", + "voteId": "b32e452e-5424-4c1d-b427-61980d063b0d", + "voteOutcome": "rejected" + } + ], + "state": "failed", + "quietEndingPeriod": 3600, + "votesAgainst": 1 + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '10262edb-4ce3-4519-b4b5-4f667a058218',\n common: {\n connect: {\n id: '004abe8d-1006-4b63-9e7a-5d824c4fb1fd'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: 'Wz0ZgOvKnafrjLDeAeWqx182uBq2',\n commonId: '004abe8d-1006-4b63-9e7a-5d824c4fb1fd'\n }\n }\n },\n user: {\n connect: {\n id: 'Wz0ZgOvKnafrjLDeAeWqx182uBq2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Fire',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '46.56.229.118',\n expiresAt: new Date('2021-03-05T23:30:19.099Z'),\n votesFor: 0,\n votesAgainst: 1,\n importedFrom: '{\"type\":\"join\",\"updatedAt\":{\"_seconds\":1614929554,\"_nanoseconds\":716000000},\"createdAt\":{\"_seconds\":1614929419,\"_nanoseconds\":99000000},\"votesFor\":0,\"id\":\"10262edb-4ce3-4519-b4b5-4f667a058218\",\"description\":{\"links\":[],\"description\":\"Fire\"},\"join\":{\"funding\":0,\"fundingType\":\"one-time\",\"payments\":[],\"ip\":\"46.56.229.118\"},\"proposerId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"countdownPeriod\":57600,\"commonId\":\"004abe8d-1006-4b63-9e7a-5d824c4fb1fd\",\"votes\":[{\"voterId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\",\"voteId\":\"b32e452e-5424-4c1d-b427-61980d063b0d\",\"voteOutcome\":\"rejected\"}],\"state\":\"failed\",\"quietEndingPeriod\":3600,\"votesAgainst\":1}',\n join: {\n create: {\n id: '10262edb-4ce3-4519-b4b5-4f667a058218',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '10262edb-4ce3-4519-b4b5-4f667a058218',\n common: {\n connect: {\n id: '004abe8d-1006-4b63-9e7a-5d824c4fb1fd'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: 'Wz0ZgOvKnafrjLDeAeWqx182uBq2',\n commonId: '004abe8d-1006-4b63-9e7a-5d824c4fb1fd'\n }\n }\n },\n user: {\n connect: {\n id: 'Wz0ZgOvKnafrjLDeAeWqx182uBq2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Fire',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '46.56.229.118',\n expiresAt: new Date('2021-03-05T23:30:19.099Z'),\n votesFor: 0,\n votesAgainst: 1,\n importedFrom: '{\"type\":\"join\",\"updatedAt\":{\"_seconds\":1614929554,\"_nanoseconds\":716000000},\"createdAt\":{\"_seconds\":1614929419,\"_nanoseconds\":99000000},\"votesFor\":0,\"id\":\"10262edb-4ce3-4519-b4b5-4f667a058218\",\"description\":{\"links\":[],\"description\":\"Fire\"},\"join\":{\"funding\":0,\"fundingType\":\"one-time\",\"payments\":[],\"ip\":\"46.56.229.118\"},\"proposerId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"countdownPeriod\":57600,\"commonId\":\"004abe8d-1006-4b63-9e7a-5d824c4fb1fd\",\"votes\":[{\"voterId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\",\"voteId\":\"b32e452e-5424-4c1d-b427-61980d063b0d\",\"voteOutcome\":\"rejected\"}],\"state\":\"failed\",\"quietEndingPeriod\":3600,\"votesAgainst\":1}',\n join: {\n create: {\n id: '10262edb-4ce3-4519-b4b5-4f667a058218',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "description": { + "links": [], + "description": "G" + }, + "quietEndingPeriod": 3600, + "proposerId": "Wz0ZgOvKnafrjLDeAeWqx182uBq2", + "createdAt": { + "_seconds": 1617269138, + "_nanoseconds": 250000000 + }, + "state": "failed", + "commonId": "3540a395-7bab-465c-9923-42c631e26374", + "votesFor": 0, + "updatedAt": { + "_seconds": 1617327001, + "_nanoseconds": 716000000 + }, + "join": { + "ip": "178.120.65.30", + "funding": 0, + "payments": [], + "fundingType": "one-time" + }, + "countdownPeriod": 57600, + "votesAgainst": 0, + "votes": [], + "type": "join", + "id": "11eb78d2-cacc-4993-9754-69029a3ec446" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '11eb78d2-cacc-4993-9754-69029a3ec446',\n common: {\n connect: {\n id: '3540a395-7bab-465c-9923-42c631e26374'\n }\n },\n user: {\n connect: {\n id: 'Wz0ZgOvKnafrjLDeAeWqx182uBq2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'G',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '178.120.65.30',\n expiresAt: new Date('2021-04-02T01:25:38.250Z'),\n votesFor: 0,\n votesAgainst: 0,\n importedFrom: '{\"description\":{\"links\":[],\"description\":\"G\"},\"quietEndingPeriod\":3600,\"proposerId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"createdAt\":{\"_seconds\":1617269138,\"_nanoseconds\":250000000},\"state\":\"failed\",\"commonId\":\"3540a395-7bab-465c-9923-42c631e26374\",\"votesFor\":0,\"updatedAt\":{\"_seconds\":1617327001,\"_nanoseconds\":716000000},\"join\":{\"ip\":\"178.120.65.30\",\"funding\":0,\"payments\":[],\"fundingType\":\"one-time\"},\"countdownPeriod\":57600,\"votesAgainst\":0,\"votes\":[],\"type\":\"join\",\"id\":\"11eb78d2-cacc-4993-9754-69029a3ec446\"}',\n join: {\n create: {\n id: '11eb78d2-cacc-4993-9754-69029a3ec446',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '11eb78d2-cacc-4993-9754-69029a3ec446',\n common: {\n connect: {\n id: '3540a395-7bab-465c-9923-42c631e26374'\n }\n },\n user: {\n connect: {\n id: 'Wz0ZgOvKnafrjLDeAeWqx182uBq2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'G',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '178.120.65.30',\n expiresAt: new Date('2021-04-02T01:25:38.250Z'),\n votesFor: 0,\n votesAgainst: 0,\n importedFrom: '{\"description\":{\"links\":[],\"description\":\"G\"},\"quietEndingPeriod\":3600,\"proposerId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"createdAt\":{\"_seconds\":1617269138,\"_nanoseconds\":250000000},\"state\":\"failed\",\"commonId\":\"3540a395-7bab-465c-9923-42c631e26374\",\"votesFor\":0,\"updatedAt\":{\"_seconds\":1617327001,\"_nanoseconds\":716000000},\"join\":{\"ip\":\"178.120.65.30\",\"funding\":0,\"payments\":[],\"fundingType\":\"one-time\"},\"countdownPeriod\":57600,\"votesAgainst\":0,\"votes\":[],\"type\":\"join\",\"id\":\"11eb78d2-cacc-4993-9754-69029a3ec446\"}',\n join: {\n create: {\n id: '11eb78d2-cacc-4993-9754-69029a3ec446',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposerId": "5Bi1KZGIYzW5UIljHgBlO98NXaI2", + "type": "join", + "id": "17a03745-b588-40b3-a4ec-ae5e399e3053", + "createdAt": { + "_seconds": 1615977912, + "_nanoseconds": 904000000 + }, + "join": { + "payments": [], + "fundingType": "one-time", + "ip": "178.120.61.209", + "funding": 0 + }, + "commonId": "82bfdd51-6da9-447a-9eb4-f8c9b9d01cbd", + "state": "failed", + "description": { + "links": [], + "description": "Reject " + }, + "votesFor": 0, + "quietEndingPeriod": 3600, + "updatedAt": { + "_seconds": 1615977933, + "_nanoseconds": 875000000 + }, + "countdownPeriod": 57600, + "votesAgainst": 1, + "votes": [ + { + "voterId": "Wz0ZgOvKnafrjLDeAeWqx182uBq2", + "voteId": "b55ba84f-a149-45ff-9885-e0eb6f676f85", + "voteOutcome": "rejected" + } + ] + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '17a03745-b588-40b3-a4ec-ae5e399e3053',\n common: {\n connect: {\n id: '82bfdd51-6da9-447a-9eb4-f8c9b9d01cbd'\n }\n },\n user: {\n connect: {\n id: '5Bi1KZGIYzW5UIljHgBlO98NXaI2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Reject ',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '178.120.61.209',\n expiresAt: new Date('2021-03-18T02:45:12.904Z'),\n votesFor: 0,\n votesAgainst: 1,\n importedFrom: '{\"proposerId\":\"5Bi1KZGIYzW5UIljHgBlO98NXaI2\",\"type\":\"join\",\"id\":\"17a03745-b588-40b3-a4ec-ae5e399e3053\",\"createdAt\":{\"_seconds\":1615977912,\"_nanoseconds\":904000000},\"join\":{\"payments\":[],\"fundingType\":\"one-time\",\"ip\":\"178.120.61.209\",\"funding\":0},\"commonId\":\"82bfdd51-6da9-447a-9eb4-f8c9b9d01cbd\",\"state\":\"failed\",\"description\":{\"links\":[],\"description\":\"Reject \"},\"votesFor\":0,\"quietEndingPeriod\":3600,\"updatedAt\":{\"_seconds\":1615977933,\"_nanoseconds\":875000000},\"countdownPeriod\":57600,\"votesAgainst\":1,\"votes\":[{\"voterId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"voteId\":\"b55ba84f-a149-45ff-9885-e0eb6f676f85\",\"voteOutcome\":\"rejected\"}]}',\n join: {\n create: {\n id: '17a03745-b588-40b3-a4ec-ae5e399e3053',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '17a03745-b588-40b3-a4ec-ae5e399e3053',\n common: {\n connect: {\n id: '82bfdd51-6da9-447a-9eb4-f8c9b9d01cbd'\n }\n },\n user: {\n connect: {\n id: '5Bi1KZGIYzW5UIljHgBlO98NXaI2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Reject ',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '178.120.61.209',\n expiresAt: new Date('2021-03-18T02:45:12.904Z'),\n votesFor: 0,\n votesAgainst: 1,\n importedFrom: '{\"proposerId\":\"5Bi1KZGIYzW5UIljHgBlO98NXaI2\",\"type\":\"join\",\"id\":\"17a03745-b588-40b3-a4ec-ae5e399e3053\",\"createdAt\":{\"_seconds\":1615977912,\"_nanoseconds\":904000000},\"join\":{\"payments\":[],\"fundingType\":\"one-time\",\"ip\":\"178.120.61.209\",\"funding\":0},\"commonId\":\"82bfdd51-6da9-447a-9eb4-f8c9b9d01cbd\",\"state\":\"failed\",\"description\":{\"links\":[],\"description\":\"Reject \"},\"votesFor\":0,\"quietEndingPeriod\":3600,\"updatedAt\":{\"_seconds\":1615977933,\"_nanoseconds\":875000000},\"countdownPeriod\":57600,\"votesAgainst\":1,\"votes\":[{\"voterId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"voteId\":\"b55ba84f-a149-45ff-9885-e0eb6f676f85\",\"voteOutcome\":\"rejected\"}]}',\n join: {\n create: {\n id: '17a03745-b588-40b3-a4ec-ae5e399e3053',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "votesFor": 0, + "updatedAt": { + "_seconds": 1615962300, + "_nanoseconds": 905000000 + }, + "proposerId": "Wz0ZgOvKnafrjLDeAeWqx182uBq2", + "join": { + "payments": [], + "funding": 0, + "ip": "46.56.242.100", + "fundingType": "one-time" + }, + "votesAgainst": 0, + "commonId": "3540a395-7bab-465c-9923-42c631e26374", + "id": "283ae8bf-f0cc-444c-b10e-73b0a0561f91", + "votes": [], + "quietEndingPeriod": 3600, + "createdAt": { + "_seconds": 1615904441, + "_nanoseconds": 347000000 + }, + "description": { + "description": "Hi", + "links": [] + }, + "countdownPeriod": 57600, + "state": "failed", + "type": "join" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '283ae8bf-f0cc-444c-b10e-73b0a0561f91',\n common: {\n connect: {\n id: '3540a395-7bab-465c-9923-42c631e26374'\n }\n },\n user: {\n connect: {\n id: 'Wz0ZgOvKnafrjLDeAeWqx182uBq2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Hi',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '46.56.242.100',\n expiresAt: new Date('2021-03-17T06:20:41.347Z'),\n votesFor: 0,\n votesAgainst: 0,\n importedFrom: '{\"votesFor\":0,\"updatedAt\":{\"_seconds\":1615962300,\"_nanoseconds\":905000000},\"proposerId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"join\":{\"payments\":[],\"funding\":0,\"ip\":\"46.56.242.100\",\"fundingType\":\"one-time\"},\"votesAgainst\":0,\"commonId\":\"3540a395-7bab-465c-9923-42c631e26374\",\"id\":\"283ae8bf-f0cc-444c-b10e-73b0a0561f91\",\"votes\":[],\"quietEndingPeriod\":3600,\"createdAt\":{\"_seconds\":1615904441,\"_nanoseconds\":347000000},\"description\":{\"description\":\"Hi\",\"links\":[]},\"countdownPeriod\":57600,\"state\":\"failed\",\"type\":\"join\"}',\n join: {\n create: {\n id: '283ae8bf-f0cc-444c-b10e-73b0a0561f91',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '283ae8bf-f0cc-444c-b10e-73b0a0561f91',\n common: {\n connect: {\n id: '3540a395-7bab-465c-9923-42c631e26374'\n }\n },\n user: {\n connect: {\n id: 'Wz0ZgOvKnafrjLDeAeWqx182uBq2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Hi',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '46.56.242.100',\n expiresAt: new Date('2021-03-17T06:20:41.347Z'),\n votesFor: 0,\n votesAgainst: 0,\n importedFrom: '{\"votesFor\":0,\"updatedAt\":{\"_seconds\":1615962300,\"_nanoseconds\":905000000},\"proposerId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"join\":{\"payments\":[],\"funding\":0,\"ip\":\"46.56.242.100\",\"fundingType\":\"one-time\"},\"votesAgainst\":0,\"commonId\":\"3540a395-7bab-465c-9923-42c631e26374\",\"id\":\"283ae8bf-f0cc-444c-b10e-73b0a0561f91\",\"votes\":[],\"quietEndingPeriod\":3600,\"createdAt\":{\"_seconds\":1615904441,\"_nanoseconds\":347000000},\"description\":{\"description\":\"Hi\",\"links\":[]},\"countdownPeriod\":57600,\"state\":\"failed\",\"type\":\"join\"}',\n join: {\n create: {\n id: '283ae8bf-f0cc-444c-b10e-73b0a0561f91',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "description": { + "description": "Reject pls ", + "links": [] + }, + "votes": [ + { + "voterId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "voteOutcome": "approved", + "voteId": "5c24c08d-3d0f-4fd7-bceb-34554171b41a" + } + ], + "proposerId": "2HM9WnVvr9aDYbckjCo4cIDjncY2", + "type": "join", + "createdAt": { + "_seconds": 1615975248, + "_nanoseconds": 834000000 + }, + "votesFor": 1, + "updatedAt": { + "_seconds": 1616033101, + "_nanoseconds": 4000000 + }, + "countdownPeriod": 57600, + "join": { + "payments": [], + "funding": 0, + "fundingType": "one-time", + "ip": "178.120.61.209" + }, + "commonId": "8d1d4dd3-ccf4-48f8-90f2-01f8a9448534", + "quietEndingPeriod": 3600, + "votesAgainst": 0, + "state": "passed", + "id": "2b799e8d-6acd-46a3-97fa-1108f035edfa" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '2b799e8d-6acd-46a3-97fa-1108f035edfa',\n common: {\n connect: {\n id: '8d1d4dd3-ccf4-48f8-90f2-01f8a9448534'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: '2HM9WnVvr9aDYbckjCo4cIDjncY2',\n commonId: '8d1d4dd3-ccf4-48f8-90f2-01f8a9448534'\n }\n }\n },\n user: {\n connect: {\n id: '2HM9WnVvr9aDYbckjCo4cIDjncY2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Reject pls ',\n files: [],\n images: [],\n links: [],\n state: 'Accepted',\n ipAddress: '178.120.61.209',\n expiresAt: new Date('2021-03-18T02:00:48.834Z'),\n votesFor: 1,\n votesAgainst: 0,\n importedFrom: '{\"description\":{\"description\":\"Reject pls \",\"links\":[]},\"votes\":[{\"voterId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"voteOutcome\":\"approved\",\"voteId\":\"5c24c08d-3d0f-4fd7-bceb-34554171b41a\"}],\"proposerId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\",\"type\":\"join\",\"createdAt\":{\"_seconds\":1615975248,\"_nanoseconds\":834000000},\"votesFor\":1,\"updatedAt\":{\"_seconds\":1616033101,\"_nanoseconds\":4000000},\"countdownPeriod\":57600,\"join\":{\"payments\":[],\"funding\":0,\"fundingType\":\"one-time\",\"ip\":\"178.120.61.209\"},\"commonId\":\"8d1d4dd3-ccf4-48f8-90f2-01f8a9448534\",\"quietEndingPeriod\":3600,\"votesAgainst\":0,\"state\":\"passed\",\"id\":\"2b799e8d-6acd-46a3-97fa-1108f035edfa\"}',\n join: {\n create: {\n id: '2b799e8d-6acd-46a3-97fa-1108f035edfa',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '2b799e8d-6acd-46a3-97fa-1108f035edfa',\n common: {\n connect: {\n id: '8d1d4dd3-ccf4-48f8-90f2-01f8a9448534'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: '2HM9WnVvr9aDYbckjCo4cIDjncY2',\n commonId: '8d1d4dd3-ccf4-48f8-90f2-01f8a9448534'\n }\n }\n },\n user: {\n connect: {\n id: '2HM9WnVvr9aDYbckjCo4cIDjncY2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Reject pls ',\n files: [],\n images: [],\n links: [],\n state: 'Accepted',\n ipAddress: '178.120.61.209',\n expiresAt: new Date('2021-03-18T02:00:48.834Z'),\n votesFor: 1,\n votesAgainst: 0,\n importedFrom: '{\"description\":{\"description\":\"Reject pls \",\"links\":[]},\"votes\":[{\"voterId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"voteOutcome\":\"approved\",\"voteId\":\"5c24c08d-3d0f-4fd7-bceb-34554171b41a\"}],\"proposerId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\",\"type\":\"join\",\"createdAt\":{\"_seconds\":1615975248,\"_nanoseconds\":834000000},\"votesFor\":1,\"updatedAt\":{\"_seconds\":1616033101,\"_nanoseconds\":4000000},\"countdownPeriod\":57600,\"join\":{\"payments\":[],\"funding\":0,\"fundingType\":\"one-time\",\"ip\":\"178.120.61.209\"},\"commonId\":\"8d1d4dd3-ccf4-48f8-90f2-01f8a9448534\",\"quietEndingPeriod\":3600,\"votesAgainst\":0,\"state\":\"passed\",\"id\":\"2b799e8d-6acd-46a3-97fa-1108f035edfa\"}',\n join: {\n create: {\n id: '2b799e8d-6acd-46a3-97fa-1108f035edfa',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "votes": [ + { + "voterId": "RN4V4T2Z4gf2ld9QhwanrQbSnP23", + "voteOutcome": "approved", + "voteId": "6897e1f1-869b-42f0-a5f5-fc112f4fea9e" + } + ], + "updatedAt": { + "_seconds": 1615275903, + "_nanoseconds": 223000000 + }, + "commonId": "9aafbea4-fccb-40ea-a791-cfb013703d92", + "join": { + "ip": "178.120.66.122", + "fundingType": "one-time", + "funding": 0, + "payments": [] + }, + "countdownPeriod": 57600, + "quietEndingPeriod": 3600, + "id": "2f0875bc-98b3-400d-a70d-20ce21aa7278", + "votesFor": 1, + "type": "join", + "proposerId": "2HM9WnVvr9aDYbckjCo4cIDjncY2", + "state": "passed", + "createdAt": { + "_seconds": 1615275667, + "_nanoseconds": 467000000 + }, + "votesAgainst": 0, + "description": { + "description": "Hi", + "links": [] + } + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '2f0875bc-98b3-400d-a70d-20ce21aa7278',\n common: {\n connect: {\n id: '9aafbea4-fccb-40ea-a791-cfb013703d92'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: '2HM9WnVvr9aDYbckjCo4cIDjncY2',\n commonId: '9aafbea4-fccb-40ea-a791-cfb013703d92'\n }\n }\n },\n user: {\n connect: {\n id: '2HM9WnVvr9aDYbckjCo4cIDjncY2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Hi',\n files: [],\n images: [],\n links: [],\n state: 'Accepted',\n ipAddress: '178.120.66.122',\n expiresAt: new Date('2021-03-09T23:41:07.467Z'),\n votesFor: 1,\n votesAgainst: 0,\n importedFrom: '{\"votes\":[{\"voterId\":\"RN4V4T2Z4gf2ld9QhwanrQbSnP23\",\"voteOutcome\":\"approved\",\"voteId\":\"6897e1f1-869b-42f0-a5f5-fc112f4fea9e\"}],\"updatedAt\":{\"_seconds\":1615275903,\"_nanoseconds\":223000000},\"commonId\":\"9aafbea4-fccb-40ea-a791-cfb013703d92\",\"join\":{\"ip\":\"178.120.66.122\",\"fundingType\":\"one-time\",\"funding\":0,\"payments\":[]},\"countdownPeriod\":57600,\"quietEndingPeriod\":3600,\"id\":\"2f0875bc-98b3-400d-a70d-20ce21aa7278\",\"votesFor\":1,\"type\":\"join\",\"proposerId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\",\"state\":\"passed\",\"createdAt\":{\"_seconds\":1615275667,\"_nanoseconds\":467000000},\"votesAgainst\":0,\"description\":{\"description\":\"Hi\",\"links\":[]}}',\n join: {\n create: {\n id: '2f0875bc-98b3-400d-a70d-20ce21aa7278',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '2f0875bc-98b3-400d-a70d-20ce21aa7278',\n common: {\n connect: {\n id: '9aafbea4-fccb-40ea-a791-cfb013703d92'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: '2HM9WnVvr9aDYbckjCo4cIDjncY2',\n commonId: '9aafbea4-fccb-40ea-a791-cfb013703d92'\n }\n }\n },\n user: {\n connect: {\n id: '2HM9WnVvr9aDYbckjCo4cIDjncY2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Hi',\n files: [],\n images: [],\n links: [],\n state: 'Accepted',\n ipAddress: '178.120.66.122',\n expiresAt: new Date('2021-03-09T23:41:07.467Z'),\n votesFor: 1,\n votesAgainst: 0,\n importedFrom: '{\"votes\":[{\"voterId\":\"RN4V4T2Z4gf2ld9QhwanrQbSnP23\",\"voteOutcome\":\"approved\",\"voteId\":\"6897e1f1-869b-42f0-a5f5-fc112f4fea9e\"}],\"updatedAt\":{\"_seconds\":1615275903,\"_nanoseconds\":223000000},\"commonId\":\"9aafbea4-fccb-40ea-a791-cfb013703d92\",\"join\":{\"ip\":\"178.120.66.122\",\"fundingType\":\"one-time\",\"funding\":0,\"payments\":[]},\"countdownPeriod\":57600,\"quietEndingPeriod\":3600,\"id\":\"2f0875bc-98b3-400d-a70d-20ce21aa7278\",\"votesFor\":1,\"type\":\"join\",\"proposerId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\",\"state\":\"passed\",\"createdAt\":{\"_seconds\":1615275667,\"_nanoseconds\":467000000},\"votesAgainst\":0,\"description\":{\"description\":\"Hi\",\"links\":[]}}',\n join: {\n create: {\n id: '2f0875bc-98b3-400d-a70d-20ce21aa7278',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "state": "passed", + "id": "31532038-bfc2-406d-bf6a-c0e6fc265df6", + "quietEndingPeriod": 3600, + "countdownPeriod": 57600, + "type": "join", + "votesAgainst": 0, + "updatedAt": { + "_seconds": 1614593237, + "_nanoseconds": 160000000 + }, + "commonId": "0c233ec1-c0a4-4776-8730-79777239a997", + "join": { + "fundingType": "one-time", + "ip": "178.120.63.174", + "funding": 0, + "payments": [] + }, + "createdAt": { + "_seconds": 1614593184, + "_nanoseconds": 149000000 + }, + "votes": [ + { + "voteOutcome": "approved", + "voterId": "Wz0ZgOvKnafrjLDeAeWqx182uBq2", + "voteId": "e0f807ce-2dc1-4315-91ac-037641ceaffe" + }, + { + "voteOutcome": "approved", + "voterId": "2HM9WnVvr9aDYbckjCo4cIDjncY2", + "voteId": "d0b0fc72-6dd9-4f7e-94d7-a3d57fee683e" + } + ], + "votesFor": 2, + "proposerId": "5Bi1KZGIYzW5UIljHgBlO98NXaI2", + "description": { + "links": [], + "description": "H8" + } + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '31532038-bfc2-406d-bf6a-c0e6fc265df6',\n common: {\n connect: {\n id: '0c233ec1-c0a4-4776-8730-79777239a997'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: '5Bi1KZGIYzW5UIljHgBlO98NXaI2',\n commonId: '0c233ec1-c0a4-4776-8730-79777239a997'\n }\n }\n },\n user: {\n connect: {\n id: '5Bi1KZGIYzW5UIljHgBlO98NXaI2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'H8',\n files: [],\n images: [],\n links: [],\n state: 'Accepted',\n ipAddress: '178.120.63.174',\n expiresAt: new Date('2021-03-02T02:06:24.149Z'),\n votesFor: 2,\n votesAgainst: 0,\n importedFrom: '{\"state\":\"passed\",\"id\":\"31532038-bfc2-406d-bf6a-c0e6fc265df6\",\"quietEndingPeriod\":3600,\"countdownPeriod\":57600,\"type\":\"join\",\"votesAgainst\":0,\"updatedAt\":{\"_seconds\":1614593237,\"_nanoseconds\":160000000},\"commonId\":\"0c233ec1-c0a4-4776-8730-79777239a997\",\"join\":{\"fundingType\":\"one-time\",\"ip\":\"178.120.63.174\",\"funding\":0,\"payments\":[]},\"createdAt\":{\"_seconds\":1614593184,\"_nanoseconds\":149000000},\"votes\":[{\"voteOutcome\":\"approved\",\"voterId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"voteId\":\"e0f807ce-2dc1-4315-91ac-037641ceaffe\"},{\"voteOutcome\":\"approved\",\"voterId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\",\"voteId\":\"d0b0fc72-6dd9-4f7e-94d7-a3d57fee683e\"}],\"votesFor\":2,\"proposerId\":\"5Bi1KZGIYzW5UIljHgBlO98NXaI2\",\"description\":{\"links\":[],\"description\":\"H8\"}}',\n join: {\n create: {\n id: '31532038-bfc2-406d-bf6a-c0e6fc265df6',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '31532038-bfc2-406d-bf6a-c0e6fc265df6',\n common: {\n connect: {\n id: '0c233ec1-c0a4-4776-8730-79777239a997'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: '5Bi1KZGIYzW5UIljHgBlO98NXaI2',\n commonId: '0c233ec1-c0a4-4776-8730-79777239a997'\n }\n }\n },\n user: {\n connect: {\n id: '5Bi1KZGIYzW5UIljHgBlO98NXaI2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'H8',\n files: [],\n images: [],\n links: [],\n state: 'Accepted',\n ipAddress: '178.120.63.174',\n expiresAt: new Date('2021-03-02T02:06:24.149Z'),\n votesFor: 2,\n votesAgainst: 0,\n importedFrom: '{\"state\":\"passed\",\"id\":\"31532038-bfc2-406d-bf6a-c0e6fc265df6\",\"quietEndingPeriod\":3600,\"countdownPeriod\":57600,\"type\":\"join\",\"votesAgainst\":0,\"updatedAt\":{\"_seconds\":1614593237,\"_nanoseconds\":160000000},\"commonId\":\"0c233ec1-c0a4-4776-8730-79777239a997\",\"join\":{\"fundingType\":\"one-time\",\"ip\":\"178.120.63.174\",\"funding\":0,\"payments\":[]},\"createdAt\":{\"_seconds\":1614593184,\"_nanoseconds\":149000000},\"votes\":[{\"voteOutcome\":\"approved\",\"voterId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"voteId\":\"e0f807ce-2dc1-4315-91ac-037641ceaffe\"},{\"voteOutcome\":\"approved\",\"voterId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\",\"voteId\":\"d0b0fc72-6dd9-4f7e-94d7-a3d57fee683e\"}],\"votesFor\":2,\"proposerId\":\"5Bi1KZGIYzW5UIljHgBlO98NXaI2\",\"description\":{\"links\":[],\"description\":\"H8\"}}',\n join: {\n create: {\n id: '31532038-bfc2-406d-bf6a-c0e6fc265df6',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "votes": [], + "state": "failed", + "votesFor": 0, + "commonId": "004abe8d-1006-4b63-9e7a-5d824c4fb1fd", + "updatedAt": { + "_seconds": 1616652301, + "_nanoseconds": 652000000 + }, + "id": "3192728c-7685-4afc-a94f-11fa7429912e", + "join": { + "fundingType": "one-time", + "payments": [], + "funding": 0, + "ip": "79.153.235.82" + }, + "description": { + "links": [ + { + "value": "https://www.google.com", + "title": "Testing link" + } + ], + "description": "I like to test" + }, + "countdownPeriod": 57600, + "type": "join", + "votesAgainst": 0, + "createdAt": { + "_seconds": 1616594439, + "_nanoseconds": 203000000 + }, + "quietEndingPeriod": 3600, + "proposerId": "h59V0do13qhpeH9xDyoLaCZucTm1" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '3192728c-7685-4afc-a94f-11fa7429912e',\n common: {\n connect: {\n id: '004abe8d-1006-4b63-9e7a-5d824c4fb1fd'\n }\n },\n user: {\n connect: {\n id: 'h59V0do13qhpeH9xDyoLaCZucTm1'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'I like to test',\n files: [],\n images: [],\n links: [\n {\n title: 'Testing link',\n url: 'https://www.google.com'\n }\n ],\n state: 'Rejected',\n ipAddress: '79.153.235.82',\n expiresAt: new Date('2021-03-25T06:00:39.203Z'),\n votesFor: 0,\n votesAgainst: 0,\n importedFrom: '{\"votes\":[],\"state\":\"failed\",\"votesFor\":0,\"commonId\":\"004abe8d-1006-4b63-9e7a-5d824c4fb1fd\",\"updatedAt\":{\"_seconds\":1616652301,\"_nanoseconds\":652000000},\"id\":\"3192728c-7685-4afc-a94f-11fa7429912e\",\"join\":{\"fundingType\":\"one-time\",\"payments\":[],\"funding\":0,\"ip\":\"79.153.235.82\"},\"description\":{\"links\":[{\"value\":\"https://www.google.com\",\"title\":\"Testing link\"}],\"description\":\"I like to test\"},\"countdownPeriod\":57600,\"type\":\"join\",\"votesAgainst\":0,\"createdAt\":{\"_seconds\":1616594439,\"_nanoseconds\":203000000},\"quietEndingPeriod\":3600,\"proposerId\":\"h59V0do13qhpeH9xDyoLaCZucTm1\"}',\n join: {\n create: {\n id: '3192728c-7685-4afc-a94f-11fa7429912e',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '3192728c-7685-4afc-a94f-11fa7429912e',\n common: {\n connect: {\n id: '004abe8d-1006-4b63-9e7a-5d824c4fb1fd'\n }\n },\n user: {\n connect: {\n id: 'h59V0do13qhpeH9xDyoLaCZucTm1'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'I like to test',\n files: [],\n images: [],\n links: [\n {\n title: 'Testing link',\n url: 'https://www.google.com'\n }\n ],\n state: 'Rejected',\n ipAddress: '79.153.235.82',\n expiresAt: new Date('2021-03-25T06:00:39.203Z'),\n votesFor: 0,\n votesAgainst: 0,\n importedFrom: '{\"votes\":[],\"state\":\"failed\",\"votesFor\":0,\"commonId\":\"004abe8d-1006-4b63-9e7a-5d824c4fb1fd\",\"updatedAt\":{\"_seconds\":1616652301,\"_nanoseconds\":652000000},\"id\":\"3192728c-7685-4afc-a94f-11fa7429912e\",\"join\":{\"fundingType\":\"one-time\",\"payments\":[],\"funding\":0,\"ip\":\"79.153.235.82\"},\"description\":{\"links\":[{\"value\":\"https://www.google.com\",\"title\":\"Testing link\"}],\"description\":\"I like to test\"},\"countdownPeriod\":57600,\"type\":\"join\",\"votesAgainst\":0,\"createdAt\":{\"_seconds\":1616594439,\"_nanoseconds\":203000000},\"quietEndingPeriod\":3600,\"proposerId\":\"h59V0do13qhpeH9xDyoLaCZucTm1\"}',\n join: {\n create: {\n id: '3192728c-7685-4afc-a94f-11fa7429912e',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposerId": "b0Kxsd0x4OMLeOlDnheysBz5THo1", + "updatedAt": { + "_seconds": 1612434548, + "_nanoseconds": 270000000 + }, + "createdAt": { + "_seconds": 1612434511, + "_nanoseconds": 515000000 + }, + "votes": [ + { + "voterId": "tPfZmRJnQjdnXIlgMZyfphEat3n2", + "voteId": "0055dac0-9508-48bc-900b-66f8a6a34811", + "voteOutcome": "approved" + } + ], + "state": "passed", + "id": "352e13fd-cafd-4199-966d-5f949db2e362", + "type": "join", + "votesFor": 1, + "commonId": "883f8443-ce02-4310-9794-f98bafed94b3", + "votesAgainst": 0, + "join": { + "fundingType": "one-time", + "funding": 0, + "payments": [] + }, + "quietEndingPeriod": 3600, + "countdownPeriod": 57600, + "description": { + "links": [], + "description": "Let me in" + } + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '352e13fd-cafd-4199-966d-5f949db2e362',\n common: {\n connect: {\n id: '883f8443-ce02-4310-9794-f98bafed94b3'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: 'b0Kxsd0x4OMLeOlDnheysBz5THo1',\n commonId: '883f8443-ce02-4310-9794-f98bafed94b3'\n }\n }\n },\n user: {\n connect: {\n id: 'b0Kxsd0x4OMLeOlDnheysBz5THo1'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Let me in',\n files: [],\n images: [],\n links: [],\n state: 'Accepted',\n ipAddress: undefined,\n expiresAt: new Date('2021-02-05T02:28:31.515Z'),\n votesFor: 1,\n votesAgainst: 0,\n importedFrom: '{\"proposerId\":\"b0Kxsd0x4OMLeOlDnheysBz5THo1\",\"updatedAt\":{\"_seconds\":1612434548,\"_nanoseconds\":270000000},\"createdAt\":{\"_seconds\":1612434511,\"_nanoseconds\":515000000},\"votes\":[{\"voterId\":\"tPfZmRJnQjdnXIlgMZyfphEat3n2\",\"voteId\":\"0055dac0-9508-48bc-900b-66f8a6a34811\",\"voteOutcome\":\"approved\"}],\"state\":\"passed\",\"id\":\"352e13fd-cafd-4199-966d-5f949db2e362\",\"type\":\"join\",\"votesFor\":1,\"commonId\":\"883f8443-ce02-4310-9794-f98bafed94b3\",\"votesAgainst\":0,\"join\":{\"fundingType\":\"one-time\",\"funding\":0,\"payments\":[]},\"quietEndingPeriod\":3600,\"countdownPeriod\":57600,\"description\":{\"links\":[],\"description\":\"Let me in\"}}',\n join: {\n create: {\n id: '352e13fd-cafd-4199-966d-5f949db2e362',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '352e13fd-cafd-4199-966d-5f949db2e362',\n common: {\n connect: {\n id: '883f8443-ce02-4310-9794-f98bafed94b3'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: 'b0Kxsd0x4OMLeOlDnheysBz5THo1',\n commonId: '883f8443-ce02-4310-9794-f98bafed94b3'\n }\n }\n },\n user: {\n connect: {\n id: 'b0Kxsd0x4OMLeOlDnheysBz5THo1'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Let me in',\n files: [],\n images: [],\n links: [],\n state: 'Accepted',\n ipAddress: undefined,\n expiresAt: new Date('2021-02-05T02:28:31.515Z'),\n votesFor: 1,\n votesAgainst: 0,\n importedFrom: '{\"proposerId\":\"b0Kxsd0x4OMLeOlDnheysBz5THo1\",\"updatedAt\":{\"_seconds\":1612434548,\"_nanoseconds\":270000000},\"createdAt\":{\"_seconds\":1612434511,\"_nanoseconds\":515000000},\"votes\":[{\"voterId\":\"tPfZmRJnQjdnXIlgMZyfphEat3n2\",\"voteId\":\"0055dac0-9508-48bc-900b-66f8a6a34811\",\"voteOutcome\":\"approved\"}],\"state\":\"passed\",\"id\":\"352e13fd-cafd-4199-966d-5f949db2e362\",\"type\":\"join\",\"votesFor\":1,\"commonId\":\"883f8443-ce02-4310-9794-f98bafed94b3\",\"votesAgainst\":0,\"join\":{\"fundingType\":\"one-time\",\"funding\":0,\"payments\":[]},\"quietEndingPeriod\":3600,\"countdownPeriod\":57600,\"description\":{\"links\":[],\"description\":\"Let me in\"}}',\n join: {\n create: {\n id: '352e13fd-cafd-4199-966d-5f949db2e362',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "votesFor": 0, + "commonId": "82bfdd51-6da9-447a-9eb4-f8c9b9d01cbd", + "proposerId": "2HM9WnVvr9aDYbckjCo4cIDjncY2", + "id": "38871844-6fef-4c8f-937e-f3c476983ae8", + "votes": [ + { + "voterId": "Wz0ZgOvKnafrjLDeAeWqx182uBq2", + "voteOutcome": "rejected", + "voteId": "17ba1587-8055-4f5c-9b00-001bd77e68b2" + } + ], + "countdownPeriod": 57600, + "join": { + "funding": 0, + "fundingType": "one-time", + "ip": "178.120.61.209", + "payments": [] + }, + "votesAgainst": 1, + "quietEndingPeriod": 3600, + "createdAt": { + "_seconds": 1615975658, + "_nanoseconds": 797000000 + }, + "state": "failed", + "description": { + "links": [], + "description": "Test" + }, + "updatedAt": { + "_seconds": 1615977487, + "_nanoseconds": 57000000 + }, + "type": "join" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '38871844-6fef-4c8f-937e-f3c476983ae8',\n common: {\n connect: {\n id: '82bfdd51-6da9-447a-9eb4-f8c9b9d01cbd'\n }\n },\n user: {\n connect: {\n id: '2HM9WnVvr9aDYbckjCo4cIDjncY2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Test',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '178.120.61.209',\n expiresAt: new Date('2021-03-18T02:07:38.797Z'),\n votesFor: 0,\n votesAgainst: 1,\n importedFrom: '{\"votesFor\":0,\"commonId\":\"82bfdd51-6da9-447a-9eb4-f8c9b9d01cbd\",\"proposerId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\",\"id\":\"38871844-6fef-4c8f-937e-f3c476983ae8\",\"votes\":[{\"voterId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"voteOutcome\":\"rejected\",\"voteId\":\"17ba1587-8055-4f5c-9b00-001bd77e68b2\"}],\"countdownPeriod\":57600,\"join\":{\"funding\":0,\"fundingType\":\"one-time\",\"ip\":\"178.120.61.209\",\"payments\":[]},\"votesAgainst\":1,\"quietEndingPeriod\":3600,\"createdAt\":{\"_seconds\":1615975658,\"_nanoseconds\":797000000},\"state\":\"failed\",\"description\":{\"links\":[],\"description\":\"Test\"},\"updatedAt\":{\"_seconds\":1615977487,\"_nanoseconds\":57000000},\"type\":\"join\"}',\n join: {\n create: {\n id: '38871844-6fef-4c8f-937e-f3c476983ae8',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '38871844-6fef-4c8f-937e-f3c476983ae8',\n common: {\n connect: {\n id: '82bfdd51-6da9-447a-9eb4-f8c9b9d01cbd'\n }\n },\n user: {\n connect: {\n id: '2HM9WnVvr9aDYbckjCo4cIDjncY2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Test',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '178.120.61.209',\n expiresAt: new Date('2021-03-18T02:07:38.797Z'),\n votesFor: 0,\n votesAgainst: 1,\n importedFrom: '{\"votesFor\":0,\"commonId\":\"82bfdd51-6da9-447a-9eb4-f8c9b9d01cbd\",\"proposerId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\",\"id\":\"38871844-6fef-4c8f-937e-f3c476983ae8\",\"votes\":[{\"voterId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"voteOutcome\":\"rejected\",\"voteId\":\"17ba1587-8055-4f5c-9b00-001bd77e68b2\"}],\"countdownPeriod\":57600,\"join\":{\"funding\":0,\"fundingType\":\"one-time\",\"ip\":\"178.120.61.209\",\"payments\":[]},\"votesAgainst\":1,\"quietEndingPeriod\":3600,\"createdAt\":{\"_seconds\":1615975658,\"_nanoseconds\":797000000},\"state\":\"failed\",\"description\":{\"links\":[],\"description\":\"Test\"},\"updatedAt\":{\"_seconds\":1615977487,\"_nanoseconds\":57000000},\"type\":\"join\"}',\n join: {\n create: {\n id: '38871844-6fef-4c8f-937e-f3c476983ae8',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "commonId": "858836dc-776d-4b5d-a999-4cc154f81e11", + "type": "join", + "updatedAt": { + "_seconds": 1615878600, + "_nanoseconds": 500000000 + }, + "votesFor": 0, + "join": { + "payments": [], + "fundingType": "one-time", + "ip": "46.53.242.163", + "funding": 0 + }, + "state": "failed", + "id": "439640a5-7d19-4b5f-a7fa-0ca5924eb712", + "description": { + "links": [], + "description": "Added FPS dads dfsd FPS dfsdf " + }, + "votes": [], + "proposerId": "WMzKDGJSlWM2Rjx9JVp9StB2Bni2", + "countdownPeriod": 57600, + "quietEndingPeriod": 3600, + "votesAgainst": 0, + "createdAt": { + "_seconds": 1615820752, + "_nanoseconds": 50000000 + } + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '439640a5-7d19-4b5f-a7fa-0ca5924eb712',\n common: {\n connect: {\n id: '858836dc-776d-4b5d-a999-4cc154f81e11'\n }\n },\n user: {\n connect: {\n id: 'WMzKDGJSlWM2Rjx9JVp9StB2Bni2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Added FPS dads dfsd FPS dfsdf ',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '46.53.242.163',\n expiresAt: new Date('2021-03-16T07:05:52.050Z'),\n votesFor: 0,\n votesAgainst: 0,\n importedFrom: '{\"commonId\":\"858836dc-776d-4b5d-a999-4cc154f81e11\",\"type\":\"join\",\"updatedAt\":{\"_seconds\":1615878600,\"_nanoseconds\":500000000},\"votesFor\":0,\"join\":{\"payments\":[],\"fundingType\":\"one-time\",\"ip\":\"46.53.242.163\",\"funding\":0},\"state\":\"failed\",\"id\":\"439640a5-7d19-4b5f-a7fa-0ca5924eb712\",\"description\":{\"links\":[],\"description\":\"Added FPS dads dfsd FPS dfsdf \"},\"votes\":[],\"proposerId\":\"WMzKDGJSlWM2Rjx9JVp9StB2Bni2\",\"countdownPeriod\":57600,\"quietEndingPeriod\":3600,\"votesAgainst\":0,\"createdAt\":{\"_seconds\":1615820752,\"_nanoseconds\":50000000}}',\n join: {\n create: {\n id: '439640a5-7d19-4b5f-a7fa-0ca5924eb712',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '439640a5-7d19-4b5f-a7fa-0ca5924eb712',\n common: {\n connect: {\n id: '858836dc-776d-4b5d-a999-4cc154f81e11'\n }\n },\n user: {\n connect: {\n id: 'WMzKDGJSlWM2Rjx9JVp9StB2Bni2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Added FPS dads dfsd FPS dfsdf ',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '46.53.242.163',\n expiresAt: new Date('2021-03-16T07:05:52.050Z'),\n votesFor: 0,\n votesAgainst: 0,\n importedFrom: '{\"commonId\":\"858836dc-776d-4b5d-a999-4cc154f81e11\",\"type\":\"join\",\"updatedAt\":{\"_seconds\":1615878600,\"_nanoseconds\":500000000},\"votesFor\":0,\"join\":{\"payments\":[],\"fundingType\":\"one-time\",\"ip\":\"46.53.242.163\",\"funding\":0},\"state\":\"failed\",\"id\":\"439640a5-7d19-4b5f-a7fa-0ca5924eb712\",\"description\":{\"links\":[],\"description\":\"Added FPS dads dfsd FPS dfsdf \"},\"votes\":[],\"proposerId\":\"WMzKDGJSlWM2Rjx9JVp9StB2Bni2\",\"countdownPeriod\":57600,\"quietEndingPeriod\":3600,\"votesAgainst\":0,\"createdAt\":{\"_seconds\":1615820752,\"_nanoseconds\":50000000}}',\n join: {\n create: {\n id: '439640a5-7d19-4b5f-a7fa-0ca5924eb712',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposerId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "votes": [ + { + "voteOutcome": "approved", + "voterId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "voteId": "f01a52d6-09ac-44ae-b22c-316cf452310f" + } + ], + "countdownPeriod": 57600, + "createdAt": { + "_seconds": 1611065577, + "_nanoseconds": 625000000 + }, + "type": "join", + "votesFor": 1, + "id": "4f72544a-8fdd-48a1-ab59-b3f4d03b56e9", + "description": { + "links": [], + "description": "Hi" + }, + "votesAgainst": 0, + "updatedAt": { + "_seconds": 1611065607, + "_nanoseconds": 248000000 + }, + "quietEndingPeriod": 3600, + "state": "passed", + "join": { + "fundingType": "one-time", + "payments": [], + "funding": 0 + }, + "commonId": "3c19edc2-0b97-4713-93c0-85683b56276b" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '4f72544a-8fdd-48a1-ab59-b3f4d03b56e9',\n common: {\n connect: {\n id: '3c19edc2-0b97-4713-93c0-85683b56276b'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: '97d5y9WXk1fEZv767j1ejKuHevi1',\n commonId: '3c19edc2-0b97-4713-93c0-85683b56276b'\n }\n }\n },\n user: {\n connect: {\n id: '97d5y9WXk1fEZv767j1ejKuHevi1'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Hi',\n files: [],\n images: [],\n links: [],\n state: 'Accepted',\n ipAddress: undefined,\n expiresAt: new Date('2021-01-20T06:12:57.625Z'),\n votesFor: 1,\n votesAgainst: 0,\n importedFrom: '{\"proposerId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"votes\":[{\"voteOutcome\":\"approved\",\"voterId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"voteId\":\"f01a52d6-09ac-44ae-b22c-316cf452310f\"}],\"countdownPeriod\":57600,\"createdAt\":{\"_seconds\":1611065577,\"_nanoseconds\":625000000},\"type\":\"join\",\"votesFor\":1,\"id\":\"4f72544a-8fdd-48a1-ab59-b3f4d03b56e9\",\"description\":{\"links\":[],\"description\":\"Hi\"},\"votesAgainst\":0,\"updatedAt\":{\"_seconds\":1611065607,\"_nanoseconds\":248000000},\"quietEndingPeriod\":3600,\"state\":\"passed\",\"join\":{\"fundingType\":\"one-time\",\"payments\":[],\"funding\":0},\"commonId\":\"3c19edc2-0b97-4713-93c0-85683b56276b\"}',\n join: {\n create: {\n id: '4f72544a-8fdd-48a1-ab59-b3f4d03b56e9',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '4f72544a-8fdd-48a1-ab59-b3f4d03b56e9',\n common: {\n connect: {\n id: '3c19edc2-0b97-4713-93c0-85683b56276b'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: '97d5y9WXk1fEZv767j1ejKuHevi1',\n commonId: '3c19edc2-0b97-4713-93c0-85683b56276b'\n }\n }\n },\n user: {\n connect: {\n id: '97d5y9WXk1fEZv767j1ejKuHevi1'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Hi',\n files: [],\n images: [],\n links: [],\n state: 'Accepted',\n ipAddress: undefined,\n expiresAt: new Date('2021-01-20T06:12:57.625Z'),\n votesFor: 1,\n votesAgainst: 0,\n importedFrom: '{\"proposerId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"votes\":[{\"voteOutcome\":\"approved\",\"voterId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"voteId\":\"f01a52d6-09ac-44ae-b22c-316cf452310f\"}],\"countdownPeriod\":57600,\"createdAt\":{\"_seconds\":1611065577,\"_nanoseconds\":625000000},\"type\":\"join\",\"votesFor\":1,\"id\":\"4f72544a-8fdd-48a1-ab59-b3f4d03b56e9\",\"description\":{\"links\":[],\"description\":\"Hi\"},\"votesAgainst\":0,\"updatedAt\":{\"_seconds\":1611065607,\"_nanoseconds\":248000000},\"quietEndingPeriod\":3600,\"state\":\"passed\",\"join\":{\"fundingType\":\"one-time\",\"payments\":[],\"funding\":0},\"commonId\":\"3c19edc2-0b97-4713-93c0-85683b56276b\"}',\n join: {\n create: {\n id: '4f72544a-8fdd-48a1-ab59-b3f4d03b56e9',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "updatedAt": { + "_seconds": 1615960200, + "_nanoseconds": 698000000 + }, + "proposerId": "2HM9WnVvr9aDYbckjCo4cIDjncY2", + "votes": [], + "countdownPeriod": 57600, + "commonId": "2383dd8c-f468-4bf1-b74a-06e8da55a22f", + "join": { + "payments": [], + "fundingType": "one-time", + "ip": "46.56.242.100", + "funding": 0 + }, + "type": "join", + "votesAgainst": 0, + "id": "584bf235-6fe8-40f7-b056-b46c363f9854", + "state": "failed", + "votesFor": 0, + "description": { + "description": "1", + "links": [] + }, + "createdAt": { + "_seconds": 1615902416, + "_nanoseconds": 224000000 + }, + "quietEndingPeriod": 3600 + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '584bf235-6fe8-40f7-b056-b46c363f9854',\n common: {\n connect: {\n id: '2383dd8c-f468-4bf1-b74a-06e8da55a22f'\n }\n },\n user: {\n connect: {\n id: '2HM9WnVvr9aDYbckjCo4cIDjncY2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: '1',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '46.56.242.100',\n expiresAt: new Date('2021-03-17T05:46:56.224Z'),\n votesFor: 0,\n votesAgainst: 0,\n importedFrom: '{\"updatedAt\":{\"_seconds\":1615960200,\"_nanoseconds\":698000000},\"proposerId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\",\"votes\":[],\"countdownPeriod\":57600,\"commonId\":\"2383dd8c-f468-4bf1-b74a-06e8da55a22f\",\"join\":{\"payments\":[],\"fundingType\":\"one-time\",\"ip\":\"46.56.242.100\",\"funding\":0},\"type\":\"join\",\"votesAgainst\":0,\"id\":\"584bf235-6fe8-40f7-b056-b46c363f9854\",\"state\":\"failed\",\"votesFor\":0,\"description\":{\"description\":\"1\",\"links\":[]},\"createdAt\":{\"_seconds\":1615902416,\"_nanoseconds\":224000000},\"quietEndingPeriod\":3600}',\n join: {\n create: {\n id: '584bf235-6fe8-40f7-b056-b46c363f9854',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '584bf235-6fe8-40f7-b056-b46c363f9854',\n common: {\n connect: {\n id: '2383dd8c-f468-4bf1-b74a-06e8da55a22f'\n }\n },\n user: {\n connect: {\n id: '2HM9WnVvr9aDYbckjCo4cIDjncY2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: '1',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '46.56.242.100',\n expiresAt: new Date('2021-03-17T05:46:56.224Z'),\n votesFor: 0,\n votesAgainst: 0,\n importedFrom: '{\"updatedAt\":{\"_seconds\":1615960200,\"_nanoseconds\":698000000},\"proposerId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\",\"votes\":[],\"countdownPeriod\":57600,\"commonId\":\"2383dd8c-f468-4bf1-b74a-06e8da55a22f\",\"join\":{\"payments\":[],\"fundingType\":\"one-time\",\"ip\":\"46.56.242.100\",\"funding\":0},\"type\":\"join\",\"votesAgainst\":0,\"id\":\"584bf235-6fe8-40f7-b056-b46c363f9854\",\"state\":\"failed\",\"votesFor\":0,\"description\":{\"description\":\"1\",\"links\":[]},\"createdAt\":{\"_seconds\":1615902416,\"_nanoseconds\":224000000},\"quietEndingPeriod\":3600}',\n join: {\n create: {\n id: '584bf235-6fe8-40f7-b056-b46c363f9854',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "state": "failed", + "votesAgainst": 0, + "updatedAt": { + "_seconds": 1620728100, + "_nanoseconds": 716000000 + }, + "description": { + "description": "יןם", + "links": [] + }, + "id": "026f12a1-4881-4a27-a454-5e456c852ed3", + "commonId": "7360f527-44fd-4808-ad78-9b02c9863f4d", + "votesFor": 0, + "createdAt": { + "_seconds": 1620670401, + "_nanoseconds": 418000000 + }, + "join": { + "fundingType": "one-time", + "payments": [], + "ip": "87.70.96.96", + "funding": 0 + }, + "votes": [], + "proposerId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "countdownPeriod": 57600, + "quietEndingPeriod": 3600, + "type": "join" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '026f12a1-4881-4a27-a454-5e456c852ed3',\n common: {\n connect: {\n id: '7360f527-44fd-4808-ad78-9b02c9863f4d'\n }\n },\n user: {\n connect: {\n id: '2Ti3LkP23KUJVp2AZY3wVHYWRxm2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'יןם',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '87.70.96.96',\n expiresAt: new Date('2021-05-11T10:13:21.418Z'),\n votesFor: 0,\n votesAgainst: 0,\n importedFrom: '{\"state\":\"failed\",\"votesAgainst\":0,\"updatedAt\":{\"_seconds\":1620728100,\"_nanoseconds\":716000000},\"description\":{\"description\":\"יןם\",\"links\":[]},\"id\":\"026f12a1-4881-4a27-a454-5e456c852ed3\",\"commonId\":\"7360f527-44fd-4808-ad78-9b02c9863f4d\",\"votesFor\":0,\"createdAt\":{\"_seconds\":1620670401,\"_nanoseconds\":418000000},\"join\":{\"fundingType\":\"one-time\",\"payments\":[],\"ip\":\"87.70.96.96\",\"funding\":0},\"votes\":[],\"proposerId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"countdownPeriod\":57600,\"quietEndingPeriod\":3600,\"type\":\"join\"}',\n join: {\n create: {\n id: '026f12a1-4881-4a27-a454-5e456c852ed3',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '026f12a1-4881-4a27-a454-5e456c852ed3',\n common: {\n connect: {\n id: '7360f527-44fd-4808-ad78-9b02c9863f4d'\n }\n },\n user: {\n connect: {\n id: '2Ti3LkP23KUJVp2AZY3wVHYWRxm2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'יןם',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '87.70.96.96',\n expiresAt: new Date('2021-05-11T10:13:21.418Z'),\n votesFor: 0,\n votesAgainst: 0,\n importedFrom: '{\"state\":\"failed\",\"votesAgainst\":0,\"updatedAt\":{\"_seconds\":1620728100,\"_nanoseconds\":716000000},\"description\":{\"description\":\"יןם\",\"links\":[]},\"id\":\"026f12a1-4881-4a27-a454-5e456c852ed3\",\"commonId\":\"7360f527-44fd-4808-ad78-9b02c9863f4d\",\"votesFor\":0,\"createdAt\":{\"_seconds\":1620670401,\"_nanoseconds\":418000000},\"join\":{\"fundingType\":\"one-time\",\"payments\":[],\"ip\":\"87.70.96.96\",\"funding\":0},\"votes\":[],\"proposerId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"countdownPeriod\":57600,\"quietEndingPeriod\":3600,\"type\":\"join\"}',\n join: {\n create: {\n id: '026f12a1-4881-4a27-a454-5e456c852ed3',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "countdownPeriod": 57600, + "commonId": "6d778a9d-6ebb-46ab-969a-02d4c4567145", + "votesFor": 1, + "votesAgainst": 0, + "state": "passed", + "proposerId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "updatedAt": { + "_seconds": 1609066372, + "_nanoseconds": 631000000 + }, + "quietEndingPeriod": 3600, + "join": { + "payments": [], + "cardId": "dd6a5275-3d66-4e43-8e24-21b928fbb5f4", + "funding": 505.99999999999994, + "fundingType": "one-time" + }, + "votes": [ + { + "voterId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "voteId": "e16c508f-ca0f-4d9a-bb5c-4de2a59e74f0", + "voteOutcome": "approved" + } + ], + "type": "join", + "id": "05aa208a-f249-4a18-b6c3-bed8d7b7c177", + "createdAt": { + "_seconds": 1609066305, + "_nanoseconds": 202000000 + }, + "paymentState": "confirmed", + "description": { + "links": [], + "description": "Dh" + } + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '05aa208a-f249-4a18-b6c3-bed8d7b7c177',\n common: {\n connect: {\n id: '6d778a9d-6ebb-46ab-969a-02d4c4567145'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: '2Ti3LkP23KUJVp2AZY3wVHYWRxm2',\n commonId: '6d778a9d-6ebb-46ab-969a-02d4c4567145'\n }\n }\n },\n user: {\n connect: {\n id: '2Ti3LkP23KUJVp2AZY3wVHYWRxm2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Dh',\n files: [],\n images: [],\n links: [],\n state: 'Accepted',\n ipAddress: undefined,\n expiresAt: new Date('2020-12-28T02:51:45.202Z'),\n votesFor: 1,\n votesAgainst: 0,\n importedFrom: '{\"countdownPeriod\":57600,\"commonId\":\"6d778a9d-6ebb-46ab-969a-02d4c4567145\",\"votesFor\":1,\"votesAgainst\":0,\"state\":\"passed\",\"proposerId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"updatedAt\":{\"_seconds\":1609066372,\"_nanoseconds\":631000000},\"quietEndingPeriod\":3600,\"join\":{\"payments\":[],\"cardId\":\"dd6a5275-3d66-4e43-8e24-21b928fbb5f4\",\"funding\":505.99999999999994,\"fundingType\":\"one-time\"},\"votes\":[{\"voterId\":\"Xh4xoIGHhgOhxz1S5AJkaXCBT8K2\",\"voteId\":\"e16c508f-ca0f-4d9a-bb5c-4de2a59e74f0\",\"voteOutcome\":\"approved\"}],\"type\":\"join\",\"id\":\"05aa208a-f249-4a18-b6c3-bed8d7b7c177\",\"createdAt\":{\"_seconds\":1609066305,\"_nanoseconds\":202000000},\"paymentState\":\"confirmed\",\"description\":{\"links\":[],\"description\":\"Dh\"}}',\n join: {\n create: {\n id: '05aa208a-f249-4a18-b6c3-bed8d7b7c177',\n card: {\n connect: {\n id: 'dd6a5275-3d66-4e43-8e24-21b928fbb5f4'\n }\n },\n fundingType: 'OneTime',\n funding: 505.99999999999994\n ~~~~~~~~~~~~~~~~~~\n }\n }\n }\n}\n\nArgument funding: Got invalid value 505.99999999999994 on prisma.createOneProposal. Provided Float, expected Int.\n\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '05aa208a-f249-4a18-b6c3-bed8d7b7c177',\n common: {\n connect: {\n id: '6d778a9d-6ebb-46ab-969a-02d4c4567145'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: '2Ti3LkP23KUJVp2AZY3wVHYWRxm2',\n commonId: '6d778a9d-6ebb-46ab-969a-02d4c4567145'\n }\n }\n },\n user: {\n connect: {\n id: '2Ti3LkP23KUJVp2AZY3wVHYWRxm2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Dh',\n files: [],\n images: [],\n links: [],\n state: 'Accepted',\n ipAddress: undefined,\n expiresAt: new Date('2020-12-28T02:51:45.202Z'),\n votesFor: 1,\n votesAgainst: 0,\n importedFrom: '{\"countdownPeriod\":57600,\"commonId\":\"6d778a9d-6ebb-46ab-969a-02d4c4567145\",\"votesFor\":1,\"votesAgainst\":0,\"state\":\"passed\",\"proposerId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"updatedAt\":{\"_seconds\":1609066372,\"_nanoseconds\":631000000},\"quietEndingPeriod\":3600,\"join\":{\"payments\":[],\"cardId\":\"dd6a5275-3d66-4e43-8e24-21b928fbb5f4\",\"funding\":505.99999999999994,\"fundingType\":\"one-time\"},\"votes\":[{\"voterId\":\"Xh4xoIGHhgOhxz1S5AJkaXCBT8K2\",\"voteId\":\"e16c508f-ca0f-4d9a-bb5c-4de2a59e74f0\",\"voteOutcome\":\"approved\"}],\"type\":\"join\",\"id\":\"05aa208a-f249-4a18-b6c3-bed8d7b7c177\",\"createdAt\":{\"_seconds\":1609066305,\"_nanoseconds\":202000000},\"paymentState\":\"confirmed\",\"description\":{\"links\":[],\"description\":\"Dh\"}}',\n join: {\n create: {\n id: '05aa208a-f249-4a18-b6c3-bed8d7b7c177',\n card: {\n connect: {\n id: 'dd6a5275-3d66-4e43-8e24-21b928fbb5f4'\n }\n },\n fundingType: 'OneTime',\n funding: 505.99999999999994\n ~~~~~~~~~~~~~~~~~~\n }\n }\n }\n}\n\nArgument funding: Got invalid value 505.99999999999994 on prisma.createOneProposal. Provided Float, expected Int.\n\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "countdownPeriod": 57600, + "votesAgainst": 1, + "type": "join", + "id": "06d7fb0d-2bca-45a0-99e7-38a19879b8f6", + "commonId": "004abe8d-1006-4b63-9e7a-5d824c4fb1fd", + "proposerId": "Wz0ZgOvKnafrjLDeAeWqx182uBq2", + "state": "failed", + "createdAt": { + "_seconds": 1614929679, + "_nanoseconds": 770000000 + }, + "join": { + "payments": [], + "ip": "46.56.229.118", + "funding": 0, + "fundingType": "one-time" + }, + "description": { + "description": "Jgv", + "links": [] + }, + "votes": [ + { + "voteId": "ff4a94c9-56df-4a03-b3fe-c0b68dac3425", + "voterId": "2HM9WnVvr9aDYbckjCo4cIDjncY2", + "voteOutcome": "rejected" + } + ], + "quietEndingPeriod": 3600, + "updatedAt": { + "_seconds": 1614929702, + "_nanoseconds": 723000000 + }, + "votesFor": 0 + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '06d7fb0d-2bca-45a0-99e7-38a19879b8f6',\n common: {\n connect: {\n id: '004abe8d-1006-4b63-9e7a-5d824c4fb1fd'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: 'Wz0ZgOvKnafrjLDeAeWqx182uBq2',\n commonId: '004abe8d-1006-4b63-9e7a-5d824c4fb1fd'\n }\n }\n },\n user: {\n connect: {\n id: 'Wz0ZgOvKnafrjLDeAeWqx182uBq2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Jgv',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '46.56.229.118',\n expiresAt: new Date('2021-03-05T23:34:39.770Z'),\n votesFor: 0,\n votesAgainst: 1,\n importedFrom: '{\"countdownPeriod\":57600,\"votesAgainst\":1,\"type\":\"join\",\"id\":\"06d7fb0d-2bca-45a0-99e7-38a19879b8f6\",\"commonId\":\"004abe8d-1006-4b63-9e7a-5d824c4fb1fd\",\"proposerId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"state\":\"failed\",\"createdAt\":{\"_seconds\":1614929679,\"_nanoseconds\":770000000},\"join\":{\"payments\":[],\"ip\":\"46.56.229.118\",\"funding\":0,\"fundingType\":\"one-time\"},\"description\":{\"description\":\"Jgv\",\"links\":[]},\"votes\":[{\"voteId\":\"ff4a94c9-56df-4a03-b3fe-c0b68dac3425\",\"voterId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\",\"voteOutcome\":\"rejected\"}],\"quietEndingPeriod\":3600,\"updatedAt\":{\"_seconds\":1614929702,\"_nanoseconds\":723000000},\"votesFor\":0}',\n join: {\n create: {\n id: '06d7fb0d-2bca-45a0-99e7-38a19879b8f6',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '06d7fb0d-2bca-45a0-99e7-38a19879b8f6',\n common: {\n connect: {\n id: '004abe8d-1006-4b63-9e7a-5d824c4fb1fd'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: 'Wz0ZgOvKnafrjLDeAeWqx182uBq2',\n commonId: '004abe8d-1006-4b63-9e7a-5d824c4fb1fd'\n }\n }\n },\n user: {\n connect: {\n id: 'Wz0ZgOvKnafrjLDeAeWqx182uBq2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Jgv',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '46.56.229.118',\n expiresAt: new Date('2021-03-05T23:34:39.770Z'),\n votesFor: 0,\n votesAgainst: 1,\n importedFrom: '{\"countdownPeriod\":57600,\"votesAgainst\":1,\"type\":\"join\",\"id\":\"06d7fb0d-2bca-45a0-99e7-38a19879b8f6\",\"commonId\":\"004abe8d-1006-4b63-9e7a-5d824c4fb1fd\",\"proposerId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"state\":\"failed\",\"createdAt\":{\"_seconds\":1614929679,\"_nanoseconds\":770000000},\"join\":{\"payments\":[],\"ip\":\"46.56.229.118\",\"funding\":0,\"fundingType\":\"one-time\"},\"description\":{\"description\":\"Jgv\",\"links\":[]},\"votes\":[{\"voteId\":\"ff4a94c9-56df-4a03-b3fe-c0b68dac3425\",\"voterId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\",\"voteOutcome\":\"rejected\"}],\"quietEndingPeriod\":3600,\"updatedAt\":{\"_seconds\":1614929702,\"_nanoseconds\":723000000},\"votesFor\":0}',\n join: {\n create: {\n id: '06d7fb0d-2bca-45a0-99e7-38a19879b8f6',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "createdAt": { + "_seconds": 1615457399, + "_nanoseconds": 17000000 + }, + "proposerId": "skBkfQh8E1f4eOGBSVLaiuJ097v1", + "join": { + "fundingType": "one-time", + "payments": [], + "ip": "212.39.89.114", + "funding": 0 + }, + "votesAgainst": 0, + "state": "passed", + "votesFor": 2, + "id": "117ccafa-5b79-45e2-829f-27bcbf433f57", + "votes": [ + { + "voterId": "tPfZmRJnQjdnXIlgMZyfphEat3n2", + "voteId": "b6b116c0-fbcc-4585-bcd3-a942cff656f9", + "voteOutcome": "approved" + }, + { + "voterId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1", + "voteId": "9112742d-6805-40e0-a100-1ed81cada16d", + "voteOutcome": "approved" + } + ], + "description": { + "description": "Test join", + "links": [] + }, + "type": "join", + "quietEndingPeriod": 3600, + "updatedAt": { + "_seconds": 1615457734, + "_nanoseconds": 584000000 + }, + "countdownPeriod": 57600, + "commonId": "858836dc-776d-4b5d-a999-4cc154f81e11" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '117ccafa-5b79-45e2-829f-27bcbf433f57',\n common: {\n connect: {\n id: '858836dc-776d-4b5d-a999-4cc154f81e11'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: 'skBkfQh8E1f4eOGBSVLaiuJ097v1',\n commonId: '858836dc-776d-4b5d-a999-4cc154f81e11'\n }\n }\n },\n user: {\n connect: {\n id: 'skBkfQh8E1f4eOGBSVLaiuJ097v1'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Test join',\n files: [],\n images: [],\n links: [],\n state: 'Accepted',\n ipAddress: '212.39.89.114',\n expiresAt: new Date('2021-03-12T02:09:59.017Z'),\n votesFor: 2,\n votesAgainst: 0,\n importedFrom: '{\"createdAt\":{\"_seconds\":1615457399,\"_nanoseconds\":17000000},\"proposerId\":\"skBkfQh8E1f4eOGBSVLaiuJ097v1\",\"join\":{\"fundingType\":\"one-time\",\"payments\":[],\"ip\":\"212.39.89.114\",\"funding\":0},\"votesAgainst\":0,\"state\":\"passed\",\"votesFor\":2,\"id\":\"117ccafa-5b79-45e2-829f-27bcbf433f57\",\"votes\":[{\"voterId\":\"tPfZmRJnQjdnXIlgMZyfphEat3n2\",\"voteId\":\"b6b116c0-fbcc-4585-bcd3-a942cff656f9\",\"voteOutcome\":\"approved\"},{\"voterId\":\"11j4NvvZ4kMRf4BFBUHdbRiXKMp1\",\"voteId\":\"9112742d-6805-40e0-a100-1ed81cada16d\",\"voteOutcome\":\"approved\"}],\"description\":{\"description\":\"Test join\",\"links\":[]},\"type\":\"join\",\"quietEndingPeriod\":3600,\"updatedAt\":{\"_seconds\":1615457734,\"_nanoseconds\":584000000},\"countdownPeriod\":57600,\"commonId\":\"858836dc-776d-4b5d-a999-4cc154f81e11\"}',\n join: {\n create: {\n id: '117ccafa-5b79-45e2-829f-27bcbf433f57',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '117ccafa-5b79-45e2-829f-27bcbf433f57',\n common: {\n connect: {\n id: '858836dc-776d-4b5d-a999-4cc154f81e11'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: 'skBkfQh8E1f4eOGBSVLaiuJ097v1',\n commonId: '858836dc-776d-4b5d-a999-4cc154f81e11'\n }\n }\n },\n user: {\n connect: {\n id: 'skBkfQh8E1f4eOGBSVLaiuJ097v1'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Test join',\n files: [],\n images: [],\n links: [],\n state: 'Accepted',\n ipAddress: '212.39.89.114',\n expiresAt: new Date('2021-03-12T02:09:59.017Z'),\n votesFor: 2,\n votesAgainst: 0,\n importedFrom: '{\"createdAt\":{\"_seconds\":1615457399,\"_nanoseconds\":17000000},\"proposerId\":\"skBkfQh8E1f4eOGBSVLaiuJ097v1\",\"join\":{\"fundingType\":\"one-time\",\"payments\":[],\"ip\":\"212.39.89.114\",\"funding\":0},\"votesAgainst\":0,\"state\":\"passed\",\"votesFor\":2,\"id\":\"117ccafa-5b79-45e2-829f-27bcbf433f57\",\"votes\":[{\"voterId\":\"tPfZmRJnQjdnXIlgMZyfphEat3n2\",\"voteId\":\"b6b116c0-fbcc-4585-bcd3-a942cff656f9\",\"voteOutcome\":\"approved\"},{\"voterId\":\"11j4NvvZ4kMRf4BFBUHdbRiXKMp1\",\"voteId\":\"9112742d-6805-40e0-a100-1ed81cada16d\",\"voteOutcome\":\"approved\"}],\"description\":{\"description\":\"Test join\",\"links\":[]},\"type\":\"join\",\"quietEndingPeriod\":3600,\"updatedAt\":{\"_seconds\":1615457734,\"_nanoseconds\":584000000},\"countdownPeriod\":57600,\"commonId\":\"858836dc-776d-4b5d-a999-4cc154f81e11\"}',\n join: {\n create: {\n id: '117ccafa-5b79-45e2-829f-27bcbf433f57',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "join": { + "fundingType": "one-time", + "funding": 0, + "payments": [], + "ip": "178.120.61.209" + }, + "state": "failed", + "countdownPeriod": 57600, + "votesAgainst": 0, + "quietEndingPeriod": 3600, + "updatedAt": { + "_seconds": 1616116800, + "_nanoseconds": 996000000 + }, + "proposerId": "Wz0ZgOvKnafrjLDeAeWqx182uBq2", + "commonId": "3540a395-7bab-465c-9923-42c631e26374", + "description": { + "links": [], + "description": "1" + }, + "createdAt": { + "_seconds": 1616059109, + "_nanoseconds": 931000000 + }, + "type": "join", + "votes": [], + "id": "1a444248-6a49-4eec-b60b-a4acd23e2f3d", + "votesFor": 0 + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '1a444248-6a49-4eec-b60b-a4acd23e2f3d',\n common: {\n connect: {\n id: '3540a395-7bab-465c-9923-42c631e26374'\n }\n },\n user: {\n connect: {\n id: 'Wz0ZgOvKnafrjLDeAeWqx182uBq2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: '1',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '178.120.61.209',\n expiresAt: new Date('2021-03-19T01:18:29.931Z'),\n votesFor: 0,\n votesAgainst: 0,\n importedFrom: '{\"join\":{\"fundingType\":\"one-time\",\"funding\":0,\"payments\":[],\"ip\":\"178.120.61.209\"},\"state\":\"failed\",\"countdownPeriod\":57600,\"votesAgainst\":0,\"quietEndingPeriod\":3600,\"updatedAt\":{\"_seconds\":1616116800,\"_nanoseconds\":996000000},\"proposerId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"commonId\":\"3540a395-7bab-465c-9923-42c631e26374\",\"description\":{\"links\":[],\"description\":\"1\"},\"createdAt\":{\"_seconds\":1616059109,\"_nanoseconds\":931000000},\"type\":\"join\",\"votes\":[],\"id\":\"1a444248-6a49-4eec-b60b-a4acd23e2f3d\",\"votesFor\":0}',\n join: {\n create: {\n id: '1a444248-6a49-4eec-b60b-a4acd23e2f3d',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '1a444248-6a49-4eec-b60b-a4acd23e2f3d',\n common: {\n connect: {\n id: '3540a395-7bab-465c-9923-42c631e26374'\n }\n },\n user: {\n connect: {\n id: 'Wz0ZgOvKnafrjLDeAeWqx182uBq2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: '1',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '178.120.61.209',\n expiresAt: new Date('2021-03-19T01:18:29.931Z'),\n votesFor: 0,\n votesAgainst: 0,\n importedFrom: '{\"join\":{\"fundingType\":\"one-time\",\"funding\":0,\"payments\":[],\"ip\":\"178.120.61.209\"},\"state\":\"failed\",\"countdownPeriod\":57600,\"votesAgainst\":0,\"quietEndingPeriod\":3600,\"updatedAt\":{\"_seconds\":1616116800,\"_nanoseconds\":996000000},\"proposerId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"commonId\":\"3540a395-7bab-465c-9923-42c631e26374\",\"description\":{\"links\":[],\"description\":\"1\"},\"createdAt\":{\"_seconds\":1616059109,\"_nanoseconds\":931000000},\"type\":\"join\",\"votes\":[],\"id\":\"1a444248-6a49-4eec-b60b-a4acd23e2f3d\",\"votesFor\":0}',\n join: {\n create: {\n id: '1a444248-6a49-4eec-b60b-a4acd23e2f3d',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "votesAgainst": 0, + "votesFor": 0, + "state": "failed", + "type": "join", + "description": { + "links": [ + { + "title": "Link 80", + "value": "http://www.talyaron.com/" + } + ], + "description": "Hey there" + }, + "proposerId": "2HM9WnVvr9aDYbckjCo4cIDjncY2", + "votes": [], + "quietEndingPeriod": 3600, + "commonId": "e5f979ac-301f-4058-a036-5314bbc761cf", + "id": "1e6319f7-2b59-4923-89af-4032bb78060a", + "updatedAt": { + "_seconds": 1618557001, + "_nanoseconds": 351000000 + }, + "createdAt": { + "_seconds": 1618499120, + "_nanoseconds": 699000000 + }, + "join": { + "payments": [], + "funding": 0, + "fundingType": "one-time", + "ip": "178.120.2.71" + }, + "countdownPeriod": 57600 + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '1e6319f7-2b59-4923-89af-4032bb78060a',\n common: {\n connect: {\n id: 'e5f979ac-301f-4058-a036-5314bbc761cf'\n }\n },\n user: {\n connect: {\n id: '2HM9WnVvr9aDYbckjCo4cIDjncY2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Hey there',\n files: [],\n images: [],\n links: [\n {\n title: 'Link 80',\n url: 'http://www.talyaron.com/'\n }\n ],\n state: 'Rejected',\n ipAddress: '178.120.2.71',\n expiresAt: new Date('2021-04-16T07:05:20.699Z'),\n votesFor: 0,\n votesAgainst: 0,\n importedFrom: '{\"votesAgainst\":0,\"votesFor\":0,\"state\":\"failed\",\"type\":\"join\",\"description\":{\"links\":[{\"title\":\"Link 80\",\"value\":\"http://www.talyaron.com/\"}],\"description\":\"Hey there\"},\"proposerId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\",\"votes\":[],\"quietEndingPeriod\":3600,\"commonId\":\"e5f979ac-301f-4058-a036-5314bbc761cf\",\"id\":\"1e6319f7-2b59-4923-89af-4032bb78060a\",\"updatedAt\":{\"_seconds\":1618557001,\"_nanoseconds\":351000000},\"createdAt\":{\"_seconds\":1618499120,\"_nanoseconds\":699000000},\"join\":{\"payments\":[],\"funding\":0,\"fundingType\":\"one-time\",\"ip\":\"178.120.2.71\"},\"countdownPeriod\":57600}',\n join: {\n create: {\n id: '1e6319f7-2b59-4923-89af-4032bb78060a',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '1e6319f7-2b59-4923-89af-4032bb78060a',\n common: {\n connect: {\n id: 'e5f979ac-301f-4058-a036-5314bbc761cf'\n }\n },\n user: {\n connect: {\n id: '2HM9WnVvr9aDYbckjCo4cIDjncY2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Hey there',\n files: [],\n images: [],\n links: [\n {\n title: 'Link 80',\n url: 'http://www.talyaron.com/'\n }\n ],\n state: 'Rejected',\n ipAddress: '178.120.2.71',\n expiresAt: new Date('2021-04-16T07:05:20.699Z'),\n votesFor: 0,\n votesAgainst: 0,\n importedFrom: '{\"votesAgainst\":0,\"votesFor\":0,\"state\":\"failed\",\"type\":\"join\",\"description\":{\"links\":[{\"title\":\"Link 80\",\"value\":\"http://www.talyaron.com/\"}],\"description\":\"Hey there\"},\"proposerId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\",\"votes\":[],\"quietEndingPeriod\":3600,\"commonId\":\"e5f979ac-301f-4058-a036-5314bbc761cf\",\"id\":\"1e6319f7-2b59-4923-89af-4032bb78060a\",\"updatedAt\":{\"_seconds\":1618557001,\"_nanoseconds\":351000000},\"createdAt\":{\"_seconds\":1618499120,\"_nanoseconds\":699000000},\"join\":{\"payments\":[],\"funding\":0,\"fundingType\":\"one-time\",\"ip\":\"178.120.2.71\"},\"countdownPeriod\":57600}',\n join: {\n create: {\n id: '1e6319f7-2b59-4923-89af-4032bb78060a',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "type": "join", + "description": { + "links": [], + "description": "QWERTY" + }, + "votesFor": 0, + "countdownPeriod": 57600, + "state": "failed", + "quietEndingPeriod": 3600, + "votesAgainst": 1, + "votes": [ + { + "voteId": "243f6ad4-b693-4d51-b9fe-f7f132dfaf8e", + "voterId": "Xlun3Ux94Zfc73axkiuVdkktOWf1", + "voteOutcome": "rejected" + } + ], + "createdAt": { + "_seconds": 1611918720, + "_nanoseconds": 138000000 + }, + "id": "20f95eae-7e3c-40b1-a647-dddfb7e90340", + "commonId": "878126b8-a724-4601-a9d8-2ec56b4d1c96", + "updatedAt": { + "_seconds": 1611927080, + "_nanoseconds": 423000000 + }, + "proposerId": "0jL6u33k2rMoEY8wUmnIvkJM48O2", + "join": { + "fundingType": "one-time", + "payments": [], + "funding": 0 + } + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '20f95eae-7e3c-40b1-a647-dddfb7e90340',\n common: {\n connect: {\n id: '878126b8-a724-4601-a9d8-2ec56b4d1c96'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: '0jL6u33k2rMoEY8wUmnIvkJM48O2',\n commonId: '878126b8-a724-4601-a9d8-2ec56b4d1c96'\n }\n }\n },\n user: {\n connect: {\n id: '0jL6u33k2rMoEY8wUmnIvkJM48O2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'QWERTY',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: undefined,\n expiresAt: new Date('2021-01-30T03:12:00.138Z'),\n votesFor: 0,\n votesAgainst: 1,\n importedFrom: '{\"type\":\"join\",\"description\":{\"links\":[],\"description\":\"QWERTY\"},\"votesFor\":0,\"countdownPeriod\":57600,\"state\":\"failed\",\"quietEndingPeriod\":3600,\"votesAgainst\":1,\"votes\":[{\"voteId\":\"243f6ad4-b693-4d51-b9fe-f7f132dfaf8e\",\"voterId\":\"Xlun3Ux94Zfc73axkiuVdkktOWf1\",\"voteOutcome\":\"rejected\"}],\"createdAt\":{\"_seconds\":1611918720,\"_nanoseconds\":138000000},\"id\":\"20f95eae-7e3c-40b1-a647-dddfb7e90340\",\"commonId\":\"878126b8-a724-4601-a9d8-2ec56b4d1c96\",\"updatedAt\":{\"_seconds\":1611927080,\"_nanoseconds\":423000000},\"proposerId\":\"0jL6u33k2rMoEY8wUmnIvkJM48O2\",\"join\":{\"fundingType\":\"one-time\",\"payments\":[],\"funding\":0}}',\n join: {\n create: {\n id: '20f95eae-7e3c-40b1-a647-dddfb7e90340',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '20f95eae-7e3c-40b1-a647-dddfb7e90340',\n common: {\n connect: {\n id: '878126b8-a724-4601-a9d8-2ec56b4d1c96'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: '0jL6u33k2rMoEY8wUmnIvkJM48O2',\n commonId: '878126b8-a724-4601-a9d8-2ec56b4d1c96'\n }\n }\n },\n user: {\n connect: {\n id: '0jL6u33k2rMoEY8wUmnIvkJM48O2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'QWERTY',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: undefined,\n expiresAt: new Date('2021-01-30T03:12:00.138Z'),\n votesFor: 0,\n votesAgainst: 1,\n importedFrom: '{\"type\":\"join\",\"description\":{\"links\":[],\"description\":\"QWERTY\"},\"votesFor\":0,\"countdownPeriod\":57600,\"state\":\"failed\",\"quietEndingPeriod\":3600,\"votesAgainst\":1,\"votes\":[{\"voteId\":\"243f6ad4-b693-4d51-b9fe-f7f132dfaf8e\",\"voterId\":\"Xlun3Ux94Zfc73axkiuVdkktOWf1\",\"voteOutcome\":\"rejected\"}],\"createdAt\":{\"_seconds\":1611918720,\"_nanoseconds\":138000000},\"id\":\"20f95eae-7e3c-40b1-a647-dddfb7e90340\",\"commonId\":\"878126b8-a724-4601-a9d8-2ec56b4d1c96\",\"updatedAt\":{\"_seconds\":1611927080,\"_nanoseconds\":423000000},\"proposerId\":\"0jL6u33k2rMoEY8wUmnIvkJM48O2\",\"join\":{\"fundingType\":\"one-time\",\"payments\":[],\"funding\":0}}',\n join: {\n create: {\n id: '20f95eae-7e3c-40b1-a647-dddfb7e90340',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "join": { + "payments": [], + "ip": "178.120.66.122", + "fundingType": "one-time", + "funding": 0 + }, + "updatedAt": { + "_seconds": 1615528500, + "_nanoseconds": 498000000 + }, + "createdAt": { + "_seconds": 1615470604, + "_nanoseconds": 849000000 + }, + "proposerId": "5Bi1KZGIYzW5UIljHgBlO98NXaI2", + "votesAgainst": 0, + "state": "failed", + "votes": [], + "countdownPeriod": 57600, + "type": "join", + "id": "23d5e837-e06f-4798-a8bc-ab3740e6be02", + "quietEndingPeriod": 3600, + "description": { + "description": "Eyg", + "links": [] + }, + "commonId": "cf8601aa-ab7a-4c69-be1b-136e13fe08e5", + "votesFor": 0 + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '23d5e837-e06f-4798-a8bc-ab3740e6be02',\n common: {\n connect: {\n id: 'cf8601aa-ab7a-4c69-be1b-136e13fe08e5'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: '5Bi1KZGIYzW5UIljHgBlO98NXaI2',\n commonId: 'cf8601aa-ab7a-4c69-be1b-136e13fe08e5'\n }\n }\n },\n user: {\n connect: {\n id: '5Bi1KZGIYzW5UIljHgBlO98NXaI2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Eyg',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '178.120.66.122',\n expiresAt: new Date('2021-03-12T05:50:04.849Z'),\n votesFor: 0,\n votesAgainst: 0,\n importedFrom: '{\"join\":{\"payments\":[],\"ip\":\"178.120.66.122\",\"fundingType\":\"one-time\",\"funding\":0},\"updatedAt\":{\"_seconds\":1615528500,\"_nanoseconds\":498000000},\"createdAt\":{\"_seconds\":1615470604,\"_nanoseconds\":849000000},\"proposerId\":\"5Bi1KZGIYzW5UIljHgBlO98NXaI2\",\"votesAgainst\":0,\"state\":\"failed\",\"votes\":[],\"countdownPeriod\":57600,\"type\":\"join\",\"id\":\"23d5e837-e06f-4798-a8bc-ab3740e6be02\",\"quietEndingPeriod\":3600,\"description\":{\"description\":\"Eyg\",\"links\":[]},\"commonId\":\"cf8601aa-ab7a-4c69-be1b-136e13fe08e5\",\"votesFor\":0}',\n join: {\n create: {\n id: '23d5e837-e06f-4798-a8bc-ab3740e6be02',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '23d5e837-e06f-4798-a8bc-ab3740e6be02',\n common: {\n connect: {\n id: 'cf8601aa-ab7a-4c69-be1b-136e13fe08e5'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: '5Bi1KZGIYzW5UIljHgBlO98NXaI2',\n commonId: 'cf8601aa-ab7a-4c69-be1b-136e13fe08e5'\n }\n }\n },\n user: {\n connect: {\n id: '5Bi1KZGIYzW5UIljHgBlO98NXaI2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Eyg',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '178.120.66.122',\n expiresAt: new Date('2021-03-12T05:50:04.849Z'),\n votesFor: 0,\n votesAgainst: 0,\n importedFrom: '{\"join\":{\"payments\":[],\"ip\":\"178.120.66.122\",\"fundingType\":\"one-time\",\"funding\":0},\"updatedAt\":{\"_seconds\":1615528500,\"_nanoseconds\":498000000},\"createdAt\":{\"_seconds\":1615470604,\"_nanoseconds\":849000000},\"proposerId\":\"5Bi1KZGIYzW5UIljHgBlO98NXaI2\",\"votesAgainst\":0,\"state\":\"failed\",\"votes\":[],\"countdownPeriod\":57600,\"type\":\"join\",\"id\":\"23d5e837-e06f-4798-a8bc-ab3740e6be02\",\"quietEndingPeriod\":3600,\"description\":{\"description\":\"Eyg\",\"links\":[]},\"commonId\":\"cf8601aa-ab7a-4c69-be1b-136e13fe08e5\",\"votesFor\":0}',\n join: {\n create: {\n id: '23d5e837-e06f-4798-a8bc-ab3740e6be02',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "id": "306515a6-c9ae-4eea-a6d4-860645b0f570", + "votesFor": 0, + "updatedAt": { + "_seconds": 1612254000, + "_nanoseconds": 853000000 + }, + "quietEndingPeriod": 3600, + "type": "join", + "createdAt": { + "_seconds": 1612196234, + "_nanoseconds": 763000000 + }, + "proposerId": "b0Kxsd0x4OMLeOlDnheysBz5THo1", + "state": "failed", + "countdownPeriod": 57600, + "description": { + "description": "Hello! Let me in please!", + "links": [ + { + "title": "Lock, stock...", + "value": "https://www.imdb.com/title/tt0120735/?ref_=nv_sr_srsg_0" + } + ] + }, + "votes": [], + "commonId": "883f8443-ce02-4310-9794-f98bafed94b3", + "votesAgainst": 0, + "join": { + "funding": 0, + "fundingType": "one-time", + "payments": [] + } + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '306515a6-c9ae-4eea-a6d4-860645b0f570',\n common: {\n connect: {\n id: '883f8443-ce02-4310-9794-f98bafed94b3'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: 'b0Kxsd0x4OMLeOlDnheysBz5THo1',\n commonId: '883f8443-ce02-4310-9794-f98bafed94b3'\n }\n }\n },\n user: {\n connect: {\n id: 'b0Kxsd0x4OMLeOlDnheysBz5THo1'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Hello! Let me in please!',\n files: [],\n images: [],\n links: [\n {\n title: 'Lock, stock...',\n url: 'https://www.imdb.com/title/tt0120735/?ref_=nv_sr_srsg_0'\n }\n ],\n state: 'Rejected',\n ipAddress: undefined,\n expiresAt: new Date('2021-02-02T08:17:14.763Z'),\n votesFor: 0,\n votesAgainst: 0,\n importedFrom: '{\"id\":\"306515a6-c9ae-4eea-a6d4-860645b0f570\",\"votesFor\":0,\"updatedAt\":{\"_seconds\":1612254000,\"_nanoseconds\":853000000},\"quietEndingPeriod\":3600,\"type\":\"join\",\"createdAt\":{\"_seconds\":1612196234,\"_nanoseconds\":763000000},\"proposerId\":\"b0Kxsd0x4OMLeOlDnheysBz5THo1\",\"state\":\"failed\",\"countdownPeriod\":57600,\"description\":{\"description\":\"Hello! Let me in please!\",\"links\":[{\"title\":\"Lock, stock...\",\"value\":\"https://www.imdb.com/title/tt0120735/?ref_=nv_sr_srsg_0\"}]},\"votes\":[],\"commonId\":\"883f8443-ce02-4310-9794-f98bafed94b3\",\"votesAgainst\":0,\"join\":{\"funding\":0,\"fundingType\":\"one-time\",\"payments\":[]}}',\n join: {\n create: {\n id: '306515a6-c9ae-4eea-a6d4-860645b0f570',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '306515a6-c9ae-4eea-a6d4-860645b0f570',\n common: {\n connect: {\n id: '883f8443-ce02-4310-9794-f98bafed94b3'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: 'b0Kxsd0x4OMLeOlDnheysBz5THo1',\n commonId: '883f8443-ce02-4310-9794-f98bafed94b3'\n }\n }\n },\n user: {\n connect: {\n id: 'b0Kxsd0x4OMLeOlDnheysBz5THo1'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Hello! Let me in please!',\n files: [],\n images: [],\n links: [\n {\n title: 'Lock, stock...',\n url: 'https://www.imdb.com/title/tt0120735/?ref_=nv_sr_srsg_0'\n }\n ],\n state: 'Rejected',\n ipAddress: undefined,\n expiresAt: new Date('2021-02-02T08:17:14.763Z'),\n votesFor: 0,\n votesAgainst: 0,\n importedFrom: '{\"id\":\"306515a6-c9ae-4eea-a6d4-860645b0f570\",\"votesFor\":0,\"updatedAt\":{\"_seconds\":1612254000,\"_nanoseconds\":853000000},\"quietEndingPeriod\":3600,\"type\":\"join\",\"createdAt\":{\"_seconds\":1612196234,\"_nanoseconds\":763000000},\"proposerId\":\"b0Kxsd0x4OMLeOlDnheysBz5THo1\",\"state\":\"failed\",\"countdownPeriod\":57600,\"description\":{\"description\":\"Hello! Let me in please!\",\"links\":[{\"title\":\"Lock, stock...\",\"value\":\"https://www.imdb.com/title/tt0120735/?ref_=nv_sr_srsg_0\"}]},\"votes\":[],\"commonId\":\"883f8443-ce02-4310-9794-f98bafed94b3\",\"votesAgainst\":0,\"join\":{\"funding\":0,\"fundingType\":\"one-time\",\"payments\":[]}}',\n join: {\n create: {\n id: '306515a6-c9ae-4eea-a6d4-860645b0f570',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "description": { + "description": ",УИ,УИ,УИ", + "links": [] + }, + "join": { + "fundingType": "one-time", + "funding": 0, + "payments": [] + }, + "id": "337ae96b-3c7a-4def-a4bc-f98ab2eac92a", + "votes": [ + { + "voterId": "Xlun3Ux94Zfc73axkiuVdkktOWf1", + "voteId": "bf06fe09-3b33-4a40-9f25-335a54b90b80", + "voteOutcome": "rejected" + } + ], + "type": "join", + "commonId": "878126b8-a724-4601-a9d8-2ec56b4d1c96", + "proposerId": "0jL6u33k2rMoEY8wUmnIvkJM48O2", + "votesAgainst": 1, + "updatedAt": { + "_seconds": 1611844240, + "_nanoseconds": 491000000 + }, + "state": "failed", + "quietEndingPeriod": 3600, + "countdownPeriod": 57600, + "createdAt": { + "_seconds": 1611823463, + "_nanoseconds": 626000000 + }, + "votesFor": 0 + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '337ae96b-3c7a-4def-a4bc-f98ab2eac92a',\n common: {\n connect: {\n id: '878126b8-a724-4601-a9d8-2ec56b4d1c96'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: '0jL6u33k2rMoEY8wUmnIvkJM48O2',\n commonId: '878126b8-a724-4601-a9d8-2ec56b4d1c96'\n }\n }\n },\n user: {\n connect: {\n id: '0jL6u33k2rMoEY8wUmnIvkJM48O2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: ',УИ,УИ,УИ',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: undefined,\n expiresAt: new Date('2021-01-29T00:44:23.626Z'),\n votesFor: 0,\n votesAgainst: 1,\n importedFrom: '{\"description\":{\"description\":\",УИ,УИ,УИ\",\"links\":[]},\"join\":{\"fundingType\":\"one-time\",\"funding\":0,\"payments\":[]},\"id\":\"337ae96b-3c7a-4def-a4bc-f98ab2eac92a\",\"votes\":[{\"voterId\":\"Xlun3Ux94Zfc73axkiuVdkktOWf1\",\"voteId\":\"bf06fe09-3b33-4a40-9f25-335a54b90b80\",\"voteOutcome\":\"rejected\"}],\"type\":\"join\",\"commonId\":\"878126b8-a724-4601-a9d8-2ec56b4d1c96\",\"proposerId\":\"0jL6u33k2rMoEY8wUmnIvkJM48O2\",\"votesAgainst\":1,\"updatedAt\":{\"_seconds\":1611844240,\"_nanoseconds\":491000000},\"state\":\"failed\",\"quietEndingPeriod\":3600,\"countdownPeriod\":57600,\"createdAt\":{\"_seconds\":1611823463,\"_nanoseconds\":626000000},\"votesFor\":0}',\n join: {\n create: {\n id: '337ae96b-3c7a-4def-a4bc-f98ab2eac92a',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '337ae96b-3c7a-4def-a4bc-f98ab2eac92a',\n common: {\n connect: {\n id: '878126b8-a724-4601-a9d8-2ec56b4d1c96'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: '0jL6u33k2rMoEY8wUmnIvkJM48O2',\n commonId: '878126b8-a724-4601-a9d8-2ec56b4d1c96'\n }\n }\n },\n user: {\n connect: {\n id: '0jL6u33k2rMoEY8wUmnIvkJM48O2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: ',УИ,УИ,УИ',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: undefined,\n expiresAt: new Date('2021-01-29T00:44:23.626Z'),\n votesFor: 0,\n votesAgainst: 1,\n importedFrom: '{\"description\":{\"description\":\",УИ,УИ,УИ\",\"links\":[]},\"join\":{\"fundingType\":\"one-time\",\"funding\":0,\"payments\":[]},\"id\":\"337ae96b-3c7a-4def-a4bc-f98ab2eac92a\",\"votes\":[{\"voterId\":\"Xlun3Ux94Zfc73axkiuVdkktOWf1\",\"voteId\":\"bf06fe09-3b33-4a40-9f25-335a54b90b80\",\"voteOutcome\":\"rejected\"}],\"type\":\"join\",\"commonId\":\"878126b8-a724-4601-a9d8-2ec56b4d1c96\",\"proposerId\":\"0jL6u33k2rMoEY8wUmnIvkJM48O2\",\"votesAgainst\":1,\"updatedAt\":{\"_seconds\":1611844240,\"_nanoseconds\":491000000},\"state\":\"failed\",\"quietEndingPeriod\":3600,\"countdownPeriod\":57600,\"createdAt\":{\"_seconds\":1611823463,\"_nanoseconds\":626000000},\"votesFor\":0}',\n join: {\n create: {\n id: '337ae96b-3c7a-4def-a4bc-f98ab2eac92a',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "description": { + "links": [], + "description": "Hello" + }, + "join": { + "payments": [], + "fundingType": "one-time", + "funding": 0 + }, + "id": "391703bc-4572-473a-841c-167337e2552e", + "commonId": "883f8443-ce02-4310-9794-f98bafed94b3", + "votesAgainst": 0, + "createdAt": { + "_seconds": 1612194357, + "_nanoseconds": 491000000 + }, + "countdownPeriod": 57600, + "state": "failed", + "updatedAt": { + "_seconds": 1612252200, + "_nanoseconds": 350000000 + }, + "proposerId": "H5ZkcKBX5eXXNyBiPaph8EHCiax2", + "votes": [], + "quietEndingPeriod": 3600, + "votesFor": 0, + "type": "join" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '391703bc-4572-473a-841c-167337e2552e',\n common: {\n connect: {\n id: '883f8443-ce02-4310-9794-f98bafed94b3'\n }\n },\n user: {\n connect: {\n id: 'H5ZkcKBX5eXXNyBiPaph8EHCiax2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Hello',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: undefined,\n expiresAt: new Date('2021-02-02T07:45:57.491Z'),\n votesFor: 0,\n votesAgainst: 0,\n importedFrom: '{\"description\":{\"links\":[],\"description\":\"Hello\"},\"join\":{\"payments\":[],\"fundingType\":\"one-time\",\"funding\":0},\"id\":\"391703bc-4572-473a-841c-167337e2552e\",\"commonId\":\"883f8443-ce02-4310-9794-f98bafed94b3\",\"votesAgainst\":0,\"createdAt\":{\"_seconds\":1612194357,\"_nanoseconds\":491000000},\"countdownPeriod\":57600,\"state\":\"failed\",\"updatedAt\":{\"_seconds\":1612252200,\"_nanoseconds\":350000000},\"proposerId\":\"H5ZkcKBX5eXXNyBiPaph8EHCiax2\",\"votes\":[],\"quietEndingPeriod\":3600,\"votesFor\":0,\"type\":\"join\"}',\n join: {\n create: {\n id: '391703bc-4572-473a-841c-167337e2552e',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '391703bc-4572-473a-841c-167337e2552e',\n common: {\n connect: {\n id: '883f8443-ce02-4310-9794-f98bafed94b3'\n }\n },\n user: {\n connect: {\n id: 'H5ZkcKBX5eXXNyBiPaph8EHCiax2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Hello',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: undefined,\n expiresAt: new Date('2021-02-02T07:45:57.491Z'),\n votesFor: 0,\n votesAgainst: 0,\n importedFrom: '{\"description\":{\"links\":[],\"description\":\"Hello\"},\"join\":{\"payments\":[],\"fundingType\":\"one-time\",\"funding\":0},\"id\":\"391703bc-4572-473a-841c-167337e2552e\",\"commonId\":\"883f8443-ce02-4310-9794-f98bafed94b3\",\"votesAgainst\":0,\"createdAt\":{\"_seconds\":1612194357,\"_nanoseconds\":491000000},\"countdownPeriod\":57600,\"state\":\"failed\",\"updatedAt\":{\"_seconds\":1612252200,\"_nanoseconds\":350000000},\"proposerId\":\"H5ZkcKBX5eXXNyBiPaph8EHCiax2\",\"votes\":[],\"quietEndingPeriod\":3600,\"votesFor\":0,\"type\":\"join\"}',\n join: {\n create: {\n id: '391703bc-4572-473a-841c-167337e2552e',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "state": "passed", + "proposerId": "RN4V4T2Z4gf2ld9QhwanrQbSnP23", + "updatedAt": { + "_seconds": 1615454400, + "_nanoseconds": 906000000 + }, + "createdAt": { + "_seconds": 1615396618, + "_nanoseconds": 931000000 + }, + "votesFor": 1, + "description": { + "links": [], + "description": "Вика" + }, + "commonId": "883f8443-ce02-4310-9794-f98bafed94b3", + "countdownPeriod": 57600, + "votesAgainst": 0, + "join": { + "ip": "134.17.176.64", + "payments": [], + "fundingType": "one-time", + "funding": 0 + }, + "votes": [ + { + "voterId": "tPfZmRJnQjdnXIlgMZyfphEat3n2", + "voteId": "3b2ed574-79b1-4323-a2e6-dfaf8d5bdb96", + "voteOutcome": "approved" + } + ], + "type": "join", + "id": "3c0e98c1-c644-4f1f-89e5-f611ed06250b", + "quietEndingPeriod": 3600 + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '3c0e98c1-c644-4f1f-89e5-f611ed06250b',\n common: {\n connect: {\n id: '883f8443-ce02-4310-9794-f98bafed94b3'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: 'RN4V4T2Z4gf2ld9QhwanrQbSnP23',\n commonId: '883f8443-ce02-4310-9794-f98bafed94b3'\n }\n }\n },\n user: {\n connect: {\n id: 'RN4V4T2Z4gf2ld9QhwanrQbSnP23'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Вика',\n files: [],\n images: [],\n links: [],\n state: 'Accepted',\n ipAddress: '134.17.176.64',\n expiresAt: new Date('2021-03-11T09:16:58.931Z'),\n votesFor: 1,\n votesAgainst: 0,\n importedFrom: '{\"state\":\"passed\",\"proposerId\":\"RN4V4T2Z4gf2ld9QhwanrQbSnP23\",\"updatedAt\":{\"_seconds\":1615454400,\"_nanoseconds\":906000000},\"createdAt\":{\"_seconds\":1615396618,\"_nanoseconds\":931000000},\"votesFor\":1,\"description\":{\"links\":[],\"description\":\"Вика\"},\"commonId\":\"883f8443-ce02-4310-9794-f98bafed94b3\",\"countdownPeriod\":57600,\"votesAgainst\":0,\"join\":{\"ip\":\"134.17.176.64\",\"payments\":[],\"fundingType\":\"one-time\",\"funding\":0},\"votes\":[{\"voterId\":\"tPfZmRJnQjdnXIlgMZyfphEat3n2\",\"voteId\":\"3b2ed574-79b1-4323-a2e6-dfaf8d5bdb96\",\"voteOutcome\":\"approved\"}],\"type\":\"join\",\"id\":\"3c0e98c1-c644-4f1f-89e5-f611ed06250b\",\"quietEndingPeriod\":3600}',\n join: {\n create: {\n id: '3c0e98c1-c644-4f1f-89e5-f611ed06250b',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '3c0e98c1-c644-4f1f-89e5-f611ed06250b',\n common: {\n connect: {\n id: '883f8443-ce02-4310-9794-f98bafed94b3'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: 'RN4V4T2Z4gf2ld9QhwanrQbSnP23',\n commonId: '883f8443-ce02-4310-9794-f98bafed94b3'\n }\n }\n },\n user: {\n connect: {\n id: 'RN4V4T2Z4gf2ld9QhwanrQbSnP23'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Вика',\n files: [],\n images: [],\n links: [],\n state: 'Accepted',\n ipAddress: '134.17.176.64',\n expiresAt: new Date('2021-03-11T09:16:58.931Z'),\n votesFor: 1,\n votesAgainst: 0,\n importedFrom: '{\"state\":\"passed\",\"proposerId\":\"RN4V4T2Z4gf2ld9QhwanrQbSnP23\",\"updatedAt\":{\"_seconds\":1615454400,\"_nanoseconds\":906000000},\"createdAt\":{\"_seconds\":1615396618,\"_nanoseconds\":931000000},\"votesFor\":1,\"description\":{\"links\":[],\"description\":\"Вика\"},\"commonId\":\"883f8443-ce02-4310-9794-f98bafed94b3\",\"countdownPeriod\":57600,\"votesAgainst\":0,\"join\":{\"ip\":\"134.17.176.64\",\"payments\":[],\"fundingType\":\"one-time\",\"funding\":0},\"votes\":[{\"voterId\":\"tPfZmRJnQjdnXIlgMZyfphEat3n2\",\"voteId\":\"3b2ed574-79b1-4323-a2e6-dfaf8d5bdb96\",\"voteOutcome\":\"approved\"}],\"type\":\"join\",\"id\":\"3c0e98c1-c644-4f1f-89e5-f611ed06250b\",\"quietEndingPeriod\":3600}',\n join: {\n create: {\n id: '3c0e98c1-c644-4f1f-89e5-f611ed06250b',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "id": "4f4871ee-8127-4c36-955d-387540d5d2ea", + "quietEndingPeriod": 3600, + "countdownPeriod": 57600, + "votesAgainst": 0, + "state": "passed", + "proposerId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "description": { + "description": "G ", + "links": [] + }, + "join": { + "fundingType": "one-time", + "payments": [], + "funding": 0 + }, + "createdAt": { + "_seconds": 1610975376, + "_nanoseconds": 334000000 + }, + "votes": [ + { + "voteId": "732bb21f-e201-42ed-9c83-b2ca899923a8", + "voteOutcome": "approved", + "voterId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2" + } + ], + "type": "join", + "updatedAt": { + "_seconds": 1610975413, + "_nanoseconds": 300000000 + }, + "votesFor": 1, + "commonId": "8d1d4dd3-ccf4-48f8-90f2-01f8a9448534" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '4f4871ee-8127-4c36-955d-387540d5d2ea',\n common: {\n connect: {\n id: '8d1d4dd3-ccf4-48f8-90f2-01f8a9448534'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: '97d5y9WXk1fEZv767j1ejKuHevi1',\n commonId: '8d1d4dd3-ccf4-48f8-90f2-01f8a9448534'\n }\n }\n },\n user: {\n connect: {\n id: '97d5y9WXk1fEZv767j1ejKuHevi1'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'G ',\n files: [],\n images: [],\n links: [],\n state: 'Accepted',\n ipAddress: undefined,\n expiresAt: new Date('2021-01-19T05:09:36.334Z'),\n votesFor: 1,\n votesAgainst: 0,\n importedFrom: '{\"id\":\"4f4871ee-8127-4c36-955d-387540d5d2ea\",\"quietEndingPeriod\":3600,\"countdownPeriod\":57600,\"votesAgainst\":0,\"state\":\"passed\",\"proposerId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"description\":{\"description\":\"G \",\"links\":[]},\"join\":{\"fundingType\":\"one-time\",\"payments\":[],\"funding\":0},\"createdAt\":{\"_seconds\":1610975376,\"_nanoseconds\":334000000},\"votes\":[{\"voteId\":\"732bb21f-e201-42ed-9c83-b2ca899923a8\",\"voteOutcome\":\"approved\",\"voterId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\"}],\"type\":\"join\",\"updatedAt\":{\"_seconds\":1610975413,\"_nanoseconds\":300000000},\"votesFor\":1,\"commonId\":\"8d1d4dd3-ccf4-48f8-90f2-01f8a9448534\"}',\n join: {\n create: {\n id: '4f4871ee-8127-4c36-955d-387540d5d2ea',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '4f4871ee-8127-4c36-955d-387540d5d2ea',\n common: {\n connect: {\n id: '8d1d4dd3-ccf4-48f8-90f2-01f8a9448534'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: '97d5y9WXk1fEZv767j1ejKuHevi1',\n commonId: '8d1d4dd3-ccf4-48f8-90f2-01f8a9448534'\n }\n }\n },\n user: {\n connect: {\n id: '97d5y9WXk1fEZv767j1ejKuHevi1'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'G ',\n files: [],\n images: [],\n links: [],\n state: 'Accepted',\n ipAddress: undefined,\n expiresAt: new Date('2021-01-19T05:09:36.334Z'),\n votesFor: 1,\n votesAgainst: 0,\n importedFrom: '{\"id\":\"4f4871ee-8127-4c36-955d-387540d5d2ea\",\"quietEndingPeriod\":3600,\"countdownPeriod\":57600,\"votesAgainst\":0,\"state\":\"passed\",\"proposerId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"description\":{\"description\":\"G \",\"links\":[]},\"join\":{\"fundingType\":\"one-time\",\"payments\":[],\"funding\":0},\"createdAt\":{\"_seconds\":1610975376,\"_nanoseconds\":334000000},\"votes\":[{\"voteId\":\"732bb21f-e201-42ed-9c83-b2ca899923a8\",\"voteOutcome\":\"approved\",\"voterId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\"}],\"type\":\"join\",\"updatedAt\":{\"_seconds\":1610975413,\"_nanoseconds\":300000000},\"votesFor\":1,\"commonId\":\"8d1d4dd3-ccf4-48f8-90f2-01f8a9448534\"}',\n join: {\n create: {\n id: '4f4871ee-8127-4c36-955d-387540d5d2ea',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "commonId": "7f94d13d-557e-4438-a25f-29b8346d4d73", + "countdownPeriod": 57600, + "votesAgainst": 0, + "id": "58e7bbe0-c235-45c5-8b4b-09107b7b4e63", + "state": "passed", + "quietEndingPeriod": 3600, + "createdAt": { + "_seconds": 1612874741, + "_nanoseconds": 469000000 + }, + "updatedAt": { + "_seconds": 1612874791, + "_nanoseconds": 979000000 + }, + "proposerId": "Sxv19oCvKAZq2vntJdYCTYSpWWN2", + "join": { + "fundingType": "one-time", + "funding": 0, + "payments": [] + }, + "description": { + "links": [], + "description": "Ndndnd" + }, + "type": "join", + "votesFor": 1, + "votes": [ + { + "voteOutcome": "approved", + "voterId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1", + "voteId": "7d6de2e6-b020-48d7-afc0-a03309b92227" + } + ] + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '58e7bbe0-c235-45c5-8b4b-09107b7b4e63',\n common: {\n connect: {\n id: '7f94d13d-557e-4438-a25f-29b8346d4d73'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: 'Sxv19oCvKAZq2vntJdYCTYSpWWN2',\n commonId: '7f94d13d-557e-4438-a25f-29b8346d4d73'\n }\n }\n },\n user: {\n connect: {\n id: 'Sxv19oCvKAZq2vntJdYCTYSpWWN2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Ndndnd',\n files: [],\n images: [],\n links: [],\n state: 'Accepted',\n ipAddress: undefined,\n expiresAt: new Date('2021-02-10T04:45:41.469Z'),\n votesFor: 1,\n votesAgainst: 0,\n importedFrom: '{\"commonId\":\"7f94d13d-557e-4438-a25f-29b8346d4d73\",\"countdownPeriod\":57600,\"votesAgainst\":0,\"id\":\"58e7bbe0-c235-45c5-8b4b-09107b7b4e63\",\"state\":\"passed\",\"quietEndingPeriod\":3600,\"createdAt\":{\"_seconds\":1612874741,\"_nanoseconds\":469000000},\"updatedAt\":{\"_seconds\":1612874791,\"_nanoseconds\":979000000},\"proposerId\":\"Sxv19oCvKAZq2vntJdYCTYSpWWN2\",\"join\":{\"fundingType\":\"one-time\",\"funding\":0,\"payments\":[]},\"description\":{\"links\":[],\"description\":\"Ndndnd\"},\"type\":\"join\",\"votesFor\":1,\"votes\":[{\"voteOutcome\":\"approved\",\"voterId\":\"11j4NvvZ4kMRf4BFBUHdbRiXKMp1\",\"voteId\":\"7d6de2e6-b020-48d7-afc0-a03309b92227\"}]}',\n join: {\n create: {\n id: '58e7bbe0-c235-45c5-8b4b-09107b7b4e63',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '58e7bbe0-c235-45c5-8b4b-09107b7b4e63',\n common: {\n connect: {\n id: '7f94d13d-557e-4438-a25f-29b8346d4d73'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: 'Sxv19oCvKAZq2vntJdYCTYSpWWN2',\n commonId: '7f94d13d-557e-4438-a25f-29b8346d4d73'\n }\n }\n },\n user: {\n connect: {\n id: 'Sxv19oCvKAZq2vntJdYCTYSpWWN2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Ndndnd',\n files: [],\n images: [],\n links: [],\n state: 'Accepted',\n ipAddress: undefined,\n expiresAt: new Date('2021-02-10T04:45:41.469Z'),\n votesFor: 1,\n votesAgainst: 0,\n importedFrom: '{\"commonId\":\"7f94d13d-557e-4438-a25f-29b8346d4d73\",\"countdownPeriod\":57600,\"votesAgainst\":0,\"id\":\"58e7bbe0-c235-45c5-8b4b-09107b7b4e63\",\"state\":\"passed\",\"quietEndingPeriod\":3600,\"createdAt\":{\"_seconds\":1612874741,\"_nanoseconds\":469000000},\"updatedAt\":{\"_seconds\":1612874791,\"_nanoseconds\":979000000},\"proposerId\":\"Sxv19oCvKAZq2vntJdYCTYSpWWN2\",\"join\":{\"fundingType\":\"one-time\",\"funding\":0,\"payments\":[]},\"description\":{\"links\":[],\"description\":\"Ndndnd\"},\"type\":\"join\",\"votesFor\":1,\"votes\":[{\"voteOutcome\":\"approved\",\"voterId\":\"11j4NvvZ4kMRf4BFBUHdbRiXKMp1\",\"voteId\":\"7d6de2e6-b020-48d7-afc0-a03309b92227\"}]}',\n join: {\n create: {\n id: '58e7bbe0-c235-45c5-8b4b-09107b7b4e63',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "updatedAt": { + "_seconds": 1615955400, + "_nanoseconds": 500000000 + }, + "quietEndingPeriod": 3600, + "id": "5eaa5a7c-04ba-4bc7-ae39-9f1bfabd8f97", + "countdownPeriod": 57600, + "join": { + "fundingType": "one-time", + "ip": "46.56.242.240", + "payments": [], + "funding": 0 + }, + "commonId": "cf8601aa-ab7a-4c69-be1b-136e13fe08e5", + "votesFor": 1, + "state": "passed", + "votesAgainst": 0, + "type": "join", + "description": { + "description": "Zero", + "links": [] + }, + "votes": [ + { + "voteId": "dabf6117-7db4-42db-ac0c-5523948382ab", + "voteOutcome": "approved", + "voterId": "2HM9WnVvr9aDYbckjCo4cIDjncY2" + } + ], + "createdAt": { + "_seconds": 1615897600, + "_nanoseconds": 953000000 + }, + "proposerId": "5Bi1KZGIYzW5UIljHgBlO98NXaI2" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '5eaa5a7c-04ba-4bc7-ae39-9f1bfabd8f97',\n common: {\n connect: {\n id: 'cf8601aa-ab7a-4c69-be1b-136e13fe08e5'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: '5Bi1KZGIYzW5UIljHgBlO98NXaI2',\n commonId: 'cf8601aa-ab7a-4c69-be1b-136e13fe08e5'\n }\n }\n },\n user: {\n connect: {\n id: '5Bi1KZGIYzW5UIljHgBlO98NXaI2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Zero',\n files: [],\n images: [],\n links: [],\n state: 'Accepted',\n ipAddress: '46.56.242.240',\n expiresAt: new Date('2021-03-17T04:26:40.953Z'),\n votesFor: 1,\n votesAgainst: 0,\n importedFrom: '{\"updatedAt\":{\"_seconds\":1615955400,\"_nanoseconds\":500000000},\"quietEndingPeriod\":3600,\"id\":\"5eaa5a7c-04ba-4bc7-ae39-9f1bfabd8f97\",\"countdownPeriod\":57600,\"join\":{\"fundingType\":\"one-time\",\"ip\":\"46.56.242.240\",\"payments\":[],\"funding\":0},\"commonId\":\"cf8601aa-ab7a-4c69-be1b-136e13fe08e5\",\"votesFor\":1,\"state\":\"passed\",\"votesAgainst\":0,\"type\":\"join\",\"description\":{\"description\":\"Zero\",\"links\":[]},\"votes\":[{\"voteId\":\"dabf6117-7db4-42db-ac0c-5523948382ab\",\"voteOutcome\":\"approved\",\"voterId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\"}],\"createdAt\":{\"_seconds\":1615897600,\"_nanoseconds\":953000000},\"proposerId\":\"5Bi1KZGIYzW5UIljHgBlO98NXaI2\"}',\n join: {\n create: {\n id: '5eaa5a7c-04ba-4bc7-ae39-9f1bfabd8f97',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '5eaa5a7c-04ba-4bc7-ae39-9f1bfabd8f97',\n common: {\n connect: {\n id: 'cf8601aa-ab7a-4c69-be1b-136e13fe08e5'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: '5Bi1KZGIYzW5UIljHgBlO98NXaI2',\n commonId: 'cf8601aa-ab7a-4c69-be1b-136e13fe08e5'\n }\n }\n },\n user: {\n connect: {\n id: '5Bi1KZGIYzW5UIljHgBlO98NXaI2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Zero',\n files: [],\n images: [],\n links: [],\n state: 'Accepted',\n ipAddress: '46.56.242.240',\n expiresAt: new Date('2021-03-17T04:26:40.953Z'),\n votesFor: 1,\n votesAgainst: 0,\n importedFrom: '{\"updatedAt\":{\"_seconds\":1615955400,\"_nanoseconds\":500000000},\"quietEndingPeriod\":3600,\"id\":\"5eaa5a7c-04ba-4bc7-ae39-9f1bfabd8f97\",\"countdownPeriod\":57600,\"join\":{\"fundingType\":\"one-time\",\"ip\":\"46.56.242.240\",\"payments\":[],\"funding\":0},\"commonId\":\"cf8601aa-ab7a-4c69-be1b-136e13fe08e5\",\"votesFor\":1,\"state\":\"passed\",\"votesAgainst\":0,\"type\":\"join\",\"description\":{\"description\":\"Zero\",\"links\":[]},\"votes\":[{\"voteId\":\"dabf6117-7db4-42db-ac0c-5523948382ab\",\"voteOutcome\":\"approved\",\"voterId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\"}],\"createdAt\":{\"_seconds\":1615897600,\"_nanoseconds\":953000000},\"proposerId\":\"5Bi1KZGIYzW5UIljHgBlO98NXaI2\"}',\n join: {\n create: {\n id: '5eaa5a7c-04ba-4bc7-ae39-9f1bfabd8f97',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposerId": "0jL6u33k2rMoEY8wUmnIvkJM48O2", + "updatedAt": { + "_seconds": 1611931814, + "_nanoseconds": 792000000 + }, + "countdownPeriod": 57600, + "commonId": "878126b8-a724-4601-a9d8-2ec56b4d1c96", + "votesAgainst": 1, + "votes": [ + { + "voteOutcome": "rejected", + "voterId": "Xlun3Ux94Zfc73axkiuVdkktOWf1", + "voteId": "b406d517-62c0-4ea4-a0d6-3062c6cea2f5" + } + ], + "id": "5ef4ec9a-0fe2-4508-9c04-b71b9d82d1b7", + "join": { + "funding": 0, + "payments": [], + "fundingType": "one-time" + }, + "quietEndingPeriod": 3600, + "description": { + "links": [], + "description": "Dsfsfsdfds" + }, + "votesFor": 0, + "type": "join", + "state": "failed", + "createdAt": { + "_seconds": 1611931746, + "_nanoseconds": 579000000 + } + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '5ef4ec9a-0fe2-4508-9c04-b71b9d82d1b7',\n common: {\n connect: {\n id: '878126b8-a724-4601-a9d8-2ec56b4d1c96'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: '0jL6u33k2rMoEY8wUmnIvkJM48O2',\n commonId: '878126b8-a724-4601-a9d8-2ec56b4d1c96'\n }\n }\n },\n user: {\n connect: {\n id: '0jL6u33k2rMoEY8wUmnIvkJM48O2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Dsfsfsdfds',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: undefined,\n expiresAt: new Date('2021-01-30T06:49:06.579Z'),\n votesFor: 0,\n votesAgainst: 1,\n importedFrom: '{\"proposerId\":\"0jL6u33k2rMoEY8wUmnIvkJM48O2\",\"updatedAt\":{\"_seconds\":1611931814,\"_nanoseconds\":792000000},\"countdownPeriod\":57600,\"commonId\":\"878126b8-a724-4601-a9d8-2ec56b4d1c96\",\"votesAgainst\":1,\"votes\":[{\"voteOutcome\":\"rejected\",\"voterId\":\"Xlun3Ux94Zfc73axkiuVdkktOWf1\",\"voteId\":\"b406d517-62c0-4ea4-a0d6-3062c6cea2f5\"}],\"id\":\"5ef4ec9a-0fe2-4508-9c04-b71b9d82d1b7\",\"join\":{\"funding\":0,\"payments\":[],\"fundingType\":\"one-time\"},\"quietEndingPeriod\":3600,\"description\":{\"links\":[],\"description\":\"Dsfsfsdfds\"},\"votesFor\":0,\"type\":\"join\",\"state\":\"failed\",\"createdAt\":{\"_seconds\":1611931746,\"_nanoseconds\":579000000}}',\n join: {\n create: {\n id: '5ef4ec9a-0fe2-4508-9c04-b71b9d82d1b7',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '5ef4ec9a-0fe2-4508-9c04-b71b9d82d1b7',\n common: {\n connect: {\n id: '878126b8-a724-4601-a9d8-2ec56b4d1c96'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: '0jL6u33k2rMoEY8wUmnIvkJM48O2',\n commonId: '878126b8-a724-4601-a9d8-2ec56b4d1c96'\n }\n }\n },\n user: {\n connect: {\n id: '0jL6u33k2rMoEY8wUmnIvkJM48O2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Dsfsfsdfds',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: undefined,\n expiresAt: new Date('2021-01-30T06:49:06.579Z'),\n votesFor: 0,\n votesAgainst: 1,\n importedFrom: '{\"proposerId\":\"0jL6u33k2rMoEY8wUmnIvkJM48O2\",\"updatedAt\":{\"_seconds\":1611931814,\"_nanoseconds\":792000000},\"countdownPeriod\":57600,\"commonId\":\"878126b8-a724-4601-a9d8-2ec56b4d1c96\",\"votesAgainst\":1,\"votes\":[{\"voteOutcome\":\"rejected\",\"voterId\":\"Xlun3Ux94Zfc73axkiuVdkktOWf1\",\"voteId\":\"b406d517-62c0-4ea4-a0d6-3062c6cea2f5\"}],\"id\":\"5ef4ec9a-0fe2-4508-9c04-b71b9d82d1b7\",\"join\":{\"funding\":0,\"payments\":[],\"fundingType\":\"one-time\"},\"quietEndingPeriod\":3600,\"description\":{\"links\":[],\"description\":\"Dsfsfsdfds\"},\"votesFor\":0,\"type\":\"join\",\"state\":\"failed\",\"createdAt\":{\"_seconds\":1611931746,\"_nanoseconds\":579000000}}',\n join: {\n create: {\n id: '5ef4ec9a-0fe2-4508-9c04-b71b9d82d1b7',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposerId": "Wz0ZgOvKnafrjLDeAeWqx182uBq2", + "join": { + "payments": [], + "fundingType": "one-time", + "funding": 0, + "ip": "178.120.58.75" + }, + "state": "countdown", + "createdAt": { + "_seconds": 1621324199, + "_nanoseconds": 753000000 + }, + "id": "5f6ca11f-46a4-49fc-a585-7c5b2b0cf554", + "countdownPeriod": 57600, + "commonId": "179ae685-5cf2-4bbb-917d-a994e3d85cce", + "votesAgainst": 0, + "votesFor": 0, + "type": "join", + "quietEndingPeriod": 3600, + "description": { + "links": [], + "description": "12334456789123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890" + }, + "updatedAt": { + "_seconds": 1621324199, + "_nanoseconds": 753000000 + }, + "votes": [] + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '5f6ca11f-46a4-49fc-a585-7c5b2b0cf554',\n common: {\n connect: {\n id: '179ae685-5cf2-4bbb-917d-a994e3d85cce'\n }\n },\n user: {\n connect: {\n id: 'Wz0ZgOvKnafrjLDeAeWqx182uBq2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: '12334456789123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890',\n files: [],\n images: [],\n links: [],\n state: 'Countdown',\n ipAddress: '178.120.58.75',\n expiresAt: new Date('2021-05-18T23:49:59.753Z'),\n votesFor: 0,\n votesAgainst: 0,\n importedFrom: '{\"proposerId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"join\":{\"payments\":[],\"fundingType\":\"one-time\",\"funding\":0,\"ip\":\"178.120.58.75\"},\"state\":\"countdown\",\"createdAt\":{\"_seconds\":1621324199,\"_nanoseconds\":753000000},\"id\":\"5f6ca11f-46a4-49fc-a585-7c5b2b0cf554\",\"countdownPeriod\":57600,\"commonId\":\"179ae685-5cf2-4bbb-917d-a994e3d85cce\",\"votesAgainst\":0,\"votesFor\":0,\"type\":\"join\",\"quietEndingPeriod\":3600,\"description\":{\"links\":[],\"description\":\"12334456789123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890\"},\"updatedAt\":{\"_seconds\":1621324199,\"_nanoseconds\":753000000},\"votes\":[]}',\n join: {\n create: {\n id: '5f6ca11f-46a4-49fc-a585-7c5b2b0cf554',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '5f6ca11f-46a4-49fc-a585-7c5b2b0cf554',\n common: {\n connect: {\n id: '179ae685-5cf2-4bbb-917d-a994e3d85cce'\n }\n },\n user: {\n connect: {\n id: 'Wz0ZgOvKnafrjLDeAeWqx182uBq2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: '12334456789123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890',\n files: [],\n images: [],\n links: [],\n state: 'Countdown',\n ipAddress: '178.120.58.75',\n expiresAt: new Date('2021-05-18T23:49:59.753Z'),\n votesFor: 0,\n votesAgainst: 0,\n importedFrom: '{\"proposerId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"join\":{\"payments\":[],\"fundingType\":\"one-time\",\"funding\":0,\"ip\":\"178.120.58.75\"},\"state\":\"countdown\",\"createdAt\":{\"_seconds\":1621324199,\"_nanoseconds\":753000000},\"id\":\"5f6ca11f-46a4-49fc-a585-7c5b2b0cf554\",\"countdownPeriod\":57600,\"commonId\":\"179ae685-5cf2-4bbb-917d-a994e3d85cce\",\"votesAgainst\":0,\"votesFor\":0,\"type\":\"join\",\"quietEndingPeriod\":3600,\"description\":{\"links\":[],\"description\":\"12334456789123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890\"},\"updatedAt\":{\"_seconds\":1621324199,\"_nanoseconds\":753000000},\"votes\":[]}',\n join: {\n create: {\n id: '5f6ca11f-46a4-49fc-a585-7c5b2b0cf554',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposerId": "0jL6u33k2rMoEY8wUmnIvkJM48O2", + "countdownPeriod": 57600, + "state": "failed", + "type": "join", + "description": { + "description": "Test", + "links": [ + { + "title": "Test", + "value": "https://test.test" + } + ] + }, + "votes": [ + { + "voteId": "d3098129-2675-46a6-a8cb-fb2a9374798d", + "voterId": "Xlun3Ux94Zfc73axkiuVdkktOWf1", + "voteOutcome": "rejected" + } + ], + "commonId": "878126b8-a724-4601-a9d8-2ec56b4d1c96", + "updatedAt": { + "_seconds": 1611927670, + "_nanoseconds": 689000000 + }, + "votesAgainst": 1, + "createdAt": { + "_seconds": 1611927280, + "_nanoseconds": 150000000 + }, + "quietEndingPeriod": 3600, + "votesFor": 0, + "join": { + "payments": [], + "fundingType": "one-time", + "funding": 0 + }, + "id": "61992d35-9975-4162-98f1-6be8af38e898" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '61992d35-9975-4162-98f1-6be8af38e898',\n common: {\n connect: {\n id: '878126b8-a724-4601-a9d8-2ec56b4d1c96'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: '0jL6u33k2rMoEY8wUmnIvkJM48O2',\n commonId: '878126b8-a724-4601-a9d8-2ec56b4d1c96'\n }\n }\n },\n user: {\n connect: {\n id: '0jL6u33k2rMoEY8wUmnIvkJM48O2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Test',\n files: [],\n images: [],\n links: [\n {\n title: 'Test',\n url: 'https://test.test'\n }\n ],\n state: 'Rejected',\n ipAddress: undefined,\n expiresAt: new Date('2021-01-30T05:34:40.150Z'),\n votesFor: 0,\n votesAgainst: 1,\n importedFrom: '{\"proposerId\":\"0jL6u33k2rMoEY8wUmnIvkJM48O2\",\"countdownPeriod\":57600,\"state\":\"failed\",\"type\":\"join\",\"description\":{\"description\":\"Test\",\"links\":[{\"title\":\"Test\",\"value\":\"https://test.test\"}]},\"votes\":[{\"voteId\":\"d3098129-2675-46a6-a8cb-fb2a9374798d\",\"voterId\":\"Xlun3Ux94Zfc73axkiuVdkktOWf1\",\"voteOutcome\":\"rejected\"}],\"commonId\":\"878126b8-a724-4601-a9d8-2ec56b4d1c96\",\"updatedAt\":{\"_seconds\":1611927670,\"_nanoseconds\":689000000},\"votesAgainst\":1,\"createdAt\":{\"_seconds\":1611927280,\"_nanoseconds\":150000000},\"quietEndingPeriod\":3600,\"votesFor\":0,\"join\":{\"payments\":[],\"fundingType\":\"one-time\",\"funding\":0},\"id\":\"61992d35-9975-4162-98f1-6be8af38e898\"}',\n join: {\n create: {\n id: '61992d35-9975-4162-98f1-6be8af38e898',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '61992d35-9975-4162-98f1-6be8af38e898',\n common: {\n connect: {\n id: '878126b8-a724-4601-a9d8-2ec56b4d1c96'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: '0jL6u33k2rMoEY8wUmnIvkJM48O2',\n commonId: '878126b8-a724-4601-a9d8-2ec56b4d1c96'\n }\n }\n },\n user: {\n connect: {\n id: '0jL6u33k2rMoEY8wUmnIvkJM48O2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Test',\n files: [],\n images: [],\n links: [\n {\n title: 'Test',\n url: 'https://test.test'\n }\n ],\n state: 'Rejected',\n ipAddress: undefined,\n expiresAt: new Date('2021-01-30T05:34:40.150Z'),\n votesFor: 0,\n votesAgainst: 1,\n importedFrom: '{\"proposerId\":\"0jL6u33k2rMoEY8wUmnIvkJM48O2\",\"countdownPeriod\":57600,\"state\":\"failed\",\"type\":\"join\",\"description\":{\"description\":\"Test\",\"links\":[{\"title\":\"Test\",\"value\":\"https://test.test\"}]},\"votes\":[{\"voteId\":\"d3098129-2675-46a6-a8cb-fb2a9374798d\",\"voterId\":\"Xlun3Ux94Zfc73axkiuVdkktOWf1\",\"voteOutcome\":\"rejected\"}],\"commonId\":\"878126b8-a724-4601-a9d8-2ec56b4d1c96\",\"updatedAt\":{\"_seconds\":1611927670,\"_nanoseconds\":689000000},\"votesAgainst\":1,\"createdAt\":{\"_seconds\":1611927280,\"_nanoseconds\":150000000},\"quietEndingPeriod\":3600,\"votesFor\":0,\"join\":{\"payments\":[],\"fundingType\":\"one-time\",\"funding\":0},\"id\":\"61992d35-9975-4162-98f1-6be8af38e898\"}',\n join: {\n create: {\n id: '61992d35-9975-4162-98f1-6be8af38e898',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "quietEndingPeriod": 3600, + "votesAgainst": 1, + "createdAt": { + "_seconds": 1615978038, + "_nanoseconds": 805000000 + }, + "votes": [ + { + "voterId": "Wz0ZgOvKnafrjLDeAeWqx182uBq2", + "voteOutcome": "rejected", + "voteId": "ebecc355-33d3-4fba-b901-32ad75b3ba58" + } + ], + "description": { + "description": "Points ", + "links": [] + }, + "updatedAt": { + "_seconds": 1615978062, + "_nanoseconds": 821000000 + }, + "commonId": "82bfdd51-6da9-447a-9eb4-f8c9b9d01cbd", + "join": { + "payments": [], + "fundingType": "one-time", + "ip": "178.120.61.209", + "funding": 0 + }, + "countdownPeriod": 57600, + "state": "failed", + "id": "61ab85f1-afe4-4028-b716-bef9226af8b1", + "type": "join", + "proposerId": "2HM9WnVvr9aDYbckjCo4cIDjncY2", + "votesFor": 0 + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '61ab85f1-afe4-4028-b716-bef9226af8b1',\n common: {\n connect: {\n id: '82bfdd51-6da9-447a-9eb4-f8c9b9d01cbd'\n }\n },\n user: {\n connect: {\n id: '2HM9WnVvr9aDYbckjCo4cIDjncY2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Points ',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '178.120.61.209',\n expiresAt: new Date('2021-03-18T02:47:18.805Z'),\n votesFor: 0,\n votesAgainst: 1,\n importedFrom: '{\"quietEndingPeriod\":3600,\"votesAgainst\":1,\"createdAt\":{\"_seconds\":1615978038,\"_nanoseconds\":805000000},\"votes\":[{\"voterId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"voteOutcome\":\"rejected\",\"voteId\":\"ebecc355-33d3-4fba-b901-32ad75b3ba58\"}],\"description\":{\"description\":\"Points \",\"links\":[]},\"updatedAt\":{\"_seconds\":1615978062,\"_nanoseconds\":821000000},\"commonId\":\"82bfdd51-6da9-447a-9eb4-f8c9b9d01cbd\",\"join\":{\"payments\":[],\"fundingType\":\"one-time\",\"ip\":\"178.120.61.209\",\"funding\":0},\"countdownPeriod\":57600,\"state\":\"failed\",\"id\":\"61ab85f1-afe4-4028-b716-bef9226af8b1\",\"type\":\"join\",\"proposerId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\",\"votesFor\":0}',\n join: {\n create: {\n id: '61ab85f1-afe4-4028-b716-bef9226af8b1',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '61ab85f1-afe4-4028-b716-bef9226af8b1',\n common: {\n connect: {\n id: '82bfdd51-6da9-447a-9eb4-f8c9b9d01cbd'\n }\n },\n user: {\n connect: {\n id: '2HM9WnVvr9aDYbckjCo4cIDjncY2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Points ',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '178.120.61.209',\n expiresAt: new Date('2021-03-18T02:47:18.805Z'),\n votesFor: 0,\n votesAgainst: 1,\n importedFrom: '{\"quietEndingPeriod\":3600,\"votesAgainst\":1,\"createdAt\":{\"_seconds\":1615978038,\"_nanoseconds\":805000000},\"votes\":[{\"voterId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"voteOutcome\":\"rejected\",\"voteId\":\"ebecc355-33d3-4fba-b901-32ad75b3ba58\"}],\"description\":{\"description\":\"Points \",\"links\":[]},\"updatedAt\":{\"_seconds\":1615978062,\"_nanoseconds\":821000000},\"commonId\":\"82bfdd51-6da9-447a-9eb4-f8c9b9d01cbd\",\"join\":{\"payments\":[],\"fundingType\":\"one-time\",\"ip\":\"178.120.61.209\",\"funding\":0},\"countdownPeriod\":57600,\"state\":\"failed\",\"id\":\"61ab85f1-afe4-4028-b716-bef9226af8b1\",\"type\":\"join\",\"proposerId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\",\"votesFor\":0}',\n join: {\n create: {\n id: '61ab85f1-afe4-4028-b716-bef9226af8b1',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "votesFor": 0, + "commonId": "3540a395-7bab-465c-9923-42c631e26374", + "countdownPeriod": 57600, + "join": { + "payments": [], + "fundingType": "one-time", + "ip": "178.120.61.209", + "funding": 0 + }, + "updatedAt": { + "_seconds": 1616032801, + "_nanoseconds": 10000000 + }, + "createdAt": { + "_seconds": 1615974977, + "_nanoseconds": 192000000 + }, + "description": { + "links": [], + "description": "Hi" + }, + "quietEndingPeriod": 3600, + "votes": [], + "state": "failed", + "proposerId": "Wz0ZgOvKnafrjLDeAeWqx182uBq2", + "type": "join", + "votesAgainst": 0, + "id": "6bc83827-a528-48f5-9f12-51b133ba3505" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '6bc83827-a528-48f5-9f12-51b133ba3505',\n common: {\n connect: {\n id: '3540a395-7bab-465c-9923-42c631e26374'\n }\n },\n user: {\n connect: {\n id: 'Wz0ZgOvKnafrjLDeAeWqx182uBq2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Hi',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '178.120.61.209',\n expiresAt: new Date('2021-03-18T01:56:17.192Z'),\n votesFor: 0,\n votesAgainst: 0,\n importedFrom: '{\"votesFor\":0,\"commonId\":\"3540a395-7bab-465c-9923-42c631e26374\",\"countdownPeriod\":57600,\"join\":{\"payments\":[],\"fundingType\":\"one-time\",\"ip\":\"178.120.61.209\",\"funding\":0},\"updatedAt\":{\"_seconds\":1616032801,\"_nanoseconds\":10000000},\"createdAt\":{\"_seconds\":1615974977,\"_nanoseconds\":192000000},\"description\":{\"links\":[],\"description\":\"Hi\"},\"quietEndingPeriod\":3600,\"votes\":[],\"state\":\"failed\",\"proposerId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"type\":\"join\",\"votesAgainst\":0,\"id\":\"6bc83827-a528-48f5-9f12-51b133ba3505\"}',\n join: {\n create: {\n id: '6bc83827-a528-48f5-9f12-51b133ba3505',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '6bc83827-a528-48f5-9f12-51b133ba3505',\n common: {\n connect: {\n id: '3540a395-7bab-465c-9923-42c631e26374'\n }\n },\n user: {\n connect: {\n id: 'Wz0ZgOvKnafrjLDeAeWqx182uBq2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Hi',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '178.120.61.209',\n expiresAt: new Date('2021-03-18T01:56:17.192Z'),\n votesFor: 0,\n votesAgainst: 0,\n importedFrom: '{\"votesFor\":0,\"commonId\":\"3540a395-7bab-465c-9923-42c631e26374\",\"countdownPeriod\":57600,\"join\":{\"payments\":[],\"fundingType\":\"one-time\",\"ip\":\"178.120.61.209\",\"funding\":0},\"updatedAt\":{\"_seconds\":1616032801,\"_nanoseconds\":10000000},\"createdAt\":{\"_seconds\":1615974977,\"_nanoseconds\":192000000},\"description\":{\"links\":[],\"description\":\"Hi\"},\"quietEndingPeriod\":3600,\"votes\":[],\"state\":\"failed\",\"proposerId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"type\":\"join\",\"votesAgainst\":0,\"id\":\"6bc83827-a528-48f5-9f12-51b133ba3505\"}',\n join: {\n create: {\n id: '6bc83827-a528-48f5-9f12-51b133ba3505',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "commonId": "878126b8-a724-4601-a9d8-2ec56b4d1c96", + "quietEndingPeriod": 3600, + "id": "6c1a5d59-7c28-45db-8ecd-78296c379adf", + "votesAgainst": 1, + "description": { + "links": [], + "description": "Assad’s" + }, + "countdownPeriod": 57600, + "type": "join", + "updatedAt": { + "_seconds": 1611927892, + "_nanoseconds": 912000000 + }, + "join": { + "payments": [], + "fundingType": "one-time", + "funding": 0 + }, + "proposerId": "0jL6u33k2rMoEY8wUmnIvkJM48O2", + "votesFor": 0, + "createdAt": { + "_seconds": 1611927848, + "_nanoseconds": 321000000 + }, + "state": "failed", + "votes": [ + { + "voteOutcome": "rejected", + "voterId": "Xlun3Ux94Zfc73axkiuVdkktOWf1", + "voteId": "ecd9f4cc-6a49-470a-adab-51a3b7341053" + } + ] + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '6c1a5d59-7c28-45db-8ecd-78296c379adf',\n common: {\n connect: {\n id: '878126b8-a724-4601-a9d8-2ec56b4d1c96'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: '0jL6u33k2rMoEY8wUmnIvkJM48O2',\n commonId: '878126b8-a724-4601-a9d8-2ec56b4d1c96'\n }\n }\n },\n user: {\n connect: {\n id: '0jL6u33k2rMoEY8wUmnIvkJM48O2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Assad’s',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: undefined,\n expiresAt: new Date('2021-01-30T05:44:08.321Z'),\n votesFor: 0,\n votesAgainst: 1,\n importedFrom: '{\"commonId\":\"878126b8-a724-4601-a9d8-2ec56b4d1c96\",\"quietEndingPeriod\":3600,\"id\":\"6c1a5d59-7c28-45db-8ecd-78296c379adf\",\"votesAgainst\":1,\"description\":{\"links\":[],\"description\":\"Assad’s\"},\"countdownPeriod\":57600,\"type\":\"join\",\"updatedAt\":{\"_seconds\":1611927892,\"_nanoseconds\":912000000},\"join\":{\"payments\":[],\"fundingType\":\"one-time\",\"funding\":0},\"proposerId\":\"0jL6u33k2rMoEY8wUmnIvkJM48O2\",\"votesFor\":0,\"createdAt\":{\"_seconds\":1611927848,\"_nanoseconds\":321000000},\"state\":\"failed\",\"votes\":[{\"voteOutcome\":\"rejected\",\"voterId\":\"Xlun3Ux94Zfc73axkiuVdkktOWf1\",\"voteId\":\"ecd9f4cc-6a49-470a-adab-51a3b7341053\"}]}',\n join: {\n create: {\n id: '6c1a5d59-7c28-45db-8ecd-78296c379adf',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '6c1a5d59-7c28-45db-8ecd-78296c379adf',\n common: {\n connect: {\n id: '878126b8-a724-4601-a9d8-2ec56b4d1c96'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: '0jL6u33k2rMoEY8wUmnIvkJM48O2',\n commonId: '878126b8-a724-4601-a9d8-2ec56b4d1c96'\n }\n }\n },\n user: {\n connect: {\n id: '0jL6u33k2rMoEY8wUmnIvkJM48O2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Assad’s',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: undefined,\n expiresAt: new Date('2021-01-30T05:44:08.321Z'),\n votesFor: 0,\n votesAgainst: 1,\n importedFrom: '{\"commonId\":\"878126b8-a724-4601-a9d8-2ec56b4d1c96\",\"quietEndingPeriod\":3600,\"id\":\"6c1a5d59-7c28-45db-8ecd-78296c379adf\",\"votesAgainst\":1,\"description\":{\"links\":[],\"description\":\"Assad’s\"},\"countdownPeriod\":57600,\"type\":\"join\",\"updatedAt\":{\"_seconds\":1611927892,\"_nanoseconds\":912000000},\"join\":{\"payments\":[],\"fundingType\":\"one-time\",\"funding\":0},\"proposerId\":\"0jL6u33k2rMoEY8wUmnIvkJM48O2\",\"votesFor\":0,\"createdAt\":{\"_seconds\":1611927848,\"_nanoseconds\":321000000},\"state\":\"failed\",\"votes\":[{\"voteOutcome\":\"rejected\",\"voterId\":\"Xlun3Ux94Zfc73axkiuVdkktOWf1\",\"voteId\":\"ecd9f4cc-6a49-470a-adab-51a3b7341053\"}]}',\n join: {\n create: {\n id: '6c1a5d59-7c28-45db-8ecd-78296c379adf',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "quietEndingPeriod": 3600, + "countdownPeriod": 57600, + "updatedAt": { + "_seconds": 1616652901, + "_nanoseconds": 506000000 + }, + "votesAgainst": 0, + "type": "join", + "join": { + "ip": "79.153.235.82", + "payments": [], + "funding": 0, + "fundingType": "one-time" + }, + "votesFor": 0, + "state": "failed", + "id": "6ea0232e-3914-4ae9-95d5-1b1a53124691", + "votes": [], + "createdAt": { + "_seconds": 1616595096, + "_nanoseconds": 558000000 + }, + "description": { + "description": "another try", + "links": [ + { + "value": "http://www.talyaron.com", + "title": "Talyaron test" + } + ] + }, + "proposerId": "h59V0do13qhpeH9xDyoLaCZucTm1", + "commonId": "3540a395-7bab-465c-9923-42c631e26374" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '6ea0232e-3914-4ae9-95d5-1b1a53124691',\n common: {\n connect: {\n id: '3540a395-7bab-465c-9923-42c631e26374'\n }\n },\n user: {\n connect: {\n id: 'h59V0do13qhpeH9xDyoLaCZucTm1'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'another try',\n files: [],\n images: [],\n links: [\n {\n title: 'Talyaron test',\n url: 'http://www.talyaron.com'\n }\n ],\n state: 'Rejected',\n ipAddress: '79.153.235.82',\n expiresAt: new Date('2021-03-25T06:11:36.558Z'),\n votesFor: 0,\n votesAgainst: 0,\n importedFrom: '{\"quietEndingPeriod\":3600,\"countdownPeriod\":57600,\"updatedAt\":{\"_seconds\":1616652901,\"_nanoseconds\":506000000},\"votesAgainst\":0,\"type\":\"join\",\"join\":{\"ip\":\"79.153.235.82\",\"payments\":[],\"funding\":0,\"fundingType\":\"one-time\"},\"votesFor\":0,\"state\":\"failed\",\"id\":\"6ea0232e-3914-4ae9-95d5-1b1a53124691\",\"votes\":[],\"createdAt\":{\"_seconds\":1616595096,\"_nanoseconds\":558000000},\"description\":{\"description\":\"another try\",\"links\":[{\"value\":\"http://www.talyaron.com\",\"title\":\"Talyaron test\"}]},\"proposerId\":\"h59V0do13qhpeH9xDyoLaCZucTm1\",\"commonId\":\"3540a395-7bab-465c-9923-42c631e26374\"}',\n join: {\n create: {\n id: '6ea0232e-3914-4ae9-95d5-1b1a53124691',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '6ea0232e-3914-4ae9-95d5-1b1a53124691',\n common: {\n connect: {\n id: '3540a395-7bab-465c-9923-42c631e26374'\n }\n },\n user: {\n connect: {\n id: 'h59V0do13qhpeH9xDyoLaCZucTm1'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'another try',\n files: [],\n images: [],\n links: [\n {\n title: 'Talyaron test',\n url: 'http://www.talyaron.com'\n }\n ],\n state: 'Rejected',\n ipAddress: '79.153.235.82',\n expiresAt: new Date('2021-03-25T06:11:36.558Z'),\n votesFor: 0,\n votesAgainst: 0,\n importedFrom: '{\"quietEndingPeriod\":3600,\"countdownPeriod\":57600,\"updatedAt\":{\"_seconds\":1616652901,\"_nanoseconds\":506000000},\"votesAgainst\":0,\"type\":\"join\",\"join\":{\"ip\":\"79.153.235.82\",\"payments\":[],\"funding\":0,\"fundingType\":\"one-time\"},\"votesFor\":0,\"state\":\"failed\",\"id\":\"6ea0232e-3914-4ae9-95d5-1b1a53124691\",\"votes\":[],\"createdAt\":{\"_seconds\":1616595096,\"_nanoseconds\":558000000},\"description\":{\"description\":\"another try\",\"links\":[{\"value\":\"http://www.talyaron.com\",\"title\":\"Talyaron test\"}]},\"proposerId\":\"h59V0do13qhpeH9xDyoLaCZucTm1\",\"commonId\":\"3540a395-7bab-465c-9923-42c631e26374\"}',\n join: {\n create: {\n id: '6ea0232e-3914-4ae9-95d5-1b1a53124691',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "description": { + "links": [], + "description": "hello" + }, + "id": "6fa624ad-c86a-460b-877e-a3b8381d47fa", + "createdAt": { + "_seconds": 1615457774, + "_nanoseconds": 722000000 + }, + "commonId": "858836dc-776d-4b5d-a999-4cc154f81e11", + "votesAgainst": 1, + "votes": [ + { + "voteOutcome": "rejected", + "voterId": "tPfZmRJnQjdnXIlgMZyfphEat3n2", + "voteId": "9cd52149-2e8a-4c24-a8a4-f75ae0cbb944" + }, + { + "voteOutcome": "approved", + "voteId": "fb8ae9df-ff2b-416c-98e0-d7880c610190", + "voterId": "skBkfQh8E1f4eOGBSVLaiuJ097v1" + }, + { + "voteId": "a97d7af3-ab50-4460-8fcd-4402e3dfb5d2", + "voterId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1", + "voteOutcome": "approved" + }, + { + "voteId": "97d16a23-3b60-4c7b-b47b-f8df525bdea0", + "voteOutcome": "approved", + "voterId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2" + } + ], + "updatedAt": { + "_seconds": 1615458393, + "_nanoseconds": 618000000 + }, + "state": "passed", + "quietEndingPeriod": 3600, + "proposerId": "H5ZkcKBX5eXXNyBiPaph8EHCiax2", + "join": { + "funding": 0, + "fundingType": "one-time", + "ip": "92.247.242.169", + "payments": [] + }, + "countdownPeriod": 57600, + "votesFor": 3, + "type": "join" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '6fa624ad-c86a-460b-877e-a3b8381d47fa',\n common: {\n connect: {\n id: '858836dc-776d-4b5d-a999-4cc154f81e11'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: 'H5ZkcKBX5eXXNyBiPaph8EHCiax2',\n commonId: '858836dc-776d-4b5d-a999-4cc154f81e11'\n }\n }\n },\n user: {\n connect: {\n id: 'H5ZkcKBX5eXXNyBiPaph8EHCiax2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'hello',\n files: [],\n images: [],\n links: [],\n state: 'Accepted',\n ipAddress: '92.247.242.169',\n expiresAt: new Date('2021-03-12T02:16:14.722Z'),\n votesFor: 3,\n votesAgainst: 1,\n importedFrom: '{\"description\":{\"links\":[],\"description\":\"hello\"},\"id\":\"6fa624ad-c86a-460b-877e-a3b8381d47fa\",\"createdAt\":{\"_seconds\":1615457774,\"_nanoseconds\":722000000},\"commonId\":\"858836dc-776d-4b5d-a999-4cc154f81e11\",\"votesAgainst\":1,\"votes\":[{\"voteOutcome\":\"rejected\",\"voterId\":\"tPfZmRJnQjdnXIlgMZyfphEat3n2\",\"voteId\":\"9cd52149-2e8a-4c24-a8a4-f75ae0cbb944\"},{\"voteOutcome\":\"approved\",\"voteId\":\"fb8ae9df-ff2b-416c-98e0-d7880c610190\",\"voterId\":\"skBkfQh8E1f4eOGBSVLaiuJ097v1\"},{\"voteId\":\"a97d7af3-ab50-4460-8fcd-4402e3dfb5d2\",\"voterId\":\"11j4NvvZ4kMRf4BFBUHdbRiXKMp1\",\"voteOutcome\":\"approved\"},{\"voteId\":\"97d16a23-3b60-4c7b-b47b-f8df525bdea0\",\"voteOutcome\":\"approved\",\"voterId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\"}],\"updatedAt\":{\"_seconds\":1615458393,\"_nanoseconds\":618000000},\"state\":\"passed\",\"quietEndingPeriod\":3600,\"proposerId\":\"H5ZkcKBX5eXXNyBiPaph8EHCiax2\",\"join\":{\"funding\":0,\"fundingType\":\"one-time\",\"ip\":\"92.247.242.169\",\"payments\":[]},\"countdownPeriod\":57600,\"votesFor\":3,\"type\":\"join\"}',\n join: {\n create: {\n id: '6fa624ad-c86a-460b-877e-a3b8381d47fa',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '6fa624ad-c86a-460b-877e-a3b8381d47fa',\n common: {\n connect: {\n id: '858836dc-776d-4b5d-a999-4cc154f81e11'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: 'H5ZkcKBX5eXXNyBiPaph8EHCiax2',\n commonId: '858836dc-776d-4b5d-a999-4cc154f81e11'\n }\n }\n },\n user: {\n connect: {\n id: 'H5ZkcKBX5eXXNyBiPaph8EHCiax2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'hello',\n files: [],\n images: [],\n links: [],\n state: 'Accepted',\n ipAddress: '92.247.242.169',\n expiresAt: new Date('2021-03-12T02:16:14.722Z'),\n votesFor: 3,\n votesAgainst: 1,\n importedFrom: '{\"description\":{\"links\":[],\"description\":\"hello\"},\"id\":\"6fa624ad-c86a-460b-877e-a3b8381d47fa\",\"createdAt\":{\"_seconds\":1615457774,\"_nanoseconds\":722000000},\"commonId\":\"858836dc-776d-4b5d-a999-4cc154f81e11\",\"votesAgainst\":1,\"votes\":[{\"voteOutcome\":\"rejected\",\"voterId\":\"tPfZmRJnQjdnXIlgMZyfphEat3n2\",\"voteId\":\"9cd52149-2e8a-4c24-a8a4-f75ae0cbb944\"},{\"voteOutcome\":\"approved\",\"voteId\":\"fb8ae9df-ff2b-416c-98e0-d7880c610190\",\"voterId\":\"skBkfQh8E1f4eOGBSVLaiuJ097v1\"},{\"voteId\":\"a97d7af3-ab50-4460-8fcd-4402e3dfb5d2\",\"voterId\":\"11j4NvvZ4kMRf4BFBUHdbRiXKMp1\",\"voteOutcome\":\"approved\"},{\"voteId\":\"97d16a23-3b60-4c7b-b47b-f8df525bdea0\",\"voteOutcome\":\"approved\",\"voterId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\"}],\"updatedAt\":{\"_seconds\":1615458393,\"_nanoseconds\":618000000},\"state\":\"passed\",\"quietEndingPeriod\":3600,\"proposerId\":\"H5ZkcKBX5eXXNyBiPaph8EHCiax2\",\"join\":{\"funding\":0,\"fundingType\":\"one-time\",\"ip\":\"92.247.242.169\",\"payments\":[]},\"countdownPeriod\":57600,\"votesFor\":3,\"type\":\"join\"}',\n join: {\n create: {\n id: '6fa624ad-c86a-460b-877e-a3b8381d47fa',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "countdownPeriod": 57600, + "type": "join", + "proposerId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1", + "createdAt": { + "_seconds": 1615457179, + "_nanoseconds": 752000000 + }, + "updatedAt": { + "_seconds": 1615457336, + "_nanoseconds": 166000000 + }, + "votes": [ + { + "voteId": "b131ef9e-14f8-4f2e-b0b8-7e0e3facb37b", + "voterId": "tPfZmRJnQjdnXIlgMZyfphEat3n2", + "voteOutcome": "approved" + } + ], + "description": { + "description": "Hello", + "links": [] + }, + "id": "717e5770-ed77-420b-8c46-efe2326d003f", + "votesAgainst": 0, + "quietEndingPeriod": 3600, + "commonId": "858836dc-776d-4b5d-a999-4cc154f81e11", + "state": "passed", + "votesFor": 1, + "join": { + "ip": "2a02:ed0:6d9e:4b00:6005:4fe:a93d:d307", + "fundingType": "one-time", + "payments": [], + "funding": 0 + } + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '717e5770-ed77-420b-8c46-efe2326d003f',\n common: {\n connect: {\n id: '858836dc-776d-4b5d-a999-4cc154f81e11'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: '11j4NvvZ4kMRf4BFBUHdbRiXKMp1',\n commonId: '858836dc-776d-4b5d-a999-4cc154f81e11'\n }\n }\n },\n user: {\n connect: {\n id: '11j4NvvZ4kMRf4BFBUHdbRiXKMp1'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Hello',\n files: [],\n images: [],\n links: [],\n state: 'Accepted',\n ipAddress: '2a02:ed0:6d9e:4b00:6005:4fe:a93d:d307',\n expiresAt: new Date('2021-03-12T02:06:19.752Z'),\n votesFor: 1,\n votesAgainst: 0,\n importedFrom: '{\"countdownPeriod\":57600,\"type\":\"join\",\"proposerId\":\"11j4NvvZ4kMRf4BFBUHdbRiXKMp1\",\"createdAt\":{\"_seconds\":1615457179,\"_nanoseconds\":752000000},\"updatedAt\":{\"_seconds\":1615457336,\"_nanoseconds\":166000000},\"votes\":[{\"voteId\":\"b131ef9e-14f8-4f2e-b0b8-7e0e3facb37b\",\"voterId\":\"tPfZmRJnQjdnXIlgMZyfphEat3n2\",\"voteOutcome\":\"approved\"}],\"description\":{\"description\":\"Hello\",\"links\":[]},\"id\":\"717e5770-ed77-420b-8c46-efe2326d003f\",\"votesAgainst\":0,\"quietEndingPeriod\":3600,\"commonId\":\"858836dc-776d-4b5d-a999-4cc154f81e11\",\"state\":\"passed\",\"votesFor\":1,\"join\":{\"ip\":\"2a02:ed0:6d9e:4b00:6005:4fe:a93d:d307\",\"fundingType\":\"one-time\",\"payments\":[],\"funding\":0}}',\n join: {\n create: {\n id: '717e5770-ed77-420b-8c46-efe2326d003f',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '717e5770-ed77-420b-8c46-efe2326d003f',\n common: {\n connect: {\n id: '858836dc-776d-4b5d-a999-4cc154f81e11'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: '11j4NvvZ4kMRf4BFBUHdbRiXKMp1',\n commonId: '858836dc-776d-4b5d-a999-4cc154f81e11'\n }\n }\n },\n user: {\n connect: {\n id: '11j4NvvZ4kMRf4BFBUHdbRiXKMp1'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Hello',\n files: [],\n images: [],\n links: [],\n state: 'Accepted',\n ipAddress: '2a02:ed0:6d9e:4b00:6005:4fe:a93d:d307',\n expiresAt: new Date('2021-03-12T02:06:19.752Z'),\n votesFor: 1,\n votesAgainst: 0,\n importedFrom: '{\"countdownPeriod\":57600,\"type\":\"join\",\"proposerId\":\"11j4NvvZ4kMRf4BFBUHdbRiXKMp1\",\"createdAt\":{\"_seconds\":1615457179,\"_nanoseconds\":752000000},\"updatedAt\":{\"_seconds\":1615457336,\"_nanoseconds\":166000000},\"votes\":[{\"voteId\":\"b131ef9e-14f8-4f2e-b0b8-7e0e3facb37b\",\"voterId\":\"tPfZmRJnQjdnXIlgMZyfphEat3n2\",\"voteOutcome\":\"approved\"}],\"description\":{\"description\":\"Hello\",\"links\":[]},\"id\":\"717e5770-ed77-420b-8c46-efe2326d003f\",\"votesAgainst\":0,\"quietEndingPeriod\":3600,\"commonId\":\"858836dc-776d-4b5d-a999-4cc154f81e11\",\"state\":\"passed\",\"votesFor\":1,\"join\":{\"ip\":\"2a02:ed0:6d9e:4b00:6005:4fe:a93d:d307\",\"fundingType\":\"one-time\",\"payments\":[],\"funding\":0}}',\n join: {\n create: {\n id: '717e5770-ed77-420b-8c46-efe2326d003f',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "id": "720d4357-39bc-42b0-a3ca-42cc9b464508", + "commonId": "7f94d13d-557e-4438-a25f-29b8346d4d73", + "state": "failed", + "quietEndingPeriod": 3600, + "countdownPeriod": 57600, + "join": { + "ip": "178.120.61.209", + "payments": [], + "funding": 0, + "fundingType": "one-time" + }, + "votesFor": 0, + "proposerId": "Wz0ZgOvKnafrjLDeAeWqx182uBq2", + "createdAt": { + "_seconds": 1616056533, + "_nanoseconds": 394000000 + }, + "votes": [], + "updatedAt": { + "_seconds": 1616114400, + "_nanoseconds": 492000000 + }, + "description": { + "links": [], + "description": "Dos " + }, + "type": "join", + "votesAgainst": 0 + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '720d4357-39bc-42b0-a3ca-42cc9b464508',\n common: {\n connect: {\n id: '7f94d13d-557e-4438-a25f-29b8346d4d73'\n }\n },\n user: {\n connect: {\n id: 'Wz0ZgOvKnafrjLDeAeWqx182uBq2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Dos ',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '178.120.61.209',\n expiresAt: new Date('2021-03-19T00:35:33.394Z'),\n votesFor: 0,\n votesAgainst: 0,\n importedFrom: '{\"id\":\"720d4357-39bc-42b0-a3ca-42cc9b464508\",\"commonId\":\"7f94d13d-557e-4438-a25f-29b8346d4d73\",\"state\":\"failed\",\"quietEndingPeriod\":3600,\"countdownPeriod\":57600,\"join\":{\"ip\":\"178.120.61.209\",\"payments\":[],\"funding\":0,\"fundingType\":\"one-time\"},\"votesFor\":0,\"proposerId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"createdAt\":{\"_seconds\":1616056533,\"_nanoseconds\":394000000},\"votes\":[],\"updatedAt\":{\"_seconds\":1616114400,\"_nanoseconds\":492000000},\"description\":{\"links\":[],\"description\":\"Dos \"},\"type\":\"join\",\"votesAgainst\":0}',\n join: {\n create: {\n id: '720d4357-39bc-42b0-a3ca-42cc9b464508',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '720d4357-39bc-42b0-a3ca-42cc9b464508',\n common: {\n connect: {\n id: '7f94d13d-557e-4438-a25f-29b8346d4d73'\n }\n },\n user: {\n connect: {\n id: 'Wz0ZgOvKnafrjLDeAeWqx182uBq2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Dos ',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '178.120.61.209',\n expiresAt: new Date('2021-03-19T00:35:33.394Z'),\n votesFor: 0,\n votesAgainst: 0,\n importedFrom: '{\"id\":\"720d4357-39bc-42b0-a3ca-42cc9b464508\",\"commonId\":\"7f94d13d-557e-4438-a25f-29b8346d4d73\",\"state\":\"failed\",\"quietEndingPeriod\":3600,\"countdownPeriod\":57600,\"join\":{\"ip\":\"178.120.61.209\",\"payments\":[],\"funding\":0,\"fundingType\":\"one-time\"},\"votesFor\":0,\"proposerId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"createdAt\":{\"_seconds\":1616056533,\"_nanoseconds\":394000000},\"votes\":[],\"updatedAt\":{\"_seconds\":1616114400,\"_nanoseconds\":492000000},\"description\":{\"links\":[],\"description\":\"Dos \"},\"type\":\"join\",\"votesAgainst\":0}',\n join: {\n create: {\n id: '720d4357-39bc-42b0-a3ca-42cc9b464508',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "votesAgainst": 0, + "join": { + "ip": "178.120.61.209", + "fundingType": "one-time", + "funding": 0, + "payments": [] + }, + "description": { + "links": [], + "description": "C he" + }, + "commonId": "82bfdd51-6da9-447a-9eb4-f8c9b9d01cbd", + "createdAt": { + "_seconds": 1616140435, + "_nanoseconds": 383000000 + }, + "votesFor": 0, + "quietEndingPeriod": 3600, + "state": "failed", + "type": "join", + "updatedAt": { + "_seconds": 1616198101, + "_nanoseconds": 165000000 + }, + "countdownPeriod": 57600, + "votes": [], + "id": "72209fb1-a237-42eb-a63d-3e175e8ebeed", + "proposerId": "2HM9WnVvr9aDYbckjCo4cIDjncY2" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '72209fb1-a237-42eb-a63d-3e175e8ebeed',\n common: {\n connect: {\n id: '82bfdd51-6da9-447a-9eb4-f8c9b9d01cbd'\n }\n },\n user: {\n connect: {\n id: '2HM9WnVvr9aDYbckjCo4cIDjncY2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'C he',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '178.120.61.209',\n expiresAt: new Date('2021-03-19T23:53:55.383Z'),\n votesFor: 0,\n votesAgainst: 0,\n importedFrom: '{\"votesAgainst\":0,\"join\":{\"ip\":\"178.120.61.209\",\"fundingType\":\"one-time\",\"funding\":0,\"payments\":[]},\"description\":{\"links\":[],\"description\":\"C he\"},\"commonId\":\"82bfdd51-6da9-447a-9eb4-f8c9b9d01cbd\",\"createdAt\":{\"_seconds\":1616140435,\"_nanoseconds\":383000000},\"votesFor\":0,\"quietEndingPeriod\":3600,\"state\":\"failed\",\"type\":\"join\",\"updatedAt\":{\"_seconds\":1616198101,\"_nanoseconds\":165000000},\"countdownPeriod\":57600,\"votes\":[],\"id\":\"72209fb1-a237-42eb-a63d-3e175e8ebeed\",\"proposerId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\"}',\n join: {\n create: {\n id: '72209fb1-a237-42eb-a63d-3e175e8ebeed',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '72209fb1-a237-42eb-a63d-3e175e8ebeed',\n common: {\n connect: {\n id: '82bfdd51-6da9-447a-9eb4-f8c9b9d01cbd'\n }\n },\n user: {\n connect: {\n id: '2HM9WnVvr9aDYbckjCo4cIDjncY2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'C he',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '178.120.61.209',\n expiresAt: new Date('2021-03-19T23:53:55.383Z'),\n votesFor: 0,\n votesAgainst: 0,\n importedFrom: '{\"votesAgainst\":0,\"join\":{\"ip\":\"178.120.61.209\",\"fundingType\":\"one-time\",\"funding\":0,\"payments\":[]},\"description\":{\"links\":[],\"description\":\"C he\"},\"commonId\":\"82bfdd51-6da9-447a-9eb4-f8c9b9d01cbd\",\"createdAt\":{\"_seconds\":1616140435,\"_nanoseconds\":383000000},\"votesFor\":0,\"quietEndingPeriod\":3600,\"state\":\"failed\",\"type\":\"join\",\"updatedAt\":{\"_seconds\":1616198101,\"_nanoseconds\":165000000},\"countdownPeriod\":57600,\"votes\":[],\"id\":\"72209fb1-a237-42eb-a63d-3e175e8ebeed\",\"proposerId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\"}',\n join: {\n create: {\n id: '72209fb1-a237-42eb-a63d-3e175e8ebeed',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "votes": [ + { + "voterId": "2HM9WnVvr9aDYbckjCo4cIDjncY2", + "voteOutcome": "approved", + "voteId": "53d74cf0-605a-4577-99b1-342a436ab048" + } + ], + "description": { + "links": [], + "description": "Hey. Its me" + }, + "proposerId": "tPfZmRJnQjdnXIlgMZyfphEat3n2", + "join": { + "payments": [], + "fundingType": "one-time", + "ip": "2.53.143.123", + "funding": 0 + }, + "createdAt": { + "_seconds": 1615470206, + "_nanoseconds": 800000000 + }, + "state": "passed", + "countdownPeriod": 57600, + "quietEndingPeriod": 3600, + "votesFor": 1, + "updatedAt": { + "_seconds": 1615476566, + "_nanoseconds": 149000000 + }, + "commonId": "cf8601aa-ab7a-4c69-be1b-136e13fe08e5", + "votesAgainst": 0, + "type": "join", + "id": "73f85f60-1830-47de-b86e-f2bf74262352" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '73f85f60-1830-47de-b86e-f2bf74262352',\n common: {\n connect: {\n id: 'cf8601aa-ab7a-4c69-be1b-136e13fe08e5'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: 'tPfZmRJnQjdnXIlgMZyfphEat3n2',\n commonId: 'cf8601aa-ab7a-4c69-be1b-136e13fe08e5'\n }\n }\n },\n user: {\n connect: {\n id: 'tPfZmRJnQjdnXIlgMZyfphEat3n2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Hey. Its me',\n files: [],\n images: [],\n links: [],\n state: 'Accepted',\n ipAddress: '2.53.143.123',\n expiresAt: new Date('2021-03-12T05:43:26.800Z'),\n votesFor: 1,\n votesAgainst: 0,\n importedFrom: '{\"votes\":[{\"voterId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\",\"voteOutcome\":\"approved\",\"voteId\":\"53d74cf0-605a-4577-99b1-342a436ab048\"}],\"description\":{\"links\":[],\"description\":\"Hey. Its me\"},\"proposerId\":\"tPfZmRJnQjdnXIlgMZyfphEat3n2\",\"join\":{\"payments\":[],\"fundingType\":\"one-time\",\"ip\":\"2.53.143.123\",\"funding\":0},\"createdAt\":{\"_seconds\":1615470206,\"_nanoseconds\":800000000},\"state\":\"passed\",\"countdownPeriod\":57600,\"quietEndingPeriod\":3600,\"votesFor\":1,\"updatedAt\":{\"_seconds\":1615476566,\"_nanoseconds\":149000000},\"commonId\":\"cf8601aa-ab7a-4c69-be1b-136e13fe08e5\",\"votesAgainst\":0,\"type\":\"join\",\"id\":\"73f85f60-1830-47de-b86e-f2bf74262352\"}',\n join: {\n create: {\n id: '73f85f60-1830-47de-b86e-f2bf74262352',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '73f85f60-1830-47de-b86e-f2bf74262352',\n common: {\n connect: {\n id: 'cf8601aa-ab7a-4c69-be1b-136e13fe08e5'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: 'tPfZmRJnQjdnXIlgMZyfphEat3n2',\n commonId: 'cf8601aa-ab7a-4c69-be1b-136e13fe08e5'\n }\n }\n },\n user: {\n connect: {\n id: 'tPfZmRJnQjdnXIlgMZyfphEat3n2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Hey. Its me',\n files: [],\n images: [],\n links: [],\n state: 'Accepted',\n ipAddress: '2.53.143.123',\n expiresAt: new Date('2021-03-12T05:43:26.800Z'),\n votesFor: 1,\n votesAgainst: 0,\n importedFrom: '{\"votes\":[{\"voterId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\",\"voteOutcome\":\"approved\",\"voteId\":\"53d74cf0-605a-4577-99b1-342a436ab048\"}],\"description\":{\"links\":[],\"description\":\"Hey. Its me\"},\"proposerId\":\"tPfZmRJnQjdnXIlgMZyfphEat3n2\",\"join\":{\"payments\":[],\"fundingType\":\"one-time\",\"ip\":\"2.53.143.123\",\"funding\":0},\"createdAt\":{\"_seconds\":1615470206,\"_nanoseconds\":800000000},\"state\":\"passed\",\"countdownPeriod\":57600,\"quietEndingPeriod\":3600,\"votesFor\":1,\"updatedAt\":{\"_seconds\":1615476566,\"_nanoseconds\":149000000},\"commonId\":\"cf8601aa-ab7a-4c69-be1b-136e13fe08e5\",\"votesAgainst\":0,\"type\":\"join\",\"id\":\"73f85f60-1830-47de-b86e-f2bf74262352\"}',\n join: {\n create: {\n id: '73f85f60-1830-47de-b86e-f2bf74262352',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "updatedAt": { + "_seconds": 1615954800, + "_nanoseconds": 496000000 + }, + "commonId": "004abe8d-1006-4b63-9e7a-5d824c4fb1fd", + "state": "passed", + "description": { + "links": [], + "description": "12" + }, + "proposerId": "5Bi1KZGIYzW5UIljHgBlO98NXaI2", + "votesAgainst": 0, + "join": { + "payments": [], + "ip": "178.120.59.188", + "funding": 0, + "fundingType": "one-time" + }, + "id": "7aec1baa-4d03-4055-be7b-29ba1d9b4118", + "type": "join", + "quietEndingPeriod": 3600, + "votes": [ + { + "voteOutcome": "approved", + "voterId": "Wz0ZgOvKnafrjLDeAeWqx182uBq2", + "voteId": "df51d771-f9cb-4724-b5a2-46b3b381f958" + }, + { + "voteOutcome": "approved", + "voterId": "2HM9WnVvr9aDYbckjCo4cIDjncY2", + "voteId": "7b6bfa0b-bc70-4d8b-b7ed-83df2adb8df6" + } + ], + "countdownPeriod": 57600, + "votesFor": 2, + "createdAt": { + "_seconds": 1615896989, + "_nanoseconds": 806000000 + } + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '7aec1baa-4d03-4055-be7b-29ba1d9b4118',\n common: {\n connect: {\n id: '004abe8d-1006-4b63-9e7a-5d824c4fb1fd'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: '5Bi1KZGIYzW5UIljHgBlO98NXaI2',\n commonId: '004abe8d-1006-4b63-9e7a-5d824c4fb1fd'\n }\n }\n },\n user: {\n connect: {\n id: '5Bi1KZGIYzW5UIljHgBlO98NXaI2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: '12',\n files: [],\n images: [],\n links: [],\n state: 'Accepted',\n ipAddress: '178.120.59.188',\n expiresAt: new Date('2021-03-17T04:16:29.806Z'),\n votesFor: 2,\n votesAgainst: 0,\n importedFrom: '{\"updatedAt\":{\"_seconds\":1615954800,\"_nanoseconds\":496000000},\"commonId\":\"004abe8d-1006-4b63-9e7a-5d824c4fb1fd\",\"state\":\"passed\",\"description\":{\"links\":[],\"description\":\"12\"},\"proposerId\":\"5Bi1KZGIYzW5UIljHgBlO98NXaI2\",\"votesAgainst\":0,\"join\":{\"payments\":[],\"ip\":\"178.120.59.188\",\"funding\":0,\"fundingType\":\"one-time\"},\"id\":\"7aec1baa-4d03-4055-be7b-29ba1d9b4118\",\"type\":\"join\",\"quietEndingPeriod\":3600,\"votes\":[{\"voteOutcome\":\"approved\",\"voterId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"voteId\":\"df51d771-f9cb-4724-b5a2-46b3b381f958\"},{\"voteOutcome\":\"approved\",\"voterId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\",\"voteId\":\"7b6bfa0b-bc70-4d8b-b7ed-83df2adb8df6\"}],\"countdownPeriod\":57600,\"votesFor\":2,\"createdAt\":{\"_seconds\":1615896989,\"_nanoseconds\":806000000}}',\n join: {\n create: {\n id: '7aec1baa-4d03-4055-be7b-29ba1d9b4118',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '7aec1baa-4d03-4055-be7b-29ba1d9b4118',\n common: {\n connect: {\n id: '004abe8d-1006-4b63-9e7a-5d824c4fb1fd'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: '5Bi1KZGIYzW5UIljHgBlO98NXaI2',\n commonId: '004abe8d-1006-4b63-9e7a-5d824c4fb1fd'\n }\n }\n },\n user: {\n connect: {\n id: '5Bi1KZGIYzW5UIljHgBlO98NXaI2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: '12',\n files: [],\n images: [],\n links: [],\n state: 'Accepted',\n ipAddress: '178.120.59.188',\n expiresAt: new Date('2021-03-17T04:16:29.806Z'),\n votesFor: 2,\n votesAgainst: 0,\n importedFrom: '{\"updatedAt\":{\"_seconds\":1615954800,\"_nanoseconds\":496000000},\"commonId\":\"004abe8d-1006-4b63-9e7a-5d824c4fb1fd\",\"state\":\"passed\",\"description\":{\"links\":[],\"description\":\"12\"},\"proposerId\":\"5Bi1KZGIYzW5UIljHgBlO98NXaI2\",\"votesAgainst\":0,\"join\":{\"payments\":[],\"ip\":\"178.120.59.188\",\"funding\":0,\"fundingType\":\"one-time\"},\"id\":\"7aec1baa-4d03-4055-be7b-29ba1d9b4118\",\"type\":\"join\",\"quietEndingPeriod\":3600,\"votes\":[{\"voteOutcome\":\"approved\",\"voterId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"voteId\":\"df51d771-f9cb-4724-b5a2-46b3b381f958\"},{\"voteOutcome\":\"approved\",\"voterId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\",\"voteId\":\"7b6bfa0b-bc70-4d8b-b7ed-83df2adb8df6\"}],\"countdownPeriod\":57600,\"votesFor\":2,\"createdAt\":{\"_seconds\":1615896989,\"_nanoseconds\":806000000}}',\n join: {\n create: {\n id: '7aec1baa-4d03-4055-be7b-29ba1d9b4118',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "state": "failed", + "updatedAt": { + "_seconds": 1618377902, + "_nanoseconds": 627000000 + }, + "id": "7e782590-438a-40d7-8807-c0a4f7a7bd4a", + "commonId": "df03a155-7908-44a2-9b08-f29082d96247", + "votesFor": 0, + "votes": [], + "quietEndingPeriod": 3600, + "type": "join", + "join": { + "fundingType": "one-time", + "payments": [], + "funding": 0, + "ip": "178.120.9.183" + }, + "createdAt": { + "_seconds": 1618320224, + "_nanoseconds": 263000000 + }, + "proposerId": "2HM9WnVvr9aDYbckjCo4cIDjncY2", + "votesAgainst": 0, + "description": { + "description": "Hi", + "links": [] + }, + "countdownPeriod": 57600 + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '7e782590-438a-40d7-8807-c0a4f7a7bd4a',\n common: {\n connect: {\n id: 'df03a155-7908-44a2-9b08-f29082d96247'\n }\n },\n user: {\n connect: {\n id: '2HM9WnVvr9aDYbckjCo4cIDjncY2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Hi',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '178.120.9.183',\n expiresAt: new Date('2021-04-14T05:23:44.263Z'),\n votesFor: 0,\n votesAgainst: 0,\n importedFrom: '{\"state\":\"failed\",\"updatedAt\":{\"_seconds\":1618377902,\"_nanoseconds\":627000000},\"id\":\"7e782590-438a-40d7-8807-c0a4f7a7bd4a\",\"commonId\":\"df03a155-7908-44a2-9b08-f29082d96247\",\"votesFor\":0,\"votes\":[],\"quietEndingPeriod\":3600,\"type\":\"join\",\"join\":{\"fundingType\":\"one-time\",\"payments\":[],\"funding\":0,\"ip\":\"178.120.9.183\"},\"createdAt\":{\"_seconds\":1618320224,\"_nanoseconds\":263000000},\"proposerId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\",\"votesAgainst\":0,\"description\":{\"description\":\"Hi\",\"links\":[]},\"countdownPeriod\":57600}',\n join: {\n create: {\n id: '7e782590-438a-40d7-8807-c0a4f7a7bd4a',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '7e782590-438a-40d7-8807-c0a4f7a7bd4a',\n common: {\n connect: {\n id: 'df03a155-7908-44a2-9b08-f29082d96247'\n }\n },\n user: {\n connect: {\n id: '2HM9WnVvr9aDYbckjCo4cIDjncY2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Hi',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '178.120.9.183',\n expiresAt: new Date('2021-04-14T05:23:44.263Z'),\n votesFor: 0,\n votesAgainst: 0,\n importedFrom: '{\"state\":\"failed\",\"updatedAt\":{\"_seconds\":1618377902,\"_nanoseconds\":627000000},\"id\":\"7e782590-438a-40d7-8807-c0a4f7a7bd4a\",\"commonId\":\"df03a155-7908-44a2-9b08-f29082d96247\",\"votesFor\":0,\"votes\":[],\"quietEndingPeriod\":3600,\"type\":\"join\",\"join\":{\"fundingType\":\"one-time\",\"payments\":[],\"funding\":0,\"ip\":\"178.120.9.183\"},\"createdAt\":{\"_seconds\":1618320224,\"_nanoseconds\":263000000},\"proposerId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\",\"votesAgainst\":0,\"description\":{\"description\":\"Hi\",\"links\":[]},\"countdownPeriod\":57600}',\n join: {\n create: {\n id: '7e782590-438a-40d7-8807-c0a4f7a7bd4a',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "state": "failed", + "id": "7fb6957a-3a1a-4536-9fb2-4bcb35026c34", + "description": { + "description": "Test", + "links": [] + }, + "countdownPeriod": 57600, + "votesFor": 0, + "updatedAt": { + "_seconds": 1616526900, + "_nanoseconds": 558000000 + }, + "type": "join", + "proposerId": "vcjGECnQyDW9qZzP1tWPSsmpguW2", + "votes": [], + "join": { + "payments": [], + "ip": "45.12.221.18", + "fundingType": "one-time", + "funding": 0 + }, + "votesAgainst": 0, + "createdAt": { + "_seconds": 1616469011, + "_nanoseconds": 296000000 + }, + "quietEndingPeriod": 3600, + "commonId": "004abe8d-1006-4b63-9e7a-5d824c4fb1fd" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '7fb6957a-3a1a-4536-9fb2-4bcb35026c34',\n common: {\n connect: {\n id: '004abe8d-1006-4b63-9e7a-5d824c4fb1fd'\n }\n },\n user: {\n connect: {\n id: 'vcjGECnQyDW9qZzP1tWPSsmpguW2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Test',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '45.12.221.18',\n expiresAt: new Date('2021-03-23T19:10:11.296Z'),\n votesFor: 0,\n votesAgainst: 0,\n importedFrom: '{\"state\":\"failed\",\"id\":\"7fb6957a-3a1a-4536-9fb2-4bcb35026c34\",\"description\":{\"description\":\"Test\",\"links\":[]},\"countdownPeriod\":57600,\"votesFor\":0,\"updatedAt\":{\"_seconds\":1616526900,\"_nanoseconds\":558000000},\"type\":\"join\",\"proposerId\":\"vcjGECnQyDW9qZzP1tWPSsmpguW2\",\"votes\":[],\"join\":{\"payments\":[],\"ip\":\"45.12.221.18\",\"fundingType\":\"one-time\",\"funding\":0},\"votesAgainst\":0,\"createdAt\":{\"_seconds\":1616469011,\"_nanoseconds\":296000000},\"quietEndingPeriod\":3600,\"commonId\":\"004abe8d-1006-4b63-9e7a-5d824c4fb1fd\"}',\n join: {\n create: {\n id: '7fb6957a-3a1a-4536-9fb2-4bcb35026c34',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '7fb6957a-3a1a-4536-9fb2-4bcb35026c34',\n common: {\n connect: {\n id: '004abe8d-1006-4b63-9e7a-5d824c4fb1fd'\n }\n },\n user: {\n connect: {\n id: 'vcjGECnQyDW9qZzP1tWPSsmpguW2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Test',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '45.12.221.18',\n expiresAt: new Date('2021-03-23T19:10:11.296Z'),\n votesFor: 0,\n votesAgainst: 0,\n importedFrom: '{\"state\":\"failed\",\"id\":\"7fb6957a-3a1a-4536-9fb2-4bcb35026c34\",\"description\":{\"description\":\"Test\",\"links\":[]},\"countdownPeriod\":57600,\"votesFor\":0,\"updatedAt\":{\"_seconds\":1616526900,\"_nanoseconds\":558000000},\"type\":\"join\",\"proposerId\":\"vcjGECnQyDW9qZzP1tWPSsmpguW2\",\"votes\":[],\"join\":{\"payments\":[],\"ip\":\"45.12.221.18\",\"fundingType\":\"one-time\",\"funding\":0},\"votesAgainst\":0,\"createdAt\":{\"_seconds\":1616469011,\"_nanoseconds\":296000000},\"quietEndingPeriod\":3600,\"commonId\":\"004abe8d-1006-4b63-9e7a-5d824c4fb1fd\"}',\n join: {\n create: {\n id: '7fb6957a-3a1a-4536-9fb2-4bcb35026c34',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "description": { + "links": [], + "description": "Test" + }, + "createdAt": { + "_seconds": 1611822843, + "_nanoseconds": 548000000 + }, + "id": "853add63-8d63-487e-97dc-b1c6f1048fbd", + "votesFor": 0, + "state": "failed", + "commonId": "878126b8-a724-4601-a9d8-2ec56b4d1c96", + "join": { + "fundingType": "one-time", + "funding": 0, + "payments": [] + }, + "updatedAt": { + "_seconds": 1611823197, + "_nanoseconds": 531000000 + }, + "type": "join", + "votesAgainst": 1, + "countdownPeriod": 57600, + "quietEndingPeriod": 3600, + "votes": [ + { + "voteOutcome": "rejected", + "voteId": "66496458-f1dc-4e42-9357-9897da1f6558", + "voterId": "Xlun3Ux94Zfc73axkiuVdkktOWf1" + } + ], + "proposerId": "0jL6u33k2rMoEY8wUmnIvkJM48O2" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '853add63-8d63-487e-97dc-b1c6f1048fbd',\n common: {\n connect: {\n id: '878126b8-a724-4601-a9d8-2ec56b4d1c96'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: '0jL6u33k2rMoEY8wUmnIvkJM48O2',\n commonId: '878126b8-a724-4601-a9d8-2ec56b4d1c96'\n }\n }\n },\n user: {\n connect: {\n id: '0jL6u33k2rMoEY8wUmnIvkJM48O2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Test',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: undefined,\n expiresAt: new Date('2021-01-29T00:34:03.548Z'),\n votesFor: 0,\n votesAgainst: 1,\n importedFrom: '{\"description\":{\"links\":[],\"description\":\"Test\"},\"createdAt\":{\"_seconds\":1611822843,\"_nanoseconds\":548000000},\"id\":\"853add63-8d63-487e-97dc-b1c6f1048fbd\",\"votesFor\":0,\"state\":\"failed\",\"commonId\":\"878126b8-a724-4601-a9d8-2ec56b4d1c96\",\"join\":{\"fundingType\":\"one-time\",\"funding\":0,\"payments\":[]},\"updatedAt\":{\"_seconds\":1611823197,\"_nanoseconds\":531000000},\"type\":\"join\",\"votesAgainst\":1,\"countdownPeriod\":57600,\"quietEndingPeriod\":3600,\"votes\":[{\"voteOutcome\":\"rejected\",\"voteId\":\"66496458-f1dc-4e42-9357-9897da1f6558\",\"voterId\":\"Xlun3Ux94Zfc73axkiuVdkktOWf1\"}],\"proposerId\":\"0jL6u33k2rMoEY8wUmnIvkJM48O2\"}',\n join: {\n create: {\n id: '853add63-8d63-487e-97dc-b1c6f1048fbd',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '853add63-8d63-487e-97dc-b1c6f1048fbd',\n common: {\n connect: {\n id: '878126b8-a724-4601-a9d8-2ec56b4d1c96'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: '0jL6u33k2rMoEY8wUmnIvkJM48O2',\n commonId: '878126b8-a724-4601-a9d8-2ec56b4d1c96'\n }\n }\n },\n user: {\n connect: {\n id: '0jL6u33k2rMoEY8wUmnIvkJM48O2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Test',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: undefined,\n expiresAt: new Date('2021-01-29T00:34:03.548Z'),\n votesFor: 0,\n votesAgainst: 1,\n importedFrom: '{\"description\":{\"links\":[],\"description\":\"Test\"},\"createdAt\":{\"_seconds\":1611822843,\"_nanoseconds\":548000000},\"id\":\"853add63-8d63-487e-97dc-b1c6f1048fbd\",\"votesFor\":0,\"state\":\"failed\",\"commonId\":\"878126b8-a724-4601-a9d8-2ec56b4d1c96\",\"join\":{\"fundingType\":\"one-time\",\"funding\":0,\"payments\":[]},\"updatedAt\":{\"_seconds\":1611823197,\"_nanoseconds\":531000000},\"type\":\"join\",\"votesAgainst\":1,\"countdownPeriod\":57600,\"quietEndingPeriod\":3600,\"votes\":[{\"voteOutcome\":\"rejected\",\"voteId\":\"66496458-f1dc-4e42-9357-9897da1f6558\",\"voterId\":\"Xlun3Ux94Zfc73axkiuVdkktOWf1\"}],\"proposerId\":\"0jL6u33k2rMoEY8wUmnIvkJM48O2\"}',\n join: {\n create: {\n id: '853add63-8d63-487e-97dc-b1c6f1048fbd',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposerId": "0jL6u33k2rMoEY8wUmnIvkJM48O2", + "createdAt": { + "_seconds": 1611844374, + "_nanoseconds": 241000000 + }, + "votes": [ + { + "voteOutcome": "rejected", + "voterId": "Xlun3Ux94Zfc73axkiuVdkktOWf1", + "voteId": "a46bc08e-ca50-40a9-a3bd-5ff9a40b6966" + } + ], + "id": "85b0b21c-0989-4264-a904-a74c03f22722", + "updatedAt": { + "_seconds": 1611844416, + "_nanoseconds": 475000000 + }, + "countdownPeriod": 57600, + "state": "failed", + "votesFor": 0, + "votesAgainst": 1, + "type": "join", + "quietEndingPeriod": 3600, + "description": { + "links": [], + "description": "Qwqwqwqw" + }, + "join": { + "fundingType": "one-time", + "funding": 0, + "payments": [] + }, + "commonId": "878126b8-a724-4601-a9d8-2ec56b4d1c96" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '85b0b21c-0989-4264-a904-a74c03f22722',\n common: {\n connect: {\n id: '878126b8-a724-4601-a9d8-2ec56b4d1c96'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: '0jL6u33k2rMoEY8wUmnIvkJM48O2',\n commonId: '878126b8-a724-4601-a9d8-2ec56b4d1c96'\n }\n }\n },\n user: {\n connect: {\n id: '0jL6u33k2rMoEY8wUmnIvkJM48O2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Qwqwqwqw',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: undefined,\n expiresAt: new Date('2021-01-29T06:32:54.241Z'),\n votesFor: 0,\n votesAgainst: 1,\n importedFrom: '{\"proposerId\":\"0jL6u33k2rMoEY8wUmnIvkJM48O2\",\"createdAt\":{\"_seconds\":1611844374,\"_nanoseconds\":241000000},\"votes\":[{\"voteOutcome\":\"rejected\",\"voterId\":\"Xlun3Ux94Zfc73axkiuVdkktOWf1\",\"voteId\":\"a46bc08e-ca50-40a9-a3bd-5ff9a40b6966\"}],\"id\":\"85b0b21c-0989-4264-a904-a74c03f22722\",\"updatedAt\":{\"_seconds\":1611844416,\"_nanoseconds\":475000000},\"countdownPeriod\":57600,\"state\":\"failed\",\"votesFor\":0,\"votesAgainst\":1,\"type\":\"join\",\"quietEndingPeriod\":3600,\"description\":{\"links\":[],\"description\":\"Qwqwqwqw\"},\"join\":{\"fundingType\":\"one-time\",\"funding\":0,\"payments\":[]},\"commonId\":\"878126b8-a724-4601-a9d8-2ec56b4d1c96\"}',\n join: {\n create: {\n id: '85b0b21c-0989-4264-a904-a74c03f22722',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '85b0b21c-0989-4264-a904-a74c03f22722',\n common: {\n connect: {\n id: '878126b8-a724-4601-a9d8-2ec56b4d1c96'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: '0jL6u33k2rMoEY8wUmnIvkJM48O2',\n commonId: '878126b8-a724-4601-a9d8-2ec56b4d1c96'\n }\n }\n },\n user: {\n connect: {\n id: '0jL6u33k2rMoEY8wUmnIvkJM48O2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Qwqwqwqw',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: undefined,\n expiresAt: new Date('2021-01-29T06:32:54.241Z'),\n votesFor: 0,\n votesAgainst: 1,\n importedFrom: '{\"proposerId\":\"0jL6u33k2rMoEY8wUmnIvkJM48O2\",\"createdAt\":{\"_seconds\":1611844374,\"_nanoseconds\":241000000},\"votes\":[{\"voteOutcome\":\"rejected\",\"voterId\":\"Xlun3Ux94Zfc73axkiuVdkktOWf1\",\"voteId\":\"a46bc08e-ca50-40a9-a3bd-5ff9a40b6966\"}],\"id\":\"85b0b21c-0989-4264-a904-a74c03f22722\",\"updatedAt\":{\"_seconds\":1611844416,\"_nanoseconds\":475000000},\"countdownPeriod\":57600,\"state\":\"failed\",\"votesFor\":0,\"votesAgainst\":1,\"type\":\"join\",\"quietEndingPeriod\":3600,\"description\":{\"links\":[],\"description\":\"Qwqwqwqw\"},\"join\":{\"fundingType\":\"one-time\",\"funding\":0,\"payments\":[]},\"commonId\":\"878126b8-a724-4601-a9d8-2ec56b4d1c96\"}',\n join: {\n create: {\n id: '85b0b21c-0989-4264-a904-a74c03f22722',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "id": "885bdb87-27a4-4188-9a18-70a60c46c925", + "votesFor": 0, + "quietEndingPeriod": 3600, + "createdAt": { + "_seconds": 1615805987, + "_nanoseconds": 303000000 + }, + "proposerId": "WKODFO6A3VMqWLYE2rrmrSGRrKF2", + "commonId": "004abe8d-1006-4b63-9e7a-5d824c4fb1fd", + "type": "join", + "state": "failed", + "votes": [], + "votesAgainst": 0, + "updatedAt": { + "_seconds": 1615863600, + "_nanoseconds": 907000000 + }, + "countdownPeriod": 57600, + "join": { + "ip": "2a02:bf0:1410:edc8:c91c:802b:abdd:b5ff", + "fundingType": "one-time", + "funding": 0, + "payments": [] + }, + "description": { + "description": "Vika", + "links": [] + } + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '885bdb87-27a4-4188-9a18-70a60c46c925',\n common: {\n connect: {\n id: '004abe8d-1006-4b63-9e7a-5d824c4fb1fd'\n }\n },\n user: {\n connect: {\n id: 'WKODFO6A3VMqWLYE2rrmrSGRrKF2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Vika',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '2a02:bf0:1410:edc8:c91c:802b:abdd:b5ff',\n expiresAt: new Date('2021-03-16T02:59:47.303Z'),\n votesFor: 0,\n votesAgainst: 0,\n importedFrom: '{\"id\":\"885bdb87-27a4-4188-9a18-70a60c46c925\",\"votesFor\":0,\"quietEndingPeriod\":3600,\"createdAt\":{\"_seconds\":1615805987,\"_nanoseconds\":303000000},\"proposerId\":\"WKODFO6A3VMqWLYE2rrmrSGRrKF2\",\"commonId\":\"004abe8d-1006-4b63-9e7a-5d824c4fb1fd\",\"type\":\"join\",\"state\":\"failed\",\"votes\":[],\"votesAgainst\":0,\"updatedAt\":{\"_seconds\":1615863600,\"_nanoseconds\":907000000},\"countdownPeriod\":57600,\"join\":{\"ip\":\"2a02:bf0:1410:edc8:c91c:802b:abdd:b5ff\",\"fundingType\":\"one-time\",\"funding\":0,\"payments\":[]},\"description\":{\"description\":\"Vika\",\"links\":[]}}',\n join: {\n create: {\n id: '885bdb87-27a4-4188-9a18-70a60c46c925',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '885bdb87-27a4-4188-9a18-70a60c46c925',\n common: {\n connect: {\n id: '004abe8d-1006-4b63-9e7a-5d824c4fb1fd'\n }\n },\n user: {\n connect: {\n id: 'WKODFO6A3VMqWLYE2rrmrSGRrKF2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Vika',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '2a02:bf0:1410:edc8:c91c:802b:abdd:b5ff',\n expiresAt: new Date('2021-03-16T02:59:47.303Z'),\n votesFor: 0,\n votesAgainst: 0,\n importedFrom: '{\"id\":\"885bdb87-27a4-4188-9a18-70a60c46c925\",\"votesFor\":0,\"quietEndingPeriod\":3600,\"createdAt\":{\"_seconds\":1615805987,\"_nanoseconds\":303000000},\"proposerId\":\"WKODFO6A3VMqWLYE2rrmrSGRrKF2\",\"commonId\":\"004abe8d-1006-4b63-9e7a-5d824c4fb1fd\",\"type\":\"join\",\"state\":\"failed\",\"votes\":[],\"votesAgainst\":0,\"updatedAt\":{\"_seconds\":1615863600,\"_nanoseconds\":907000000},\"countdownPeriod\":57600,\"join\":{\"ip\":\"2a02:bf0:1410:edc8:c91c:802b:abdd:b5ff\",\"fundingType\":\"one-time\",\"funding\":0,\"payments\":[]},\"description\":{\"description\":\"Vika\",\"links\":[]}}',\n join: {\n create: {\n id: '885bdb87-27a4-4188-9a18-70a60c46c925',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "updatedAt": { + "_seconds": 1617284701, + "_nanoseconds": 604000000 + }, + "join": { + "funding": 0, + "ip": "46.56.203.253", + "payments": [], + "fundingType": "one-time" + }, + "commonId": "179ae685-5cf2-4bbb-917d-a994e3d85cce", + "votesAgainst": 0, + "description": { + "links": [], + "description": "H h" + }, + "quietEndingPeriod": 3600, + "id": "88694870-1777-463d-96b8-118e9e822161", + "votesFor": 0, + "createdAt": { + "_seconds": 1617227074, + "_nanoseconds": 238000000 + }, + "proposerId": "5Bi1KZGIYzW5UIljHgBlO98NXaI2", + "state": "failed", + "countdownPeriod": 57600, + "type": "join", + "votes": [] + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '88694870-1777-463d-96b8-118e9e822161',\n common: {\n connect: {\n id: '179ae685-5cf2-4bbb-917d-a994e3d85cce'\n }\n },\n user: {\n connect: {\n id: '5Bi1KZGIYzW5UIljHgBlO98NXaI2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'H h',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '46.56.203.253',\n expiresAt: new Date('2021-04-01T13:44:34.238Z'),\n votesFor: 0,\n votesAgainst: 0,\n importedFrom: '{\"updatedAt\":{\"_seconds\":1617284701,\"_nanoseconds\":604000000},\"join\":{\"funding\":0,\"ip\":\"46.56.203.253\",\"payments\":[],\"fundingType\":\"one-time\"},\"commonId\":\"179ae685-5cf2-4bbb-917d-a994e3d85cce\",\"votesAgainst\":0,\"description\":{\"links\":[],\"description\":\"H h\"},\"quietEndingPeriod\":3600,\"id\":\"88694870-1777-463d-96b8-118e9e822161\",\"votesFor\":0,\"createdAt\":{\"_seconds\":1617227074,\"_nanoseconds\":238000000},\"proposerId\":\"5Bi1KZGIYzW5UIljHgBlO98NXaI2\",\"state\":\"failed\",\"countdownPeriod\":57600,\"type\":\"join\",\"votes\":[]}',\n join: {\n create: {\n id: '88694870-1777-463d-96b8-118e9e822161',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '88694870-1777-463d-96b8-118e9e822161',\n common: {\n connect: {\n id: '179ae685-5cf2-4bbb-917d-a994e3d85cce'\n }\n },\n user: {\n connect: {\n id: '5Bi1KZGIYzW5UIljHgBlO98NXaI2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'H h',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '46.56.203.253',\n expiresAt: new Date('2021-04-01T13:44:34.238Z'),\n votesFor: 0,\n votesAgainst: 0,\n importedFrom: '{\"updatedAt\":{\"_seconds\":1617284701,\"_nanoseconds\":604000000},\"join\":{\"funding\":0,\"ip\":\"46.56.203.253\",\"payments\":[],\"fundingType\":\"one-time\"},\"commonId\":\"179ae685-5cf2-4bbb-917d-a994e3d85cce\",\"votesAgainst\":0,\"description\":{\"links\":[],\"description\":\"H h\"},\"quietEndingPeriod\":3600,\"id\":\"88694870-1777-463d-96b8-118e9e822161\",\"votesFor\":0,\"createdAt\":{\"_seconds\":1617227074,\"_nanoseconds\":238000000},\"proposerId\":\"5Bi1KZGIYzW5UIljHgBlO98NXaI2\",\"state\":\"failed\",\"countdownPeriod\":57600,\"type\":\"join\",\"votes\":[]}',\n join: {\n create: {\n id: '88694870-1777-463d-96b8-118e9e822161',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "moderation": { + "updatedAt": { + "_seconds": 1614798704, + "_nanoseconds": 639000000 + }, + "flag": "hidden", + "moderatorNote": "", + "reporter": "2HM9WnVvr9aDYbckjCo4cIDjncY2", + "reasons": [], + "moderator": "2HM9WnVvr9aDYbckjCo4cIDjncY2" + }, + "proposerId": "Wz0ZgOvKnafrjLDeAeWqx182uBq2", + "votesAgainst": 0, + "votes": [], + "quietEndingPeriod": 3600, + "votesFor": 0, + "countdownPeriod": 57600, + "commonId": "004abe8d-1006-4b63-9e7a-5d824c4fb1fd", + "state": "failed", + "type": "join", + "updatedAt": { + "_seconds": 1614856200, + "_nanoseconds": 851000000 + }, + "id": "894fdcf6-9668-4d45-a6ba-6763adcd7eda", + "createdAt": { + "_seconds": 1614798539, + "_nanoseconds": 277000000 + }, + "description": { + "links": [], + "description": "Tre" + }, + "join": { + "fundingType": "one-time", + "ip": "178.120.63.174", + "payments": [], + "funding": 0 + } + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '894fdcf6-9668-4d45-a6ba-6763adcd7eda',\n common: {\n connect: {\n id: '004abe8d-1006-4b63-9e7a-5d824c4fb1fd'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: 'Wz0ZgOvKnafrjLDeAeWqx182uBq2',\n commonId: '004abe8d-1006-4b63-9e7a-5d824c4fb1fd'\n }\n }\n },\n user: {\n connect: {\n id: 'Wz0ZgOvKnafrjLDeAeWqx182uBq2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Tre',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '178.120.63.174',\n expiresAt: new Date('2021-03-04T11:08:59.277Z'),\n votesFor: 0,\n votesAgainst: 0,\n importedFrom: '{\"moderation\":{\"updatedAt\":{\"_seconds\":1614798704,\"_nanoseconds\":639000000},\"flag\":\"hidden\",\"moderatorNote\":\"\",\"reporter\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\",\"reasons\":[],\"moderator\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\"},\"proposerId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"votesAgainst\":0,\"votes\":[],\"quietEndingPeriod\":3600,\"votesFor\":0,\"countdownPeriod\":57600,\"commonId\":\"004abe8d-1006-4b63-9e7a-5d824c4fb1fd\",\"state\":\"failed\",\"type\":\"join\",\"updatedAt\":{\"_seconds\":1614856200,\"_nanoseconds\":851000000},\"id\":\"894fdcf6-9668-4d45-a6ba-6763adcd7eda\",\"createdAt\":{\"_seconds\":1614798539,\"_nanoseconds\":277000000},\"description\":{\"links\":[],\"description\":\"Tre\"},\"join\":{\"fundingType\":\"one-time\",\"ip\":\"178.120.63.174\",\"payments\":[],\"funding\":0}}',\n join: {\n create: {\n id: '894fdcf6-9668-4d45-a6ba-6763adcd7eda',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '894fdcf6-9668-4d45-a6ba-6763adcd7eda',\n common: {\n connect: {\n id: '004abe8d-1006-4b63-9e7a-5d824c4fb1fd'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: 'Wz0ZgOvKnafrjLDeAeWqx182uBq2',\n commonId: '004abe8d-1006-4b63-9e7a-5d824c4fb1fd'\n }\n }\n },\n user: {\n connect: {\n id: 'Wz0ZgOvKnafrjLDeAeWqx182uBq2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Tre',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '178.120.63.174',\n expiresAt: new Date('2021-03-04T11:08:59.277Z'),\n votesFor: 0,\n votesAgainst: 0,\n importedFrom: '{\"moderation\":{\"updatedAt\":{\"_seconds\":1614798704,\"_nanoseconds\":639000000},\"flag\":\"hidden\",\"moderatorNote\":\"\",\"reporter\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\",\"reasons\":[],\"moderator\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\"},\"proposerId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"votesAgainst\":0,\"votes\":[],\"quietEndingPeriod\":3600,\"votesFor\":0,\"countdownPeriod\":57600,\"commonId\":\"004abe8d-1006-4b63-9e7a-5d824c4fb1fd\",\"state\":\"failed\",\"type\":\"join\",\"updatedAt\":{\"_seconds\":1614856200,\"_nanoseconds\":851000000},\"id\":\"894fdcf6-9668-4d45-a6ba-6763adcd7eda\",\"createdAt\":{\"_seconds\":1614798539,\"_nanoseconds\":277000000},\"description\":{\"links\":[],\"description\":\"Tre\"},\"join\":{\"fundingType\":\"one-time\",\"ip\":\"178.120.63.174\",\"payments\":[],\"funding\":0}}',\n join: {\n create: {\n id: '894fdcf6-9668-4d45-a6ba-6763adcd7eda',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "countdownPeriod": 57600, + "votesFor": 1, + "votesAgainst": 0, + "join": { + "payments": [], + "fundingType": "one-time", + "funding": 0 + }, + "type": "join", + "commonId": "878126b8-a724-4601-a9d8-2ec56b4d1c96", + "id": "89749bec-708b-48f4-805e-b887a34c5e6d", + "updatedAt": { + "_seconds": 1612270698, + "_nanoseconds": 971000000 + }, + "votes": [ + { + "voteId": "254f6d95-1b26-4799-af5d-f468b646640a", + "voterId": "Xlun3Ux94Zfc73axkiuVdkktOWf1", + "voteOutcome": "approved" + } + ], + "createdAt": { + "_seconds": 1612270594, + "_nanoseconds": 521000000 + }, + "quietEndingPeriod": 3600, + "proposerId": "0jL6u33k2rMoEY8wUmnIvkJM48O2", + "state": "passed", + "description": { + "links": [], + "description": "Test" + } + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '89749bec-708b-48f4-805e-b887a34c5e6d',\n common: {\n connect: {\n id: '878126b8-a724-4601-a9d8-2ec56b4d1c96'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: '0jL6u33k2rMoEY8wUmnIvkJM48O2',\n commonId: '878126b8-a724-4601-a9d8-2ec56b4d1c96'\n }\n }\n },\n user: {\n connect: {\n id: '0jL6u33k2rMoEY8wUmnIvkJM48O2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Test',\n files: [],\n images: [],\n links: [],\n state: 'Accepted',\n ipAddress: undefined,\n expiresAt: new Date('2021-02-03T04:56:34.521Z'),\n votesFor: 1,\n votesAgainst: 0,\n importedFrom: '{\"countdownPeriod\":57600,\"votesFor\":1,\"votesAgainst\":0,\"join\":{\"payments\":[],\"fundingType\":\"one-time\",\"funding\":0},\"type\":\"join\",\"commonId\":\"878126b8-a724-4601-a9d8-2ec56b4d1c96\",\"id\":\"89749bec-708b-48f4-805e-b887a34c5e6d\",\"updatedAt\":{\"_seconds\":1612270698,\"_nanoseconds\":971000000},\"votes\":[{\"voteId\":\"254f6d95-1b26-4799-af5d-f468b646640a\",\"voterId\":\"Xlun3Ux94Zfc73axkiuVdkktOWf1\",\"voteOutcome\":\"approved\"}],\"createdAt\":{\"_seconds\":1612270594,\"_nanoseconds\":521000000},\"quietEndingPeriod\":3600,\"proposerId\":\"0jL6u33k2rMoEY8wUmnIvkJM48O2\",\"state\":\"passed\",\"description\":{\"links\":[],\"description\":\"Test\"}}',\n join: {\n create: {\n id: '89749bec-708b-48f4-805e-b887a34c5e6d',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '89749bec-708b-48f4-805e-b887a34c5e6d',\n common: {\n connect: {\n id: '878126b8-a724-4601-a9d8-2ec56b4d1c96'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: '0jL6u33k2rMoEY8wUmnIvkJM48O2',\n commonId: '878126b8-a724-4601-a9d8-2ec56b4d1c96'\n }\n }\n },\n user: {\n connect: {\n id: '0jL6u33k2rMoEY8wUmnIvkJM48O2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Test',\n files: [],\n images: [],\n links: [],\n state: 'Accepted',\n ipAddress: undefined,\n expiresAt: new Date('2021-02-03T04:56:34.521Z'),\n votesFor: 1,\n votesAgainst: 0,\n importedFrom: '{\"countdownPeriod\":57600,\"votesFor\":1,\"votesAgainst\":0,\"join\":{\"payments\":[],\"fundingType\":\"one-time\",\"funding\":0},\"type\":\"join\",\"commonId\":\"878126b8-a724-4601-a9d8-2ec56b4d1c96\",\"id\":\"89749bec-708b-48f4-805e-b887a34c5e6d\",\"updatedAt\":{\"_seconds\":1612270698,\"_nanoseconds\":971000000},\"votes\":[{\"voteId\":\"254f6d95-1b26-4799-af5d-f468b646640a\",\"voterId\":\"Xlun3Ux94Zfc73axkiuVdkktOWf1\",\"voteOutcome\":\"approved\"}],\"createdAt\":{\"_seconds\":1612270594,\"_nanoseconds\":521000000},\"quietEndingPeriod\":3600,\"proposerId\":\"0jL6u33k2rMoEY8wUmnIvkJM48O2\",\"state\":\"passed\",\"description\":{\"links\":[],\"description\":\"Test\"}}',\n join: {\n create: {\n id: '89749bec-708b-48f4-805e-b887a34c5e6d',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "description": { + "links": [], + "description": "asdasdasd" + }, + "proposerId": "0jL6u33k2rMoEY8wUmnIvkJM48O2", + "votes": [ + { + "voteId": "24416915-1fc0-49fc-a06e-7116b3a29695", + "voteOutcome": "rejected", + "voterId": "Xlun3Ux94Zfc73axkiuVdkktOWf1" + } + ], + "commonId": "878126b8-a724-4601-a9d8-2ec56b4d1c96", + "updatedAt": { + "_seconds": 1611932287, + "_nanoseconds": 934000000 + }, + "id": "9018c422-dc6e-4052-9517-1bb6d4aa1add", + "state": "failed", + "join": { + "fundingType": "one-time", + "funding": 0, + "payments": [] + }, + "type": "join", + "createdAt": { + "_seconds": 1611931977, + "_nanoseconds": 594000000 + }, + "countdownPeriod": 57600, + "votesFor": 0, + "quietEndingPeriod": 3600, + "votesAgainst": 1 + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '9018c422-dc6e-4052-9517-1bb6d4aa1add',\n common: {\n connect: {\n id: '878126b8-a724-4601-a9d8-2ec56b4d1c96'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: '0jL6u33k2rMoEY8wUmnIvkJM48O2',\n commonId: '878126b8-a724-4601-a9d8-2ec56b4d1c96'\n }\n }\n },\n user: {\n connect: {\n id: '0jL6u33k2rMoEY8wUmnIvkJM48O2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'asdasdasd',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: undefined,\n expiresAt: new Date('2021-01-30T06:52:57.594Z'),\n votesFor: 0,\n votesAgainst: 1,\n importedFrom: '{\"description\":{\"links\":[],\"description\":\"asdasdasd\"},\"proposerId\":\"0jL6u33k2rMoEY8wUmnIvkJM48O2\",\"votes\":[{\"voteId\":\"24416915-1fc0-49fc-a06e-7116b3a29695\",\"voteOutcome\":\"rejected\",\"voterId\":\"Xlun3Ux94Zfc73axkiuVdkktOWf1\"}],\"commonId\":\"878126b8-a724-4601-a9d8-2ec56b4d1c96\",\"updatedAt\":{\"_seconds\":1611932287,\"_nanoseconds\":934000000},\"id\":\"9018c422-dc6e-4052-9517-1bb6d4aa1add\",\"state\":\"failed\",\"join\":{\"fundingType\":\"one-time\",\"funding\":0,\"payments\":[]},\"type\":\"join\",\"createdAt\":{\"_seconds\":1611931977,\"_nanoseconds\":594000000},\"countdownPeriod\":57600,\"votesFor\":0,\"quietEndingPeriod\":3600,\"votesAgainst\":1}',\n join: {\n create: {\n id: '9018c422-dc6e-4052-9517-1bb6d4aa1add',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '9018c422-dc6e-4052-9517-1bb6d4aa1add',\n common: {\n connect: {\n id: '878126b8-a724-4601-a9d8-2ec56b4d1c96'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: '0jL6u33k2rMoEY8wUmnIvkJM48O2',\n commonId: '878126b8-a724-4601-a9d8-2ec56b4d1c96'\n }\n }\n },\n user: {\n connect: {\n id: '0jL6u33k2rMoEY8wUmnIvkJM48O2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'asdasdasd',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: undefined,\n expiresAt: new Date('2021-01-30T06:52:57.594Z'),\n votesFor: 0,\n votesAgainst: 1,\n importedFrom: '{\"description\":{\"links\":[],\"description\":\"asdasdasd\"},\"proposerId\":\"0jL6u33k2rMoEY8wUmnIvkJM48O2\",\"votes\":[{\"voteId\":\"24416915-1fc0-49fc-a06e-7116b3a29695\",\"voteOutcome\":\"rejected\",\"voterId\":\"Xlun3Ux94Zfc73axkiuVdkktOWf1\"}],\"commonId\":\"878126b8-a724-4601-a9d8-2ec56b4d1c96\",\"updatedAt\":{\"_seconds\":1611932287,\"_nanoseconds\":934000000},\"id\":\"9018c422-dc6e-4052-9517-1bb6d4aa1add\",\"state\":\"failed\",\"join\":{\"fundingType\":\"one-time\",\"funding\":0,\"payments\":[]},\"type\":\"join\",\"createdAt\":{\"_seconds\":1611931977,\"_nanoseconds\":594000000},\"countdownPeriod\":57600,\"votesFor\":0,\"quietEndingPeriod\":3600,\"votesAgainst\":1}',\n join: {\n create: {\n id: '9018c422-dc6e-4052-9517-1bb6d4aa1add',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposerId": "0jL6u33k2rMoEY8wUmnIvkJM48O2", + "description": { + "description": "QWERTY", + "links": [] + }, + "votesFor": 0, + "type": "join", + "countdownPeriod": 57600, + "votes": [ + { + "voterId": "Xlun3Ux94Zfc73axkiuVdkktOWf1", + "voteId": "0ecb0877-b40c-4a05-bcc7-ab2600ad8b72", + "voteOutcome": "rejected" + } + ], + "votesAgainst": 1, + "updatedAt": { + "_seconds": 1611845880, + "_nanoseconds": 796000000 + }, + "commonId": "878126b8-a724-4601-a9d8-2ec56b4d1c96", + "join": { + "fundingType": "one-time", + "payments": [], + "funding": 0 + }, + "id": "903a5031-36c0-4e26-9b01-76e63ce12dc5", + "state": "failed", + "quietEndingPeriod": 3600, + "createdAt": { + "_seconds": 1611845792, + "_nanoseconds": 87000000 + } + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '903a5031-36c0-4e26-9b01-76e63ce12dc5',\n common: {\n connect: {\n id: '878126b8-a724-4601-a9d8-2ec56b4d1c96'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: '0jL6u33k2rMoEY8wUmnIvkJM48O2',\n commonId: '878126b8-a724-4601-a9d8-2ec56b4d1c96'\n }\n }\n },\n user: {\n connect: {\n id: '0jL6u33k2rMoEY8wUmnIvkJM48O2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'QWERTY',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: undefined,\n expiresAt: new Date('2021-01-29T06:56:32.087Z'),\n votesFor: 0,\n votesAgainst: 1,\n importedFrom: '{\"proposerId\":\"0jL6u33k2rMoEY8wUmnIvkJM48O2\",\"description\":{\"description\":\"QWERTY\",\"links\":[]},\"votesFor\":0,\"type\":\"join\",\"countdownPeriod\":57600,\"votes\":[{\"voterId\":\"Xlun3Ux94Zfc73axkiuVdkktOWf1\",\"voteId\":\"0ecb0877-b40c-4a05-bcc7-ab2600ad8b72\",\"voteOutcome\":\"rejected\"}],\"votesAgainst\":1,\"updatedAt\":{\"_seconds\":1611845880,\"_nanoseconds\":796000000},\"commonId\":\"878126b8-a724-4601-a9d8-2ec56b4d1c96\",\"join\":{\"fundingType\":\"one-time\",\"payments\":[],\"funding\":0},\"id\":\"903a5031-36c0-4e26-9b01-76e63ce12dc5\",\"state\":\"failed\",\"quietEndingPeriod\":3600,\"createdAt\":{\"_seconds\":1611845792,\"_nanoseconds\":87000000}}',\n join: {\n create: {\n id: '903a5031-36c0-4e26-9b01-76e63ce12dc5',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '903a5031-36c0-4e26-9b01-76e63ce12dc5',\n common: {\n connect: {\n id: '878126b8-a724-4601-a9d8-2ec56b4d1c96'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: '0jL6u33k2rMoEY8wUmnIvkJM48O2',\n commonId: '878126b8-a724-4601-a9d8-2ec56b4d1c96'\n }\n }\n },\n user: {\n connect: {\n id: '0jL6u33k2rMoEY8wUmnIvkJM48O2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'QWERTY',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: undefined,\n expiresAt: new Date('2021-01-29T06:56:32.087Z'),\n votesFor: 0,\n votesAgainst: 1,\n importedFrom: '{\"proposerId\":\"0jL6u33k2rMoEY8wUmnIvkJM48O2\",\"description\":{\"description\":\"QWERTY\",\"links\":[]},\"votesFor\":0,\"type\":\"join\",\"countdownPeriod\":57600,\"votes\":[{\"voterId\":\"Xlun3Ux94Zfc73axkiuVdkktOWf1\",\"voteId\":\"0ecb0877-b40c-4a05-bcc7-ab2600ad8b72\",\"voteOutcome\":\"rejected\"}],\"votesAgainst\":1,\"updatedAt\":{\"_seconds\":1611845880,\"_nanoseconds\":796000000},\"commonId\":\"878126b8-a724-4601-a9d8-2ec56b4d1c96\",\"join\":{\"fundingType\":\"one-time\",\"payments\":[],\"funding\":0},\"id\":\"903a5031-36c0-4e26-9b01-76e63ce12dc5\",\"state\":\"failed\",\"quietEndingPeriod\":3600,\"createdAt\":{\"_seconds\":1611845792,\"_nanoseconds\":87000000}}',\n join: {\n create: {\n id: '903a5031-36c0-4e26-9b01-76e63ce12dc5',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "updatedAt": { + "_seconds": 1615527901, + "_nanoseconds": 407000000 + }, + "type": "join", + "commonId": "cf8601aa-ab7a-4c69-be1b-136e13fe08e5", + "quietEndingPeriod": 3600, + "description": { + "links": [], + "description": "Accept please " + }, + "votesFor": 0, + "countdownPeriod": 57600, + "votes": [], + "state": "failed", + "join": { + "funding": 0, + "payments": [], + "fundingType": "one-time", + "ip": "178.120.66.122" + }, + "createdAt": { + "_seconds": 1615470157, + "_nanoseconds": 599000000 + }, + "id": "9217cda6-b4e1-4e3f-baed-3d5c7d27596e", + "proposerId": "Wz0ZgOvKnafrjLDeAeWqx182uBq2", + "votesAgainst": 0 + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '9217cda6-b4e1-4e3f-baed-3d5c7d27596e',\n common: {\n connect: {\n id: 'cf8601aa-ab7a-4c69-be1b-136e13fe08e5'\n }\n },\n user: {\n connect: {\n id: 'Wz0ZgOvKnafrjLDeAeWqx182uBq2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Accept please ',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '178.120.66.122',\n expiresAt: new Date('2021-03-12T05:42:37.599Z'),\n votesFor: 0,\n votesAgainst: 0,\n importedFrom: '{\"updatedAt\":{\"_seconds\":1615527901,\"_nanoseconds\":407000000},\"type\":\"join\",\"commonId\":\"cf8601aa-ab7a-4c69-be1b-136e13fe08e5\",\"quietEndingPeriod\":3600,\"description\":{\"links\":[],\"description\":\"Accept please \"},\"votesFor\":0,\"countdownPeriod\":57600,\"votes\":[],\"state\":\"failed\",\"join\":{\"funding\":0,\"payments\":[],\"fundingType\":\"one-time\",\"ip\":\"178.120.66.122\"},\"createdAt\":{\"_seconds\":1615470157,\"_nanoseconds\":599000000},\"id\":\"9217cda6-b4e1-4e3f-baed-3d5c7d27596e\",\"proposerId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"votesAgainst\":0}',\n join: {\n create: {\n id: '9217cda6-b4e1-4e3f-baed-3d5c7d27596e',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '9217cda6-b4e1-4e3f-baed-3d5c7d27596e',\n common: {\n connect: {\n id: 'cf8601aa-ab7a-4c69-be1b-136e13fe08e5'\n }\n },\n user: {\n connect: {\n id: 'Wz0ZgOvKnafrjLDeAeWqx182uBq2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Accept please ',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '178.120.66.122',\n expiresAt: new Date('2021-03-12T05:42:37.599Z'),\n votesFor: 0,\n votesAgainst: 0,\n importedFrom: '{\"updatedAt\":{\"_seconds\":1615527901,\"_nanoseconds\":407000000},\"type\":\"join\",\"commonId\":\"cf8601aa-ab7a-4c69-be1b-136e13fe08e5\",\"quietEndingPeriod\":3600,\"description\":{\"links\":[],\"description\":\"Accept please \"},\"votesFor\":0,\"countdownPeriod\":57600,\"votes\":[],\"state\":\"failed\",\"join\":{\"funding\":0,\"payments\":[],\"fundingType\":\"one-time\",\"ip\":\"178.120.66.122\"},\"createdAt\":{\"_seconds\":1615470157,\"_nanoseconds\":599000000},\"id\":\"9217cda6-b4e1-4e3f-baed-3d5c7d27596e\",\"proposerId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"votesAgainst\":0}',\n join: {\n create: {\n id: '9217cda6-b4e1-4e3f-baed-3d5c7d27596e',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "commonId": "004abe8d-1006-4b63-9e7a-5d824c4fb1fd", + "type": "join", + "id": "955bec55-9bab-416a-916c-419d26e5490e", + "quietEndingPeriod": 3600, + "createdAt": { + "_seconds": 1615274846, + "_nanoseconds": 536000000 + }, + "updatedAt": { + "_seconds": 1615275088, + "_nanoseconds": 774000000 + }, + "countdownPeriod": 57600, + "votesFor": 2, + "description": { + "links": [], + "description": "Blabla" + }, + "proposerId": "RN4V4T2Z4gf2ld9QhwanrQbSnP23", + "state": "passed", + "votesAgainst": 0, + "votes": [ + { + "voteId": "f6c66daf-ab4e-40fb-befb-bc105a84b954", + "voterId": "2HM9WnVvr9aDYbckjCo4cIDjncY2", + "voteOutcome": "approved" + }, + { + "voteOutcome": "approved", + "voteId": "4f222502-6e40-4876-974d-e58cb26ab2db", + "voterId": "Wz0ZgOvKnafrjLDeAeWqx182uBq2" + } + ], + "join": { + "ip": "2a02:bf0:19:4733:55b8:1c24:840d:4797", + "fundingType": "one-time", + "funding": 0, + "payments": [] + } + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '955bec55-9bab-416a-916c-419d26e5490e',\n common: {\n connect: {\n id: '004abe8d-1006-4b63-9e7a-5d824c4fb1fd'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: 'RN4V4T2Z4gf2ld9QhwanrQbSnP23',\n commonId: '004abe8d-1006-4b63-9e7a-5d824c4fb1fd'\n }\n }\n },\n user: {\n connect: {\n id: 'RN4V4T2Z4gf2ld9QhwanrQbSnP23'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Blabla',\n files: [],\n images: [],\n links: [],\n state: 'Accepted',\n ipAddress: '2a02:bf0:19:4733:55b8:1c24:840d:4797',\n expiresAt: new Date('2021-03-09T23:27:26.536Z'),\n votesFor: 2,\n votesAgainst: 0,\n importedFrom: '{\"commonId\":\"004abe8d-1006-4b63-9e7a-5d824c4fb1fd\",\"type\":\"join\",\"id\":\"955bec55-9bab-416a-916c-419d26e5490e\",\"quietEndingPeriod\":3600,\"createdAt\":{\"_seconds\":1615274846,\"_nanoseconds\":536000000},\"updatedAt\":{\"_seconds\":1615275088,\"_nanoseconds\":774000000},\"countdownPeriod\":57600,\"votesFor\":2,\"description\":{\"links\":[],\"description\":\"Blabla\"},\"proposerId\":\"RN4V4T2Z4gf2ld9QhwanrQbSnP23\",\"state\":\"passed\",\"votesAgainst\":0,\"votes\":[{\"voteId\":\"f6c66daf-ab4e-40fb-befb-bc105a84b954\",\"voterId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\",\"voteOutcome\":\"approved\"},{\"voteOutcome\":\"approved\",\"voteId\":\"4f222502-6e40-4876-974d-e58cb26ab2db\",\"voterId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\"}],\"join\":{\"ip\":\"2a02:bf0:19:4733:55b8:1c24:840d:4797\",\"fundingType\":\"one-time\",\"funding\":0,\"payments\":[]}}',\n join: {\n create: {\n id: '955bec55-9bab-416a-916c-419d26e5490e',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '955bec55-9bab-416a-916c-419d26e5490e',\n common: {\n connect: {\n id: '004abe8d-1006-4b63-9e7a-5d824c4fb1fd'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: 'RN4V4T2Z4gf2ld9QhwanrQbSnP23',\n commonId: '004abe8d-1006-4b63-9e7a-5d824c4fb1fd'\n }\n }\n },\n user: {\n connect: {\n id: 'RN4V4T2Z4gf2ld9QhwanrQbSnP23'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Blabla',\n files: [],\n images: [],\n links: [],\n state: 'Accepted',\n ipAddress: '2a02:bf0:19:4733:55b8:1c24:840d:4797',\n expiresAt: new Date('2021-03-09T23:27:26.536Z'),\n votesFor: 2,\n votesAgainst: 0,\n importedFrom: '{\"commonId\":\"004abe8d-1006-4b63-9e7a-5d824c4fb1fd\",\"type\":\"join\",\"id\":\"955bec55-9bab-416a-916c-419d26e5490e\",\"quietEndingPeriod\":3600,\"createdAt\":{\"_seconds\":1615274846,\"_nanoseconds\":536000000},\"updatedAt\":{\"_seconds\":1615275088,\"_nanoseconds\":774000000},\"countdownPeriod\":57600,\"votesFor\":2,\"description\":{\"links\":[],\"description\":\"Blabla\"},\"proposerId\":\"RN4V4T2Z4gf2ld9QhwanrQbSnP23\",\"state\":\"passed\",\"votesAgainst\":0,\"votes\":[{\"voteId\":\"f6c66daf-ab4e-40fb-befb-bc105a84b954\",\"voterId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\",\"voteOutcome\":\"approved\"},{\"voteOutcome\":\"approved\",\"voteId\":\"4f222502-6e40-4876-974d-e58cb26ab2db\",\"voterId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\"}],\"join\":{\"ip\":\"2a02:bf0:19:4733:55b8:1c24:840d:4797\",\"fundingType\":\"one-time\",\"funding\":0,\"payments\":[]}}',\n join: {\n create: {\n id: '955bec55-9bab-416a-916c-419d26e5490e',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "votesFor": 0, + "votes": [ + { + "voterId": "2HM9WnVvr9aDYbckjCo4cIDjncY2", + "voteId": "a4bc8d37-b603-4aa0-ac09-14de645b0d7c", + "voteOutcome": "rejected" + }, + { + "voteOutcome": "rejected", + "voterId": "5Bi1KZGIYzW5UIljHgBlO98NXaI2", + "voteId": "21dc1460-c3eb-4f9b-9a7c-2c46fb39bba0" + } + ], + "type": "join", + "state": "failed", + "proposerId": "Wz0ZgOvKnafrjLDeAeWqx182uBq2", + "description": { + "links": [], + "description": "Trouble trouble" + }, + "commonId": "cf8601aa-ab7a-4c69-be1b-136e13fe08e5", + "countdownPeriod": 57600, + "votesAgainst": 2, + "quietEndingPeriod": 3600, + "createdAt": { + "_seconds": 1615997918, + "_nanoseconds": 735000000 + }, + "join": { + "ip": "178.120.61.209", + "funding": 0, + "fundingType": "one-time", + "payments": [] + }, + "updatedAt": { + "_seconds": 1615998113, + "_nanoseconds": 845000000 + }, + "id": "97934a5e-1365-4eb7-a074-88afaca1c880" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '97934a5e-1365-4eb7-a074-88afaca1c880',\n common: {\n connect: {\n id: 'cf8601aa-ab7a-4c69-be1b-136e13fe08e5'\n }\n },\n user: {\n connect: {\n id: 'Wz0ZgOvKnafrjLDeAeWqx182uBq2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Trouble trouble',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '178.120.61.209',\n expiresAt: new Date('2021-03-18T08:18:38.735Z'),\n votesFor: 0,\n votesAgainst: 2,\n importedFrom: '{\"votesFor\":0,\"votes\":[{\"voterId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\",\"voteId\":\"a4bc8d37-b603-4aa0-ac09-14de645b0d7c\",\"voteOutcome\":\"rejected\"},{\"voteOutcome\":\"rejected\",\"voterId\":\"5Bi1KZGIYzW5UIljHgBlO98NXaI2\",\"voteId\":\"21dc1460-c3eb-4f9b-9a7c-2c46fb39bba0\"}],\"type\":\"join\",\"state\":\"failed\",\"proposerId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"description\":{\"links\":[],\"description\":\"Trouble trouble\"},\"commonId\":\"cf8601aa-ab7a-4c69-be1b-136e13fe08e5\",\"countdownPeriod\":57600,\"votesAgainst\":2,\"quietEndingPeriod\":3600,\"createdAt\":{\"_seconds\":1615997918,\"_nanoseconds\":735000000},\"join\":{\"ip\":\"178.120.61.209\",\"funding\":0,\"fundingType\":\"one-time\",\"payments\":[]},\"updatedAt\":{\"_seconds\":1615998113,\"_nanoseconds\":845000000},\"id\":\"97934a5e-1365-4eb7-a074-88afaca1c880\"}',\n join: {\n create: {\n id: '97934a5e-1365-4eb7-a074-88afaca1c880',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '97934a5e-1365-4eb7-a074-88afaca1c880',\n common: {\n connect: {\n id: 'cf8601aa-ab7a-4c69-be1b-136e13fe08e5'\n }\n },\n user: {\n connect: {\n id: 'Wz0ZgOvKnafrjLDeAeWqx182uBq2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Trouble trouble',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '178.120.61.209',\n expiresAt: new Date('2021-03-18T08:18:38.735Z'),\n votesFor: 0,\n votesAgainst: 2,\n importedFrom: '{\"votesFor\":0,\"votes\":[{\"voterId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\",\"voteId\":\"a4bc8d37-b603-4aa0-ac09-14de645b0d7c\",\"voteOutcome\":\"rejected\"},{\"voteOutcome\":\"rejected\",\"voterId\":\"5Bi1KZGIYzW5UIljHgBlO98NXaI2\",\"voteId\":\"21dc1460-c3eb-4f9b-9a7c-2c46fb39bba0\"}],\"type\":\"join\",\"state\":\"failed\",\"proposerId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"description\":{\"links\":[],\"description\":\"Trouble trouble\"},\"commonId\":\"cf8601aa-ab7a-4c69-be1b-136e13fe08e5\",\"countdownPeriod\":57600,\"votesAgainst\":2,\"quietEndingPeriod\":3600,\"createdAt\":{\"_seconds\":1615997918,\"_nanoseconds\":735000000},\"join\":{\"ip\":\"178.120.61.209\",\"funding\":0,\"fundingType\":\"one-time\",\"payments\":[]},\"updatedAt\":{\"_seconds\":1615998113,\"_nanoseconds\":845000000},\"id\":\"97934a5e-1365-4eb7-a074-88afaca1c880\"}',\n join: {\n create: {\n id: '97934a5e-1365-4eb7-a074-88afaca1c880',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "createdAt": { + "_seconds": 1617227299, + "_nanoseconds": 38000000 + }, + "commonId": "82bfdd51-6da9-447a-9eb4-f8c9b9d01cbd", + "type": "join", + "votes": [], + "id": "97e678b7-ff57-4cac-9abe-813d969c3c0f", + "proposerId": "5Bi1KZGIYzW5UIljHgBlO98NXaI2", + "state": "failed", + "quietEndingPeriod": 3600, + "votesAgainst": 0, + "updatedAt": { + "_seconds": 1617285001, + "_nanoseconds": 503000000 + }, + "countdownPeriod": 57600, + "join": { + "fundingType": "one-time", + "funding": 0, + "ip": "46.56.203.253", + "payments": [] + }, + "description": { + "links": [], + "description": "Ycyvbu" + }, + "votesFor": 0 + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '97e678b7-ff57-4cac-9abe-813d969c3c0f',\n common: {\n connect: {\n id: '82bfdd51-6da9-447a-9eb4-f8c9b9d01cbd'\n }\n },\n user: {\n connect: {\n id: '5Bi1KZGIYzW5UIljHgBlO98NXaI2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Ycyvbu',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '46.56.203.253',\n expiresAt: new Date('2021-04-01T13:48:19.038Z'),\n votesFor: 0,\n votesAgainst: 0,\n importedFrom: '{\"createdAt\":{\"_seconds\":1617227299,\"_nanoseconds\":38000000},\"commonId\":\"82bfdd51-6da9-447a-9eb4-f8c9b9d01cbd\",\"type\":\"join\",\"votes\":[],\"id\":\"97e678b7-ff57-4cac-9abe-813d969c3c0f\",\"proposerId\":\"5Bi1KZGIYzW5UIljHgBlO98NXaI2\",\"state\":\"failed\",\"quietEndingPeriod\":3600,\"votesAgainst\":0,\"updatedAt\":{\"_seconds\":1617285001,\"_nanoseconds\":503000000},\"countdownPeriod\":57600,\"join\":{\"fundingType\":\"one-time\",\"funding\":0,\"ip\":\"46.56.203.253\",\"payments\":[]},\"description\":{\"links\":[],\"description\":\"Ycyvbu\"},\"votesFor\":0}',\n join: {\n create: {\n id: '97e678b7-ff57-4cac-9abe-813d969c3c0f',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '97e678b7-ff57-4cac-9abe-813d969c3c0f',\n common: {\n connect: {\n id: '82bfdd51-6da9-447a-9eb4-f8c9b9d01cbd'\n }\n },\n user: {\n connect: {\n id: '5Bi1KZGIYzW5UIljHgBlO98NXaI2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Ycyvbu',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '46.56.203.253',\n expiresAt: new Date('2021-04-01T13:48:19.038Z'),\n votesFor: 0,\n votesAgainst: 0,\n importedFrom: '{\"createdAt\":{\"_seconds\":1617227299,\"_nanoseconds\":38000000},\"commonId\":\"82bfdd51-6da9-447a-9eb4-f8c9b9d01cbd\",\"type\":\"join\",\"votes\":[],\"id\":\"97e678b7-ff57-4cac-9abe-813d969c3c0f\",\"proposerId\":\"5Bi1KZGIYzW5UIljHgBlO98NXaI2\",\"state\":\"failed\",\"quietEndingPeriod\":3600,\"votesAgainst\":0,\"updatedAt\":{\"_seconds\":1617285001,\"_nanoseconds\":503000000},\"countdownPeriod\":57600,\"join\":{\"fundingType\":\"one-time\",\"funding\":0,\"ip\":\"46.56.203.253\",\"payments\":[]},\"description\":{\"links\":[],\"description\":\"Ycyvbu\"},\"votesFor\":0}',\n join: {\n create: {\n id: '97e678b7-ff57-4cac-9abe-813d969c3c0f',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "updatedAt": { + "_seconds": 1614929666, + "_nanoseconds": 481000000 + }, + "quietEndingPeriod": 3600, + "countdownPeriod": 57600, + "join": { + "fundingType": "one-time", + "ip": "46.56.229.118", + "funding": 0, + "payments": [] + }, + "type": "join", + "description": { + "description": "Pl", + "links": [] + }, + "state": "failed", + "votesAgainst": 1, + "votesFor": 0, + "proposerId": "Wz0ZgOvKnafrjLDeAeWqx182uBq2", + "votes": [ + { + "voteId": "658e555f-2c54-4a64-9f47-6dc71974973a", + "voterId": "2HM9WnVvr9aDYbckjCo4cIDjncY2", + "voteOutcome": "rejected" + } + ], + "createdAt": { + "_seconds": 1614929648, + "_nanoseconds": 741000000 + }, + "id": "9876cc55-366d-48f1-82a2-065f115ac1b1", + "commonId": "004abe8d-1006-4b63-9e7a-5d824c4fb1fd" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '9876cc55-366d-48f1-82a2-065f115ac1b1',\n common: {\n connect: {\n id: '004abe8d-1006-4b63-9e7a-5d824c4fb1fd'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: 'Wz0ZgOvKnafrjLDeAeWqx182uBq2',\n commonId: '004abe8d-1006-4b63-9e7a-5d824c4fb1fd'\n }\n }\n },\n user: {\n connect: {\n id: 'Wz0ZgOvKnafrjLDeAeWqx182uBq2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Pl',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '46.56.229.118',\n expiresAt: new Date('2021-03-05T23:34:08.741Z'),\n votesFor: 0,\n votesAgainst: 1,\n importedFrom: '{\"updatedAt\":{\"_seconds\":1614929666,\"_nanoseconds\":481000000},\"quietEndingPeriod\":3600,\"countdownPeriod\":57600,\"join\":{\"fundingType\":\"one-time\",\"ip\":\"46.56.229.118\",\"funding\":0,\"payments\":[]},\"type\":\"join\",\"description\":{\"description\":\"Pl\",\"links\":[]},\"state\":\"failed\",\"votesAgainst\":1,\"votesFor\":0,\"proposerId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"votes\":[{\"voteId\":\"658e555f-2c54-4a64-9f47-6dc71974973a\",\"voterId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\",\"voteOutcome\":\"rejected\"}],\"createdAt\":{\"_seconds\":1614929648,\"_nanoseconds\":741000000},\"id\":\"9876cc55-366d-48f1-82a2-065f115ac1b1\",\"commonId\":\"004abe8d-1006-4b63-9e7a-5d824c4fb1fd\"}',\n join: {\n create: {\n id: '9876cc55-366d-48f1-82a2-065f115ac1b1',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '9876cc55-366d-48f1-82a2-065f115ac1b1',\n common: {\n connect: {\n id: '004abe8d-1006-4b63-9e7a-5d824c4fb1fd'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: 'Wz0ZgOvKnafrjLDeAeWqx182uBq2',\n commonId: '004abe8d-1006-4b63-9e7a-5d824c4fb1fd'\n }\n }\n },\n user: {\n connect: {\n id: 'Wz0ZgOvKnafrjLDeAeWqx182uBq2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Pl',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '46.56.229.118',\n expiresAt: new Date('2021-03-05T23:34:08.741Z'),\n votesFor: 0,\n votesAgainst: 1,\n importedFrom: '{\"updatedAt\":{\"_seconds\":1614929666,\"_nanoseconds\":481000000},\"quietEndingPeriod\":3600,\"countdownPeriod\":57600,\"join\":{\"fundingType\":\"one-time\",\"ip\":\"46.56.229.118\",\"funding\":0,\"payments\":[]},\"type\":\"join\",\"description\":{\"description\":\"Pl\",\"links\":[]},\"state\":\"failed\",\"votesAgainst\":1,\"votesFor\":0,\"proposerId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"votes\":[{\"voteId\":\"658e555f-2c54-4a64-9f47-6dc71974973a\",\"voterId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\",\"voteOutcome\":\"rejected\"}],\"createdAt\":{\"_seconds\":1614929648,\"_nanoseconds\":741000000},\"id\":\"9876cc55-366d-48f1-82a2-065f115ac1b1\",\"commonId\":\"004abe8d-1006-4b63-9e7a-5d824c4fb1fd\"}',\n join: {\n create: {\n id: '9876cc55-366d-48f1-82a2-065f115ac1b1',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "state": "failed", + "type": "join", + "description": { + "links": [], + "description": "iOS " + }, + "commonId": "3540a395-7bab-465c-9923-42c631e26374", + "updatedAt": { + "_seconds": 1615962300, + "_nanoseconds": 906000000 + }, + "quietEndingPeriod": 3600, + "createdAt": { + "_seconds": 1615904528, + "_nanoseconds": 614000000 + }, + "id": "9c3e8c56-ff38-4cca-88d4-cdb72de42dfa", + "countdownPeriod": 57600, + "votesAgainst": 0, + "votesFor": 0, + "join": { + "ip": "46.56.242.100", + "fundingType": "one-time", + "funding": 0, + "payments": [] + }, + "votes": [], + "proposerId": "2HM9WnVvr9aDYbckjCo4cIDjncY2" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '9c3e8c56-ff38-4cca-88d4-cdb72de42dfa',\n common: {\n connect: {\n id: '3540a395-7bab-465c-9923-42c631e26374'\n }\n },\n user: {\n connect: {\n id: '2HM9WnVvr9aDYbckjCo4cIDjncY2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'iOS ',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '46.56.242.100',\n expiresAt: new Date('2021-03-17T06:22:08.614Z'),\n votesFor: 0,\n votesAgainst: 0,\n importedFrom: '{\"state\":\"failed\",\"type\":\"join\",\"description\":{\"links\":[],\"description\":\"iOS \"},\"commonId\":\"3540a395-7bab-465c-9923-42c631e26374\",\"updatedAt\":{\"_seconds\":1615962300,\"_nanoseconds\":906000000},\"quietEndingPeriod\":3600,\"createdAt\":{\"_seconds\":1615904528,\"_nanoseconds\":614000000},\"id\":\"9c3e8c56-ff38-4cca-88d4-cdb72de42dfa\",\"countdownPeriod\":57600,\"votesAgainst\":0,\"votesFor\":0,\"join\":{\"ip\":\"46.56.242.100\",\"fundingType\":\"one-time\",\"funding\":0,\"payments\":[]},\"votes\":[],\"proposerId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\"}',\n join: {\n create: {\n id: '9c3e8c56-ff38-4cca-88d4-cdb72de42dfa',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '9c3e8c56-ff38-4cca-88d4-cdb72de42dfa',\n common: {\n connect: {\n id: '3540a395-7bab-465c-9923-42c631e26374'\n }\n },\n user: {\n connect: {\n id: '2HM9WnVvr9aDYbckjCo4cIDjncY2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'iOS ',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '46.56.242.100',\n expiresAt: new Date('2021-03-17T06:22:08.614Z'),\n votesFor: 0,\n votesAgainst: 0,\n importedFrom: '{\"state\":\"failed\",\"type\":\"join\",\"description\":{\"links\":[],\"description\":\"iOS \"},\"commonId\":\"3540a395-7bab-465c-9923-42c631e26374\",\"updatedAt\":{\"_seconds\":1615962300,\"_nanoseconds\":906000000},\"quietEndingPeriod\":3600,\"createdAt\":{\"_seconds\":1615904528,\"_nanoseconds\":614000000},\"id\":\"9c3e8c56-ff38-4cca-88d4-cdb72de42dfa\",\"countdownPeriod\":57600,\"votesAgainst\":0,\"votesFor\":0,\"join\":{\"ip\":\"46.56.242.100\",\"fundingType\":\"one-time\",\"funding\":0,\"payments\":[]},\"votes\":[],\"proposerId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\"}',\n join: {\n create: {\n id: '9c3e8c56-ff38-4cca-88d4-cdb72de42dfa',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "votes": [ + { + "voterId": "Xlun3Ux94Zfc73axkiuVdkktOWf1", + "voteId": "bf28c879-f5ed-4831-b963-ab247fddc044", + "voteOutcome": "approved" + } + ], + "createdAt": { + "_seconds": 1615900352, + "_nanoseconds": 81000000 + }, + "countdownPeriod": 57600, + "state": "passed", + "proposerId": "skBkfQh8E1f4eOGBSVLaiuJ097v1", + "quietEndingPeriod": 3600, + "updatedAt": { + "_seconds": 1615958101, + "_nanoseconds": 12000000 + }, + "join": { + "payments": [], + "fundingType": "one-time", + "ip": "213.240.217.185", + "funding": 0 + }, + "commonId": "878126b8-a724-4601-a9d8-2ec56b4d1c96", + "votesFor": 1, + "id": "9ed553a3-f4b2-4d82-8a0f-ac52e779933f", + "description": { + "description": "QWERTY", + "links": [] + }, + "votesAgainst": 0, + "type": "join" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '9ed553a3-f4b2-4d82-8a0f-ac52e779933f',\n common: {\n connect: {\n id: '878126b8-a724-4601-a9d8-2ec56b4d1c96'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: 'skBkfQh8E1f4eOGBSVLaiuJ097v1',\n commonId: '878126b8-a724-4601-a9d8-2ec56b4d1c96'\n }\n }\n },\n user: {\n connect: {\n id: 'skBkfQh8E1f4eOGBSVLaiuJ097v1'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'QWERTY',\n files: [],\n images: [],\n links: [],\n state: 'Accepted',\n ipAddress: '213.240.217.185',\n expiresAt: new Date('2021-03-17T05:12:32.081Z'),\n votesFor: 1,\n votesAgainst: 0,\n importedFrom: '{\"votes\":[{\"voterId\":\"Xlun3Ux94Zfc73axkiuVdkktOWf1\",\"voteId\":\"bf28c879-f5ed-4831-b963-ab247fddc044\",\"voteOutcome\":\"approved\"}],\"createdAt\":{\"_seconds\":1615900352,\"_nanoseconds\":81000000},\"countdownPeriod\":57600,\"state\":\"passed\",\"proposerId\":\"skBkfQh8E1f4eOGBSVLaiuJ097v1\",\"quietEndingPeriod\":3600,\"updatedAt\":{\"_seconds\":1615958101,\"_nanoseconds\":12000000},\"join\":{\"payments\":[],\"fundingType\":\"one-time\",\"ip\":\"213.240.217.185\",\"funding\":0},\"commonId\":\"878126b8-a724-4601-a9d8-2ec56b4d1c96\",\"votesFor\":1,\"id\":\"9ed553a3-f4b2-4d82-8a0f-ac52e779933f\",\"description\":{\"description\":\"QWERTY\",\"links\":[]},\"votesAgainst\":0,\"type\":\"join\"}',\n join: {\n create: {\n id: '9ed553a3-f4b2-4d82-8a0f-ac52e779933f',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '9ed553a3-f4b2-4d82-8a0f-ac52e779933f',\n common: {\n connect: {\n id: '878126b8-a724-4601-a9d8-2ec56b4d1c96'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: 'skBkfQh8E1f4eOGBSVLaiuJ097v1',\n commonId: '878126b8-a724-4601-a9d8-2ec56b4d1c96'\n }\n }\n },\n user: {\n connect: {\n id: 'skBkfQh8E1f4eOGBSVLaiuJ097v1'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'QWERTY',\n files: [],\n images: [],\n links: [],\n state: 'Accepted',\n ipAddress: '213.240.217.185',\n expiresAt: new Date('2021-03-17T05:12:32.081Z'),\n votesFor: 1,\n votesAgainst: 0,\n importedFrom: '{\"votes\":[{\"voterId\":\"Xlun3Ux94Zfc73axkiuVdkktOWf1\",\"voteId\":\"bf28c879-f5ed-4831-b963-ab247fddc044\",\"voteOutcome\":\"approved\"}],\"createdAt\":{\"_seconds\":1615900352,\"_nanoseconds\":81000000},\"countdownPeriod\":57600,\"state\":\"passed\",\"proposerId\":\"skBkfQh8E1f4eOGBSVLaiuJ097v1\",\"quietEndingPeriod\":3600,\"updatedAt\":{\"_seconds\":1615958101,\"_nanoseconds\":12000000},\"join\":{\"payments\":[],\"fundingType\":\"one-time\",\"ip\":\"213.240.217.185\",\"funding\":0},\"commonId\":\"878126b8-a724-4601-a9d8-2ec56b4d1c96\",\"votesFor\":1,\"id\":\"9ed553a3-f4b2-4d82-8a0f-ac52e779933f\",\"description\":{\"description\":\"QWERTY\",\"links\":[]},\"votesAgainst\":0,\"type\":\"join\"}',\n join: {\n create: {\n id: '9ed553a3-f4b2-4d82-8a0f-ac52e779933f',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "votes": [], + "votesAgainst": 0, + "join": { + "fundingType": "one-time", + "funding": 0, + "ip": "178.120.63.174", + "payments": [] + }, + "commonId": "2383dd8c-f468-4bf1-b74a-06e8da55a22f", + "countdownPeriod": 57600, + "id": "a8ad4dc6-ccf5-46ab-b40b-88b56f1fb21d", + "quietEndingPeriod": 3600, + "state": "failed", + "type": "join", + "updatedAt": { + "_seconds": 1614743100, + "_nanoseconds": 270000000 + }, + "createdAt": { + "_seconds": 1614685257, + "_nanoseconds": 953000000 + }, + "votesFor": 0, + "description": { + "links": [], + "description": "Testing ✔" + }, + "proposerId": "Wz0ZgOvKnafrjLDeAeWqx182uBq2" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: 'a8ad4dc6-ccf5-46ab-b40b-88b56f1fb21d',\n common: {\n connect: {\n id: '2383dd8c-f468-4bf1-b74a-06e8da55a22f'\n }\n },\n user: {\n connect: {\n id: 'Wz0ZgOvKnafrjLDeAeWqx182uBq2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Testing ✔',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '178.120.63.174',\n expiresAt: new Date('2021-03-03T03:40:57.953Z'),\n votesFor: 0,\n votesAgainst: 0,\n importedFrom: '{\"votes\":[],\"votesAgainst\":0,\"join\":{\"fundingType\":\"one-time\",\"funding\":0,\"ip\":\"178.120.63.174\",\"payments\":[]},\"commonId\":\"2383dd8c-f468-4bf1-b74a-06e8da55a22f\",\"countdownPeriod\":57600,\"id\":\"a8ad4dc6-ccf5-46ab-b40b-88b56f1fb21d\",\"quietEndingPeriod\":3600,\"state\":\"failed\",\"type\":\"join\",\"updatedAt\":{\"_seconds\":1614743100,\"_nanoseconds\":270000000},\"createdAt\":{\"_seconds\":1614685257,\"_nanoseconds\":953000000},\"votesFor\":0,\"description\":{\"links\":[],\"description\":\"Testing ✔\"},\"proposerId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\"}',\n join: {\n create: {\n id: 'a8ad4dc6-ccf5-46ab-b40b-88b56f1fb21d',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: 'a8ad4dc6-ccf5-46ab-b40b-88b56f1fb21d',\n common: {\n connect: {\n id: '2383dd8c-f468-4bf1-b74a-06e8da55a22f'\n }\n },\n user: {\n connect: {\n id: 'Wz0ZgOvKnafrjLDeAeWqx182uBq2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Testing ✔',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '178.120.63.174',\n expiresAt: new Date('2021-03-03T03:40:57.953Z'),\n votesFor: 0,\n votesAgainst: 0,\n importedFrom: '{\"votes\":[],\"votesAgainst\":0,\"join\":{\"fundingType\":\"one-time\",\"funding\":0,\"ip\":\"178.120.63.174\",\"payments\":[]},\"commonId\":\"2383dd8c-f468-4bf1-b74a-06e8da55a22f\",\"countdownPeriod\":57600,\"id\":\"a8ad4dc6-ccf5-46ab-b40b-88b56f1fb21d\",\"quietEndingPeriod\":3600,\"state\":\"failed\",\"type\":\"join\",\"updatedAt\":{\"_seconds\":1614743100,\"_nanoseconds\":270000000},\"createdAt\":{\"_seconds\":1614685257,\"_nanoseconds\":953000000},\"votesFor\":0,\"description\":{\"links\":[],\"description\":\"Testing ✔\"},\"proposerId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\"}',\n join: {\n create: {\n id: 'a8ad4dc6-ccf5-46ab-b40b-88b56f1fb21d',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "id": "ad80adb6-8606-47cd-ad8f-9fc3ccbc6525", + "type": "join", + "countdownPeriod": 57600, + "quietEndingPeriod": 3600, + "description": { + "links": [], + "description": "Pop" + }, + "commonId": "82bfdd51-6da9-447a-9eb4-f8c9b9d01cbd", + "createdAt": { + "_seconds": 1615975765, + "_nanoseconds": 499000000 + }, + "join": { + "funding": 0, + "ip": "178.120.61.209", + "fundingType": "one-time", + "payments": [] + }, + "state": "failed", + "proposerId": "5Bi1KZGIYzW5UIljHgBlO98NXaI2", + "votesFor": 0, + "votesAgainst": 1, + "updatedAt": { + "_seconds": 1615977584, + "_nanoseconds": 250000000 + }, + "votes": [ + { + "voteId": "abb2a59c-96e3-45c8-9afd-da400603ae47", + "voteOutcome": "rejected", + "voterId": "Wz0ZgOvKnafrjLDeAeWqx182uBq2" + } + ] + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: 'ad80adb6-8606-47cd-ad8f-9fc3ccbc6525',\n common: {\n connect: {\n id: '82bfdd51-6da9-447a-9eb4-f8c9b9d01cbd'\n }\n },\n user: {\n connect: {\n id: '5Bi1KZGIYzW5UIljHgBlO98NXaI2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Pop',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '178.120.61.209',\n expiresAt: new Date('2021-03-18T02:09:25.499Z'),\n votesFor: 0,\n votesAgainst: 1,\n importedFrom: '{\"id\":\"ad80adb6-8606-47cd-ad8f-9fc3ccbc6525\",\"type\":\"join\",\"countdownPeriod\":57600,\"quietEndingPeriod\":3600,\"description\":{\"links\":[],\"description\":\"Pop\"},\"commonId\":\"82bfdd51-6da9-447a-9eb4-f8c9b9d01cbd\",\"createdAt\":{\"_seconds\":1615975765,\"_nanoseconds\":499000000},\"join\":{\"funding\":0,\"ip\":\"178.120.61.209\",\"fundingType\":\"one-time\",\"payments\":[]},\"state\":\"failed\",\"proposerId\":\"5Bi1KZGIYzW5UIljHgBlO98NXaI2\",\"votesFor\":0,\"votesAgainst\":1,\"updatedAt\":{\"_seconds\":1615977584,\"_nanoseconds\":250000000},\"votes\":[{\"voteId\":\"abb2a59c-96e3-45c8-9afd-da400603ae47\",\"voteOutcome\":\"rejected\",\"voterId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\"}]}',\n join: {\n create: {\n id: 'ad80adb6-8606-47cd-ad8f-9fc3ccbc6525',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: 'ad80adb6-8606-47cd-ad8f-9fc3ccbc6525',\n common: {\n connect: {\n id: '82bfdd51-6da9-447a-9eb4-f8c9b9d01cbd'\n }\n },\n user: {\n connect: {\n id: '5Bi1KZGIYzW5UIljHgBlO98NXaI2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Pop',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '178.120.61.209',\n expiresAt: new Date('2021-03-18T02:09:25.499Z'),\n votesFor: 0,\n votesAgainst: 1,\n importedFrom: '{\"id\":\"ad80adb6-8606-47cd-ad8f-9fc3ccbc6525\",\"type\":\"join\",\"countdownPeriod\":57600,\"quietEndingPeriod\":3600,\"description\":{\"links\":[],\"description\":\"Pop\"},\"commonId\":\"82bfdd51-6da9-447a-9eb4-f8c9b9d01cbd\",\"createdAt\":{\"_seconds\":1615975765,\"_nanoseconds\":499000000},\"join\":{\"funding\":0,\"ip\":\"178.120.61.209\",\"fundingType\":\"one-time\",\"payments\":[]},\"state\":\"failed\",\"proposerId\":\"5Bi1KZGIYzW5UIljHgBlO98NXaI2\",\"votesFor\":0,\"votesAgainst\":1,\"updatedAt\":{\"_seconds\":1615977584,\"_nanoseconds\":250000000},\"votes\":[{\"voteId\":\"abb2a59c-96e3-45c8-9afd-da400603ae47\",\"voteOutcome\":\"rejected\",\"voterId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\"}]}',\n join: {\n create: {\n id: 'ad80adb6-8606-47cd-ad8f-9fc3ccbc6525',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "id": "b08e2168-c4fe-41cf-ba54-e42c7585938b", + "type": "join", + "quietEndingPeriod": 3600, + "proposerId": "KhgMwi931pMJaWri6LtcczteF693", + "votes": [ + { + "voteOutcome": "approved", + "voterId": "3cjGUe2krtc68oBdCVAYHxV3ouZ2", + "voteId": "db4e7881-c99e-4b5b-8ed4-85bffa008044" + } + ], + "description": { + "links": [], + "description": "Hey hey hey" + }, + "commonId": "d6a4263c-d315-4112-87ae-0071cdaf2187", + "votesFor": 1, + "createdAt": { + "_seconds": 1610975301, + "_nanoseconds": 423000000 + }, + "updatedAt": { + "_seconds": 1610975357, + "_nanoseconds": 269000000 + }, + "countdownPeriod": 57600, + "votesAgainst": 0, + "state": "passed", + "join": { + "funding": 0, + "payments": [], + "fundingType": "one-time" + } + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: 'b08e2168-c4fe-41cf-ba54-e42c7585938b',\n common: {\n connect: {\n id: 'd6a4263c-d315-4112-87ae-0071cdaf2187'\n }\n },\n user: {\n connect: {\n id: 'KhgMwi931pMJaWri6LtcczteF693'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Hey hey hey',\n files: [],\n images: [],\n links: [],\n state: 'Accepted',\n ipAddress: undefined,\n expiresAt: new Date('2021-01-19T05:08:21.423Z'),\n votesFor: 1,\n votesAgainst: 0,\n importedFrom: '{\"id\":\"b08e2168-c4fe-41cf-ba54-e42c7585938b\",\"type\":\"join\",\"quietEndingPeriod\":3600,\"proposerId\":\"KhgMwi931pMJaWri6LtcczteF693\",\"votes\":[{\"voteOutcome\":\"approved\",\"voterId\":\"3cjGUe2krtc68oBdCVAYHxV3ouZ2\",\"voteId\":\"db4e7881-c99e-4b5b-8ed4-85bffa008044\"}],\"description\":{\"links\":[],\"description\":\"Hey hey hey\"},\"commonId\":\"d6a4263c-d315-4112-87ae-0071cdaf2187\",\"votesFor\":1,\"createdAt\":{\"_seconds\":1610975301,\"_nanoseconds\":423000000},\"updatedAt\":{\"_seconds\":1610975357,\"_nanoseconds\":269000000},\"countdownPeriod\":57600,\"votesAgainst\":0,\"state\":\"passed\",\"join\":{\"funding\":0,\"payments\":[],\"fundingType\":\"one-time\"}}',\n join: {\n create: {\n id: 'b08e2168-c4fe-41cf-ba54-e42c7585938b',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: 'b08e2168-c4fe-41cf-ba54-e42c7585938b',\n common: {\n connect: {\n id: 'd6a4263c-d315-4112-87ae-0071cdaf2187'\n }\n },\n user: {\n connect: {\n id: 'KhgMwi931pMJaWri6LtcczteF693'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Hey hey hey',\n files: [],\n images: [],\n links: [],\n state: 'Accepted',\n ipAddress: undefined,\n expiresAt: new Date('2021-01-19T05:08:21.423Z'),\n votesFor: 1,\n votesAgainst: 0,\n importedFrom: '{\"id\":\"b08e2168-c4fe-41cf-ba54-e42c7585938b\",\"type\":\"join\",\"quietEndingPeriod\":3600,\"proposerId\":\"KhgMwi931pMJaWri6LtcczteF693\",\"votes\":[{\"voteOutcome\":\"approved\",\"voterId\":\"3cjGUe2krtc68oBdCVAYHxV3ouZ2\",\"voteId\":\"db4e7881-c99e-4b5b-8ed4-85bffa008044\"}],\"description\":{\"links\":[],\"description\":\"Hey hey hey\"},\"commonId\":\"d6a4263c-d315-4112-87ae-0071cdaf2187\",\"votesFor\":1,\"createdAt\":{\"_seconds\":1610975301,\"_nanoseconds\":423000000},\"updatedAt\":{\"_seconds\":1610975357,\"_nanoseconds\":269000000},\"countdownPeriod\":57600,\"votesAgainst\":0,\"state\":\"passed\",\"join\":{\"funding\":0,\"payments\":[],\"fundingType\":\"one-time\"}}',\n join: {\n create: {\n id: 'b08e2168-c4fe-41cf-ba54-e42c7585938b',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposerId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "description": { + "links": [], + "description": "ע״י" + }, + "votes": [ + { + "voteId": "8c2fee3a-bae7-4c6e-b116-8c45d4f081d8", + "voteOutcome": "approved", + "voterId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2" + } + ], + "createdAt": { + "_seconds": 1611045125, + "_nanoseconds": 953000000 + }, + "quietEndingPeriod": 3600, + "countdownPeriod": 57600, + "votesAgainst": 0, + "updatedAt": { + "_seconds": 1611045150, + "_nanoseconds": 743000000 + }, + "votesFor": 1, + "join": { + "payments": [], + "fundingType": "one-time", + "funding": 0 + }, + "id": "b7431c7d-7998-4688-afbc-e6b6f328d353", + "commonId": "4061e937-7ee4-4f4e-b896-6f3af113f511", + "state": "passed", + "type": "join" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: 'b7431c7d-7998-4688-afbc-e6b6f328d353',\n common: {\n connect: {\n id: '4061e937-7ee4-4f4e-b896-6f3af113f511'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: '97d5y9WXk1fEZv767j1ejKuHevi1',\n commonId: '4061e937-7ee4-4f4e-b896-6f3af113f511'\n }\n }\n },\n user: {\n connect: {\n id: '97d5y9WXk1fEZv767j1ejKuHevi1'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'ע״י',\n files: [],\n images: [],\n links: [],\n state: 'Accepted',\n ipAddress: undefined,\n expiresAt: new Date('2021-01-20T00:32:05.953Z'),\n votesFor: 1,\n votesAgainst: 0,\n importedFrom: '{\"proposerId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"description\":{\"links\":[],\"description\":\"ע״י\"},\"votes\":[{\"voteId\":\"8c2fee3a-bae7-4c6e-b116-8c45d4f081d8\",\"voteOutcome\":\"approved\",\"voterId\":\"Xh4xoIGHhgOhxz1S5AJkaXCBT8K2\"}],\"createdAt\":{\"_seconds\":1611045125,\"_nanoseconds\":953000000},\"quietEndingPeriod\":3600,\"countdownPeriod\":57600,\"votesAgainst\":0,\"updatedAt\":{\"_seconds\":1611045150,\"_nanoseconds\":743000000},\"votesFor\":1,\"join\":{\"payments\":[],\"fundingType\":\"one-time\",\"funding\":0},\"id\":\"b7431c7d-7998-4688-afbc-e6b6f328d353\",\"commonId\":\"4061e937-7ee4-4f4e-b896-6f3af113f511\",\"state\":\"passed\",\"type\":\"join\"}',\n join: {\n create: {\n id: 'b7431c7d-7998-4688-afbc-e6b6f328d353',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: 'b7431c7d-7998-4688-afbc-e6b6f328d353',\n common: {\n connect: {\n id: '4061e937-7ee4-4f4e-b896-6f3af113f511'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: '97d5y9WXk1fEZv767j1ejKuHevi1',\n commonId: '4061e937-7ee4-4f4e-b896-6f3af113f511'\n }\n }\n },\n user: {\n connect: {\n id: '97d5y9WXk1fEZv767j1ejKuHevi1'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'ע״י',\n files: [],\n images: [],\n links: [],\n state: 'Accepted',\n ipAddress: undefined,\n expiresAt: new Date('2021-01-20T00:32:05.953Z'),\n votesFor: 1,\n votesAgainst: 0,\n importedFrom: '{\"proposerId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"description\":{\"links\":[],\"description\":\"ע״י\"},\"votes\":[{\"voteId\":\"8c2fee3a-bae7-4c6e-b116-8c45d4f081d8\",\"voteOutcome\":\"approved\",\"voterId\":\"Xh4xoIGHhgOhxz1S5AJkaXCBT8K2\"}],\"createdAt\":{\"_seconds\":1611045125,\"_nanoseconds\":953000000},\"quietEndingPeriod\":3600,\"countdownPeriod\":57600,\"votesAgainst\":0,\"updatedAt\":{\"_seconds\":1611045150,\"_nanoseconds\":743000000},\"votesFor\":1,\"join\":{\"payments\":[],\"fundingType\":\"one-time\",\"funding\":0},\"id\":\"b7431c7d-7998-4688-afbc-e6b6f328d353\",\"commonId\":\"4061e937-7ee4-4f4e-b896-6f3af113f511\",\"state\":\"passed\",\"type\":\"join\"}',\n join: {\n create: {\n id: 'b7431c7d-7998-4688-afbc-e6b6f328d353',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "updatedAt": { + "_seconds": 1618879500, + "_nanoseconds": 553999000 + }, + "votesAgainst": 0, + "countdownPeriod": 57600, + "createdAt": { + "_seconds": 1618821602, + "_nanoseconds": 511000000 + }, + "commonId": "b1b94181-adb4-4bb4-ba9d-6fed51f9843e", + "quietEndingPeriod": 3600, + "votes": [], + "join": { + "payments": [], + "funding": 0, + "fundingType": "one-time", + "ip": "2a02:ed0:537b:9400:183c:b0c0:67ae:cf7c" + }, + "proposerId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1", + "id": "bd92e884-65dd-4aa0-8802-e43e1a62ef22", + "type": "join", + "state": "failed", + "description": { + "links": [], + "description": "Let me in" + }, + "votesFor": 0 + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: 'bd92e884-65dd-4aa0-8802-e43e1a62ef22',\n common: {\n connect: {\n id: 'b1b94181-adb4-4bb4-ba9d-6fed51f9843e'\n }\n },\n user: {\n connect: {\n id: '11j4NvvZ4kMRf4BFBUHdbRiXKMp1'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Let me in',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '2a02:ed0:537b:9400:183c:b0c0:67ae:cf7c',\n expiresAt: new Date('2021-04-20T00:40:02.511Z'),\n votesFor: 0,\n votesAgainst: 0,\n importedFrom: '{\"updatedAt\":{\"_seconds\":1618879500,\"_nanoseconds\":553999000},\"votesAgainst\":0,\"countdownPeriod\":57600,\"createdAt\":{\"_seconds\":1618821602,\"_nanoseconds\":511000000},\"commonId\":\"b1b94181-adb4-4bb4-ba9d-6fed51f9843e\",\"quietEndingPeriod\":3600,\"votes\":[],\"join\":{\"payments\":[],\"funding\":0,\"fundingType\":\"one-time\",\"ip\":\"2a02:ed0:537b:9400:183c:b0c0:67ae:cf7c\"},\"proposerId\":\"11j4NvvZ4kMRf4BFBUHdbRiXKMp1\",\"id\":\"bd92e884-65dd-4aa0-8802-e43e1a62ef22\",\"type\":\"join\",\"state\":\"failed\",\"description\":{\"links\":[],\"description\":\"Let me in\"},\"votesFor\":0}',\n join: {\n create: {\n id: 'bd92e884-65dd-4aa0-8802-e43e1a62ef22',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: 'bd92e884-65dd-4aa0-8802-e43e1a62ef22',\n common: {\n connect: {\n id: 'b1b94181-adb4-4bb4-ba9d-6fed51f9843e'\n }\n },\n user: {\n connect: {\n id: '11j4NvvZ4kMRf4BFBUHdbRiXKMp1'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Let me in',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '2a02:ed0:537b:9400:183c:b0c0:67ae:cf7c',\n expiresAt: new Date('2021-04-20T00:40:02.511Z'),\n votesFor: 0,\n votesAgainst: 0,\n importedFrom: '{\"updatedAt\":{\"_seconds\":1618879500,\"_nanoseconds\":553999000},\"votesAgainst\":0,\"countdownPeriod\":57600,\"createdAt\":{\"_seconds\":1618821602,\"_nanoseconds\":511000000},\"commonId\":\"b1b94181-adb4-4bb4-ba9d-6fed51f9843e\",\"quietEndingPeriod\":3600,\"votes\":[],\"join\":{\"payments\":[],\"funding\":0,\"fundingType\":\"one-time\",\"ip\":\"2a02:ed0:537b:9400:183c:b0c0:67ae:cf7c\"},\"proposerId\":\"11j4NvvZ4kMRf4BFBUHdbRiXKMp1\",\"id\":\"bd92e884-65dd-4aa0-8802-e43e1a62ef22\",\"type\":\"join\",\"state\":\"failed\",\"description\":{\"links\":[],\"description\":\"Let me in\"},\"votesFor\":0}',\n join: {\n create: {\n id: 'bd92e884-65dd-4aa0-8802-e43e1a62ef22',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "votes": [ + { + "voterId": "2HM9WnVvr9aDYbckjCo4cIDjncY2", + "voteOutcome": "approved", + "voteId": "f9419f4c-5da6-4512-90ff-04378e71c594" + } + ], + "proposerId": "tPfZmRJnQjdnXIlgMZyfphEat3n2", + "commonId": "004abe8d-1006-4b63-9e7a-5d824c4fb1fd", + "countdownPeriod": 57600, + "createdAt": { + "_seconds": 1615397597, + "_nanoseconds": 992000000 + }, + "votesAgainst": 0, + "votesFor": 1, + "quietEndingPeriod": 3600, + "updatedAt": { + "_seconds": 1615455301, + "_nanoseconds": 5000000 + }, + "description": { + "description": "Alex", + "links": [] + }, + "state": "passed", + "type": "join", + "id": "c391e2dc-4c67-45ff-b0be-be44ee122f7d", + "join": { + "ip": "141.226.243.144", + "funding": 0, + "fundingType": "one-time", + "payments": [] + } + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: 'c391e2dc-4c67-45ff-b0be-be44ee122f7d',\n common: {\n connect: {\n id: '004abe8d-1006-4b63-9e7a-5d824c4fb1fd'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: 'tPfZmRJnQjdnXIlgMZyfphEat3n2',\n commonId: '004abe8d-1006-4b63-9e7a-5d824c4fb1fd'\n }\n }\n },\n user: {\n connect: {\n id: 'tPfZmRJnQjdnXIlgMZyfphEat3n2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Alex',\n files: [],\n images: [],\n links: [],\n state: 'Accepted',\n ipAddress: '141.226.243.144',\n expiresAt: new Date('2021-03-11T09:33:17.992Z'),\n votesFor: 1,\n votesAgainst: 0,\n importedFrom: '{\"votes\":[{\"voterId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\",\"voteOutcome\":\"approved\",\"voteId\":\"f9419f4c-5da6-4512-90ff-04378e71c594\"}],\"proposerId\":\"tPfZmRJnQjdnXIlgMZyfphEat3n2\",\"commonId\":\"004abe8d-1006-4b63-9e7a-5d824c4fb1fd\",\"countdownPeriod\":57600,\"createdAt\":{\"_seconds\":1615397597,\"_nanoseconds\":992000000},\"votesAgainst\":0,\"votesFor\":1,\"quietEndingPeriod\":3600,\"updatedAt\":{\"_seconds\":1615455301,\"_nanoseconds\":5000000},\"description\":{\"description\":\"Alex\",\"links\":[]},\"state\":\"passed\",\"type\":\"join\",\"id\":\"c391e2dc-4c67-45ff-b0be-be44ee122f7d\",\"join\":{\"ip\":\"141.226.243.144\",\"funding\":0,\"fundingType\":\"one-time\",\"payments\":[]}}',\n join: {\n create: {\n id: 'c391e2dc-4c67-45ff-b0be-be44ee122f7d',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: 'c391e2dc-4c67-45ff-b0be-be44ee122f7d',\n common: {\n connect: {\n id: '004abe8d-1006-4b63-9e7a-5d824c4fb1fd'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: 'tPfZmRJnQjdnXIlgMZyfphEat3n2',\n commonId: '004abe8d-1006-4b63-9e7a-5d824c4fb1fd'\n }\n }\n },\n user: {\n connect: {\n id: 'tPfZmRJnQjdnXIlgMZyfphEat3n2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Alex',\n files: [],\n images: [],\n links: [],\n state: 'Accepted',\n ipAddress: '141.226.243.144',\n expiresAt: new Date('2021-03-11T09:33:17.992Z'),\n votesFor: 1,\n votesAgainst: 0,\n importedFrom: '{\"votes\":[{\"voterId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\",\"voteOutcome\":\"approved\",\"voteId\":\"f9419f4c-5da6-4512-90ff-04378e71c594\"}],\"proposerId\":\"tPfZmRJnQjdnXIlgMZyfphEat3n2\",\"commonId\":\"004abe8d-1006-4b63-9e7a-5d824c4fb1fd\",\"countdownPeriod\":57600,\"createdAt\":{\"_seconds\":1615397597,\"_nanoseconds\":992000000},\"votesAgainst\":0,\"votesFor\":1,\"quietEndingPeriod\":3600,\"updatedAt\":{\"_seconds\":1615455301,\"_nanoseconds\":5000000},\"description\":{\"description\":\"Alex\",\"links\":[]},\"state\":\"passed\",\"type\":\"join\",\"id\":\"c391e2dc-4c67-45ff-b0be-be44ee122f7d\",\"join\":{\"ip\":\"141.226.243.144\",\"funding\":0,\"fundingType\":\"one-time\",\"payments\":[]}}',\n join: {\n create: {\n id: 'c391e2dc-4c67-45ff-b0be-be44ee122f7d',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposerId": "Wz0ZgOvKnafrjLDeAeWqx182uBq2", + "type": "join", + "state": "failed", + "quietEndingPeriod": 3600, + "updatedAt": { + "_seconds": 1616114400, + "_nanoseconds": 492000000 + }, + "countdownPeriod": 57600, + "description": { + "description": "Request", + "links": [] + }, + "votesAgainst": 0, + "votesFor": 0, + "votes": [], + "createdAt": { + "_seconds": 1616056564, + "_nanoseconds": 353000000 + }, + "join": { + "fundingType": "one-time", + "ip": "178.120.61.209", + "payments": [], + "funding": 0 + }, + "id": "c8af9c9a-4fd3-482e-8c80-6d414d666e63", + "commonId": "8d1d4dd3-ccf4-48f8-90f2-01f8a9448534" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: 'c8af9c9a-4fd3-482e-8c80-6d414d666e63',\n common: {\n connect: {\n id: '8d1d4dd3-ccf4-48f8-90f2-01f8a9448534'\n }\n },\n user: {\n connect: {\n id: 'Wz0ZgOvKnafrjLDeAeWqx182uBq2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Request',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '178.120.61.209',\n expiresAt: new Date('2021-03-19T00:36:04.353Z'),\n votesFor: 0,\n votesAgainst: 0,\n importedFrom: '{\"proposerId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"type\":\"join\",\"state\":\"failed\",\"quietEndingPeriod\":3600,\"updatedAt\":{\"_seconds\":1616114400,\"_nanoseconds\":492000000},\"countdownPeriod\":57600,\"description\":{\"description\":\"Request\",\"links\":[]},\"votesAgainst\":0,\"votesFor\":0,\"votes\":[],\"createdAt\":{\"_seconds\":1616056564,\"_nanoseconds\":353000000},\"join\":{\"fundingType\":\"one-time\",\"ip\":\"178.120.61.209\",\"payments\":[],\"funding\":0},\"id\":\"c8af9c9a-4fd3-482e-8c80-6d414d666e63\",\"commonId\":\"8d1d4dd3-ccf4-48f8-90f2-01f8a9448534\"}',\n join: {\n create: {\n id: 'c8af9c9a-4fd3-482e-8c80-6d414d666e63',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: 'c8af9c9a-4fd3-482e-8c80-6d414d666e63',\n common: {\n connect: {\n id: '8d1d4dd3-ccf4-48f8-90f2-01f8a9448534'\n }\n },\n user: {\n connect: {\n id: 'Wz0ZgOvKnafrjLDeAeWqx182uBq2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Request',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '178.120.61.209',\n expiresAt: new Date('2021-03-19T00:36:04.353Z'),\n votesFor: 0,\n votesAgainst: 0,\n importedFrom: '{\"proposerId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"type\":\"join\",\"state\":\"failed\",\"quietEndingPeriod\":3600,\"updatedAt\":{\"_seconds\":1616114400,\"_nanoseconds\":492000000},\"countdownPeriod\":57600,\"description\":{\"description\":\"Request\",\"links\":[]},\"votesAgainst\":0,\"votesFor\":0,\"votes\":[],\"createdAt\":{\"_seconds\":1616056564,\"_nanoseconds\":353000000},\"join\":{\"fundingType\":\"one-time\",\"ip\":\"178.120.61.209\",\"payments\":[],\"funding\":0},\"id\":\"c8af9c9a-4fd3-482e-8c80-6d414d666e63\",\"commonId\":\"8d1d4dd3-ccf4-48f8-90f2-01f8a9448534\"}',\n join: {\n create: {\n id: 'c8af9c9a-4fd3-482e-8c80-6d414d666e63',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "countdownPeriod": 57600, + "votes": [ + { + "voteId": "92d4ede6-7719-427c-86f8-c278e2c1cf02", + "voteOutcome": "approved", + "voterId": "2HM9WnVvr9aDYbckjCo4cIDjncY2" + } + ], + "updatedAt": { + "_seconds": 1614929748, + "_nanoseconds": 860000000 + }, + "quietEndingPeriod": 3600, + "createdAt": { + "_seconds": 1614929712, + "_nanoseconds": 327000000 + }, + "type": "join", + "join": { + "ip": "46.56.229.118", + "funding": 0, + "fundingType": "one-time", + "payments": [] + }, + "id": "d4243f42-8873-4563-b6de-f8bf55c54213", + "commonId": "004abe8d-1006-4b63-9e7a-5d824c4fb1fd", + "description": { + "description": "Hgj", + "links": [] + }, + "votesFor": 1, + "state": "passed", + "proposerId": "Wz0ZgOvKnafrjLDeAeWqx182uBq2", + "votesAgainst": 0 + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: 'd4243f42-8873-4563-b6de-f8bf55c54213',\n common: {\n connect: {\n id: '004abe8d-1006-4b63-9e7a-5d824c4fb1fd'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: 'Wz0ZgOvKnafrjLDeAeWqx182uBq2',\n commonId: '004abe8d-1006-4b63-9e7a-5d824c4fb1fd'\n }\n }\n },\n user: {\n connect: {\n id: 'Wz0ZgOvKnafrjLDeAeWqx182uBq2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Hgj',\n files: [],\n images: [],\n links: [],\n state: 'Accepted',\n ipAddress: '46.56.229.118',\n expiresAt: new Date('2021-03-05T23:35:12.327Z'),\n votesFor: 1,\n votesAgainst: 0,\n importedFrom: '{\"countdownPeriod\":57600,\"votes\":[{\"voteId\":\"92d4ede6-7719-427c-86f8-c278e2c1cf02\",\"voteOutcome\":\"approved\",\"voterId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\"}],\"updatedAt\":{\"_seconds\":1614929748,\"_nanoseconds\":860000000},\"quietEndingPeriod\":3600,\"createdAt\":{\"_seconds\":1614929712,\"_nanoseconds\":327000000},\"type\":\"join\",\"join\":{\"ip\":\"46.56.229.118\",\"funding\":0,\"fundingType\":\"one-time\",\"payments\":[]},\"id\":\"d4243f42-8873-4563-b6de-f8bf55c54213\",\"commonId\":\"004abe8d-1006-4b63-9e7a-5d824c4fb1fd\",\"description\":{\"description\":\"Hgj\",\"links\":[]},\"votesFor\":1,\"state\":\"passed\",\"proposerId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"votesAgainst\":0}',\n join: {\n create: {\n id: 'd4243f42-8873-4563-b6de-f8bf55c54213',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: 'd4243f42-8873-4563-b6de-f8bf55c54213',\n common: {\n connect: {\n id: '004abe8d-1006-4b63-9e7a-5d824c4fb1fd'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: 'Wz0ZgOvKnafrjLDeAeWqx182uBq2',\n commonId: '004abe8d-1006-4b63-9e7a-5d824c4fb1fd'\n }\n }\n },\n user: {\n connect: {\n id: 'Wz0ZgOvKnafrjLDeAeWqx182uBq2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Hgj',\n files: [],\n images: [],\n links: [],\n state: 'Accepted',\n ipAddress: '46.56.229.118',\n expiresAt: new Date('2021-03-05T23:35:12.327Z'),\n votesFor: 1,\n votesAgainst: 0,\n importedFrom: '{\"countdownPeriod\":57600,\"votes\":[{\"voteId\":\"92d4ede6-7719-427c-86f8-c278e2c1cf02\",\"voteOutcome\":\"approved\",\"voterId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\"}],\"updatedAt\":{\"_seconds\":1614929748,\"_nanoseconds\":860000000},\"quietEndingPeriod\":3600,\"createdAt\":{\"_seconds\":1614929712,\"_nanoseconds\":327000000},\"type\":\"join\",\"join\":{\"ip\":\"46.56.229.118\",\"funding\":0,\"fundingType\":\"one-time\",\"payments\":[]},\"id\":\"d4243f42-8873-4563-b6de-f8bf55c54213\",\"commonId\":\"004abe8d-1006-4b63-9e7a-5d824c4fb1fd\",\"description\":{\"description\":\"Hgj\",\"links\":[]},\"votesFor\":1,\"state\":\"passed\",\"proposerId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"votesAgainst\":0}',\n join: {\n create: {\n id: 'd4243f42-8873-4563-b6de-f8bf55c54213',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "quietEndingPeriod": 3600, + "proposerId": "WKODFO6A3VMqWLYE2rrmrSGRrKF2", + "description": { + "description": "F\nT\nE\nG\nD\nS\nT\nG\nT\nE\nD\nF\nG\nT", + "links": [ + { + "value": "http://vica.com", + "title": "Grjdbb" + } + ] + }, + "id": "d9c896b9-59cc-4fbe-ad9e-02982b33865c", + "votesFor": 1, + "updatedAt": { + "_seconds": 1615984524, + "_nanoseconds": 97000000 + }, + "createdAt": { + "_seconds": 1615984368, + "_nanoseconds": 946000000 + }, + "commonId": "82bfdd51-6da9-447a-9eb4-f8c9b9d01cbd", + "votes": [ + { + "voteId": "61d5abb7-4e9f-4a00-9abc-bb9a6b70f849", + "voteOutcome": "approved", + "voterId": "Wz0ZgOvKnafrjLDeAeWqx182uBq2" + } + ], + "type": "join", + "join": { + "fundingType": "one-time", + "ip": "2a02:bf0:10f:e272:3009:7dfc:c060:67bd", + "payments": [], + "funding": 0 + }, + "votesAgainst": 0, + "state": "passed", + "countdownPeriod": 57600 + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: 'd9c896b9-59cc-4fbe-ad9e-02982b33865c',\n common: {\n connect: {\n id: '82bfdd51-6da9-447a-9eb4-f8c9b9d01cbd'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: 'WKODFO6A3VMqWLYE2rrmrSGRrKF2',\n commonId: '82bfdd51-6da9-447a-9eb4-f8c9b9d01cbd'\n }\n }\n },\n user: {\n connect: {\n id: 'WKODFO6A3VMqWLYE2rrmrSGRrKF2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'F\\nT\\nE\\nG\\nD\\nS\\nT\\nG\\nT\\nE\\nD\\nF\\nG\\nT',\n files: [],\n images: [],\n links: [\n {\n title: 'Grjdbb',\n url: 'http://vica.com'\n }\n ],\n state: 'Accepted',\n ipAddress: '2a02:bf0:10f:e272:3009:7dfc:c060:67bd',\n expiresAt: new Date('2021-03-18T04:32:48.946Z'),\n votesFor: 1,\n votesAgainst: 0,\n importedFrom: '{\"quietEndingPeriod\":3600,\"proposerId\":\"WKODFO6A3VMqWLYE2rrmrSGRrKF2\",\"description\":{\"description\":\"F\\nT\\nE\\nG\\nD\\nS\\nT\\nG\\nT\\nE\\nD\\nF\\nG\\nT\",\"links\":[{\"value\":\"http://vica.com\",\"title\":\"Grjdbb\"}]},\"id\":\"d9c896b9-59cc-4fbe-ad9e-02982b33865c\",\"votesFor\":1,\"updatedAt\":{\"_seconds\":1615984524,\"_nanoseconds\":97000000},\"createdAt\":{\"_seconds\":1615984368,\"_nanoseconds\":946000000},\"commonId\":\"82bfdd51-6da9-447a-9eb4-f8c9b9d01cbd\",\"votes\":[{\"voteId\":\"61d5abb7-4e9f-4a00-9abc-bb9a6b70f849\",\"voteOutcome\":\"approved\",\"voterId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\"}],\"type\":\"join\",\"join\":{\"fundingType\":\"one-time\",\"ip\":\"2a02:bf0:10f:e272:3009:7dfc:c060:67bd\",\"payments\":[],\"funding\":0},\"votesAgainst\":0,\"state\":\"passed\",\"countdownPeriod\":57600}',\n join: {\n create: {\n id: 'd9c896b9-59cc-4fbe-ad9e-02982b33865c',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: 'd9c896b9-59cc-4fbe-ad9e-02982b33865c',\n common: {\n connect: {\n id: '82bfdd51-6da9-447a-9eb4-f8c9b9d01cbd'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: 'WKODFO6A3VMqWLYE2rrmrSGRrKF2',\n commonId: '82bfdd51-6da9-447a-9eb4-f8c9b9d01cbd'\n }\n }\n },\n user: {\n connect: {\n id: 'WKODFO6A3VMqWLYE2rrmrSGRrKF2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'F\\nT\\nE\\nG\\nD\\nS\\nT\\nG\\nT\\nE\\nD\\nF\\nG\\nT',\n files: [],\n images: [],\n links: [\n {\n title: 'Grjdbb',\n url: 'http://vica.com'\n }\n ],\n state: 'Accepted',\n ipAddress: '2a02:bf0:10f:e272:3009:7dfc:c060:67bd',\n expiresAt: new Date('2021-03-18T04:32:48.946Z'),\n votesFor: 1,\n votesAgainst: 0,\n importedFrom: '{\"quietEndingPeriod\":3600,\"proposerId\":\"WKODFO6A3VMqWLYE2rrmrSGRrKF2\",\"description\":{\"description\":\"F\\nT\\nE\\nG\\nD\\nS\\nT\\nG\\nT\\nE\\nD\\nF\\nG\\nT\",\"links\":[{\"value\":\"http://vica.com\",\"title\":\"Grjdbb\"}]},\"id\":\"d9c896b9-59cc-4fbe-ad9e-02982b33865c\",\"votesFor\":1,\"updatedAt\":{\"_seconds\":1615984524,\"_nanoseconds\":97000000},\"createdAt\":{\"_seconds\":1615984368,\"_nanoseconds\":946000000},\"commonId\":\"82bfdd51-6da9-447a-9eb4-f8c9b9d01cbd\",\"votes\":[{\"voteId\":\"61d5abb7-4e9f-4a00-9abc-bb9a6b70f849\",\"voteOutcome\":\"approved\",\"voterId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\"}],\"type\":\"join\",\"join\":{\"fundingType\":\"one-time\",\"ip\":\"2a02:bf0:10f:e272:3009:7dfc:c060:67bd\",\"payments\":[],\"funding\":0},\"votesAgainst\":0,\"state\":\"passed\",\"countdownPeriod\":57600}',\n join: {\n create: {\n id: 'd9c896b9-59cc-4fbe-ad9e-02982b33865c',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "votesFor": 0, + "votes": [], + "proposerId": "h59V0do13qhpeH9xDyoLaCZucTm1", + "createdAt": { + "_seconds": 1614689951, + "_nanoseconds": 993000000 + }, + "votesAgainst": 0, + "id": "daa8def4-40ea-4590-b5c1-d1ca5a6ae63f", + "quietEndingPeriod": 3600, + "type": "join", + "countdownPeriod": 57600, + "description": { + "links": [], + "description": "Sdsddssdsddssd" + }, + "updatedAt": { + "_seconds": 1614747601, + "_nanoseconds": 31000000 + }, + "state": "failed", + "commonId": "004abe8d-1006-4b63-9e7a-5d824c4fb1fd", + "join": { + "fundingType": "one-time", + "payments": [], + "ip": "79.159.147.22", + "funding": 0 + } + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: 'daa8def4-40ea-4590-b5c1-d1ca5a6ae63f',\n common: {\n connect: {\n id: '004abe8d-1006-4b63-9e7a-5d824c4fb1fd'\n }\n },\n user: {\n connect: {\n id: 'h59V0do13qhpeH9xDyoLaCZucTm1'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Sdsddssdsddssd',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '79.159.147.22',\n expiresAt: new Date('2021-03-03T04:59:11.993Z'),\n votesFor: 0,\n votesAgainst: 0,\n importedFrom: '{\"votesFor\":0,\"votes\":[],\"proposerId\":\"h59V0do13qhpeH9xDyoLaCZucTm1\",\"createdAt\":{\"_seconds\":1614689951,\"_nanoseconds\":993000000},\"votesAgainst\":0,\"id\":\"daa8def4-40ea-4590-b5c1-d1ca5a6ae63f\",\"quietEndingPeriod\":3600,\"type\":\"join\",\"countdownPeriod\":57600,\"description\":{\"links\":[],\"description\":\"Sdsddssdsddssd\"},\"updatedAt\":{\"_seconds\":1614747601,\"_nanoseconds\":31000000},\"state\":\"failed\",\"commonId\":\"004abe8d-1006-4b63-9e7a-5d824c4fb1fd\",\"join\":{\"fundingType\":\"one-time\",\"payments\":[],\"ip\":\"79.159.147.22\",\"funding\":0}}',\n join: {\n create: {\n id: 'daa8def4-40ea-4590-b5c1-d1ca5a6ae63f',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: 'daa8def4-40ea-4590-b5c1-d1ca5a6ae63f',\n common: {\n connect: {\n id: '004abe8d-1006-4b63-9e7a-5d824c4fb1fd'\n }\n },\n user: {\n connect: {\n id: 'h59V0do13qhpeH9xDyoLaCZucTm1'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Sdsddssdsddssd',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '79.159.147.22',\n expiresAt: new Date('2021-03-03T04:59:11.993Z'),\n votesFor: 0,\n votesAgainst: 0,\n importedFrom: '{\"votesFor\":0,\"votes\":[],\"proposerId\":\"h59V0do13qhpeH9xDyoLaCZucTm1\",\"createdAt\":{\"_seconds\":1614689951,\"_nanoseconds\":993000000},\"votesAgainst\":0,\"id\":\"daa8def4-40ea-4590-b5c1-d1ca5a6ae63f\",\"quietEndingPeriod\":3600,\"type\":\"join\",\"countdownPeriod\":57600,\"description\":{\"links\":[],\"description\":\"Sdsddssdsddssd\"},\"updatedAt\":{\"_seconds\":1614747601,\"_nanoseconds\":31000000},\"state\":\"failed\",\"commonId\":\"004abe8d-1006-4b63-9e7a-5d824c4fb1fd\",\"join\":{\"fundingType\":\"one-time\",\"payments\":[],\"ip\":\"79.159.147.22\",\"funding\":0}}',\n join: {\n create: {\n id: 'daa8def4-40ea-4590-b5c1-d1ca5a6ae63f',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "quietEndingPeriod": 3600, + "votesFor": 0, + "votesAgainst": 0, + "type": "join", + "createdAt": { + "_seconds": 1618989969, + "_nanoseconds": 43000000 + }, + "updatedAt": { + "_seconds": 1619047800, + "_nanoseconds": 401000000 + }, + "id": "dd0209e4-259e-48dd-8859-55aab190bb44", + "proposerId": "2HM9WnVvr9aDYbckjCo4cIDjncY2", + "votes": [], + "countdownPeriod": 57600, + "join": { + "ip": "178.120.3.148", + "funding": 0, + "fundingType": "one-time", + "payments": [] + }, + "state": "failed", + "commonId": "e5f979ac-301f-4058-a036-5314bbc761cf", + "description": { + "links": [], + "description": "Bush’s" + } + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: 'dd0209e4-259e-48dd-8859-55aab190bb44',\n common: {\n connect: {\n id: 'e5f979ac-301f-4058-a036-5314bbc761cf'\n }\n },\n user: {\n connect: {\n id: '2HM9WnVvr9aDYbckjCo4cIDjncY2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Bush’s',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '178.120.3.148',\n expiresAt: new Date('2021-04-21T23:26:09.043Z'),\n votesFor: 0,\n votesAgainst: 0,\n importedFrom: '{\"quietEndingPeriod\":3600,\"votesFor\":0,\"votesAgainst\":0,\"type\":\"join\",\"createdAt\":{\"_seconds\":1618989969,\"_nanoseconds\":43000000},\"updatedAt\":{\"_seconds\":1619047800,\"_nanoseconds\":401000000},\"id\":\"dd0209e4-259e-48dd-8859-55aab190bb44\",\"proposerId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\",\"votes\":[],\"countdownPeriod\":57600,\"join\":{\"ip\":\"178.120.3.148\",\"funding\":0,\"fundingType\":\"one-time\",\"payments\":[]},\"state\":\"failed\",\"commonId\":\"e5f979ac-301f-4058-a036-5314bbc761cf\",\"description\":{\"links\":[],\"description\":\"Bush’s\"}}',\n join: {\n create: {\n id: 'dd0209e4-259e-48dd-8859-55aab190bb44',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: 'dd0209e4-259e-48dd-8859-55aab190bb44',\n common: {\n connect: {\n id: 'e5f979ac-301f-4058-a036-5314bbc761cf'\n }\n },\n user: {\n connect: {\n id: '2HM9WnVvr9aDYbckjCo4cIDjncY2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Bush’s',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '178.120.3.148',\n expiresAt: new Date('2021-04-21T23:26:09.043Z'),\n votesFor: 0,\n votesAgainst: 0,\n importedFrom: '{\"quietEndingPeriod\":3600,\"votesFor\":0,\"votesAgainst\":0,\"type\":\"join\",\"createdAt\":{\"_seconds\":1618989969,\"_nanoseconds\":43000000},\"updatedAt\":{\"_seconds\":1619047800,\"_nanoseconds\":401000000},\"id\":\"dd0209e4-259e-48dd-8859-55aab190bb44\",\"proposerId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\",\"votes\":[],\"countdownPeriod\":57600,\"join\":{\"ip\":\"178.120.3.148\",\"funding\":0,\"fundingType\":\"one-time\",\"payments\":[]},\"state\":\"failed\",\"commonId\":\"e5f979ac-301f-4058-a036-5314bbc761cf\",\"description\":{\"links\":[],\"description\":\"Bush’s\"}}',\n join: {\n create: {\n id: 'dd0209e4-259e-48dd-8859-55aab190bb44',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "quietEndingPeriod": 3600, + "votesAgainst": 0, + "countdownPeriod": 57600, + "commonId": "858836dc-776d-4b5d-a999-4cc154f81e11", + "votesFor": 3, + "votes": [ + { + "voterId": "tPfZmRJnQjdnXIlgMZyfphEat3n2", + "voteId": "55d3708b-58a5-4187-bc1c-bf48e2147bc2", + "voteOutcome": "approved" + }, + { + "voterId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1", + "voteId": "df2eaff3-3668-476a-bdc6-0bbe82145f06", + "voteOutcome": "approved" + }, + { + "voteOutcome": "approved", + "voterId": "skBkfQh8E1f4eOGBSVLaiuJ097v1", + "voteId": "e0455b80-d074-4ea6-bb89-1e32a95dc5df" + } + ], + "proposerId": "RN4V4T2Z4gf2ld9QhwanrQbSnP23", + "description": { + "links": [], + "description": "Вика" + }, + "updatedAt": { + "_seconds": 1615458408, + "_nanoseconds": 356000000 + }, + "createdAt": { + "_seconds": 1615457791, + "_nanoseconds": 380000000 + }, + "type": "join", + "join": { + "ip": "134.17.176.64", + "payments": [], + "funding": 0, + "fundingType": "one-time" + }, + "id": "def25bb1-e815-40bb-bd66-cfbfa76b89f5", + "state": "passed" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: 'def25bb1-e815-40bb-bd66-cfbfa76b89f5',\n common: {\n connect: {\n id: '858836dc-776d-4b5d-a999-4cc154f81e11'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: 'RN4V4T2Z4gf2ld9QhwanrQbSnP23',\n commonId: '858836dc-776d-4b5d-a999-4cc154f81e11'\n }\n }\n },\n user: {\n connect: {\n id: 'RN4V4T2Z4gf2ld9QhwanrQbSnP23'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Вика',\n files: [],\n images: [],\n links: [],\n state: 'Accepted',\n ipAddress: '134.17.176.64',\n expiresAt: new Date('2021-03-12T02:16:31.380Z'),\n votesFor: 3,\n votesAgainst: 0,\n importedFrom: '{\"quietEndingPeriod\":3600,\"votesAgainst\":0,\"countdownPeriod\":57600,\"commonId\":\"858836dc-776d-4b5d-a999-4cc154f81e11\",\"votesFor\":3,\"votes\":[{\"voterId\":\"tPfZmRJnQjdnXIlgMZyfphEat3n2\",\"voteId\":\"55d3708b-58a5-4187-bc1c-bf48e2147bc2\",\"voteOutcome\":\"approved\"},{\"voterId\":\"11j4NvvZ4kMRf4BFBUHdbRiXKMp1\",\"voteId\":\"df2eaff3-3668-476a-bdc6-0bbe82145f06\",\"voteOutcome\":\"approved\"},{\"voteOutcome\":\"approved\",\"voterId\":\"skBkfQh8E1f4eOGBSVLaiuJ097v1\",\"voteId\":\"e0455b80-d074-4ea6-bb89-1e32a95dc5df\"}],\"proposerId\":\"RN4V4T2Z4gf2ld9QhwanrQbSnP23\",\"description\":{\"links\":[],\"description\":\"Вика\"},\"updatedAt\":{\"_seconds\":1615458408,\"_nanoseconds\":356000000},\"createdAt\":{\"_seconds\":1615457791,\"_nanoseconds\":380000000},\"type\":\"join\",\"join\":{\"ip\":\"134.17.176.64\",\"payments\":[],\"funding\":0,\"fundingType\":\"one-time\"},\"id\":\"def25bb1-e815-40bb-bd66-cfbfa76b89f5\",\"state\":\"passed\"}',\n join: {\n create: {\n id: 'def25bb1-e815-40bb-bd66-cfbfa76b89f5',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: 'def25bb1-e815-40bb-bd66-cfbfa76b89f5',\n common: {\n connect: {\n id: '858836dc-776d-4b5d-a999-4cc154f81e11'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: 'RN4V4T2Z4gf2ld9QhwanrQbSnP23',\n commonId: '858836dc-776d-4b5d-a999-4cc154f81e11'\n }\n }\n },\n user: {\n connect: {\n id: 'RN4V4T2Z4gf2ld9QhwanrQbSnP23'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Вика',\n files: [],\n images: [],\n links: [],\n state: 'Accepted',\n ipAddress: '134.17.176.64',\n expiresAt: new Date('2021-03-12T02:16:31.380Z'),\n votesFor: 3,\n votesAgainst: 0,\n importedFrom: '{\"quietEndingPeriod\":3600,\"votesAgainst\":0,\"countdownPeriod\":57600,\"commonId\":\"858836dc-776d-4b5d-a999-4cc154f81e11\",\"votesFor\":3,\"votes\":[{\"voterId\":\"tPfZmRJnQjdnXIlgMZyfphEat3n2\",\"voteId\":\"55d3708b-58a5-4187-bc1c-bf48e2147bc2\",\"voteOutcome\":\"approved\"},{\"voterId\":\"11j4NvvZ4kMRf4BFBUHdbRiXKMp1\",\"voteId\":\"df2eaff3-3668-476a-bdc6-0bbe82145f06\",\"voteOutcome\":\"approved\"},{\"voteOutcome\":\"approved\",\"voterId\":\"skBkfQh8E1f4eOGBSVLaiuJ097v1\",\"voteId\":\"e0455b80-d074-4ea6-bb89-1e32a95dc5df\"}],\"proposerId\":\"RN4V4T2Z4gf2ld9QhwanrQbSnP23\",\"description\":{\"links\":[],\"description\":\"Вика\"},\"updatedAt\":{\"_seconds\":1615458408,\"_nanoseconds\":356000000},\"createdAt\":{\"_seconds\":1615457791,\"_nanoseconds\":380000000},\"type\":\"join\",\"join\":{\"ip\":\"134.17.176.64\",\"payments\":[],\"funding\":0,\"fundingType\":\"one-time\"},\"id\":\"def25bb1-e815-40bb-bd66-cfbfa76b89f5\",\"state\":\"passed\"}',\n join: {\n create: {\n id: 'def25bb1-e815-40bb-bd66-cfbfa76b89f5',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "description": { + "description": "Que", + "links": [] + }, + "quietEndingPeriod": 3600, + "join": { + "ip": "178.120.3.148", + "payments": [], + "funding": 0, + "fundingType": "one-time" + }, + "votes": [ + { + "voteId": "db626fec-44e2-480c-94ce-0140a44aa413", + "voterId": "Wz0ZgOvKnafrjLDeAeWqx182uBq2", + "voteOutcome": "rejected" + } + ], + "type": "join", + "id": "e0f815bc-e21b-45b8-8cc5-b9c3aac82dd1", + "commonId": "df03a155-7908-44a2-9b08-f29082d96247", + "votesFor": 0, + "updatedAt": { + "_seconds": 1618850512, + "_nanoseconds": 788000000 + }, + "votesAgainst": 1, + "state": "failed", + "createdAt": { + "_seconds": 1618850407, + "_nanoseconds": 947000000 + }, + "proposerId": "2HM9WnVvr9aDYbckjCo4cIDjncY2", + "countdownPeriod": 57600 + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: 'e0f815bc-e21b-45b8-8cc5-b9c3aac82dd1',\n common: {\n connect: {\n id: 'df03a155-7908-44a2-9b08-f29082d96247'\n }\n },\n user: {\n connect: {\n id: '2HM9WnVvr9aDYbckjCo4cIDjncY2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Que',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '178.120.3.148',\n expiresAt: new Date('2021-04-20T08:40:07.947Z'),\n votesFor: 0,\n votesAgainst: 1,\n importedFrom: '{\"description\":{\"description\":\"Que\",\"links\":[]},\"quietEndingPeriod\":3600,\"join\":{\"ip\":\"178.120.3.148\",\"payments\":[],\"funding\":0,\"fundingType\":\"one-time\"},\"votes\":[{\"voteId\":\"db626fec-44e2-480c-94ce-0140a44aa413\",\"voterId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"voteOutcome\":\"rejected\"}],\"type\":\"join\",\"id\":\"e0f815bc-e21b-45b8-8cc5-b9c3aac82dd1\",\"commonId\":\"df03a155-7908-44a2-9b08-f29082d96247\",\"votesFor\":0,\"updatedAt\":{\"_seconds\":1618850512,\"_nanoseconds\":788000000},\"votesAgainst\":1,\"state\":\"failed\",\"createdAt\":{\"_seconds\":1618850407,\"_nanoseconds\":947000000},\"proposerId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\",\"countdownPeriod\":57600}',\n join: {\n create: {\n id: 'e0f815bc-e21b-45b8-8cc5-b9c3aac82dd1',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: 'e0f815bc-e21b-45b8-8cc5-b9c3aac82dd1',\n common: {\n connect: {\n id: 'df03a155-7908-44a2-9b08-f29082d96247'\n }\n },\n user: {\n connect: {\n id: '2HM9WnVvr9aDYbckjCo4cIDjncY2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Que',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '178.120.3.148',\n expiresAt: new Date('2021-04-20T08:40:07.947Z'),\n votesFor: 0,\n votesAgainst: 1,\n importedFrom: '{\"description\":{\"description\":\"Que\",\"links\":[]},\"quietEndingPeriod\":3600,\"join\":{\"ip\":\"178.120.3.148\",\"payments\":[],\"funding\":0,\"fundingType\":\"one-time\"},\"votes\":[{\"voteId\":\"db626fec-44e2-480c-94ce-0140a44aa413\",\"voterId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"voteOutcome\":\"rejected\"}],\"type\":\"join\",\"id\":\"e0f815bc-e21b-45b8-8cc5-b9c3aac82dd1\",\"commonId\":\"df03a155-7908-44a2-9b08-f29082d96247\",\"votesFor\":0,\"updatedAt\":{\"_seconds\":1618850512,\"_nanoseconds\":788000000},\"votesAgainst\":1,\"state\":\"failed\",\"createdAt\":{\"_seconds\":1618850407,\"_nanoseconds\":947000000},\"proposerId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\",\"countdownPeriod\":57600}',\n join: {\n create: {\n id: 'e0f815bc-e21b-45b8-8cc5-b9c3aac82dd1',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "type": "join", + "proposerId": "2HM9WnVvr9aDYbckjCo4cIDjncY2", + "createdAt": { + "_seconds": 1617199089, + "_nanoseconds": 132000000 + }, + "join": { + "payments": [], + "fundingType": "one-time", + "funding": 0, + "ip": "178.120.55.200" + }, + "countdownPeriod": 57600, + "id": "e1bbb87a-73fa-4c1d-9254-91fcbe438cf5", + "updatedAt": { + "_seconds": 1617199126, + "_nanoseconds": 386000000 + }, + "votesFor": 0, + "commonId": "0644f463-4778-4233-8eac-22a1112b171f", + "votes": [ + { + "voterId": "Wz0ZgOvKnafrjLDeAeWqx182uBq2", + "voteOutcome": "rejected", + "voteId": "b2e14329-0acb-4d9c-b713-5be31199bd45" + } + ], + "votesAgainst": 1, + "description": { + "description": "Yo ", + "links": [] + }, + "state": "failed", + "quietEndingPeriod": 3600 + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: 'e1bbb87a-73fa-4c1d-9254-91fcbe438cf5',\n common: {\n connect: {\n id: '0644f463-4778-4233-8eac-22a1112b171f'\n }\n },\n user: {\n connect: {\n id: '2HM9WnVvr9aDYbckjCo4cIDjncY2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Yo ',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '178.120.55.200',\n expiresAt: new Date('2021-04-01T05:58:09.132Z'),\n votesFor: 0,\n votesAgainst: 1,\n importedFrom: '{\"type\":\"join\",\"proposerId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\",\"createdAt\":{\"_seconds\":1617199089,\"_nanoseconds\":132000000},\"join\":{\"payments\":[],\"fundingType\":\"one-time\",\"funding\":0,\"ip\":\"178.120.55.200\"},\"countdownPeriod\":57600,\"id\":\"e1bbb87a-73fa-4c1d-9254-91fcbe438cf5\",\"updatedAt\":{\"_seconds\":1617199126,\"_nanoseconds\":386000000},\"votesFor\":0,\"commonId\":\"0644f463-4778-4233-8eac-22a1112b171f\",\"votes\":[{\"voterId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"voteOutcome\":\"rejected\",\"voteId\":\"b2e14329-0acb-4d9c-b713-5be31199bd45\"}],\"votesAgainst\":1,\"description\":{\"description\":\"Yo \",\"links\":[]},\"state\":\"failed\",\"quietEndingPeriod\":3600}',\n join: {\n create: {\n id: 'e1bbb87a-73fa-4c1d-9254-91fcbe438cf5',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: 'e1bbb87a-73fa-4c1d-9254-91fcbe438cf5',\n common: {\n connect: {\n id: '0644f463-4778-4233-8eac-22a1112b171f'\n }\n },\n user: {\n connect: {\n id: '2HM9WnVvr9aDYbckjCo4cIDjncY2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Yo ',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '178.120.55.200',\n expiresAt: new Date('2021-04-01T05:58:09.132Z'),\n votesFor: 0,\n votesAgainst: 1,\n importedFrom: '{\"type\":\"join\",\"proposerId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\",\"createdAt\":{\"_seconds\":1617199089,\"_nanoseconds\":132000000},\"join\":{\"payments\":[],\"fundingType\":\"one-time\",\"funding\":0,\"ip\":\"178.120.55.200\"},\"countdownPeriod\":57600,\"id\":\"e1bbb87a-73fa-4c1d-9254-91fcbe438cf5\",\"updatedAt\":{\"_seconds\":1617199126,\"_nanoseconds\":386000000},\"votesFor\":0,\"commonId\":\"0644f463-4778-4233-8eac-22a1112b171f\",\"votes\":[{\"voterId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"voteOutcome\":\"rejected\",\"voteId\":\"b2e14329-0acb-4d9c-b713-5be31199bd45\"}],\"votesAgainst\":1,\"description\":{\"description\":\"Yo \",\"links\":[]},\"state\":\"failed\",\"quietEndingPeriod\":3600}',\n join: {\n create: {\n id: 'e1bbb87a-73fa-4c1d-9254-91fcbe438cf5',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "commonId": "c634475b-76a3-4620-b79d-853528e0ec2e", + "state": "failed", + "proposerId": "2HM9WnVvr9aDYbckjCo4cIDjncY2", + "countdownPeriod": 57600, + "id": "e2b4ace3-5460-48f9-b364-0666c81c3237", + "votes": [ + { + "voterId": "Wz0ZgOvKnafrjLDeAeWqx182uBq2", + "voteId": "3f37d330-361c-495a-888f-ab9b03dae491", + "voteOutcome": "rejected" + } + ], + "votesAgainst": 1, + "type": "join", + "updatedAt": { + "_seconds": 1618931435, + "_nanoseconds": 732000000 + }, + "createdAt": { + "_seconds": 1618910400, + "_nanoseconds": 199000000 + }, + "description": { + "links": [], + "description": "Bdudb" + }, + "quietEndingPeriod": 3600, + "votesFor": 0, + "join": { + "payments": [], + "funding": 0, + "ip": "178.120.3.148", + "fundingType": "one-time" + } + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: 'e2b4ace3-5460-48f9-b364-0666c81c3237',\n common: {\n connect: {\n id: 'c634475b-76a3-4620-b79d-853528e0ec2e'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: '2HM9WnVvr9aDYbckjCo4cIDjncY2',\n commonId: 'c634475b-76a3-4620-b79d-853528e0ec2e'\n }\n }\n },\n user: {\n connect: {\n id: '2HM9WnVvr9aDYbckjCo4cIDjncY2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Bdudb',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '178.120.3.148',\n expiresAt: new Date('2021-04-21T01:20:00.199Z'),\n votesFor: 0,\n votesAgainst: 1,\n importedFrom: '{\"commonId\":\"c634475b-76a3-4620-b79d-853528e0ec2e\",\"state\":\"failed\",\"proposerId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\",\"countdownPeriod\":57600,\"id\":\"e2b4ace3-5460-48f9-b364-0666c81c3237\",\"votes\":[{\"voterId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"voteId\":\"3f37d330-361c-495a-888f-ab9b03dae491\",\"voteOutcome\":\"rejected\"}],\"votesAgainst\":1,\"type\":\"join\",\"updatedAt\":{\"_seconds\":1618931435,\"_nanoseconds\":732000000},\"createdAt\":{\"_seconds\":1618910400,\"_nanoseconds\":199000000},\"description\":{\"links\":[],\"description\":\"Bdudb\"},\"quietEndingPeriod\":3600,\"votesFor\":0,\"join\":{\"payments\":[],\"funding\":0,\"ip\":\"178.120.3.148\",\"fundingType\":\"one-time\"}}',\n join: {\n create: {\n id: 'e2b4ace3-5460-48f9-b364-0666c81c3237',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: 'e2b4ace3-5460-48f9-b364-0666c81c3237',\n common: {\n connect: {\n id: 'c634475b-76a3-4620-b79d-853528e0ec2e'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: '2HM9WnVvr9aDYbckjCo4cIDjncY2',\n commonId: 'c634475b-76a3-4620-b79d-853528e0ec2e'\n }\n }\n },\n user: {\n connect: {\n id: '2HM9WnVvr9aDYbckjCo4cIDjncY2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Bdudb',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '178.120.3.148',\n expiresAt: new Date('2021-04-21T01:20:00.199Z'),\n votesFor: 0,\n votesAgainst: 1,\n importedFrom: '{\"commonId\":\"c634475b-76a3-4620-b79d-853528e0ec2e\",\"state\":\"failed\",\"proposerId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\",\"countdownPeriod\":57600,\"id\":\"e2b4ace3-5460-48f9-b364-0666c81c3237\",\"votes\":[{\"voterId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"voteId\":\"3f37d330-361c-495a-888f-ab9b03dae491\",\"voteOutcome\":\"rejected\"}],\"votesAgainst\":1,\"type\":\"join\",\"updatedAt\":{\"_seconds\":1618931435,\"_nanoseconds\":732000000},\"createdAt\":{\"_seconds\":1618910400,\"_nanoseconds\":199000000},\"description\":{\"links\":[],\"description\":\"Bdudb\"},\"quietEndingPeriod\":3600,\"votesFor\":0,\"join\":{\"payments\":[],\"funding\":0,\"ip\":\"178.120.3.148\",\"fundingType\":\"one-time\"}}',\n join: {\n create: {\n id: 'e2b4ace3-5460-48f9-b364-0666c81c3237',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "updatedAt": { + "_seconds": 1610974857, + "_nanoseconds": 144000000 + }, + "quietEndingPeriod": 3600, + "votesAgainst": 0, + "state": "passed", + "votes": [ + { + "voterId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "voteId": "327fd3de-26dc-4f2f-9474-b99e7c0e5bd9", + "voteOutcome": "approved" + } + ], + "type": "join", + "commonId": "8d1d4dd3-ccf4-48f8-90f2-01f8a9448534", + "join": { + "payments": [], + "fundingType": "one-time", + "funding": 0 + }, + "proposerId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "id": "e77f91e5-6b7b-4094-bc64-848ccaa3612d", + "countdownPeriod": 57600, + "description": { + "links": [], + "description": "Y" + }, + "votesFor": 1, + "createdAt": { + "_seconds": 1610974844, + "_nanoseconds": 190000000 + } + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: 'e77f91e5-6b7b-4094-bc64-848ccaa3612d',\n common: {\n connect: {\n id: '8d1d4dd3-ccf4-48f8-90f2-01f8a9448534'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: '97d5y9WXk1fEZv767j1ejKuHevi1',\n commonId: '8d1d4dd3-ccf4-48f8-90f2-01f8a9448534'\n }\n }\n },\n user: {\n connect: {\n id: '97d5y9WXk1fEZv767j1ejKuHevi1'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Y',\n files: [],\n images: [],\n links: [],\n state: 'Accepted',\n ipAddress: undefined,\n expiresAt: new Date('2021-01-19T05:00:44.190Z'),\n votesFor: 1,\n votesAgainst: 0,\n importedFrom: '{\"updatedAt\":{\"_seconds\":1610974857,\"_nanoseconds\":144000000},\"quietEndingPeriod\":3600,\"votesAgainst\":0,\"state\":\"passed\",\"votes\":[{\"voterId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"voteId\":\"327fd3de-26dc-4f2f-9474-b99e7c0e5bd9\",\"voteOutcome\":\"approved\"}],\"type\":\"join\",\"commonId\":\"8d1d4dd3-ccf4-48f8-90f2-01f8a9448534\",\"join\":{\"payments\":[],\"fundingType\":\"one-time\",\"funding\":0},\"proposerId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"id\":\"e77f91e5-6b7b-4094-bc64-848ccaa3612d\",\"countdownPeriod\":57600,\"description\":{\"links\":[],\"description\":\"Y\"},\"votesFor\":1,\"createdAt\":{\"_seconds\":1610974844,\"_nanoseconds\":190000000}}',\n join: {\n create: {\n id: 'e77f91e5-6b7b-4094-bc64-848ccaa3612d',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: 'e77f91e5-6b7b-4094-bc64-848ccaa3612d',\n common: {\n connect: {\n id: '8d1d4dd3-ccf4-48f8-90f2-01f8a9448534'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: '97d5y9WXk1fEZv767j1ejKuHevi1',\n commonId: '8d1d4dd3-ccf4-48f8-90f2-01f8a9448534'\n }\n }\n },\n user: {\n connect: {\n id: '97d5y9WXk1fEZv767j1ejKuHevi1'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Y',\n files: [],\n images: [],\n links: [],\n state: 'Accepted',\n ipAddress: undefined,\n expiresAt: new Date('2021-01-19T05:00:44.190Z'),\n votesFor: 1,\n votesAgainst: 0,\n importedFrom: '{\"updatedAt\":{\"_seconds\":1610974857,\"_nanoseconds\":144000000},\"quietEndingPeriod\":3600,\"votesAgainst\":0,\"state\":\"passed\",\"votes\":[{\"voterId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"voteId\":\"327fd3de-26dc-4f2f-9474-b99e7c0e5bd9\",\"voteOutcome\":\"approved\"}],\"type\":\"join\",\"commonId\":\"8d1d4dd3-ccf4-48f8-90f2-01f8a9448534\",\"join\":{\"payments\":[],\"fundingType\":\"one-time\",\"funding\":0},\"proposerId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"id\":\"e77f91e5-6b7b-4094-bc64-848ccaa3612d\",\"countdownPeriod\":57600,\"description\":{\"links\":[],\"description\":\"Y\"},\"votesFor\":1,\"createdAt\":{\"_seconds\":1610974844,\"_nanoseconds\":190000000}}',\n join: {\n create: {\n id: 'e77f91e5-6b7b-4094-bc64-848ccaa3612d',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "state": "failed", + "countdownPeriod": 57600, + "description": { + "links": [], + "description": "Reject please " + }, + "createdAt": { + "_seconds": 1616074517, + "_nanoseconds": 984000000 + }, + "proposerId": "Wz0ZgOvKnafrjLDeAeWqx182uBq2", + "id": "ea47f946-5ec5-40a1-bd3d-40c7fe4d5261", + "type": "join", + "join": { + "funding": 0, + "payments": [], + "ip": "178.120.61.209", + "fundingType": "one-time" + }, + "commonId": "4061e937-7ee4-4f4e-b896-6f3af113f511", + "votesFor": 0, + "votesAgainst": 0, + "votes": [], + "updatedAt": { + "_seconds": 1616132400, + "_nanoseconds": 391000000 + }, + "quietEndingPeriod": 3600 + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: 'ea47f946-5ec5-40a1-bd3d-40c7fe4d5261',\n common: {\n connect: {\n id: '4061e937-7ee4-4f4e-b896-6f3af113f511'\n }\n },\n user: {\n connect: {\n id: 'Wz0ZgOvKnafrjLDeAeWqx182uBq2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Reject please ',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '178.120.61.209',\n expiresAt: new Date('2021-03-19T05:35:17.984Z'),\n votesFor: 0,\n votesAgainst: 0,\n importedFrom: '{\"state\":\"failed\",\"countdownPeriod\":57600,\"description\":{\"links\":[],\"description\":\"Reject please \"},\"createdAt\":{\"_seconds\":1616074517,\"_nanoseconds\":984000000},\"proposerId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"id\":\"ea47f946-5ec5-40a1-bd3d-40c7fe4d5261\",\"type\":\"join\",\"join\":{\"funding\":0,\"payments\":[],\"ip\":\"178.120.61.209\",\"fundingType\":\"one-time\"},\"commonId\":\"4061e937-7ee4-4f4e-b896-6f3af113f511\",\"votesFor\":0,\"votesAgainst\":0,\"votes\":[],\"updatedAt\":{\"_seconds\":1616132400,\"_nanoseconds\":391000000},\"quietEndingPeriod\":3600}',\n join: {\n create: {\n id: 'ea47f946-5ec5-40a1-bd3d-40c7fe4d5261',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: 'ea47f946-5ec5-40a1-bd3d-40c7fe4d5261',\n common: {\n connect: {\n id: '4061e937-7ee4-4f4e-b896-6f3af113f511'\n }\n },\n user: {\n connect: {\n id: 'Wz0ZgOvKnafrjLDeAeWqx182uBq2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Reject please ',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '178.120.61.209',\n expiresAt: new Date('2021-03-19T05:35:17.984Z'),\n votesFor: 0,\n votesAgainst: 0,\n importedFrom: '{\"state\":\"failed\",\"countdownPeriod\":57600,\"description\":{\"links\":[],\"description\":\"Reject please \"},\"createdAt\":{\"_seconds\":1616074517,\"_nanoseconds\":984000000},\"proposerId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"id\":\"ea47f946-5ec5-40a1-bd3d-40c7fe4d5261\",\"type\":\"join\",\"join\":{\"funding\":0,\"payments\":[],\"ip\":\"178.120.61.209\",\"fundingType\":\"one-time\"},\"commonId\":\"4061e937-7ee4-4f4e-b896-6f3af113f511\",\"votesFor\":0,\"votesAgainst\":0,\"votes\":[],\"updatedAt\":{\"_seconds\":1616132400,\"_nanoseconds\":391000000},\"quietEndingPeriod\":3600}',\n join: {\n create: {\n id: 'ea47f946-5ec5-40a1-bd3d-40c7fe4d5261',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "updatedAt": { + "_seconds": 1618793400, + "_nanoseconds": 604000000 + }, + "description": { + "description": "1", + "links": [] + }, + "id": "ebc9719b-e340-48ab-804f-602e56fe6ffb", + "createdAt": { + "_seconds": 1618735598, + "_nanoseconds": 246000000 + }, + "votesAgainst": 0, + "quietEndingPeriod": 3600, + "type": "join", + "join": { + "fundingType": "one-time", + "funding": 0, + "payments": [], + "ip": "2a01:6502:a56:4519:147a:7a58:a644:8ee8" + }, + "state": "failed", + "proposerId": "b0Kxsd0x4OMLeOlDnheysBz5THo1", + "votesFor": 0, + "countdownPeriod": 57600, + "votes": [], + "commonId": "d613e5b2-6aa8-4308-9af0-710ab8c55d23" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: 'ebc9719b-e340-48ab-804f-602e56fe6ffb',\n common: {\n connect: {\n id: 'd613e5b2-6aa8-4308-9af0-710ab8c55d23'\n }\n },\n user: {\n connect: {\n id: 'b0Kxsd0x4OMLeOlDnheysBz5THo1'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: '1',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '2a01:6502:a56:4519:147a:7a58:a644:8ee8',\n expiresAt: new Date('2021-04-19T00:46:38.246Z'),\n votesFor: 0,\n votesAgainst: 0,\n importedFrom: '{\"updatedAt\":{\"_seconds\":1618793400,\"_nanoseconds\":604000000},\"description\":{\"description\":\"1\",\"links\":[]},\"id\":\"ebc9719b-e340-48ab-804f-602e56fe6ffb\",\"createdAt\":{\"_seconds\":1618735598,\"_nanoseconds\":246000000},\"votesAgainst\":0,\"quietEndingPeriod\":3600,\"type\":\"join\",\"join\":{\"fundingType\":\"one-time\",\"funding\":0,\"payments\":[],\"ip\":\"2a01:6502:a56:4519:147a:7a58:a644:8ee8\"},\"state\":\"failed\",\"proposerId\":\"b0Kxsd0x4OMLeOlDnheysBz5THo1\",\"votesFor\":0,\"countdownPeriod\":57600,\"votes\":[],\"commonId\":\"d613e5b2-6aa8-4308-9af0-710ab8c55d23\"}',\n join: {\n create: {\n id: 'ebc9719b-e340-48ab-804f-602e56fe6ffb',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: 'ebc9719b-e340-48ab-804f-602e56fe6ffb',\n common: {\n connect: {\n id: 'd613e5b2-6aa8-4308-9af0-710ab8c55d23'\n }\n },\n user: {\n connect: {\n id: 'b0Kxsd0x4OMLeOlDnheysBz5THo1'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: '1',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '2a01:6502:a56:4519:147a:7a58:a644:8ee8',\n expiresAt: new Date('2021-04-19T00:46:38.246Z'),\n votesFor: 0,\n votesAgainst: 0,\n importedFrom: '{\"updatedAt\":{\"_seconds\":1618793400,\"_nanoseconds\":604000000},\"description\":{\"description\":\"1\",\"links\":[]},\"id\":\"ebc9719b-e340-48ab-804f-602e56fe6ffb\",\"createdAt\":{\"_seconds\":1618735598,\"_nanoseconds\":246000000},\"votesAgainst\":0,\"quietEndingPeriod\":3600,\"type\":\"join\",\"join\":{\"fundingType\":\"one-time\",\"funding\":0,\"payments\":[],\"ip\":\"2a01:6502:a56:4519:147a:7a58:a644:8ee8\"},\"state\":\"failed\",\"proposerId\":\"b0Kxsd0x4OMLeOlDnheysBz5THo1\",\"votesFor\":0,\"countdownPeriod\":57600,\"votes\":[],\"commonId\":\"d613e5b2-6aa8-4308-9af0-710ab8c55d23\"}',\n join: {\n create: {\n id: 'ebc9719b-e340-48ab-804f-602e56fe6ffb',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "votesAgainst": 0, + "votes": [], + "quietEndingPeriod": 3600, + "description": { + "links": [], + "description": "2" + }, + "proposerId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1", + "id": "f199f373-14b2-4d8a-9d42-30d1e62d2147", + "votesFor": 0, + "commonId": "d613e5b2-6aa8-4308-9af0-710ab8c55d23", + "createdAt": { + "_seconds": 1618735902, + "_nanoseconds": 99000000 + }, + "updatedAt": { + "_seconds": 1618793701, + "_nanoseconds": 467000000 + }, + "type": "join", + "countdownPeriod": 57600, + "state": "failed", + "join": { + "ip": "2a01:6502:a56:4519:147a:7a58:a644:8ee8", + "payments": [], + "fundingType": "one-time", + "funding": 0 + } + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: 'f199f373-14b2-4d8a-9d42-30d1e62d2147',\n common: {\n connect: {\n id: 'd613e5b2-6aa8-4308-9af0-710ab8c55d23'\n }\n },\n user: {\n connect: {\n id: '11j4NvvZ4kMRf4BFBUHdbRiXKMp1'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: '2',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '2a01:6502:a56:4519:147a:7a58:a644:8ee8',\n expiresAt: new Date('2021-04-19T00:51:42.099Z'),\n votesFor: 0,\n votesAgainst: 0,\n importedFrom: '{\"votesAgainst\":0,\"votes\":[],\"quietEndingPeriod\":3600,\"description\":{\"links\":[],\"description\":\"2\"},\"proposerId\":\"11j4NvvZ4kMRf4BFBUHdbRiXKMp1\",\"id\":\"f199f373-14b2-4d8a-9d42-30d1e62d2147\",\"votesFor\":0,\"commonId\":\"d613e5b2-6aa8-4308-9af0-710ab8c55d23\",\"createdAt\":{\"_seconds\":1618735902,\"_nanoseconds\":99000000},\"updatedAt\":{\"_seconds\":1618793701,\"_nanoseconds\":467000000},\"type\":\"join\",\"countdownPeriod\":57600,\"state\":\"failed\",\"join\":{\"ip\":\"2a01:6502:a56:4519:147a:7a58:a644:8ee8\",\"payments\":[],\"fundingType\":\"one-time\",\"funding\":0}}',\n join: {\n create: {\n id: 'f199f373-14b2-4d8a-9d42-30d1e62d2147',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: 'f199f373-14b2-4d8a-9d42-30d1e62d2147',\n common: {\n connect: {\n id: 'd613e5b2-6aa8-4308-9af0-710ab8c55d23'\n }\n },\n user: {\n connect: {\n id: '11j4NvvZ4kMRf4BFBUHdbRiXKMp1'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: '2',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '2a01:6502:a56:4519:147a:7a58:a644:8ee8',\n expiresAt: new Date('2021-04-19T00:51:42.099Z'),\n votesFor: 0,\n votesAgainst: 0,\n importedFrom: '{\"votesAgainst\":0,\"votes\":[],\"quietEndingPeriod\":3600,\"description\":{\"links\":[],\"description\":\"2\"},\"proposerId\":\"11j4NvvZ4kMRf4BFBUHdbRiXKMp1\",\"id\":\"f199f373-14b2-4d8a-9d42-30d1e62d2147\",\"votesFor\":0,\"commonId\":\"d613e5b2-6aa8-4308-9af0-710ab8c55d23\",\"createdAt\":{\"_seconds\":1618735902,\"_nanoseconds\":99000000},\"updatedAt\":{\"_seconds\":1618793701,\"_nanoseconds\":467000000},\"type\":\"join\",\"countdownPeriod\":57600,\"state\":\"failed\",\"join\":{\"ip\":\"2a01:6502:a56:4519:147a:7a58:a644:8ee8\",\"payments\":[],\"fundingType\":\"one-time\",\"funding\":0}}',\n join: {\n create: {\n id: 'f199f373-14b2-4d8a-9d42-30d1e62d2147',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "commonId": "8d1d4dd3-ccf4-48f8-90f2-01f8a9448534", + "countdownPeriod": 57600, + "votesAgainst": 1, + "proposerId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "description": { + "description": "No ", + "links": [] + }, + "createdAt": { + "_seconds": 1610974526, + "_nanoseconds": 658000000 + }, + "votes": [ + { + "voteOutcome": "rejected", + "voteId": "aa545dec-2666-484a-ae56-8194e03d4c03", + "voterId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2" + } + ], + "quietEndingPeriod": 3600, + "join": { + "fundingType": "one-time", + "payments": [], + "funding": 0 + }, + "votesFor": 0, + "type": "join", + "id": "fc9c2dd2-71e7-4176-8401-da45bd9a55c5", + "updatedAt": { + "_seconds": 1610974571, + "_nanoseconds": 244000000 + }, + "state": "failed" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: 'fc9c2dd2-71e7-4176-8401-da45bd9a55c5',\n common: {\n connect: {\n id: '8d1d4dd3-ccf4-48f8-90f2-01f8a9448534'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: '97d5y9WXk1fEZv767j1ejKuHevi1',\n commonId: '8d1d4dd3-ccf4-48f8-90f2-01f8a9448534'\n }\n }\n },\n user: {\n connect: {\n id: '97d5y9WXk1fEZv767j1ejKuHevi1'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'No ',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: undefined,\n expiresAt: new Date('2021-01-19T04:55:26.658Z'),\n votesFor: 0,\n votesAgainst: 1,\n importedFrom: '{\"commonId\":\"8d1d4dd3-ccf4-48f8-90f2-01f8a9448534\",\"countdownPeriod\":57600,\"votesAgainst\":1,\"proposerId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"description\":{\"description\":\"No \",\"links\":[]},\"createdAt\":{\"_seconds\":1610974526,\"_nanoseconds\":658000000},\"votes\":[{\"voteOutcome\":\"rejected\",\"voteId\":\"aa545dec-2666-484a-ae56-8194e03d4c03\",\"voterId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\"}],\"quietEndingPeriod\":3600,\"join\":{\"fundingType\":\"one-time\",\"payments\":[],\"funding\":0},\"votesFor\":0,\"type\":\"join\",\"id\":\"fc9c2dd2-71e7-4176-8401-da45bd9a55c5\",\"updatedAt\":{\"_seconds\":1610974571,\"_nanoseconds\":244000000},\"state\":\"failed\"}',\n join: {\n create: {\n id: 'fc9c2dd2-71e7-4176-8401-da45bd9a55c5',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: 'fc9c2dd2-71e7-4176-8401-da45bd9a55c5',\n common: {\n connect: {\n id: '8d1d4dd3-ccf4-48f8-90f2-01f8a9448534'\n }\n },\n commonMember: {\n connect: {\n userId_commonId: {\n userId: '97d5y9WXk1fEZv767j1ejKuHevi1',\n commonId: '8d1d4dd3-ccf4-48f8-90f2-01f8a9448534'\n }\n }\n },\n user: {\n connect: {\n id: '97d5y9WXk1fEZv767j1ejKuHevi1'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'No ',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: undefined,\n expiresAt: new Date('2021-01-19T04:55:26.658Z'),\n votesFor: 0,\n votesAgainst: 1,\n importedFrom: '{\"commonId\":\"8d1d4dd3-ccf4-48f8-90f2-01f8a9448534\",\"countdownPeriod\":57600,\"votesAgainst\":1,\"proposerId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"description\":{\"description\":\"No \",\"links\":[]},\"createdAt\":{\"_seconds\":1610974526,\"_nanoseconds\":658000000},\"votes\":[{\"voteOutcome\":\"rejected\",\"voteId\":\"aa545dec-2666-484a-ae56-8194e03d4c03\",\"voterId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\"}],\"quietEndingPeriod\":3600,\"join\":{\"fundingType\":\"one-time\",\"payments\":[],\"funding\":0},\"votesFor\":0,\"type\":\"join\",\"id\":\"fc9c2dd2-71e7-4176-8401-da45bd9a55c5\",\"updatedAt\":{\"_seconds\":1610974571,\"_nanoseconds\":244000000},\"state\":\"failed\"}',\n join: {\n create: {\n id: 'fc9c2dd2-71e7-4176-8401-da45bd9a55c5',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "state": "failed", + "votes": [], + "votesAgainst": 0, + "votesFor": 0, + "commonId": "883f8443-ce02-4310-9794-f98bafed94b3", + "countdownPeriod": 57600, + "createdAt": { + "_seconds": 1616056942, + "_nanoseconds": 380000000 + }, + "type": "join", + "join": { + "fundingType": "one-time", + "ip": "178.120.61.209", + "payments": [], + "funding": 0 + }, + "description": { + "links": [], + "description": "Check " + }, + "proposerId": "Wz0ZgOvKnafrjLDeAeWqx182uBq2", + "id": "ff7b57f4-9ca6-4f3b-a739-5d16a9fe528e", + "updatedAt": { + "_seconds": 1616114700, + "_nanoseconds": 506000000 + }, + "quietEndingPeriod": 3600 + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: 'ff7b57f4-9ca6-4f3b-a739-5d16a9fe528e',\n common: {\n connect: {\n id: '883f8443-ce02-4310-9794-f98bafed94b3'\n }\n },\n user: {\n connect: {\n id: 'Wz0ZgOvKnafrjLDeAeWqx182uBq2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Check ',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '178.120.61.209',\n expiresAt: new Date('2021-03-19T00:42:22.380Z'),\n votesFor: 0,\n votesAgainst: 0,\n importedFrom: '{\"state\":\"failed\",\"votes\":[],\"votesAgainst\":0,\"votesFor\":0,\"commonId\":\"883f8443-ce02-4310-9794-f98bafed94b3\",\"countdownPeriod\":57600,\"createdAt\":{\"_seconds\":1616056942,\"_nanoseconds\":380000000},\"type\":\"join\",\"join\":{\"fundingType\":\"one-time\",\"ip\":\"178.120.61.209\",\"payments\":[],\"funding\":0},\"description\":{\"links\":[],\"description\":\"Check \"},\"proposerId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"id\":\"ff7b57f4-9ca6-4f3b-a739-5d16a9fe528e\",\"updatedAt\":{\"_seconds\":1616114700,\"_nanoseconds\":506000000},\"quietEndingPeriod\":3600}',\n join: {\n create: {\n id: 'ff7b57f4-9ca6-4f3b-a739-5d16a9fe528e',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: 'ff7b57f4-9ca6-4f3b-a739-5d16a9fe528e',\n common: {\n connect: {\n id: '883f8443-ce02-4310-9794-f98bafed94b3'\n }\n },\n user: {\n connect: {\n id: 'Wz0ZgOvKnafrjLDeAeWqx182uBq2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Check ',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '178.120.61.209',\n expiresAt: new Date('2021-03-19T00:42:22.380Z'),\n votesFor: 0,\n votesAgainst: 0,\n importedFrom: '{\"state\":\"failed\",\"votes\":[],\"votesAgainst\":0,\"votesFor\":0,\"commonId\":\"883f8443-ce02-4310-9794-f98bafed94b3\",\"countdownPeriod\":57600,\"createdAt\":{\"_seconds\":1616056942,\"_nanoseconds\":380000000},\"type\":\"join\",\"join\":{\"fundingType\":\"one-time\",\"ip\":\"178.120.61.209\",\"payments\":[],\"funding\":0},\"description\":{\"links\":[],\"description\":\"Check \"},\"proposerId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"id\":\"ff7b57f4-9ca6-4f3b-a739-5d16a9fe528e\",\"updatedAt\":{\"_seconds\":1616114700,\"_nanoseconds\":506000000},\"quietEndingPeriod\":3600}',\n join: {\n create: {\n id: 'ff7b57f4-9ca6-4f3b-a739-5d16a9fe528e',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "createdAt": { + "_seconds": 1606302451, + "_nanoseconds": 48000000 + }, + "votes": [], + "state": "failed", + "description": { + "description": "Hi", + "links": [] + }, + "votesFor": 0, + "id": "304de529-cd8a-49a5-8ae4-d3a64712ad5d", + "countdownPeriod": 86400, + "commonId": "05e4c4a2-6957-42ea-bc49-073a307313d8", + "quietEndingPeriod": 3600, + "proposerId": "H5ZkcKBX5eXXNyBiPaph8EHCiax2", + "type": "join", + "updatedAt": { + "_seconds": 1606389000, + "_nanoseconds": 450000000 + }, + "votesAgainst": 0, + "join": { + "cardId": "a7611bf4-82a9-4dc9-8392-89e2ec34a9b3", + "fundingType": "one-time", + "funding": 2500 + } + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "state": "failed", + "commonId": "04c837a8-1f63-4e37-9d22-5d8236a45880", + "id": "54f11a31-4304-470c-8907-651ee2fda3eb", + "countdownPeriod": 57600, + "updatedAt": { + "_seconds": 1618529402, + "_nanoseconds": 251000000 + }, + "proposerId": "RoUaatJIeccpYxcDD7v1fqJrHZx2", + "votesAgainst": 0, + "join": { + "funding": 2300, + "fundingType": "one-time", + "cardId": "229d40bb-9680-44ad-b638-49b7cb774ca0", + "payments": [], + "ip": "46.53.241.63" + }, + "votes": [], + "votesFor": 0, + "quietEndingPeriod": 3600, + "description": { + "description": "As fsd fsd fsd fs", + "links": [] + }, + "createdAt": { + "_seconds": 1618471596, + "_nanoseconds": 233999000 + }, + "type": "join" + }, + "error": { + "message": "\nInvalid `prisma.user.findUnique()` invocation:\n\n{\n where: {\n? email?: String,\n? id?: String\n }\n}\n\nArgument where of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\n\nNote: Lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.user.findUnique()` invocation:\n\n{\n where: {\n? email?: String,\n? id?: String\n }\n}\n\nArgument where of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\n\nNote: Lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "votesFor": 0, + "id": "133ad274-4406-4186-b5a3-3b46d6e33970", + "quietEndingPeriod": 3600, + "createdAt": { + "_seconds": 1617022113, + "_nanoseconds": 112000000 + }, + "join": { + "cardId": "73ccfc67-6690-4ceb-8297-2bbb0b2f9f80", + "fundingType": "one-time", + "payments": [], + "funding": 700, + "ip": "46.53.241.63" + }, + "description": { + "links": [], + "description": "Asd asd asd asd asd as" + }, + "countdownPeriod": 57600, + "commonId": "15c15871-d513-4a06-9e24-7d2c92cbd571", + "moderation": { + "updatedAt": { + "_seconds": 1617025039, + "_nanoseconds": 742000000 + }, + "reporter": "WMzKDGJSlWM2Rjx9JVp9StB2Bni2", + "reasons": [ + "Something Else" + ], + "moderator": "WMzKDGJSlWM2Rjx9JVp9StB2Bni2", + "moderatorNote": "", + "flag": "visible" + }, + "votesAgainst": 0, + "state": "failed", + "type": "join", + "votes": [], + "proposerId": "RoUaatJIeccpYxcDD7v1fqJrHZx2", + "updatedAt": { + "_seconds": 1617079801, + "_nanoseconds": 665000000 + } + }, + "error": { + "message": "\nInvalid `prisma.user.findUnique()` invocation:\n\n{\n where: {\n? email?: String,\n? id?: String\n }\n}\n\nArgument where of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\n\nNote: Lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.user.findUnique()` invocation:\n\n{\n where: {\n? email?: String,\n? id?: String\n }\n}\n\nArgument where of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\n\nNote: Lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "votes": [], + "description": { + "links": [], + "description": "Bdhdhdhdhdjjdhdhfu" + }, + "proposerId": "RoUaatJIeccpYxcDD7v1fqJrHZx2", + "type": "join", + "id": "0be25323-a9ee-430e-9e97-385c57ae6019", + "commonId": "004abe8d-1006-4b63-9e7a-5d824c4fb1fd", + "votesFor": 0, + "votesAgainst": 0, + "countdownPeriod": 57600, + "join": { + "payments": [], + "ip": "46.53.241.63", + "funding": 0, + "fundingType": "one-time" + }, + "createdAt": { + "_seconds": 1618302804, + "_nanoseconds": 257999000 + }, + "updatedAt": { + "_seconds": 1618360501, + "_nanoseconds": 855000000 + }, + "state": "failed", + "quietEndingPeriod": 3600 + }, + "error": { + "message": "\nInvalid `prisma.user.findUnique()` invocation:\n\n{\n where: {\n? email?: String,\n? id?: String\n }\n}\n\nArgument where of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\n\nNote: Lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.user.findUnique()` invocation:\n\n{\n where: {\n? email?: String,\n? id?: String\n }\n}\n\nArgument where of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\n\nNote: Lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "quietEndingPeriod": 3600, + "votesFor": 1, + "join": { + "cardId": "f6ceba5d-da91-4d1e-b519-19c47fcca013", + "fundingType": "one-time", + "funding": 6000 + }, + "countdownPeriod": 7200, + "votesAgainst": 0, + "updatedAt": { + "_seconds": 1606899441, + "_nanoseconds": 863000000 + }, + "state": "passed", + "proposerId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "votes": [ + { + "voteOutcome": "approved", + "voterId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "voteId": "c1be1ad0-4140-4a81-9f54-917651cb0a83" + } + ], + "commonId": "02314122-6b05-4563-a8ce-4a10e97b72da", + "description": { + "links": [], + "description": "Hope to meet u" + }, + "id": "32b199d5-cefe-41b8-a450-de197ab97193", + "createdAt": { + "_seconds": 1606899259, + "_nanoseconds": 512000000 + }, + "type": "join" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "join": { + "funding": 21100, + "fundingType": "monthly", + "cardId": "db05372b-4bbd-43ca-84ab-b41abe3952d9" + }, + "commonId": "21fc3489-5a80-44c5-bb59-cd8bea165b3d", + "countdownPeriod": 86400, + "votesAgainst": 0, + "createdAt": { + "_seconds": 1605987422, + "_nanoseconds": 611000000 + }, + "votes": [ + { + "voterId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "voteId": "847315fa-1957-4c87-85d8-df4278eed69d", + "voteOutcome": "approved" + }, + { + "voterId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "voteOutcome": "approved", + "voteId": "551e66f4-aa4e-40f3-a446-55c9ab7ed5b8" + } + ], + "description": { + "links": [], + "description": "This my intro" + }, + "quietEndingPeriod": 3600, + "id": "32e2d739-1115-415a-9b83-57608ca1df36", + "updatedAt": { + "_seconds": 1605987502, + "_nanoseconds": 314000000 + }, + "votesFor": 2, + "state": "passed", + "proposerId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "type": "join" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "votes": [], + "updatedAt": { + "_seconds": 1606293600, + "_nanoseconds": 491000000 + }, + "createdAt": { + "_seconds": 1606206971, + "_nanoseconds": 273000000 + }, + "join": { + "funding": 501, + "cardId": "2b46c334-f3fc-44bf-bb83-43c6981df384" + }, + "votesAgainst": 0, + "proposerId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "10fd7df7-eae9-4995-9c85-90e691c439e1", + "type": "join", + "quietEndingPeriod": 3600, + "state": "failed", + "id": "3bb995eb-3340-499a-a8bc-e014b1904b63", + "description": { + "links": [], + "description": "Yaniv " + }, + "countdownPeriod": 86400, + "votesFor": 0 + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "quietEndingPeriod": 3600, + "commonId": "f115aaab-cb74-4104-8ead-ae5e53264cc8", + "votes": [ + { + "voterId": "H5ZkcKBX5eXXNyBiPaph8EHCiax2", + "voteId": "d30d087f-0da0-4a1e-9975-ffec81b10b2a", + "voteOutcome": "approved" + } + ], + "countdownPeriod": 86400, + "proposerId": "0gzqlV9O9vWWe6i2wagAZHMMDDD2", + "votesFor": 1, + "createdAt": { + "_seconds": 1605806115, + "_nanoseconds": 694000000 + }, + "type": "join", + "id": "56347912-fe0f-4d66-b3ce-d4c0172bffeb", + "updatedAt": { + "_seconds": 1605806166, + "_nanoseconds": 279000000 + }, + "state": "passed", + "votesAgainst": 0, + "join": { + "funding": 50000, + "cardId": "c93a3055-c423-4f00-8414-8f725e8a45ee" + }, + "description": { + "links": [], + "description": "I’m giving you homepod money" + } + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "join": { + "fundingType": "one-time", + "cardId": "2d71165b-70d1-4d0b-9752-a3270cb15de0", + "funding": 501 + }, + "description": { + "description": "Hfi", + "links": [] + }, + "type": "join", + "updatedAt": { + "_seconds": 1607370900, + "_nanoseconds": 944000000 + }, + "votesFor": 1, + "id": "243615da-77da-41a7-aea1-181b4751c0c5", + "votesAgainst": 0, + "quietEndingPeriod": 3600, + "createdAt": { + "_seconds": 1607363579, + "_nanoseconds": 232000000 + }, + "proposerId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "countdownPeriod": 7200, + "votes": [ + { + "voteOutcome": "approved", + "voteId": "622c79c1-bab4-4227-87c8-c5896fc58912", + "voterId": "97d5y9WXk1fEZv767j1ejKuHevi1" + } + ], + "state": "passed", + "commonId": "a514cb3d-8462-4c40-9022-39a958e51deb" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "updatedAt": { + "_seconds": 1606478700, + "_nanoseconds": 947000000 + }, + "id": "2b02f83d-c9bf-4cd6-9793-9d6babe2cc1b", + "join": { + "funding": 10000, + "cardId": "c45072ea-b30d-4862-9e28-597470e82e16" + }, + "state": "failed", + "votesFor": 0, + "votes": [], + "countdownPeriod": 86400, + "createdAt": { + "_seconds": 1606392290, + "_nanoseconds": 13000000 + }, + "commonId": "f115aaab-cb74-4104-8ead-ae5e53264cc8", + "proposerId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "quietEndingPeriod": 3600, + "votesAgainst": 0, + "type": "join", + "description": { + "description": "Dh", + "links": [] + } + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "updatedAt": { + "_seconds": 1606926993, + "_nanoseconds": 482000000 + }, + "description": { + "links": [], + "description": "Hop" + }, + "state": "failed", + "createdAt": { + "_seconds": 1606926940, + "_nanoseconds": 702000000 + }, + "votesFor": 0, + "id": "2ee5dcf8-23a7-4443-9985-40db5000998f", + "join": { + "funding": 1250, + "fundingType": "one-time", + "cardId": "e38c3e21-9b0a-4605-b7ec-92a09d3b2f18" + }, + "countdownPeriod": 7200, + "commonId": "05e4c4a2-6957-42ea-bc49-073a307313d8", + "quietEndingPeriod": 3600, + "type": "join", + "proposerId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "votesAgainst": 1, + "votes": [ + { + "voteOutcome": "rejected", + "voteId": "8df24809-8a89-40c8-97a8-eccd30247005", + "voterId": "97d5y9WXk1fEZv767j1ejKuHevi1" + } + ] + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "join": { + "cardId": "e279c907-a900-4636-8382-99c1f9d7b9b8", + "fundingType": "one-time", + "funding": 500 + }, + "commonId": "e1996c12-9341-4771-b4a8-11602f728b5f", + "state": "failed", + "updatedAt": { + "_seconds": 1606755001, + "_nanoseconds": 90000000 + }, + "id": "2ffdf9f5-e841-49a5-ac7c-9bd6643c2f14", + "votesFor": 0, + "votesAgainst": 0, + "proposerId": "b0Kxsd0x4OMLeOlDnheysBz5THo1", + "createdAt": { + "_seconds": 1606747649, + "_nanoseconds": 419000000 + }, + "description": { + "links": [], + "description": "Sad" + }, + "type": "join", + "votes": [], + "quietEndingPeriod": 3600, + "countdownPeriod": 7200 + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "quietEndingPeriod": 3600, + "description": { + "description": "נים", + "links": [], + "files": [] + }, + "votesAgainst": 0, + "join": { + "cardId": "1b8e238f-1158-4b39-8747-c61cbc968dfc", + "funding": 8000 + }, + "createdAt": { + "_seconds": 1605598455, + "_nanoseconds": 143000000 + }, + "type": "join", + "updatedAt": { + "_seconds": 1605598992, + "_nanoseconds": 394000000 + }, + "countdownPeriod": 86400, + "votes": [ + { + "voterId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "voteId": "f9c7296a-4fba-48df-a041-dc7b1ae0c2d1", + "voteOutcome": "approved" + } + ], + "proposerId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "id": "30eaec02-ae7d-4540-b356-64100b28e6f2", + "state": "passed", + "votesFor": 1, + "commonId": "4ec02f70-a8dc-4947-9b5f-c74f34954073" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "votesAgainst": 0, + "commonId": "1480c6e5-a155-40cd-8bcb-1ae5e0a16b04", + "description": { + "links": [], + "description": "Boba" + }, + "createdAt": { + "_seconds": 1606382556, + "_nanoseconds": 25000000 + }, + "join": { + "funding": 2100, + "cardId": "b2397628-141f-494a-91b4-cab480e22278", + "fundingType": "one-time" + }, + "updatedAt": { + "_seconds": 1606383198, + "_nanoseconds": 174000000 + }, + "countdownPeriod": 86400, + "votesFor": 2, + "state": "passed", + "id": "3dbbebfd-ed77-4078-b568-4580b022f8bd", + "proposerId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "type": "join", + "quietEndingPeriod": 3600, + "votes": [ + { + "voterId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "voteId": "b22b98d9-d715-463d-a09b-fd39885ba847", + "voteOutcome": "approved" + }, + { + "voteOutcome": "approved", + "voterId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "voteId": "8fdeca15-2636-4f96-aaf4-5c8e79af5e98" + } + ] + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "votesFor": 0, + "votesAgainst": 0, + "commonId": "e1996c12-9341-4771-b4a8-11602f728b5f", + "state": "failed", + "id": "44e3c277-7212-4b6b-a225-1a0e26557963", + "votes": [], + "quietEndingPeriod": 3600, + "countdownPeriod": 86400, + "proposerId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "type": "join", + "updatedAt": { + "_seconds": 1606292401, + "_nanoseconds": 251000000 + }, + "createdAt": { + "_seconds": 1606205901, + "_nanoseconds": 895000000 + }, + "join": { + "funding": 501, + "cardId": "b5ae8862-960f-4bc3-876f-a45a07d45a5d", + "fundingType": "one-time" + }, + "description": { + "links": [], + "description": "5.01" + } + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "description": { + "links": [], + "description": "Testing", + "files": [] + }, + "countdownPeriod": 86400, + "type": "join", + "updatedAt": { + "_seconds": 1605857100, + "_nanoseconds": 744000000 + }, + "proposerId": "b0Kxsd0x4OMLeOlDnheysBz5THo1", + "join": { + "funding": 501, + "cardId": "219e8e30-d8d1-4cff-aec4-d68e49bf4430" + }, + "votesFor": 1, + "createdAt": { + "_seconds": 1605770659, + "_nanoseconds": 146000000 + }, + "state": "failed", + "votesAgainst": 0, + "votes": [], + "quietEndingPeriod": 3600, + "commonId": "10fd7df7-eae9-4995-9c85-90e691c439e1", + "id": "496d51fe-daca-4aae-a997-f1110bcb008b" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "updatedAt": { + "_seconds": 1606227600, + "_nanoseconds": 549000000 + }, + "quietEndingPeriod": 3600, + "state": "failed", + "join": { + "cardId": "d12a5049-15f7-4f1a-8e46-df68c5ac3ec6", + "fundingType": "monthly", + "funding": 10500 + }, + "proposerId": "7rUTurSrx8gJcfaGaoh29uPKvjU2", + "votes": [], + "description": { + "links": [], + "description": "Adders" + }, + "id": "4bbc26c0-8937-4cda-8b30-f04d467cad0e", + "type": "join", + "countdownPeriod": 86400, + "votesFor": 0, + "commonId": "426c877a-2fd2-43eb-9480-b430a1259d49", + "votesAgainst": 0, + "createdAt": { + "_seconds": 1606140970, + "_nanoseconds": 372000000 + } + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "votes": [ + { + "voteId": "24e788cb-84b4-4069-a974-b2f4d6ed3a8a", + "voterId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "voteOutcome": "approved" + } + ], + "updatedAt": { + "_seconds": 1607586952, + "_nanoseconds": 894000000 + }, + "state": "passed", + "quietEndingPeriod": 3600, + "description": { + "links": [], + "description": "Vv" + }, + "votesAgainst": 0, + "votesFor": 1, + "proposerId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "countdownPeriod": 7200, + "type": "join", + "id": "4c363c17-cb50-4c7b-b21b-6ed77597158f", + "createdAt": { + "_seconds": 1607586867, + "_nanoseconds": 417000000 + }, + "commonId": "67ad1d5b-194b-457b-9103-26e28a9d62c0", + "join": { + "fundingType": "monthly", + "cardId": "03ec81b7-d29e-410c-a0d6-ce516a9a4cc7", + "funding": 50000 + } + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "votesFor": 1, + "id": "57b071b1-3bf3-47c6-99aa-35d1896e04ba", + "type": "join", + "votes": [ + { + "voteId": "22956ecb-98d6-46a6-9bae-32fdc9a2c9ec", + "voterId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "voteOutcome": "approved" + } + ], + "votesAgainst": 0, + "quietEndingPeriod": 3600, + "state": "passed", + "commonId": "611bf7f4-7a50-4e86-be6e-bf312a6c35ad", + "description": { + "links": [ + { + "value": "https://www.walmart.ca/en/george/N-1019598", + "title": "Co" + }, + { + "title": "Cc", + "value": "https://www.walmart.ca/en/george/N-1019598" + } + ], + "description": "Agh" + }, + "proposerId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "join": { + "cardId": "eef9e66f-d9bd-4f05-b7d1-bd6edfbf5633", + "funding": 23000, + "fundingType": "one-time" + }, + "updatedAt": { + "_seconds": 1606830710, + "_nanoseconds": 644000000 + }, + "createdAt": { + "_seconds": 1606830660, + "_nanoseconds": 439000000 + }, + "countdownPeriod": 7200 + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "updatedAt": { + "_seconds": 1607250900, + "_nanoseconds": 878000000 + }, + "countdownPeriod": 7200, + "join": { + "cardId": "4e5d25f8-6505-4f12-a42b-c36aee5f1bf5", + "fundingType": "one-time", + "funding": 500 + }, + "quietEndingPeriod": 3600, + "description": { + "description": "Test node12", + "links": [] + }, + "votes": [], + "createdAt": { + "_seconds": 1607243605, + "_nanoseconds": 539000000 + }, + "proposerId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1", + "votesFor": 0, + "id": "5b1858a0-6903-4b8f-93ee-c237262a42ca", + "votesAgainst": 0, + "commonId": "e07c6cd7-3f45-4d4e-8a4f-3139e28b5c00", + "type": "join", + "state": "failed" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "type": "join", + "countdownPeriod": 7200, + "id": "5c2e7953-d9c6-4541-a006-9ff6365d7185", + "votesAgainst": 1, + "proposerId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "updatedAt": { + "_seconds": 1607518598, + "_nanoseconds": 914000000 + }, + "createdAt": { + "_seconds": 1607518479, + "_nanoseconds": 367000000 + }, + "join": { + "funding": 50500, + "cardId": "c2b3160c-4807-4995-90bd-7fb5a79f92f4", + "fundingType": "one-time" + }, + "commonId": "0970bc3f-beca-4b6e-acb1-42f1b4bba931", + "votes": [ + { + "voteOutcome": "rejected", + "voteId": "19b0c217-b304-4971-8e32-cab5edf64789", + "voterId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2" + } + ], + "votesFor": 0, + "description": { + "links": [], + "description": "Dh" + }, + "quietEndingPeriod": 3600, + "state": "failed" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "description": { + "description": "As asd asd asd asd", + "links": [] + }, + "commonId": "0970bc3f-beca-4b6e-acb1-42f1b4bba931", + "type": "join", + "state": "failed", + "votesAgainst": 0, + "join": { + "ip": "46.53.241.63", + "cardId": "4a537af3-1eea-4d16-9391-0aec6f50c3b2", + "payments": [], + "funding": 500, + "fundingType": "one-time" + }, + "proposerId": "RoUaatJIeccpYxcDD7v1fqJrHZx2", + "countdownPeriod": 57600, + "createdAt": { + "_seconds": 1619595443, + "_nanoseconds": 195000000 + }, + "updatedAt": { + "_seconds": 1619653200, + "_nanoseconds": 993000000 + }, + "id": "054ad400-31c9-4635-a0bb-088eaaac189d", + "quietEndingPeriod": 3600, + "votes": [], + "votesFor": 0 + }, + "error": { + "message": "\nInvalid `prisma.user.findUnique()` invocation:\n\n{\n where: {\n? email?: String,\n? id?: String\n }\n}\n\nArgument where of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\n\nNote: Lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.user.findUnique()` invocation:\n\n{\n where: {\n? email?: String,\n? id?: String\n }\n}\n\nArgument where of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\n\nNote: Lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposerId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "id": "5f81e21b-e861-46e1-8a93-dd07de11326d", + "createdAt": { + "_seconds": 1606291528, + "_nanoseconds": 546000000 + }, + "countdownPeriod": 86400, + "votes": [ + { + "voteId": "c16577b7-a421-4cef-a1fa-20dd64187012", + "voterId": "Sxv19oCvKAZq2vntJdYCTYSpWWN2", + "voteOutcome": "approved" + } + ], + "commonId": "a514cb3d-8462-4c40-9022-39a958e51deb", + "updatedAt": { + "_seconds": 1606296495, + "_nanoseconds": 719000000 + }, + "state": "passed", + "votesFor": 1, + "votesAgainst": 0, + "join": { + "funding": 500, + "fundingType": "one-time", + "cardId": "f0421244-ac40-49fe-9400-b9bfecc24ea7" + }, + "quietEndingPeriod": 3600, + "description": { + "links": [ + { + "value": "https://he.m.wikipedia.org/wiki/20_פלוס", + "title": "כותרת" + } + ], + "description": "הסדרה התמקדה בשתיים מן הדמויות הראשיות של \"עניין של זמן\" – עידו מרקוביץ' (משה בן-בסט) סטודנט לפסיכולוגיה, ויחזקאל ויצמן (שי קפון) העובד כשיפוצניק, שעברו לגור בדירה שכורה בתל אביב לאחר השחרור מהצבא יחד עם שותפה בשם מיקי הופמן (שירה גפן), ליצנית במסיבות יום הולדת. בתחילת העונה השנייה עוזבת מיקי את הדירה ודמותה של איילה (לי את גליק) הופכת לשותפה של השניים לדירה." + }, + "type": "join" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "createdAt": { + "_seconds": 1607507343, + "_nanoseconds": 946000000 + }, + "commonId": "f115aaab-cb74-4104-8ead-ae5e53264cc8", + "votes": [], + "updatedAt": { + "_seconds": 1607514601, + "_nanoseconds": 149000000 + }, + "description": { + "description": "Be", + "links": [] + }, + "proposerId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "votesFor": 0, + "votesAgainst": 0, + "join": { + "funding": 25600, + "cardId": "c95b0491-20b5-4df3-b42e-2560179fe9cd" + }, + "id": "60a63a5f-8b83-40aa-8bf3-eaac431c86f1", + "state": "failed", + "quietEndingPeriod": 3600, + "countdownPeriod": 7200, + "type": "join" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "countdownPeriod": 86400, + "createdAt": { + "_seconds": 1606076516, + "_nanoseconds": 95000000 + }, + "votes": [ + { + "voteId": "f908603c-f2d3-4cd0-9f06-d2d63e484796", + "voterId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "voteOutcome": "approved" + } + ], + "votesFor": 1, + "quietEndingPeriod": 3600, + "join": { + "cardId": "1816f712-bc5a-41a5-afc6-a5d9ff4b7b48", + "funding": 6300, + "fundingType": "one-time" + }, + "type": "join", + "proposerId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1", + "description": { + "description": "עברית", + "links": [] + }, + "votesAgainst": 0, + "updatedAt": { + "_seconds": 1606147030, + "_nanoseconds": 646000000 + }, + "state": "passed", + "commonId": "54435e0a-8675-42de-9df2-803ff3a30b6e", + "id": "67bb711d-85b8-4a79-8d59-3e6277b8c389" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "countdownPeriod": 86400, + "quietEndingPeriod": 3600, + "proposerId": "h59V0do13qhpeH9xDyoLaCZucTm1", + "createdAt": { + "_seconds": 1606137155, + "_nanoseconds": 494000000 + }, + "votesAgainst": 0, + "updatedAt": { + "_seconds": 1606137225, + "_nanoseconds": 437000000 + }, + "join": { + "cardId": "ecce7580-8db4-4698-946a-02485174b1c0", + "fundingType": "monthly", + "funding": 20000 + }, + "id": "698c38fc-0056-4148-8a31-296484bb9969", + "votes": [ + { + "voterId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "voteId": "8cde7a52-d15f-4599-8283-28ca93047819", + "voteOutcome": "approved" + }, + { + "voteId": "9dc8c8b2-ac69-4125-9f9a-85e17eaac883", + "voterId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "voteOutcome": "approved" + }, + { + "voteId": "b23aa146-55ba-4853-aa3b-ddba45766353", + "voteOutcome": "approved", + "voterId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2" + } + ], + "state": "passed", + "votesFor": 3, + "commonId": "21fc3489-5a80-44c5-bb59-cd8bea165b3d", + "description": { + "links": [], + "description": "Allow me to enter to test" + }, + "type": "join" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "quietEndingPeriod": 3600, + "proposerId": "7rUTurSrx8gJcfaGaoh29uPKvjU2", + "votes": [], + "votesAgainst": 0, + "countdownPeriod": 86400, + "createdAt": { + "_seconds": 1605885889, + "_nanoseconds": 704000000 + }, + "commonId": "10fd7df7-eae9-4995-9c85-90e691c439e1", + "join": { + "cardId": "8b5acb9b-42e1-443e-8016-1d45efc4a648", + "funding": 67750 + }, + "type": "join", + "state": "failed", + "updatedAt": { + "_seconds": 1605972301, + "_nanoseconds": 216000000 + }, + "id": "6b5ad855-694c-44fc-ab9e-9efe5b5fb1e2", + "votesFor": 0, + "description": { + "description": "Asffsdasdflsdaf\t", + "links": [] + } + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "votesFor": 0, + "votesAgainst": 0, + "join": { + "cardId": "bc671a7a-bab1-4e37-a0f8-465960cc1f2c", + "funding": 10000 + }, + "createdAt": { + "_seconds": 1606316363, + "_nanoseconds": 176000000 + }, + "proposerId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1", + "updatedAt": { + "_seconds": 1606402800, + "_nanoseconds": 291000000 + }, + "id": "6b94ce16-f91b-46c2-bd90-2d957e462f57", + "quietEndingPeriod": 3600, + "description": { + "links": [], + "description": "Let's get homepods!" + }, + "countdownPeriod": 86400, + "commonId": "f115aaab-cb74-4104-8ead-ae5e53264cc8", + "type": "join", + "votes": [], + "state": "failed" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "commonId": "05e4c4a2-6957-42ea-bc49-073a307313d8", + "quietEndingPeriod": 3600, + "votesAgainst": 0, + "votes": [], + "votesFor": 0, + "proposerId": "Sxv19oCvKAZq2vntJdYCTYSpWWN2", + "state": "failed", + "createdAt": { + "_seconds": 1607364262, + "_nanoseconds": 338000000 + }, + "countdownPeriod": 7200, + "updatedAt": { + "_seconds": 1607371501, + "_nanoseconds": 40000000 + }, + "type": "join", + "join": { + "funding": 200000, + "cardId": "65d09245-2d95-4b05-8319-0e03181b8d7d", + "fundingType": "one-time" + }, + "description": { + "description": "Did I break anything?", + "links": [] + }, + "id": "6e62034e-8dc0-4029-8b6c-f4c388e27761" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "votesFor": 0, + "createdAt": { + "_seconds": 1607526009, + "_nanoseconds": 936000000 + }, + "votes": [], + "join": { + "cardId": "fbdfbf1c-6c2e-41b6-a8ad-efc6a54acd9b", + "funding": 501, + "fundingType": "one-time" + }, + "votesAgainst": 0, + "commonId": "0970bc3f-beca-4b6e-acb1-42f1b4bba931", + "updatedAt": { + "_seconds": 1607533500, + "_nanoseconds": 405000000 + }, + "proposerId": "Sxv19oCvKAZq2vntJdYCTYSpWWN2", + "id": "717469e2-6d9f-41d0-ad89-a127bcf53cb0", + "description": { + "links": [], + "description": "Fixing amount field" + }, + "countdownPeriod": 7200, + "type": "join", + "quietEndingPeriod": 3600, + "state": "failed" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "state": "failed", + "updatedAt": { + "_seconds": 1606492200, + "_nanoseconds": 904000000 + }, + "countdownPeriod": 86400, + "quietEndingPeriod": 3600, + "votes": [], + "createdAt": { + "_seconds": 1606405615, + "_nanoseconds": 50000000 + }, + "id": "7952aca4-fe54-45c7-b93f-54e49d867d79", + "votesAgainst": 0, + "join": { + "fundingType": "one-time", + "funding": 14500, + "cardId": "1632c6dd-e21c-46a4-b92b-121633d87c27" + }, + "proposerId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "votesFor": 0, + "commonId": "ff456b6f-b289-4e35-b895-3d23e23eaf81", + "description": { + "description": "Bb", + "links": [] + }, + "type": "join" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "type": "join", + "createdAt": { + "_seconds": 1606036944, + "_nanoseconds": 191000000 + }, + "countdownPeriod": 86400, + "quietEndingPeriod": 3600, + "votesFor": 1, + "commonId": "c188816a-7b2a-4a55-b1a0-54d0dd9d400a", + "join": { + "fundingType": "monthly", + "funding": 800000, + "cardId": "2ff8cbc9-eb7b-448f-8300-8d120c02051f" + }, + "state": "passed", + "updatedAt": { + "_seconds": 1606037470, + "_nanoseconds": 523000000 + }, + "description": { + "description": "Good but it for me and it has a few more things to do but the game will get more levels but the game won’t let it get to it but the one ☝️ can go iii", + "links": [ + { + "value": "https://en.m.wikipedia.org/wiki/Armadillo", + "title": "V" + }, + { + "value": "https://en.m.wikipedia.org/wiki/Armadillo", + "title": "D" + } + ] + }, + "id": "7da9eeb8-ab28-4168-97f2-053a61a4385d", + "votes": [ + { + "voteOutcome": "approved", + "voteId": "f75f9a15-987e-489a-9152-85c9c07d6d65", + "voterId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2" + } + ], + "votesAgainst": 0, + "proposerId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposerId": "XMAGwJIOilXUABsdC7KWsDY2v4E3", + "countdownPeriod": 86400, + "commonId": "21fc3489-5a80-44c5-bb59-cd8bea165b3d", + "description": { + "description": "Happy Sunday!", + "links": [] + }, + "type": "join", + "createdAt": { + "_seconds": 1606035394, + "_nanoseconds": 701000000 + }, + "updatedAt": { + "_seconds": 1606108386, + "_nanoseconds": 412000000 + }, + "state": "passed", + "join": { + "cardId": "92a3dd16-2de3-466b-bc20-b7db19939035", + "funding": 20000, + "fundingType": "monthly" + }, + "id": "88e6c363-f776-41f2-87ad-7bc16feeb06d", + "quietEndingPeriod": 3600, + "votesAgainst": 0, + "votes": [ + { + "voteOutcome": "approved", + "voterId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "voteId": "0823e5cc-4d41-4af9-842c-44db040cbfef" + }, + { + "voterId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "voteId": "045b56dd-d30b-4698-a556-667031decde8", + "voteOutcome": "approved" + } + ], + "votesFor": 2 + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "votesAgainst": 0, + "proposerId": "Sxv19oCvKAZq2vntJdYCTYSpWWN2", + "quietEndingPeriod": 3600, + "createdAt": { + "_seconds": 1607522590, + "_nanoseconds": 567000000 + }, + "id": "8f82d13b-575f-492b-a39a-6500b6e13d35", + "countdownPeriod": 7200, + "join": { + "cardId": "684427c7-e5e7-497e-9d5f-a1ac9cbf593f", + "funding": 500, + "fundingType": "one-time" + }, + "votesFor": 0, + "commonId": "05e4c4a2-6957-42ea-bc49-073a307313d8", + "type": "join", + "updatedAt": { + "_seconds": 1607529900, + "_nanoseconds": 713000000 + }, + "votes": [], + "state": "failed", + "description": { + "links": [], + "description": "Hello" + } + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "votesFor": 0, + "id": "0ebece3d-103c-4a00-ad85-cb0678277699", + "proposerId": "Xlun3Ux94Zfc73axkiuVdkktOWf1", + "countdownPeriod": 57600, + "votesAgainst": 0, + "commonId": "8d1d4dd3-ccf4-48f8-90f2-01f8a9448534", + "type": "join", + "votes": [], + "state": "failed", + "quietEndingPeriod": 3600, + "description": { + "links": [], + "description": "Sdfsdfsdf add" + }, + "createdAt": { + "_seconds": 1619172158, + "_nanoseconds": 228000000 + }, + "updatedAt": { + "_seconds": 1619229900, + "_nanoseconds": 444000000 + }, + "join": { + "fundingType": "one-time", + "payments": [], + "ip": "87.121.103.94", + "funding": 0 + } + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '0ebece3d-103c-4a00-ad85-cb0678277699',\n common: {\n connect: {\n id: '8d1d4dd3-ccf4-48f8-90f2-01f8a9448534'\n }\n },\n user: {\n connect: {\n id: 'Ctra8TjcUgNUw3tniX4aZtu2dwl1'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Sdfsdfsdf add',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '87.121.103.94',\n expiresAt: new Date('2021-04-24T02:02:38.228Z'),\n votesFor: 0,\n votesAgainst: 0,\n importedFrom: '{\"votesFor\":0,\"id\":\"0ebece3d-103c-4a00-ad85-cb0678277699\",\"proposerId\":\"Xlun3Ux94Zfc73axkiuVdkktOWf1\",\"countdownPeriod\":57600,\"votesAgainst\":0,\"commonId\":\"8d1d4dd3-ccf4-48f8-90f2-01f8a9448534\",\"type\":\"join\",\"votes\":[],\"state\":\"failed\",\"quietEndingPeriod\":3600,\"description\":{\"links\":[],\"description\":\"Sdfsdfsdf add\"},\"createdAt\":{\"_seconds\":1619172158,\"_nanoseconds\":228000000},\"updatedAt\":{\"_seconds\":1619229900,\"_nanoseconds\":444000000},\"join\":{\"fundingType\":\"one-time\",\"payments\":[],\"ip\":\"87.121.103.94\",\"funding\":0}}',\n join: {\n create: {\n id: '0ebece3d-103c-4a00-ad85-cb0678277699',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '0ebece3d-103c-4a00-ad85-cb0678277699',\n common: {\n connect: {\n id: '8d1d4dd3-ccf4-48f8-90f2-01f8a9448534'\n }\n },\n user: {\n connect: {\n id: 'Ctra8TjcUgNUw3tniX4aZtu2dwl1'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'Sdfsdfsdf add',\n files: [],\n images: [],\n links: [],\n state: 'Rejected',\n ipAddress: '87.121.103.94',\n expiresAt: new Date('2021-04-24T02:02:38.228Z'),\n votesFor: 0,\n votesAgainst: 0,\n importedFrom: '{\"votesFor\":0,\"id\":\"0ebece3d-103c-4a00-ad85-cb0678277699\",\"proposerId\":\"Xlun3Ux94Zfc73axkiuVdkktOWf1\",\"countdownPeriod\":57600,\"votesAgainst\":0,\"commonId\":\"8d1d4dd3-ccf4-48f8-90f2-01f8a9448534\",\"type\":\"join\",\"votes\":[],\"state\":\"failed\",\"quietEndingPeriod\":3600,\"description\":{\"links\":[],\"description\":\"Sdfsdfsdf add\"},\"createdAt\":{\"_seconds\":1619172158,\"_nanoseconds\":228000000},\"updatedAt\":{\"_seconds\":1619229900,\"_nanoseconds\":444000000},\"join\":{\"fundingType\":\"one-time\",\"payments\":[],\"ip\":\"87.121.103.94\",\"funding\":0}}',\n join: {\n create: {\n id: '0ebece3d-103c-4a00-ad85-cb0678277699',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "commonId": "8d1d4dd3-ccf4-48f8-90f2-01f8a9448534", + "join": { + "fundingType": "one-time", + "funding": 0, + "payments": [] + }, + "votes": [ + { + "voterId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "voteOutcome": "approved", + "voteId": "ebf721ea-8314-4b9f-9c3f-d9e2065a1786" + }, + { + "voteId": "64b7f658-96aa-4b4c-a867-65fa2368c5e1", + "voteOutcome": "approved", + "voterId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2" + } + ], + "countdownPeriod": 57600, + "votesAgainst": 0, + "updatedAt": { + "_seconds": 1611043395, + "_nanoseconds": 516000000 + }, + "proposerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "createdAt": { + "_seconds": 1611043342, + "_nanoseconds": 95000000 + }, + "id": "055c7ca9-3e2a-43c7-a657-e1ff9c4d213e", + "type": "join", + "state": "passed", + "votesFor": 2, + "quietEndingPeriod": 3600, + "description": { + "links": [], + "description": "אא" + } + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '055c7ca9-3e2a-43c7-a657-e1ff9c4d213e',\n common: {\n connect: {\n id: '8d1d4dd3-ccf4-48f8-90f2-01f8a9448534'\n }\n },\n user: {\n connect: {\n id: '2PfVmKNEvmZEz3P3VnJ7Pl9WAwd2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'אא',\n files: [],\n images: [],\n links: [],\n state: 'Accepted',\n ipAddress: undefined,\n expiresAt: new Date('2021-01-20T00:02:22.095Z'),\n votesFor: 2,\n votesAgainst: 0,\n importedFrom: '{\"commonId\":\"8d1d4dd3-ccf4-48f8-90f2-01f8a9448534\",\"join\":{\"fundingType\":\"one-time\",\"funding\":0,\"payments\":[]},\"votes\":[{\"voterId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"voteOutcome\":\"approved\",\"voteId\":\"ebf721ea-8314-4b9f-9c3f-d9e2065a1786\"},{\"voteId\":\"64b7f658-96aa-4b4c-a867-65fa2368c5e1\",\"voteOutcome\":\"approved\",\"voterId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\"}],\"countdownPeriod\":57600,\"votesAgainst\":0,\"updatedAt\":{\"_seconds\":1611043395,\"_nanoseconds\":516000000},\"proposerId\":\"Xh4xoIGHhgOhxz1S5AJkaXCBT8K2\",\"createdAt\":{\"_seconds\":1611043342,\"_nanoseconds\":95000000},\"id\":\"055c7ca9-3e2a-43c7-a657-e1ff9c4d213e\",\"type\":\"join\",\"state\":\"passed\",\"votesFor\":2,\"quietEndingPeriod\":3600,\"description\":{\"links\":[],\"description\":\"אא\"}}',\n join: {\n create: {\n id: '055c7ca9-3e2a-43c7-a657-e1ff9c4d213e',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: '055c7ca9-3e2a-43c7-a657-e1ff9c4d213e',\n common: {\n connect: {\n id: '8d1d4dd3-ccf4-48f8-90f2-01f8a9448534'\n }\n },\n user: {\n connect: {\n id: '2PfVmKNEvmZEz3P3VnJ7Pl9WAwd2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'אא',\n files: [],\n images: [],\n links: [],\n state: 'Accepted',\n ipAddress: undefined,\n expiresAt: new Date('2021-01-20T00:02:22.095Z'),\n votesFor: 2,\n votesAgainst: 0,\n importedFrom: '{\"commonId\":\"8d1d4dd3-ccf4-48f8-90f2-01f8a9448534\",\"join\":{\"fundingType\":\"one-time\",\"funding\":0,\"payments\":[]},\"votes\":[{\"voterId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"voteOutcome\":\"approved\",\"voteId\":\"ebf721ea-8314-4b9f-9c3f-d9e2065a1786\"},{\"voteId\":\"64b7f658-96aa-4b4c-a867-65fa2368c5e1\",\"voteOutcome\":\"approved\",\"voterId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\"}],\"countdownPeriod\":57600,\"votesAgainst\":0,\"updatedAt\":{\"_seconds\":1611043395,\"_nanoseconds\":516000000},\"proposerId\":\"Xh4xoIGHhgOhxz1S5AJkaXCBT8K2\",\"createdAt\":{\"_seconds\":1611043342,\"_nanoseconds\":95000000},\"id\":\"055c7ca9-3e2a-43c7-a657-e1ff9c4d213e\",\"type\":\"join\",\"state\":\"passed\",\"votesFor\":2,\"quietEndingPeriod\":3600,\"description\":{\"links\":[],\"description\":\"אא\"}}',\n join: {\n create: {\n id: '055c7ca9-3e2a-43c7-a657-e1ff9c4d213e',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "state": "failed", + "description": { + "description": "Check for breaks", + "links": [] + }, + "createdAt": { + "_seconds": 1607364416, + "_nanoseconds": 538000000 + }, + "type": "join", + "votesFor": 0, + "commonId": "02314122-6b05-4563-a8ce-4a10e97b72da", + "id": "9538edc1-05fc-466d-8f06-e66115804ee2", + "proposerId": "Sxv19oCvKAZq2vntJdYCTYSpWWN2", + "votesAgainst": 0, + "quietEndingPeriod": 3600, + "votes": [], + "updatedAt": { + "_seconds": 1607371801, + "_nanoseconds": 41000000 + }, + "join": { + "funding": 2400, + "fundingType": "one-time", + "cardId": "61d429ca-0313-4092-9705-bef6897da1e5" + }, + "countdownPeriod": 7200 + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "state": "failed", + "votesAgainst": 0, + "countdownPeriod": 7200, + "votesFor": 0, + "type": "join", + "createdAt": { + "_seconds": 1607362767, + "_nanoseconds": 788000000 + }, + "description": { + "description": "Bop", + "links": [] + }, + "votes": [], + "id": "9824e72f-3b5c-4597-b5d4-3a5f1fca2378", + "proposerId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "commonId": "ccb9af54-2c85-464f-82cf-3f3d751c1db2", + "join": { + "funding": 10000, + "fundingType": "one-time", + "cardId": "a1626928-aaea-4f9d-a6ea-9b9930bab558" + }, + "updatedAt": { + "_seconds": 1607370000, + "_nanoseconds": 750000000 + }, + "quietEndingPeriod": 3600 + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "countdownPeriod": 86400, + "quietEndingPeriod": 3600, + "commonId": "10fd7df7-eae9-4995-9c85-90e691c439e1", + "id": "a03805a9-bcea-460e-aab0-b337f74bd24e", + "votesAgainst": 0, + "proposerId": "Sxv19oCvKAZq2vntJdYCTYSpWWN2", + "createdAt": { + "_seconds": 1605601152, + "_nanoseconds": 770000000 + }, + "join": { + "funding": 27100, + "cardId": "1b8e238f-1158-4b39-8747-c61cbc968dfc" + }, + "type": "join", + "updatedAt": { + "_seconds": 1605641709, + "_nanoseconds": 628000000 + }, + "description": { + "description": "A circle has no beginning", + "links": [], + "files": [] + }, + "votes": [ + { + "voteId": "08983d67-54f7-4ba1-ba46-a900ef35f6f2", + "voteOutcome": "approved", + "voterId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1" + } + ], + "votesFor": 1, + "state": "passed" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "type": "join", + "quietEndingPeriod": 3600, + "proposerId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1", + "description": { + "links": [], + "description": "Testing" + }, + "id": "a2f5960c-b2e8-4db9-ac0f-ad267f407b64", + "votesFor": 1, + "updatedAt": { + "_seconds": 1605874500, + "_nanoseconds": 345000000 + }, + "votes": [ + { + "voterId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "voteId": "db22dc3a-0441-495f-83ec-6bc0b194f42a", + "voteOutcome": "approved" + } + ], + "countdownPeriod": 86400, + "state": "passed", + "votesAgainst": 0, + "createdAt": { + "_seconds": 1605787943, + "_nanoseconds": 509000000 + }, + "join": { + "cardId": "dd1440ff-0ab6-43f3-9f68-311997e2f23d", + "funding": 2400 + }, + "commonId": "f5edae9d-e0ab-415c-8610-4ab706b7748e" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposerId": "0jL6u33k2rMoEY8wUmnIvkJM48O2", + "createdAt": { + "_seconds": 1605601493, + "_nanoseconds": 904000000 + }, + "state": "passed", + "quietEndingPeriod": 3600, + "votesFor": 1, + "id": "a58fa085-f1aa-4418-ad14-7d4eb51802fc", + "countdownPeriod": 86400, + "commonId": "5dedabe9-c005-4f0b-a02d-48721465dbaf", + "votesAgainst": 0, + "updatedAt": { + "_seconds": 1605601569, + "_nanoseconds": 341000000 + }, + "type": "join", + "join": { + "cardId": "1b8e238f-1158-4b39-8747-c61cbc968dfc", + "funding": 7700 + }, + "description": { + "links": [], + "files": [], + "description": "Test" + }, + "votes": [ + { + "voteOutcome": "approved", + "voterId": "Xlun3Ux94Zfc73axkiuVdkktOWf1", + "voteId": "ff717b29-41c9-4bc5-a5ad-ab69f8cc0615" + } + ] + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "votes": [ + { + "voterId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1", + "voteOutcome": "approved", + "voteId": "b9a480b0-e246-4bbe-900b-ae3459a1860a" + }, + { + "voteId": "2a674d08-51ee-4f0e-813e-df3c05903d76", + "voteOutcome": "approved", + "voterId": "Sxv19oCvKAZq2vntJdYCTYSpWWN2" + } + ], + "description": { + "links": [], + "description": "Yo Moore let me in!\t" + }, + "votesAgainst": 0, + "updatedAt": { + "_seconds": 1606142043, + "_nanoseconds": 473000000 + }, + "id": "a62e9218-10ac-4f9f-964b-094e8ea90f2f", + "countdownPeriod": 86400, + "state": "passed", + "type": "join", + "quietEndingPeriod": 3600, + "commonId": "10fd7df7-eae9-4995-9c85-90e691c439e1", + "votesFor": 2, + "join": { + "funding": 67750, + "cardId": "0a9df2a8-351b-4875-bdcd-29eec0ddbe7e" + }, + "proposerId": "7rUTurSrx8gJcfaGaoh29uPKvjU2", + "createdAt": { + "_seconds": 1606141272, + "_nanoseconds": 948000000 + } + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "type": "join", + "commonId": "f115aaab-cb74-4104-8ead-ae5e53264cc8", + "description": { + "description": "Ho", + "links": [] + }, + "proposerId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "createdAt": { + "_seconds": 1606232782, + "_nanoseconds": 238000000 + }, + "join": { + "cardId": "cb565ef2-716a-49c0-9246-3ad3c76d6e21", + "funding": 10000 + }, + "countdownPeriod": 86400, + "state": "failed", + "id": "a65a67f2-0ddc-4995-a0e9-007f7daf831c", + "updatedAt": { + "_seconds": 1606319401, + "_nanoseconds": 842000000 + }, + "votesAgainst": 0, + "votesFor": 0, + "quietEndingPeriod": 3600, + "votes": [] + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "createdAt": { + "_seconds": 1607270487, + "_nanoseconds": 683000000 + }, + "countdownPeriod": 7200, + "votes": [ + { + "voteOutcome": "approved", + "voterId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "voteId": "5e1df9f0-c88c-4b0f-b978-a28d9c7effe8" + } + ], + "votesAgainst": 0, + "quietEndingPeriod": 3600, + "votesFor": 1, + "updatedAt": { + "_seconds": 1607270631, + "_nanoseconds": 960000000 + }, + "commonId": "05e4c4a2-6957-42ea-bc49-073a307313d8", + "join": { + "cardId": "f3e13d4d-a642-42d2-ab78-c3b245944afd", + "fundingType": "one-time", + "funding": 1250 + }, + "id": "aab1c1cc-d6e1-4cda-88f2-d3b4b3d38950", + "description": { + "description": "Hop", + "links": [] + }, + "type": "join", + "state": "passed", + "proposerId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "createdAt": { + "_seconds": 1605802571, + "_nanoseconds": 596000000 + }, + "countdownPeriod": 86400, + "commonId": "47729f96-adfe-4dc4-95fd-a74431d38942", + "votesAgainst": 0, + "state": "passed", + "proposerId": "b0Kxsd0x4OMLeOlDnheysBz5THo1", + "updatedAt": { + "_seconds": 1605889201, + "_nanoseconds": 155000000 + }, + "votes": [ + { + "voterId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1", + "voteOutcome": "approved", + "voteId": "a2d157a1-8aa0-4c9c-871e-ce7bfc8b73b7" + } + ], + "description": { + "links": [], + "description": "Recording demo" + }, + "type": "join", + "id": "abb314c8-2c9e-4715-8a94-cb6d18bd84ea", + "join": { + "fundingType": "one-time", + "funding": 501, + "cardId": "88e9cd48-66a9-422a-a343-11ef5cea5b73" + }, + "votesFor": 1, + "quietEndingPeriod": 3600 + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "state": "failed", + "id": "b6d5ddec-bde5-4dd2-8a5e-25ced7eb0301", + "quietEndingPeriod": 3600, + "type": "join", + "commonId": "f115aaab-cb74-4104-8ead-ae5e53264cc8", + "join": { + "cardId": "4810a1f7-2f2f-4c6b-ae8a-106a9b8fc1fc", + "funding": 10000 + }, + "description": { + "links": [], + "description": "Meet you " + }, + "votes": [], + "votesFor": 0, + "createdAt": { + "_seconds": 1606827848, + "_nanoseconds": 61000000 + }, + "proposerId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "updatedAt": { + "_seconds": 1606835101, + "_nanoseconds": 252000000 + }, + "votesAgainst": 0, + "countdownPeriod": 7200 + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "updatedAt": { + "_seconds": 1607514301, + "_nanoseconds": 163000000 + }, + "proposerId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "votesFor": 0, + "id": "c96e8ee3-6cf2-4173-bd86-80965c0a1af7", + "votesAgainst": 0, + "type": "join", + "createdAt": { + "_seconds": 1607506868, + "_nanoseconds": 212000000 + }, + "quietEndingPeriod": 3600, + "countdownPeriod": 7200, + "description": { + "links": [], + "description": "Bv" + }, + "join": { + "cardId": "baf9889d-a7ad-422a-b599-da4644a7bf01", + "fundingType": "one-time", + "funding": 2500 + }, + "state": "failed", + "votes": [], + "commonId": "e07c6cd7-3f45-4d4e-8a4f-3139e28b5c00" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "votesFor": 1, + "votesAgainst": 0, + "commonId": "548ca0ab-e29c-44bb-ba2c-684c4d86d591", + "quietEndingPeriod": 3600, + "updatedAt": { + "_seconds": 1607248475, + "_nanoseconds": 773000000 + }, + "proposerId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "description": { + "links": [], + "description": "מחנה יהודה מחנה ריכוז אצל ילדה בת שנה וחצי בערב ראש השנה של שיר מאתמול נזרקו לעבר ישראל היא מדינה פלסטינית על התנחלויות את בדרך של עיקור כלבים רועה גרמני אני רוצה לעשות שבוע טוב ומבורך לכולם שבוע של אמנות זו או" + }, + "countdownPeriod": 7200, + "id": "cb0d5019-24fc-4332-9ef1-f704b656a5ef", + "state": "passed", + "join": { + "cardId": "174cab3b-f22e-4620-a4ea-0bf4d109c83f", + "funding": 80000, + "fundingType": "one-time" + }, + "createdAt": { + "_seconds": 1607247986, + "_nanoseconds": 799000000 + }, + "votes": [ + { + "voterId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "voteOutcome": "approved", + "voteId": "ec7af0da-0e28-442b-a91c-7a2ab17124b7" + } + ], + "type": "join" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "quietEndingPeriod": 3600, + "id": "ceeeaf04-7dae-45e0-b886-2063549b75be", + "state": "passed", + "type": "join", + "createdAt": { + "_seconds": 1606297371, + "_nanoseconds": 912000000 + }, + "join": { + "cardId": "5648f085-ecc3-424d-9602-f1ac5bd4c13f", + "fundingType": "one-time", + "funding": 500 + }, + "updatedAt": { + "_seconds": 1606297471, + "_nanoseconds": 668000000 + }, + "countdownPeriod": 86400, + "votesFor": 1, + "votesAgainst": 0, + "description": { + "links": [], + "description": "Hello" + }, + "commonId": "8db41ae6-98c8-421a-88f9-24cfff29bb22", + "votes": [ + { + "voterId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1", + "voteOutcome": "approved", + "voteId": "f8ea6397-542c-4312-9157-5ca117257b47" + } + ], + "proposerId": "b0Kxsd0x4OMLeOlDnheysBz5THo1" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "countdownPeriod": 86400, + "createdAt": { + "_seconds": 1606390806, + "_nanoseconds": 407000000 + }, + "updatedAt": { + "_seconds": 1606390882, + "_nanoseconds": 787000000 + }, + "votesFor": 1, + "commonId": "e1996c12-9341-4771-b4a8-11602f728b5f", + "quietEndingPeriod": 3600, + "type": "join", + "proposerId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "state": "passed", + "votes": [ + { + "voteId": "74dfa98f-2770-48ff-940d-5081ef28b214", + "voterId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "voteOutcome": "approved" + } + ], + "votesAgainst": 0, + "join": { + "cardId": "00a4ce34-105d-4a56-a0ec-8129ffe85980", + "fundingType": "one-time", + "funding": 2500 + }, + "id": "d23a0c59-e1f2-42bf-9e36-dcaa7f806611", + "description": { + "links": [], + "description": "Ho" + } + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "quietEndingPeriod": 3600, + "commonId": "a941e54a-cdbe-4177-a92d-bc6c45ca0f18", + "type": "join", + "updatedAt": { + "_seconds": 1606493401, + "_nanoseconds": 6000000 + }, + "state": "failed", + "id": "d4152242-e2a8-4274-97af-3f9ab8d44a72", + "proposerId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "countdownPeriod": 86400, + "join": { + "cardId": "78f5f734-0a2e-43f5-aae8-33365539ddbd", + "funding": 700, + "fundingType": "one-time" + }, + "votesAgainst": 0, + "createdAt": { + "_seconds": 1606406791, + "_nanoseconds": 911000000 + }, + "votesFor": 0, + "votes": [], + "description": { + "links": [], + "description": "Hh" + } + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "updatedAt": { + "_seconds": 1607011593, + "_nanoseconds": 863000000 + }, + "votesFor": 2, + "state": "passed", + "votes": [ + { + "voteId": "9d7a29f5-d550-4011-b60c-bedba42c8819", + "voteOutcome": "approved", + "voterId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2" + }, + { + "voterId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "voteOutcome": "approved", + "voteId": "4b5b5ffc-d140-4466-aee0-245a347bb4c6" + } + ], + "quietEndingPeriod": 3600, + "votesAgainst": 0, + "commonId": "4ec02f70-a8dc-4947-9b5f-c74f34954073", + "description": { + "description": "Hoho", + "links": [] + }, + "proposerId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "join": { + "cardId": "3374c74d-35aa-4da0-a160-a76a1d3f1a8f", + "funding": 40000 + }, + "countdownPeriod": 7200, + "type": "join", + "createdAt": { + "_seconds": 1607011507, + "_nanoseconds": 285000000 + }, + "id": "d95a1b9c-7492-4905-9e5a-f65ebd072938" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposerId": "b0Kxsd0x4OMLeOlDnheysBz5THo1", + "countdownPeriod": 7200, + "join": { + "cardId": "e473fe20-0cc1-40e9-baaa-0d8dd2a152ae", + "funding": 501 + }, + "createdAt": { + "_seconds": 1606826136, + "_nanoseconds": 360000000 + }, + "votes": [ + { + "voteId": "dbda23d2-f655-401d-840e-c0f7e12ea951", + "voteOutcome": "approved", + "voterId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1" + }, + { + "voteId": "fb47114c-f1cf-4036-a457-be8da25fa192", + "voterId": "Sxv19oCvKAZq2vntJdYCTYSpWWN2", + "voteOutcome": "approved" + } + ], + "votesFor": 2, + "id": "f0cc8207-c39b-4d0f-98f7-498d7af4ce46", + "state": "passed", + "updatedAt": { + "_seconds": 1606826411, + "_nanoseconds": 122000000 + }, + "quietEndingPeriod": 3600, + "commonId": "10fd7df7-eae9-4995-9c85-90e691c439e1", + "type": "join", + "votesAgainst": 0, + "description": { + "links": [], + "description": "Fail this payment " + } + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "description": { + "files": [], + "description": "Fail this", + "links": [] + }, + "votesFor": 2, + "commonId": "47729f96-adfe-4dc4-95fd-a74431d38942", + "updatedAt": { + "_seconds": 1605773691, + "_nanoseconds": 487000000 + }, + "quietEndingPeriod": 3600, + "join": { + "fundingType": "one-time", + "cardId": "dc9a9015-119f-4611-8d89-01521281e0bd", + "funding": 100 + }, + "proposerId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1", + "id": "f3c7c740-9bd2-4a9e-a534-ec82eb72b28a", + "votes": [ + { + "voteOutcome": "approved", + "voteId": "911ac6e3-d200-419e-8440-1cf7120d11ab", + "voterId": "Sxv19oCvKAZq2vntJdYCTYSpWWN2" + } + ], + "createdAt": { + "_seconds": 1605773440, + "_nanoseconds": 606000000 + }, + "countdownPeriod": 86400, + "state": "passed", + "votesAgainst": 0, + "type": "join" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "votes": [], + "type": "join", + "join": { + "funding": 501, + "cardId": "2a001314-594a-4c49-bd16-80ed035e836d", + "fundingType": "one-time" + }, + "updatedAt": { + "_seconds": 1606376100, + "_nanoseconds": 344000000 + }, + "state": "failed", + "votesAgainst": 0, + "commonId": "47729f96-adfe-4dc4-95fd-a74431d38942", + "description": { + "description": "Hey", + "links": [] + }, + "quietEndingPeriod": 3600, + "id": "f90776ef-7814-4d4a-a5f7-851f21a428fc", + "countdownPeriod": 86400, + "votesFor": 0, + "proposerId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "createdAt": { + "_seconds": 1606289586, + "_nanoseconds": 607000000 + } + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "updatedAt": { + "_seconds": 1618884300, + "_nanoseconds": 449999000 + }, + "description": { + "links": [], + "description": "Asd asd as das das da as" + }, + "countdownPeriod": 57600, + "type": "join", + "votesFor": 0, + "votes": [], + "state": "failed", + "join": { + "funding": 500, + "ip": "46.53.241.63", + "fundingType": "one-time", + "cardId": "e954ba2f-41df-4bf3-9e20-285b07297253", + "payments": [] + }, + "proposerId": "RoUaatJIeccpYxcDD7v1fqJrHZx2", + "id": "23d28a15-39b6-4b21-9a10-2dc1f85c9c71", + "quietEndingPeriod": 3600, + "commonId": "05e4c4a2-6957-42ea-bc49-073a307313d8", + "createdAt": { + "_seconds": 1618826627, + "_nanoseconds": 52000000 + }, + "votesAgainst": 0 + }, + "error": { + "message": "\nInvalid `prisma.user.findUnique()` invocation:\n\n{\n where: {\n? email?: String,\n? id?: String\n }\n}\n\nArgument where of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\n\nNote: Lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.user.findUnique()` invocation:\n\n{\n where: {\n? email?: String,\n? id?: String\n }\n}\n\nArgument where of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\n\nNote: Lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "commonId": "426c877a-2fd2-43eb-9480-b430a1259d49", + "votes": [ + { + "voterId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "voteOutcome": "approved", + "voteId": "909bda59-2a80-44f6-972b-a732a5428767" + } + ], + "createdAt": { + "_seconds": 1608557895, + "_nanoseconds": 392000000 + }, + "state": "passed", + "votesAgainst": 0, + "proposerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "paymentState": "confirmed", + "type": "join", + "updatedAt": { + "_seconds": 1608557951, + "_nanoseconds": 123000000 + }, + "join": { + "cardId": "f8fdaba3-878c-498a-a97a-ab7a08d5b5c0", + "payments": [], + "funding": 5250, + "fundingType": "monthly" + }, + "description": { + "links": [], + "description": "מי" + }, + "votesFor": 1, + "countdownPeriod": 7200, + "id": "5b0fe9c9-c271-40a3-bd97-86324ee2561b", + "quietEndingPeriod": 3600 + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "createdAt": { + "_seconds": 1608201956, + "_nanoseconds": 346000000 + }, + "updatedAt": { + "_seconds": 1608202066, + "_nanoseconds": 964000000 + }, + "countdownPeriod": 7200, + "id": "08a10ac0-5903-4831-9777-6b5008a60183", + "votesFor": 1, + "commonId": "505ca135-36e4-4ea6-8978-0f6fb6a7f975", + "votesAgainst": 0, + "votes": [ + { + "voteId": "aed5864b-ea9e-4b85-b26f-75b29064701e", + "voterId": "h59V0do13qhpeH9xDyoLaCZucTm1", + "voteOutcome": "approved" + } + ], + "join": { + "payments": [], + "cardId": "5a2cae48-269d-4f55-b9c5-f7a7797a85a0", + "funding": 500 + }, + "quietEndingPeriod": 3600, + "type": "join", + "state": "passed", + "description": { + "description": "Test", + "links": [] + }, + "proposerId": "Xlun3Ux94Zfc73axkiuVdkktOWf1" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "countdownPeriod": 7200, + "votes": [ + { + "voteId": "9f892d4b-e231-437f-a487-319e5bcd9458", + "voterId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "voteOutcome": "approved" + } + ], + "quietEndingPeriod": 3600, + "proposerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "state": "passed", + "description": { + "links": [], + "description": "מיוחס" + }, + "updatedAt": { + "_seconds": 1607860102, + "_nanoseconds": 156000000 + }, + "id": "56c24f27-5d40-4918-a11d-f856789dca9a", + "votesFor": 1, + "createdAt": { + "_seconds": 1607859312, + "_nanoseconds": 826000000 + }, + "commonId": "08e9568e-377d-4c6e-aa77-45fd84922948", + "type": "join", + "votesAgainst": 0, + "join": { + "cardId": "58545097-65aa-4510-9a4a-21bdd9b2802f", + "fundingType": "monthly", + "payments": [], + "funding": 250000 + } + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "votesFor": 2, + "join": { + "fundingType": "one-time", + "cardId": "007cd628-b725-4724-871a-4eba2c84bfab", + "funding": 501 + }, + "proposerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "commonId": "e1996c12-9341-4771-b4a8-11602f728b5f", + "votesAgainst": 0, + "description": { + "description": "Now", + "links": [] + }, + "createdAt": { + "_seconds": 1606659417, + "_nanoseconds": 428000000 + }, + "votes": [ + { + "voteId": "ae39f248-53bc-41bb-9198-60da8006097d", + "voteOutcome": "approved", + "voterId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2" + }, + { + "voteId": "6e937e02-172e-4169-b3c9-68046fc10cea", + "voteOutcome": "approved", + "voterId": "97d5y9WXk1fEZv767j1ejKuHevi1" + } + ], + "type": "join", + "updatedAt": { + "_seconds": 1606659730, + "_nanoseconds": 863000000 + }, + "quietEndingPeriod": 3600, + "countdownPeriod": 86400, + "id": "1f81aca0-7ac2-4f1b-9593-40326aa1cbc1", + "state": "passed" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "votesFor": 2, + "paymentState": "confirmed", + "id": "2fc72a59-5015-4cd3-a89a-d6ec30712cd9", + "votesAgainst": 0, + "commonId": "244884c6-6682-4a21-90af-bc8025f42eff", + "type": "join", + "createdAt": { + "_seconds": 1612858791, + "_nanoseconds": 815000000 + }, + "countdownPeriod": 57600, + "state": "passed", + "updatedAt": { + "_seconds": 1612858936, + "_nanoseconds": 69000000 + }, + "join": { + "payments": [], + "funding": 30000, + "fundingType": "monthly", + "cardId": "d83e3944-985e-46cb-85fa-2ac249a51ab0" + }, + "proposerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "quietEndingPeriod": 3600, + "description": { + "description": "Fj", + "links": [] + }, + "votes": [ + { + "voteId": "27f46e19-5090-49c5-943e-c1f2a224e5cb", + "voterId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "voteOutcome": "approved" + }, + { + "voteOutcome": "approved", + "voterId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "voteId": "da1655f4-2012-401e-81ec-fbc0d8a43ed3" + } + ] + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "votesAgainst": 0, + "paymentState": "confirmed", + "commonId": "120b0708-dc65-42d2-95e6-cb2efa89bbf5", + "proposerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "state": "passed", + "createdAt": { + "_seconds": 1610989370, + "_nanoseconds": 110000000 + }, + "votes": [ + { + "voteId": "091748e5-fdd2-4bc2-863d-dae44adbe37f", + "voteOutcome": "approved", + "voterId": "Sxv19oCvKAZq2vntJdYCTYSpWWN2" + } + ], + "join": { + "cardId": "7ec73788-1c33-4e60-86be-e524d495610c", + "fundingType": "one-time", + "payments": [], + "funding": 1250 + }, + "quietEndingPeriod": 3600, + "countdownPeriod": 57600, + "type": "join", + "id": "4548189d-c519-4eb6-96c5-a909c73aaeb4", + "votesFor": 1, + "description": { + "description": "כחכ", + "links": [] + }, + "updatedAt": { + "_seconds": 1610990067, + "_nanoseconds": 102000000 + } + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "commonId": "15c15871-d513-4a06-9e24-7d2c92cbd571", + "createdAt": { + "_seconds": 1617175230, + "_nanoseconds": 857000000 + }, + "type": "join", + "description": { + "description": "Asd asd asd as das das", + "links": [] + }, + "votes": [ + { + "voteOutcome": "approved", + "voteId": "f8f1f774-1e95-48a1-a7aa-fd5d30d8c9c0", + "voterId": "WMzKDGJSlWM2Rjx9JVp9StB2Bni2" + } + ], + "votesAgainst": 0, + "paymentState": "confirmed", + "id": "3b006f72-5ba3-4ff6-b429-7384af40bc65", + "updatedAt": { + "_seconds": 1617233107, + "_nanoseconds": 11000000 + }, + "proposerId": "RoUaatJIeccpYxcDD7v1fqJrHZx2", + "state": "passed", + "join": { + "fundingType": "one-time", + "payments": [ + "91985cf3-7fea-4dae-85e6-49244f6f69df" + ], + "funding": 700, + "cardId": "8a9fef18-f80e-4883-8c39-db3cd1dc9e90", + "ip": "46.53.241.63" + }, + "quietEndingPeriod": 3600, + "votesFor": 1, + "countdownPeriod": 57600 + }, + "error": { + "message": "\nInvalid `prisma.user.findUnique()` invocation:\n\n{\n where: {\n? email?: String,\n? id?: String\n }\n}\n\nArgument where of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\n\nNote: Lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.user.findUnique()` invocation:\n\n{\n where: {\n? email?: String,\n? id?: String\n }\n}\n\nArgument where of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\n\nNote: Lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "join": { + "fundingType": "one-time", + "payments": [], + "ip": "46.53.241.63", + "funding": 0 + }, + "proposerId": "RoUaatJIeccpYxcDD7v1fqJrHZx2", + "description": { + "links": [], + "description": "Ффывфывфыв" + }, + "votesAgainst": 0, + "votesFor": 0, + "id": "61e0e642-2dd9-45db-b7ec-faa91e196990", + "votes": [], + "state": "failed", + "countdownPeriod": 57600, + "updatedAt": { + "_seconds": 1618367102, + "_nanoseconds": 956999000 + }, + "type": "join", + "quietEndingPeriod": 3600, + "createdAt": { + "_seconds": 1618309493, + "_nanoseconds": 809999000 + }, + "commonId": "0644f463-4778-4233-8eac-22a1112b171f" + }, + "error": { + "message": "\nInvalid `prisma.user.findUnique()` invocation:\n\n{\n where: {\n? email?: String,\n? id?: String\n }\n}\n\nArgument where of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\n\nNote: Lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.user.findUnique()` invocation:\n\n{\n where: {\n? email?: String,\n? id?: String\n }\n}\n\nArgument where of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\n\nNote: Lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "description": { + "description": "Asdasd sad asdasd", + "links": [] + }, + "join": { + "cardId": "a6e1cc55-cfe6-4e83-8946-3142eedb5082", + "ip": "46.53.241.63", + "fundingType": "monthly", + "payments": [], + "funding": 50000 + }, + "votesFor": 0, + "votes": [], + "type": "join", + "state": "failed", + "quietEndingPeriod": 3600, + "createdAt": { + "_seconds": 1618479124, + "_nanoseconds": 414000000 + }, + "id": "47e2eea6-ced3-458e-9ef4-cfbaccdbdc6b", + "proposerId": "RoUaatJIeccpYxcDD7v1fqJrHZx2", + "votesAgainst": 0, + "updatedAt": { + "_seconds": 1618536902, + "_nanoseconds": 212000000 + }, + "commonId": "08e9568e-377d-4c6e-aa77-45fd84922948", + "countdownPeriod": 57600 + }, + "error": { + "message": "\nInvalid `prisma.user.findUnique()` invocation:\n\n{\n where: {\n? email?: String,\n? id?: String\n }\n}\n\nArgument where of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\n\nNote: Lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.user.findUnique()` invocation:\n\n{\n where: {\n? email?: String,\n? id?: String\n }\n}\n\nArgument where of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\n\nNote: Lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "id": "164ef986-a97d-4bef-a34b-b7b56542b3cf", + "state": "passed", + "commonId": "a941e54a-cdbe-4177-a92d-bc6c45ca0f18", + "description": { + "links": [], + "description": "Test" + }, + "type": "join", + "votesFor": 1, + "countdownPeriod": 86400, + "createdAt": { + "_seconds": 1606143712, + "_nanoseconds": 861000000 + }, + "join": { + "funding": 700, + "cardId": "69d73724-2cc1-4054-88f9-ac95e0ac2f5d", + "fundingType": "one-time" + }, + "votes": [ + { + "voteId": "7ab7bc70-de05-43fd-b864-35b1fea52947", + "voterId": "0jL6u33k2rMoEY8wUmnIvkJM48O2", + "voteOutcome": "approved" + } + ], + "proposerId": "Xlun3Ux94Zfc73axkiuVdkktOWf1", + "quietEndingPeriod": 3600, + "votesAgainst": 0, + "updatedAt": { + "_seconds": 1606143850, + "_nanoseconds": 555000000 + } + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "state": "passed", + "countdownPeriod": 7200, + "votesAgainst": 0, + "type": "join", + "description": { + "description": "Test", + "links": [] + }, + "quietEndingPeriod": 3600, + "proposerId": "Xlun3Ux94Zfc73axkiuVdkktOWf1", + "createdAt": { + "_seconds": 1608202512, + "_nanoseconds": 303000000 + }, + "updatedAt": { + "_seconds": 1608202679, + "_nanoseconds": 255000000 + }, + "join": { + "payments": [], + "cardId": "d280f770-b416-4659-bc36-95429e2eef26", + "funding": 500 + }, + "votes": [ + { + "voteId": "ff91f0ea-d1d9-4c4b-902a-25182d49624d", + "voterId": "h59V0do13qhpeH9xDyoLaCZucTm1", + "voteOutcome": "approved" + } + ], + "votesFor": 1, + "id": "4b66cf26-b972-4df2-b01a-c40c3302b1a7", + "commonId": "505ca135-36e4-4ea6-8978-0f6fb6a7f975" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "createdAt": { + "_seconds": 1606392984, + "_nanoseconds": 530000000 + }, + "countdownPeriod": 86400, + "votes": [], + "join": { + "cardId": "c3b1b468-2e2d-4bf2-b802-fcd91f956964", + "funding": 500 + }, + "votesAgainst": 0, + "description": { + "links": [], + "description": "Test" + }, + "id": "5a15758b-47c3-440f-8a9e-061cb2bd1ebc", + "updatedAt": { + "_seconds": 1606479601, + "_nanoseconds": 56000000 + }, + "commonId": "10fd7df7-eae9-4995-9c85-90e691c439e1", + "type": "join", + "state": "failed", + "quietEndingPeriod": 3600, + "votesFor": 0, + "proposerId": "Xlun3Ux94Zfc73axkiuVdkktOWf1" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "votes": [], + "join": { + "payments": [], + "cardId": "d8bc7562-aeb6-4112-ab0e-70fd7899a02a", + "fundingType": "monthly", + "funding": 500 + }, + "countdownPeriod": 57600, + "votesAgainst": 0, + "state": "failed", + "type": "join", + "quietEndingPeriod": 3600, + "createdAt": { + "_seconds": 1612701707, + "_nanoseconds": 75000000 + }, + "commonId": "0313e3e2-b34b-4192-9381-13fc4516a923", + "updatedAt": { + "_seconds": 1612759500, + "_nanoseconds": 553000000 + }, + "description": { + "description": "N m", + "links": [] + }, + "id": "0248343b-fe02-469f-95cc-58320c6d8f8f", + "votesFor": 0 + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "state": "passed", + "type": "join", + "votesAgainst": 0, + "commonId": "e1996c12-9341-4771-b4a8-11602f728b5f", + "proposerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "votesFor": 1, + "description": { + "links": [], + "description": "מי" + }, + "id": "5be0e468-cf17-4ef8-8f1f-81ecb6337568", + "countdownPeriod": 86400, + "updatedAt": { + "_seconds": 1606390606, + "_nanoseconds": 259000000 + }, + "quietEndingPeriod": 3600, + "join": { + "cardId": "cf56312f-5514-41e0-93cb-9423a0257dce", + "fundingType": "one-time", + "funding": 501 + }, + "votes": [ + { + "voterId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "voteOutcome": "approved", + "voteId": "f0e0e4d8-61fc-47a5-bd0b-1caf1a7afb09" + } + ], + "createdAt": { + "_seconds": 1606390555, + "_nanoseconds": 459000000 + } + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "votesAgainst": 0, + "votesFor": 0, + "updatedAt": { + "_seconds": 1618361101, + "_nanoseconds": 580000000 + }, + "createdAt": { + "_seconds": 1618303212, + "_nanoseconds": 4000000 + }, + "proposerId": "RoUaatJIeccpYxcDD7v1fqJrHZx2", + "description": { + "links": [], + "description": "Bhuhhhhu" + }, + "type": "join", + "countdownPeriod": 57600, + "quietEndingPeriod": 3600, + "votes": [], + "commonId": "04c837a8-1f63-4e37-9d22-5d8236a45880", + "id": "14835082-5f3d-420a-a7e6-a9217f4d59dc", + "state": "failed", + "join": { + "cardId": "795b28eb-2fdb-4349-8604-6f21c4688ab2", + "ip": "46.53.241.63", + "fundingType": "one-time", + "funding": 2300, + "payments": [] + } + }, + "error": { + "message": "\nInvalid `prisma.user.findUnique()` invocation:\n\n{\n where: {\n? email?: String,\n? id?: String\n }\n}\n\nArgument where of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\n\nNote: Lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.user.findUnique()` invocation:\n\n{\n where: {\n? email?: String,\n? id?: String\n }\n}\n\nArgument where of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\n\nNote: Lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "votesAgainst": 0, + "updatedAt": { + "_seconds": 1618893600, + "_nanoseconds": 348000000 + }, + "id": "2cca9889-a7f5-4327-83df-63f351aeb8d6", + "votesFor": 0, + "state": "failed", + "type": "join", + "description": { + "description": "Dada’s dads", + "links": [] + }, + "join": { + "funding": 500, + "fundingType": "one-time", + "cardId": "96074871-bece-425a-af5a-8000734a63cc", + "ip": "46.53.241.63", + "payments": [] + }, + "createdAt": { + "_seconds": 1618835719, + "_nanoseconds": 569999000 + }, + "commonId": "0970bc3f-beca-4b6e-acb1-42f1b4bba931", + "quietEndingPeriod": 3600, + "votes": [], + "countdownPeriod": 57600, + "proposerId": "RoUaatJIeccpYxcDD7v1fqJrHZx2" + }, + "error": { + "message": "\nInvalid `prisma.user.findUnique()` invocation:\n\n{\n where: {\n? email?: String,\n? id?: String\n }\n}\n\nArgument where of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\n\nNote: Lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.user.findUnique()` invocation:\n\n{\n where: {\n? email?: String,\n? id?: String\n }\n}\n\nArgument where of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\n\nNote: Lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "updatedAt": { + "_seconds": 1618368002, + "_nanoseconds": 452000000 + }, + "id": "43781eea-7fe6-4258-868d-099beaa5489f", + "state": "failed", + "quietEndingPeriod": 3600, + "commonId": "1d85812f-5a59-49bf-bb0d-c6579597bb0d", + "join": { + "fundingType": "one-time", + "payments": [], + "funding": 3000, + "cardId": "cdbbd798-4910-46a2-85ba-ceef7af8cedd", + "ip": "46.53.241.63" + }, + "votesFor": 0, + "description": { + "links": [], + "description": "Asd asd asd asd" + }, + "votesAgainst": 0, + "createdAt": { + "_seconds": 1618310294, + "_nanoseconds": 803000000 + }, + "countdownPeriod": 57600, + "votes": [], + "type": "join", + "proposerId": "RoUaatJIeccpYxcDD7v1fqJrHZx2" + }, + "error": { + "message": "\nInvalid `prisma.user.findUnique()` invocation:\n\n{\n where: {\n? email?: String,\n? id?: String\n }\n}\n\nArgument where of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\n\nNote: Lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.user.findUnique()` invocation:\n\n{\n where: {\n? email?: String,\n? id?: String\n }\n}\n\nArgument where of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\n\nNote: Lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "state": "passed", + "description": { + "description": "Dsfdsfdsfdsf", + "links": [] + }, + "proposerId": "qhAR5tQSz5bc1ad0GrMM41KNhrJ3", + "commonId": "a941e54a-cdbe-4177-a92d-bc6c45ca0f18", + "countdownPeriod": 86400, + "votesFor": 2, + "votes": [ + { + "voteId": "8f0279c4-9103-49ef-8972-e06d441dd704", + "voterId": "0jL6u33k2rMoEY8wUmnIvkJM48O2", + "voteOutcome": "approved" + }, + { + "voteId": "e135d15b-5793-4c8c-afa8-f0448269009d", + "voterId": "Xlun3Ux94Zfc73axkiuVdkktOWf1", + "voteOutcome": "approved" + } + ], + "quietEndingPeriod": 3600, + "updatedAt": { + "_seconds": 1606144457, + "_nanoseconds": 337000000 + }, + "id": "3b32fe7e-4286-48c7-a02d-027d9f496697", + "votesAgainst": 0, + "createdAt": { + "_seconds": 1606144372, + "_nanoseconds": 202000000 + }, + "join": { + "cardId": "c4518c24-378c-40af-ad6e-f595944fb737", + "funding": 700, + "fundingType": "one-time" + }, + "type": "join" + }, + "error": { + "message": "\nInvalid `prisma.user.findUnique()` invocation:\n\n{\n where: {\n? email?: String,\n? id?: String\n }\n}\n\nArgument where of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\n\nNote: Lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.user.findUnique()` invocation:\n\n{\n where: {\n? email?: String,\n? id?: String\n }\n}\n\nArgument where of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\n\nNote: Lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "state": "passed", + "quietEndingPeriod": 3600, + "votesAgainst": 0, + "commonId": "db048928-da8b-486f-b787-d810d4e90e7a", + "votesFor": 1, + "join": { + "cardId": "e513f72f-fc7a-4bba-8781-90925f7d69af", + "fundingType": "one-time", + "funding": 500 + }, + "votes": [ + { + "voteOutcome": "approved", + "voterId": "0jL6u33k2rMoEY8wUmnIvkJM48O2", + "voteId": "4e9212be-184a-4a16-8840-2f7800c383f7" + } + ], + "updatedAt": { + "_seconds": 1606841936, + "_nanoseconds": 468000000 + }, + "id": "1298f330-52ce-4b9d-9e5e-ba4638588a05", + "type": "join", + "proposerId": "Xlun3Ux94Zfc73axkiuVdkktOWf1", + "description": { + "links": [], + "description": "Test" + }, + "createdAt": { + "_seconds": 1606841871, + "_nanoseconds": 779000000 + }, + "countdownPeriod": 7200 + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "quietEndingPeriod": 3600, + "paymentState": "confirmed", + "votesAgainst": 0, + "createdAt": { + "_seconds": 1610442213, + "_nanoseconds": 721000000 + }, + "description": { + "description": "יניה", + "links": [] + }, + "votes": [ + { + "voteOutcome": "approved", + "voteId": "07bb827f-f31d-48a4-b8ef-acefbc5239f4", + "voterId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2" + } + ], + "id": "0b186271-376c-46f7-9df2-4da887653863", + "proposerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "updatedAt": { + "_seconds": 1610442276, + "_nanoseconds": 477000000 + }, + "type": "join", + "state": "passed", + "join": { + "funding": 125000, + "payments": [], + "cardId": "434966d9-4e13-4c7b-998f-d7e447cadfbb", + "fundingType": "one-time" + }, + "countdownPeriod": 57600, + "votesFor": 1, + "commonId": "58e2c1ba-9f36-49b1-a85c-47e52192b1cb" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "createdAt": { + "_seconds": 1609410925, + "_nanoseconds": 551000000 + }, + "type": "join", + "votes": [ + { + "voterId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "voteOutcome": "approved", + "voteId": "3c38778c-7798-460b-863f-148f32e38d49" + }, + { + "voterId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "voteOutcome": "approved", + "voteId": "6b07b188-aa9d-4661-9e08-ce7383e22577" + } + ], + "proposerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "updatedAt": { + "_seconds": 1609411036, + "_nanoseconds": 274000000 + }, + "quietEndingPeriod": 3600, + "description": { + "description": "חליל", + "links": [] + }, + "state": "passed", + "votesFor": 2, + "join": { + "fundingType": "monthly", + "payments": [], + "cardId": "9ade2732-2d2f-41d8-9267-2f80337bc304", + "funding": 37500 + }, + "paymentState": "confirmed", + "countdownPeriod": 57600, + "votesAgainst": 0, + "id": "0dcaddac-3908-47b5-8e88-06c5afbf254c", + "commonId": "e3492bce-fda8-4e42-b427-d0da03206f85" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "createdAt": { + "_seconds": 1608273595, + "_nanoseconds": 840000000 + }, + "updatedAt": { + "_seconds": 1608280800, + "_nanoseconds": 848000000 + }, + "type": "join", + "state": "failed", + "commonId": "05e4c4a2-6957-42ea-bc49-073a307313d8", + "votesAgainst": 0, + "proposerId": "Xlun3Ux94Zfc73axkiuVdkktOWf1", + "id": "5e58efae-c4f4-402d-beb7-618cc13b015a", + "votes": [], + "quietEndingPeriod": 3600, + "join": { + "fundingType": "one-time", + "funding": 500, + "payments": [], + "cardId": "237ff48d-6a2a-45cb-af4a-a7b707b4333e" + }, + "description": { + "links": [], + "description": "Test" + }, + "countdownPeriod": 7200, + "votesFor": 0 + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "description": { + "links": [], + "description": "Good morning I am new to the dark Knight rises in the" + }, + "createdAt": { + "_seconds": 1610268616, + "_nanoseconds": 774000000 + }, + "paymentState": "confirmed", + "votesAgainst": 0, + "quietEndingPeriod": 3600, + "countdownPeriod": 7200, + "join": { + "cardId": "a37a64f1-e7be-4a71-90d7-59936423b864", + "payments": [], + "funding": 200000, + "fundingType": "monthly" + }, + "commonId": "4d0805e3-d4ae-406d-bc89-66025e7087e2", + "votes": [ + { + "voteId": "e6064f8c-d129-4741-938d-e52e336676b1", + "voteOutcome": "approved", + "voterId": "97d5y9WXk1fEZv767j1ejKuHevi1" + } + ], + "state": "passed", + "proposerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "updatedAt": { + "_seconds": 1610269614, + "_nanoseconds": 515000000 + }, + "type": "join", + "id": "2ae71d1e-1006-4160-a313-b76dbebd07bd", + "votesFor": 1 + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "join": { + "cardId": "d34e42f6-b308-4840-9fbd-40a5ac03de9a", + "fundingType": "one-time", + "funding": 2500 + }, + "countdownPeriod": 7200, + "votesFor": 0, + "quietEndingPeriod": 3600, + "commonId": "05e4c4a2-6957-42ea-bc49-073a307313d8", + "description": { + "description": "Boo", + "links": [] + }, + "votesAgainst": 2, + "state": "failed", + "createdAt": { + "_seconds": 1607270873, + "_nanoseconds": 792000000 + }, + "id": "4e34ecb0-62cc-4cf9-b182-ab6f3f6b44e8", + "votes": [ + { + "voteOutcome": "rejected", + "voteId": "1c5e738b-5456-4125-8fb6-f11ed296c8eb", + "voterId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + { + "voteId": "0b43e825-b022-42ee-b78b-85857a1687c9", + "voterId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "voteOutcome": "rejected" + } + ], + "updatedAt": { + "_seconds": 1607270933, + "_nanoseconds": 661000000 + }, + "type": "join", + "proposerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "updatedAt": { + "_seconds": 1609286701, + "_nanoseconds": 101000000 + }, + "id": "1cddf0e7-ec85-41d8-87c5-7e114aa8f2e1", + "createdAt": { + "_seconds": 1609228956, + "_nanoseconds": 699000000 + }, + "state": "failed", + "votesFor": 0, + "description": { + "links": [ + { + "title": "Go tjhrhfbfbbf fbtbbtbt tbbtbt", + "value": "https://www.tab4u.com/songForMobile.php?id=4862" + } + ], + "description": "Fbfb" + }, + "proposerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "countdownPeriod": 57600, + "votesAgainst": 0, + "type": "join", + "join": { + "funding": 608, + "cardId": "74edc491-f263-4765-baf4-13ecff441206", + "payments": [] + }, + "quietEndingPeriod": 3600, + "votes": [], + "commonId": "10fd7df7-eae9-4995-9c85-90e691c439e1" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "paymentState": "confirmed", + "createdAt": { + "_seconds": 1611839407, + "_nanoseconds": 640000000 + }, + "id": "1e24babc-b09d-4a76-a71f-d99d0b6a61d8", + "quietEndingPeriod": 3600, + "type": "join", + "votes": [ + { + "voteId": "6e826ab8-7ebe-41f4-bc37-3bfc3d914023", + "voteOutcome": "approved", + "voterId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + { + "voteOutcome": "approved", + "voterId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "voteId": "dd83bbb7-58e5-4bda-b4b1-bf439f7f4b99" + } + ], + "join": { + "cardId": "2723c4ad-8f5f-4e08-923a-adc26bad8ad5", + "funding": 30000, + "payments": [], + "fundingType": "monthly" + }, + "state": "passed", + "countdownPeriod": 57600, + "updatedAt": { + "_seconds": 1611839485, + "_nanoseconds": 862000000 + }, + "commonId": "bcb0e449-7ce0-439b-bf0c-d1976072c7fb", + "description": { + "description": "Good morning", + "links": [] + }, + "proposerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "votesAgainst": 0, + "votesFor": 2 + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "quietEndingPeriod": 3600, + "join": { + "fundingType": "one-time", + "cardId": "ec318069-6263-4840-a0e9-fb3343946775", + "funding": 10000 + }, + "proposerId": "Xlun3Ux94Zfc73axkiuVdkktOWf1", + "votesFor": 0, + "votesAgainst": 0, + "description": { + "description": "Ertertert", + "links": [] + }, + "createdAt": { + "_seconds": 1606831287, + "_nanoseconds": 719000000 + }, + "id": "4625682b-34e5-4df7-89b2-e93877686bfc", + "countdownPeriod": 7200, + "type": "join", + "commonId": "ccb9af54-2c85-464f-82cf-3f3d751c1db2", + "state": "failed", + "updatedAt": { + "_seconds": 1606838701, + "_nanoseconds": 43000000 + }, + "votes": [] + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposerId": "Xlun3Ux94Zfc73axkiuVdkktOWf1", + "commonId": "05e4c4a2-6957-42ea-bc49-073a307313d8", + "votesFor": 0, + "id": "32b615f4-9aac-4fd4-be16-aa2a99b3b8c2", + "votes": [], + "createdAt": { + "_seconds": 1611676226, + "_nanoseconds": 948000000 + }, + "state": "failed", + "description": { + "description": "Шеяшшеяшешш", + "links": [] + }, + "votesAgainst": 0, + "join": { + "payments": [], + "cardId": "596fcf9d-e8c1-4961-90e9-3c5ee05c58f4", + "fundingType": "one-time", + "funding": 500 + }, + "quietEndingPeriod": 3600, + "updatedAt": { + "_seconds": 1611734100, + "_nanoseconds": 863000000 + }, + "countdownPeriod": 57600, + "type": "join" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "type": "join", + "paymentState": "confirmed", + "proposerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "votesFor": 1, + "countdownPeriod": 57600, + "votesAgainst": 0, + "state": "passed", + "updatedAt": { + "_seconds": 1609423984, + "_nanoseconds": 11000000 + }, + "id": "232a7fb7-c16c-46a1-a5db-d48698cef2a7", + "quietEndingPeriod": 3600, + "description": { + "description": "Heh", + "links": [] + }, + "createdAt": { + "_seconds": 1609423927, + "_nanoseconds": 502000000 + }, + "join": { + "funding": 1250, + "payments": [], + "cardId": "f1180d0a-f5c5-4ba1-b021-228e7481f42b", + "fundingType": "monthly" + }, + "votes": [ + { + "voterId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "voteId": "0389541a-0ba8-4015-bd91-1467a2ed0e3e", + "voteOutcome": "approved" + } + ], + "commonId": "ba73039b-8f74-4a6e-90a5-d93df70930a9" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "createdAt": { + "_seconds": 1609404593, + "_nanoseconds": 324000000 + }, + "id": "5dd17d6c-3871-425c-b7c1-5ed615b2b34e", + "quietEndingPeriod": 3600, + "description": { + "links": [], + "description": "Hi" + }, + "state": "failed", + "votes": [ + { + "voteId": "12ee76b9-4c15-4189-9949-cc3812d7334a", + "voteOutcome": "rejected", + "voterId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + { + "voteId": "69011562-dbe2-46e3-8718-40977951912f", + "voteOutcome": "rejected", + "voterId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2" + } + ], + "proposerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "votesFor": 0, + "join": { + "cardId": "24b5beee-df8d-471a-bbfd-d75d6bdb947b", + "fundingType": "monthly", + "funding": 37500, + "payments": [] + }, + "countdownPeriod": 57600, + "votesAgainst": 2, + "updatedAt": { + "_seconds": 1609404626, + "_nanoseconds": 246000000 + }, + "type": "join", + "commonId": "e3492bce-fda8-4e42-b427-d0da03206f85" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "state": "passed", + "countdownPeriod": 86400, + "votesFor": 1, + "commonId": "ff456b6f-b289-4e35-b895-3d23e23eaf81", + "votes": [ + { + "voterId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "voteId": "9d786456-f4ca-4cca-8be8-24151c6e8d96", + "voteOutcome": "approved" + } + ], + "description": { + "links": [ + { + "value": "https://bathly.co.il/product-category/%d7%90%d7%a8%d7%95%d7%a0%d7%95%d7%aa-%d7%90%d7%9e%d7%91%d7%98%d7%99%d7%94/", + "title": "Go" + }, + { + "value": "https://bathly.co.il/product-category/%d7%90%d7%a8%d7%95%d7%a0%d7%95%d7%aa-%d7%90%d7%9e%d7%91%d7%98%d7%99%d7%94/", + "title": "Let" + }, + { + "title": "Ffh", + "value": "https://bathly.co.il/product-category/%d7%90%d7%a8%d7%95%d7%a0%d7%95%d7%aa-%d7%90%d7%9e%d7%91%d7%98%d7%99%d7%94/" + } + ], + "description": "This video can not be obtained from the same in the hospital 😉 the same in ios the same link for the meeting is at least the same link to the same the latest flash 😸😜😜😂🤣😂 the app stuck in ios and I" + }, + "createdAt": { + "_seconds": 1606037015, + "_nanoseconds": 900000000 + }, + "updatedAt": { + "_seconds": 1606037468, + "_nanoseconds": 997000000 + }, + "id": "41509c76-89f6-424a-aa09-ec546df05292", + "type": "join", + "join": { + "cardId": "d8f48208-117b-410b-8639-943ee1b6c9f4", + "fundingType": "one-time", + "funding": 30000 + }, + "votesAgainst": 0, + "proposerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "quietEndingPeriod": 3600 + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "state": "failed", + "quietEndingPeriod": 3600, + "type": "join", + "createdAt": { + "_seconds": 1618835860, + "_nanoseconds": 246000000 + }, + "votesAgainst": 0, + "description": { + "description": "Fddfsdfdsfsdf", + "links": [] + }, + "id": "6bb95d3d-ad3a-49fd-b19a-bffdbfa9198d", + "countdownPeriod": 57600, + "updatedAt": { + "_seconds": 1618893600, + "_nanoseconds": 350000000 + }, + "votes": [], + "proposerId": "RoUaatJIeccpYxcDD7v1fqJrHZx2", + "commonId": "2a5bfc7d-9f50-4ff8-8c00-835e4b5f7b67", + "votesFor": 0, + "join": { + "cardId": "f9b32a8f-0943-45c6-80a4-d72268bc0101", + "fundingType": "monthly", + "funding": 2500, + "ip": "46.53.241.63", + "payments": [] + } + }, + "error": { + "message": "\nInvalid `prisma.user.findUnique()` invocation:\n\n{\n where: {\n? email?: String,\n? id?: String\n }\n}\n\nArgument where of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\n\nNote: Lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.user.findUnique()` invocation:\n\n{\n where: {\n? email?: String,\n? id?: String\n }\n}\n\nArgument where of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\n\nNote: Lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "state": "passed", + "countdownPeriod": 57600, + "type": "join", + "paymentState": "confirmed", + "id": "77995a37-ff4b-4438-ac79-822a37f4fc8b", + "join": { + "funding": 1500, + "cardId": "5faed414-e41f-4f4d-b5b3-143b8fb8a983", + "ip": "46.53.241.63", + "fundingType": "one-time", + "payments": [ + "984f5989-2eff-40e3-ac1a-7f14e630147c" + ] + }, + "updatedAt": { + "_seconds": 1618371007, + "_nanoseconds": 343000000 + }, + "createdAt": { + "_seconds": 1618313167, + "_nanoseconds": 552000000 + }, + "proposerId": "RoUaatJIeccpYxcDD7v1fqJrHZx2", + "votesFor": 1, + "commonId": "162374ec-7e92-47fa-b0a5-21f342fbc023", + "description": { + "links": [], + "description": "The Gdf" + }, + "quietEndingPeriod": 3600, + "votesAgainst": 0, + "votes": [ + { + "voterId": "WKODFO6A3VMqWLYE2rrmrSGRrKF2", + "voteId": "97708509-362c-4024-8185-a4598965a981", + "voteOutcome": "approved" + } + ] + }, + "error": { + "message": "\nInvalid `prisma.user.findUnique()` invocation:\n\n{\n where: {\n? email?: String,\n? id?: String\n }\n}\n\nArgument where of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\n\nNote: Lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.user.findUnique()` invocation:\n\n{\n where: {\n? email?: String,\n? id?: String\n }\n}\n\nArgument where of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\n\nNote: Lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "id": "77bab340-295a-4143-9b9b-1beec439a747", + "updatedAt": { + "_seconds": 1618892101, + "_nanoseconds": 119000000 + }, + "votes": [], + "join": { + "funding": 2400, + "payments": [], + "cardId": "c8f04825-c4bb-4156-b774-fc8a79a35d2c", + "ip": "46.53.241.63", + "fundingType": "one-time" + }, + "votesFor": 0, + "proposerId": "RoUaatJIeccpYxcDD7v1fqJrHZx2", + "countdownPeriod": 57600, + "description": { + "links": [], + "description": "Mdfmgmdf gdf gdf gd" + }, + "createdAt": { + "_seconds": 1618834418, + "_nanoseconds": 987000000 + }, + "commonId": "02314122-6b05-4563-a8ce-4a10e97b72da", + "quietEndingPeriod": 3600, + "type": "join", + "state": "failed", + "votesAgainst": 0 + }, + "error": { + "message": "\nInvalid `prisma.user.findUnique()` invocation:\n\n{\n where: {\n? email?: String,\n? id?: String\n }\n}\n\nArgument where of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\n\nNote: Lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.user.findUnique()` invocation:\n\n{\n where: {\n? email?: String,\n? id?: String\n }\n}\n\nArgument where of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\n\nNote: Lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "join": { + "ip": "46.53.241.63", + "cardId": "39afeecc-9f13-4683-8e1f-8f99a355b20d", + "payments": [], + "funding": 500, + "fundingType": "monthly" + }, + "description": { + "links": [], + "description": "Sdf sdf sdf" + }, + "quietEndingPeriod": 3600, + "type": "join", + "createdAt": { + "_seconds": 1618321228, + "_nanoseconds": 256000000 + }, + "proposerId": "RoUaatJIeccpYxcDD7v1fqJrHZx2", + "votesFor": 0, + "updatedAt": { + "_seconds": 1618379102, + "_nanoseconds": 348000000 + }, + "countdownPeriod": 57600, + "votesAgainst": 0, + "commonId": "1e3d7621-92ba-4b10-a1e8-8245fed4ca88", + "state": "failed", + "id": "8b0ddd3c-ac4c-4f4e-ad8d-1d52c54ce15b", + "votes": [] + }, + "error": { + "message": "\nInvalid `prisma.user.findUnique()` invocation:\n\n{\n where: {\n? email?: String,\n? id?: String\n }\n}\n\nArgument where of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\n\nNote: Lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.user.findUnique()` invocation:\n\n{\n where: {\n? email?: String,\n? id?: String\n }\n}\n\nArgument where of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\n\nNote: Lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "votes": [], + "votesAgainst": 0, + "moderation": { + "moderatorNote": "", + "moderator": "", + "updatedAt": { + "_seconds": 1616667967, + "_nanoseconds": 167000000 + }, + "reasons": [ + "Something Else" + ], + "reporter": "WMzKDGJSlWM2Rjx9JVp9StB2Bni2", + "flag": "reported" + }, + "id": "8b9b1546-0e19-48b0-a656-08483253fcb1", + "proposerId": "RoUaatJIeccpYxcDD7v1fqJrHZx2", + "votesFor": 0, + "description": { + "links": [], + "description": "Bdhdhfhdjbdbxhx" + }, + "commonId": "15c15871-d513-4a06-9e24-7d2c92cbd571", + "countdownPeriod": 57600, + "quietEndingPeriod": 3600, + "join": { + "funding": 700, + "cardId": "56bda85a-f6bc-4dfa-9ad3-1cb68e14bd10", + "payments": [], + "fundingType": "one-time", + "ip": "46.53.242.163" + }, + "updatedAt": { + "_seconds": 1616720101, + "_nanoseconds": 500000000 + }, + "state": "failed", + "type": "join", + "createdAt": { + "_seconds": 1616662470, + "_nanoseconds": 17000000 + } + }, + "error": { + "message": "\nInvalid `prisma.user.findUnique()` invocation:\n\n{\n where: {\n? email?: String,\n? id?: String\n }\n}\n\nArgument where of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\n\nNote: Lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.user.findUnique()` invocation:\n\n{\n where: {\n? email?: String,\n? id?: String\n }\n}\n\nArgument where of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\n\nNote: Lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "updatedAt": { + "_seconds": 1618367401, + "_nanoseconds": 511000000 + }, + "countdownPeriod": 57600, + "join": { + "fundingType": "one-time", + "ip": "46.53.241.63", + "cardId": "6df95903-092c-4474-bf1a-861c82f6135d", + "funding": 500, + "payments": [] + }, + "id": "91e54b5c-6848-4375-af65-29abd32fb2e6", + "description": { + "links": [], + "description": "Sdf sdf sdf" + }, + "votesAgainst": 0, + "votesFor": 0, + "commonId": "0970bc3f-beca-4b6e-acb1-42f1b4bba931", + "type": "join", + "state": "failed", + "createdAt": { + "_seconds": 1618309715, + "_nanoseconds": 732000000 + }, + "quietEndingPeriod": 3600, + "proposerId": "RoUaatJIeccpYxcDD7v1fqJrHZx2", + "votes": [] + }, + "error": { + "message": "\nInvalid `prisma.user.findUnique()` invocation:\n\n{\n where: {\n? email?: String,\n? id?: String\n }\n}\n\nArgument where of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\n\nNote: Lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.user.findUnique()` invocation:\n\n{\n where: {\n? email?: String,\n? id?: String\n }\n}\n\nArgument where of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\n\nNote: Lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "commonId": "10fd7df7-eae9-4995-9c85-90e691c439e1", + "proposerId": "RoUaatJIeccpYxcDD7v1fqJrHZx2", + "countdownPeriod": 57600, + "quietEndingPeriod": 3600, + "description": { + "links": [], + "description": "Tree rwerwe’re " + }, + "type": "join", + "votesFor": 2, + "updatedAt": { + "_seconds": 1618835858, + "_nanoseconds": 118000000 + }, + "votesAgainst": 0, + "votes": [ + { + "voterId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1", + "voteId": "aa154fd0-44cf-40cb-9d05-d7a7670bfc53", + "voteOutcome": "approved" + }, + { + "voteId": "883120f0-555c-4ab9-adb9-1587458cb511", + "voteOutcome": "approved", + "voterId": "Sxv19oCvKAZq2vntJdYCTYSpWWN2" + } + ], + "createdAt": { + "_seconds": 1618835790, + "_nanoseconds": 614000000 + }, + "id": "9422fd2d-1d98-48ae-b504-875c6b3ee7a6", + "state": "passed", + "join": { + "funding": 500, + "cardId": "29302870-816d-42a5-b57a-7ba431c2769f", + "payments": [], + "ip": "46.53.241.63" + } + }, + "error": { + "message": "\nInvalid `prisma.user.findUnique()` invocation:\n\n{\n where: {\n? email?: String,\n? id?: String\n }\n}\n\nArgument where of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\n\nNote: Lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.user.findUnique()` invocation:\n\n{\n where: {\n? email?: String,\n? id?: String\n }\n}\n\nArgument where of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\n\nNote: Lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "votesAgainst": 0, + "type": "join", + "votes": [], + "createdAt": { + "_seconds": 1619596697, + "_nanoseconds": 87000000 + }, + "quietEndingPeriod": 3600, + "commonId": "23f0f859-6277-414b-b66a-1de673f1792b", + "proposerId": "RoUaatJIeccpYxcDD7v1fqJrHZx2", + "countdownPeriod": 57600, + "votesFor": 0, + "id": "a5dc0712-900f-4a3d-87b0-32e7405cbe2e", + "updatedAt": { + "_seconds": 1619654401, + "_nanoseconds": 142000000 + }, + "state": "failed", + "join": { + "payments": [], + "funding": 25000, + "fundingType": "one-time", + "ip": "46.53.241.63", + "cardId": "3664dd4a-627b-45f4-9171-43ffccb41978" + }, + "description": { + "links": [], + "description": "Nkdkfsdfsdfdsf" + } + }, + "error": { + "message": "\nInvalid `prisma.user.findUnique()` invocation:\n\n{\n where: {\n? email?: String,\n? id?: String\n }\n}\n\nArgument where of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\n\nNote: Lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.user.findUnique()` invocation:\n\n{\n where: {\n? email?: String,\n? id?: String\n }\n}\n\nArgument where of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\n\nNote: Lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "updatedAt": { + "_seconds": 1618452002, + "_nanoseconds": 0 + }, + "commonId": "02314122-6b05-4563-a8ce-4a10e97b72da", + "countdownPeriod": 57600, + "quietEndingPeriod": 3600, + "type": "join", + "proposerId": "RoUaatJIeccpYxcDD7v1fqJrHZx2", + "votesFor": 0, + "state": "failed", + "join": { + "fundingType": "one-time", + "payments": [], + "funding": 2400, + "cardId": "5c9feca2-8d57-4f08-a681-4c47b3ea69d1", + "ip": "46.53.241.63" + }, + "createdAt": { + "_seconds": 1618394282, + "_nanoseconds": 822000000 + }, + "description": { + "links": [], + "description": "Fsd fsd had fsd" + }, + "votesAgainst": 0, + "id": "a8e8f2f9-ed55-4241-bfaf-221c9e1fe60c", + "votes": [] + }, + "error": { + "message": "\nInvalid `prisma.user.findUnique()` invocation:\n\n{\n where: {\n? email?: String,\n? id?: String\n }\n}\n\nArgument where of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\n\nNote: Lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.user.findUnique()` invocation:\n\n{\n where: {\n? email?: String,\n? id?: String\n }\n}\n\nArgument where of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\n\nNote: Lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "description": { + "links": [], + "description": "Test" + }, + "id": "830a1bf4-f483-43fe-b08b-b1e96f96c143", + "countdownPeriod": 57600, + "votesFor": 0, + "commonId": "08e9568e-377d-4c6e-aa77-45fd84922948", + "type": "join", + "proposerId": "Xlun3Ux94Zfc73axkiuVdkktOWf1", + "createdAt": { + "_seconds": 1611820554, + "_nanoseconds": 822000000 + }, + "votes": [], + "votesAgainst": 0, + "quietEndingPeriod": 3600, + "updatedAt": { + "_seconds": 1611878400, + "_nanoseconds": 388000000 + }, + "state": "failed", + "join": { + "payments": [], + "fundingType": "monthly", + "funding": 50000, + "cardId": "7e231bf6-dcd4-4f98-b240-67383cb17a54" + } + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "join": { + "payments": [], + "funding": 0, + "fundingType": "one-time" + }, + "id": "a6311a83-a9d6-4697-b5b5-157dfd11d2ed", + "votesFor": 2, + "commonId": "8d1d4dd3-ccf4-48f8-90f2-01f8a9448534", + "votes": [ + { + "voterId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "voteOutcome": "approved", + "voteId": "b5ff7f3e-56a3-4073-97f4-c0c574a6a954" + }, + { + "voterId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "voteOutcome": "approved", + "voteId": "a516121a-7e7a-4652-b03f-2a0b1bc7364a" + } + ], + "description": { + "description": "חח", + "links": [] + }, + "updatedAt": { + "_seconds": 1610976169, + "_nanoseconds": 348000000 + }, + "countdownPeriod": 57600, + "proposerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "quietEndingPeriod": 3600, + "votesAgainst": 0, + "state": "passed", + "createdAt": { + "_seconds": 1610976115, + "_nanoseconds": 681000000 + }, + "type": "join" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: 'a6311a83-a9d6-4697-b5b5-157dfd11d2ed',\n common: {\n connect: {\n id: '8d1d4dd3-ccf4-48f8-90f2-01f8a9448534'\n }\n },\n user: {\n connect: {\n id: '2PfVmKNEvmZEz3P3VnJ7Pl9WAwd2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'חח',\n files: [],\n images: [],\n links: [],\n state: 'Accepted',\n ipAddress: undefined,\n expiresAt: new Date('2021-01-19T05:21:55.681Z'),\n votesFor: 2,\n votesAgainst: 0,\n importedFrom: '{\"join\":{\"payments\":[],\"funding\":0,\"fundingType\":\"one-time\"},\"id\":\"a6311a83-a9d6-4697-b5b5-157dfd11d2ed\",\"votesFor\":2,\"commonId\":\"8d1d4dd3-ccf4-48f8-90f2-01f8a9448534\",\"votes\":[{\"voterId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"voteOutcome\":\"approved\",\"voteId\":\"b5ff7f3e-56a3-4073-97f4-c0c574a6a954\"},{\"voterId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"voteOutcome\":\"approved\",\"voteId\":\"a516121a-7e7a-4652-b03f-2a0b1bc7364a\"}],\"description\":{\"description\":\"חח\",\"links\":[]},\"updatedAt\":{\"_seconds\":1610976169,\"_nanoseconds\":348000000},\"countdownPeriod\":57600,\"proposerId\":\"Xh4xoIGHhgOhxz1S5AJkaXCBT8K2\",\"quietEndingPeriod\":3600,\"votesAgainst\":0,\"state\":\"passed\",\"createdAt\":{\"_seconds\":1610976115,\"_nanoseconds\":681000000},\"type\":\"join\"}',\n join: {\n create: {\n id: 'a6311a83-a9d6-4697-b5b5-157dfd11d2ed',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: 'a6311a83-a9d6-4697-b5b5-157dfd11d2ed',\n common: {\n connect: {\n id: '8d1d4dd3-ccf4-48f8-90f2-01f8a9448534'\n }\n },\n user: {\n connect: {\n id: '2PfVmKNEvmZEz3P3VnJ7Pl9WAwd2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'חח',\n files: [],\n images: [],\n links: [],\n state: 'Accepted',\n ipAddress: undefined,\n expiresAt: new Date('2021-01-19T05:21:55.681Z'),\n votesFor: 2,\n votesAgainst: 0,\n importedFrom: '{\"join\":{\"payments\":[],\"funding\":0,\"fundingType\":\"one-time\"},\"id\":\"a6311a83-a9d6-4697-b5b5-157dfd11d2ed\",\"votesFor\":2,\"commonId\":\"8d1d4dd3-ccf4-48f8-90f2-01f8a9448534\",\"votes\":[{\"voterId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"voteOutcome\":\"approved\",\"voteId\":\"b5ff7f3e-56a3-4073-97f4-c0c574a6a954\"},{\"voterId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"voteOutcome\":\"approved\",\"voteId\":\"a516121a-7e7a-4652-b03f-2a0b1bc7364a\"}],\"description\":{\"description\":\"חח\",\"links\":[]},\"updatedAt\":{\"_seconds\":1610976169,\"_nanoseconds\":348000000},\"countdownPeriod\":57600,\"proposerId\":\"Xh4xoIGHhgOhxz1S5AJkaXCBT8K2\",\"quietEndingPeriod\":3600,\"votesAgainst\":0,\"state\":\"passed\",\"createdAt\":{\"_seconds\":1610976115,\"_nanoseconds\":681000000},\"type\":\"join\"}',\n join: {\n create: {\n id: 'a6311a83-a9d6-4697-b5b5-157dfd11d2ed',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "updatedAt": { + "_seconds": 1617147901, + "_nanoseconds": 695000000 + }, + "commonId": "15c15871-d513-4a06-9e24-7d2c92cbd571", + "state": "failed", + "quietEndingPeriod": 3600, + "votesFor": 0, + "moderation": { + "flag": "reported", + "moderatorNote": "", + "reporter": "WMzKDGJSlWM2Rjx9JVp9StB2Bni2", + "updatedAt": { + "_seconds": 1617090224, + "_nanoseconds": 260000000 + }, + "moderator": "", + "reasons": [ + "Something Else" + ] + }, + "description": { + "description": "Kjnjrfgjndf kjgdf g", + "links": [] + }, + "votesAgainst": 0, + "type": "join", + "proposerId": "RoUaatJIeccpYxcDD7v1fqJrHZx2", + "join": { + "funding": 700, + "cardId": "0322bc46-bae8-4f8e-854c-22b894d9d74a", + "fundingType": "one-time", + "ip": "46.53.241.63", + "payments": [] + }, + "countdownPeriod": 57600, + "createdAt": { + "_seconds": 1617090173, + "_nanoseconds": 596000000 + }, + "votes": [], + "id": "cbad82bf-c948-43fd-93b7-61d7125ac550" + }, + "error": { + "message": "\nInvalid `prisma.user.findUnique()` invocation:\n\n{\n where: {\n? email?: String,\n? id?: String\n }\n}\n\nArgument where of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\n\nNote: Lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.user.findUnique()` invocation:\n\n{\n where: {\n? email?: String,\n? id?: String\n }\n}\n\nArgument where of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\n\nNote: Lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "votesFor": 0, + "state": "failed", + "type": "join", + "updatedAt": { + "_seconds": 1608542969, + "_nanoseconds": 335000000 + }, + "quietEndingPeriod": 3600, + "commonId": "05e4c4a2-6957-42ea-bc49-073a307313d8", + "id": "367ade29-6065-43af-a4da-a123dee5c3e0", + "votes": [ + { + "voteId": "a2cf9eed-c01b-4c8c-8d82-34d9feb947ee", + "voterId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "voteOutcome": "rejected" + }, + { + "voteId": "68ff17a6-d416-4ea2-a50d-25f1dc17db14", + "voteOutcome": "rejected", + "voterId": "97d5y9WXk1fEZv767j1ejKuHevi1" + } + ], + "description": { + "links": [], + "description": "Fr" + }, + "votesAgainst": 2, + "proposerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "countdownPeriod": 7200, + "createdAt": { + "_seconds": 1608542900, + "_nanoseconds": 481000000 + }, + "join": { + "cardId": "8a53525e-b172-4cf7-b791-5679e5bffd18", + "funding": 500, + "payments": [], + "fundingType": "one-time" + } + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposerId": "Xlun3Ux94Zfc73axkiuVdkktOWf1", + "state": "passed", + "commonId": "8e7b0468-4c9e-4447-96da-b455a5b8c190", + "quietEndingPeriod": 3600, + "id": "638206be-e759-41d2-a5a6-2de3c955112d", + "votesAgainst": 0, + "votesFor": 2, + "votes": [ + { + "voteId": "fca7bd62-9e15-4335-8ebc-0a114fece70f", + "voterId": "h59V0do13qhpeH9xDyoLaCZucTm1", + "voteOutcome": "approved" + }, + { + "voterId": "7a3rK55ZsdShvRd27sntddN2v7H2", + "voteId": "11fc964a-6b79-4493-847f-58826e494220", + "voteOutcome": "approved" + } + ], + "createdAt": { + "_seconds": 1614692221, + "_nanoseconds": 729000000 + }, + "description": { + "links": [], + "description": "Asdasdasdasd" + }, + "updatedAt": { + "_seconds": 1614692356, + "_nanoseconds": 444000000 + }, + "paymentState": "confirmed", + "join": { + "cardId": "93eb4c4d-9652-4a85-b951-79590276c3f2", + "fundingType": "one-time", + "ip": "93.123.70.236", + "payments": [ + "2c9313de-d933-4571-ae1b-6a694d2a5e76" + ], + "funding": 500 + }, + "countdownPeriod": 57600, + "type": "join" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "updatedAt": { + "_seconds": 1612249500, + "_nanoseconds": 846000000 + }, + "votes": [], + "createdAt": { + "_seconds": 1612191707, + "_nanoseconds": 3000000 + }, + "votesFor": 0, + "commonId": "31254d89-71fd-4337-9a6b-84f640f77f78", + "description": { + "links": [], + "description": "Fb" + }, + "state": "failed", + "proposerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "join": { + "cardId": "409a1949-bae5-40a8-8ab3-2c2947c14a82", + "funding": 30000, + "fundingType": "monthly", + "payments": [] + }, + "quietEndingPeriod": 3600, + "votesAgainst": 0, + "countdownPeriod": 57600, + "id": "83bb950c-1a5a-4298-b9c0-2bc66af1780d", + "type": "join" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "id": "87ad6397-9904-4d69-b91e-a0c6f44ced92", + "proposerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "createdAt": { + "_seconds": 1610274816, + "_nanoseconds": 353000000 + }, + "join": { + "funding": 15750, + "cardId": "84cd18eb-2fe0-49a1-9759-36843c45b026", + "fundingType": "one-time", + "payments": [] + }, + "commonId": "54435e0a-8675-42de-9df2-803ff3a30b6e", + "description": { + "links": [], + "description": "Xh" + }, + "votesAgainst": 0, + "quietEndingPeriod": 3600, + "votesFor": 0, + "updatedAt": { + "_seconds": 1610282101, + "_nanoseconds": 436000000 + }, + "state": "failed", + "votes": [], + "type": "join", + "countdownPeriod": 7200 + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "join": { + "fundingType": "one-time", + "funding": 300000, + "cardId": "c998554c-d0f6-41c9-9e83-b2c062518820", + "payments": [] + }, + "updatedAt": { + "_seconds": 1608209101, + "_nanoseconds": 898000000 + }, + "votesFor": 0, + "createdAt": { + "_seconds": 1608201875, + "_nanoseconds": 735000000 + }, + "votes": [], + "countdownPeriod": 7200, + "type": "join", + "commonId": "120b0708-dc65-42d2-95e6-cb2efa89bbf5", + "quietEndingPeriod": 3600, + "proposerId": "Xlun3Ux94Zfc73axkiuVdkktOWf1", + "description": { + "links": [ + { + "value": "https://test.test", + "title": "Test" + }, + { + "value": "https://ttttt.tt", + "title": "Asdasdsad" + } + ], + "description": "Test" + }, + "votesAgainst": 0, + "id": "8903eed3-c6f9-4e24-8806-f3038719d991", + "state": "failed" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "type": "join", + "updatedAt": { + "_seconds": 1608138301, + "_nanoseconds": 193000000 + }, + "votesAgainst": 0, + "countdownPeriod": 7200, + "proposerId": "Xlun3Ux94Zfc73axkiuVdkktOWf1", + "description": { + "links": [], + "description": "Test" + }, + "state": "failed", + "createdAt": { + "_seconds": 1608130930, + "_nanoseconds": 197000000 + }, + "join": { + "cardId": "1f02d991-147c-4f3b-91c2-5dcd878cc43e", + "fundingType": "one-time", + "payments": [], + "funding": 3000 + }, + "commonId": "1d85812f-5a59-49bf-bb0d-c6579597bb0d", + "id": "68786194-0f81-4a04-b6bd-9c2d8e2f14a6", + "votesFor": 0, + "quietEndingPeriod": 3600, + "votes": [] + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "countdownPeriod": 57600, + "state": "failed", + "join": { + "cardId": "084979f0-85f3-4226-ae4f-70cff789beaa", + "fundingType": "one-time", + "funding": 500, + "payments": [] + }, + "votesFor": 0, + "commonId": "120b0708-dc65-42d2-95e6-cb2efa89bbf5", + "votes": [], + "description": { + "description": "How", + "links": [] + }, + "createdAt": { + "_seconds": 1610610580, + "_nanoseconds": 269000000 + }, + "updatedAt": { + "_seconds": 1610668200, + "_nanoseconds": 616000000 + }, + "votesAgainst": 0, + "type": "join", + "id": "6bbb5c4d-8018-4295-b040-9a05a7c0008c", + "quietEndingPeriod": 3600 + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "updatedAt": { + "_seconds": 1606391106, + "_nanoseconds": 933000000 + }, + "proposerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "commonId": "e1996c12-9341-4771-b4a8-11602f728b5f", + "votes": [ + { + "voterId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "voteId": "7fdecc43-b151-4535-83e7-a3f43f927b67", + "voteOutcome": "approved" + }, + { + "voterId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "voteOutcome": "approved", + "voteId": "e875be3e-160d-4ea4-97db-d3cc8090b72a" + } + ], + "id": "6f5fb4ef-b304-4189-b991-61398cfd985f", + "votesAgainst": 0, + "createdAt": { + "_seconds": 1606390982, + "_nanoseconds": 491000000 + }, + "state": "passed", + "description": { + "links": [], + "description": "Good" + }, + "type": "join", + "votesFor": 2, + "join": { + "fundingType": "one-time", + "funding": 504, + "cardId": "dc08608d-7b27-4d38-889f-319a91567400" + }, + "quietEndingPeriod": 3600, + "countdownPeriod": 86400 + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "votesAgainst": 0, + "id": "88766208-c258-48c7-9b01-f0a3f665982e", + "state": "passed", + "votesFor": 2, + "join": { + "payments": [], + "fundingType": "monthly", + "funding": 60000, + "cardId": "e5ff0c5f-f33a-4f89-9846-8a59347ab115" + }, + "votes": [ + { + "voterId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "voteId": "67adff34-cb33-4985-8154-6957d3f5fa1c", + "voteOutcome": "approved" + }, + { + "voteId": "92d6ba13-273f-40e5-9148-4d17b3e76969", + "voteOutcome": "approved", + "voterId": "97d5y9WXk1fEZv767j1ejKuHevi1" + } + ], + "description": { + "links": [], + "description": "How to join the app\nDh" + }, + "commonId": "f419ad93-d978-45b6-8ed0-70645cdeb62a", + "proposerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "type": "join", + "createdAt": { + "_seconds": 1612425287, + "_nanoseconds": 575000000 + }, + "countdownPeriod": 57600, + "updatedAt": { + "_seconds": 1612425346, + "_nanoseconds": 908000000 + }, + "quietEndingPeriod": 3600, + "paymentState": "confirmed" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "commonId": "67ad1d5b-194b-457b-9103-26e28a9d62c0", + "id": "8b60d46d-31c2-4a6f-8946-504242577815", + "createdAt": { + "_seconds": 1609147626, + "_nanoseconds": 122000000 + }, + "description": { + "links": [], + "description": "Jo" + }, + "quietEndingPeriod": 3600, + "join": { + "payments": [], + "cardId": "0eff7b34-fea4-497b-85b8-868c51b6eb9f", + "funding": 50000, + "fundingType": "monthly" + }, + "state": "passed", + "proposerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "votesFor": 1, + "votesAgainst": 0, + "updatedAt": { + "_seconds": 1609147778, + "_nanoseconds": 371000000 + }, + "countdownPeriod": 57600, + "paymentState": "confirmed", + "votes": [ + { + "voterId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "voteId": "f59ff8ad-4d36-4041-9ab7-0efc459e655b", + "voteOutcome": "approved" + } + ], + "type": "join" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "updatedAt": { + "_seconds": 1606493701, + "_nanoseconds": 158000000 + }, + "description": { + "description": "Rb", + "links": [] + }, + "createdAt": { + "_seconds": 1606407112, + "_nanoseconds": 770000000 + }, + "proposerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "id": "9fc9d73d-9862-4744-b7a2-b32041e3e84d", + "votesFor": 0, + "state": "failed", + "type": "join", + "join": { + "cardId": "57065bd4-7fde-4ad5-8d69-7f3463caee97", + "funding": 500, + "fundingType": "one-time" + }, + "votes": [], + "commonId": "e1996c12-9341-4771-b4a8-11602f728b5f", + "countdownPeriod": 86400, + "quietEndingPeriod": 3600, + "votesAgainst": 0 + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "countdownPeriod": 7200, + "commonId": "10fd7df7-eae9-4995-9c85-90e691c439e1", + "state": "failed", + "votes": [], + "description": { + "links": [], + "description": "Тест" + }, + "type": "join", + "id": "afe564d4-678d-4d42-ae87-d2fbce26234d", + "join": { + "cardId": "3a46a1ce-0af1-44ff-b639-41dcf715df54", + "funding": 500, + "payments": [] + }, + "updatedAt": { + "_seconds": 1608138301, + "_nanoseconds": 196000000 + }, + "proposerId": "Xlun3Ux94Zfc73axkiuVdkktOWf1", + "votesFor": 0, + "createdAt": { + "_seconds": 1608130870, + "_nanoseconds": 32000000 + }, + "votesAgainst": 0, + "quietEndingPeriod": 3600 + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "type": "join", + "description": { + "links": [], + "description": "עע" + }, + "createdAt": { + "_seconds": 1611234874, + "_nanoseconds": 423000000 + }, + "join": { + "funding": 0, + "payments": [], + "fundingType": "one-time" + }, + "id": "c05da780-51c7-4971-a0e9-a6e4ffe2c20f", + "quietEndingPeriod": 3600, + "countdownPeriod": 57600, + "updatedAt": { + "_seconds": 1611247464, + "_nanoseconds": 203000000 + }, + "votesAgainst": 0, + "votesFor": 2, + "state": "passed", + "commonId": "3c19edc2-0b97-4713-93c0-85683b56276b", + "votes": [ + { + "voteId": "46e31133-dc93-49b4-89c0-86b3adf28caa", + "voteOutcome": "approved", + "voterId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + { + "voterId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "voteOutcome": "approved", + "voteId": "ce233be3-d207-492e-8029-54db723a8d11" + } + ], + "proposerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: 'c05da780-51c7-4971-a0e9-a6e4ffe2c20f',\n common: {\n connect: {\n id: '3c19edc2-0b97-4713-93c0-85683b56276b'\n }\n },\n user: {\n connect: {\n id: '2PfVmKNEvmZEz3P3VnJ7Pl9WAwd2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'עע',\n files: [],\n images: [],\n links: [],\n state: 'Accepted',\n ipAddress: undefined,\n expiresAt: new Date('2021-01-22T05:14:34.423Z'),\n votesFor: 2,\n votesAgainst: 0,\n importedFrom: '{\"type\":\"join\",\"description\":{\"links\":[],\"description\":\"עע\"},\"createdAt\":{\"_seconds\":1611234874,\"_nanoseconds\":423000000},\"join\":{\"funding\":0,\"payments\":[],\"fundingType\":\"one-time\"},\"id\":\"c05da780-51c7-4971-a0e9-a6e4ffe2c20f\",\"quietEndingPeriod\":3600,\"countdownPeriod\":57600,\"updatedAt\":{\"_seconds\":1611247464,\"_nanoseconds\":203000000},\"votesAgainst\":0,\"votesFor\":2,\"state\":\"passed\",\"commonId\":\"3c19edc2-0b97-4713-93c0-85683b56276b\",\"votes\":[{\"voteId\":\"46e31133-dc93-49b4-89c0-86b3adf28caa\",\"voteOutcome\":\"approved\",\"voterId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\"},{\"voterId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"voteOutcome\":\"approved\",\"voteId\":\"ce233be3-d207-492e-8029-54db723a8d11\"}],\"proposerId\":\"Xh4xoIGHhgOhxz1S5AJkaXCBT8K2\"}',\n join: {\n create: {\n id: 'c05da780-51c7-4971-a0e9-a6e4ffe2c20f',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n{\n data: {\n id: 'c05da780-51c7-4971-a0e9-a6e4ffe2c20f',\n common: {\n connect: {\n id: '3c19edc2-0b97-4713-93c0-85683b56276b'\n }\n },\n user: {\n connect: {\n id: '2PfVmKNEvmZEz3P3VnJ7Pl9WAwd2'\n }\n },\n type: 'JoinRequest',\n title: undefined,\n description: 'עע',\n files: [],\n images: [],\n links: [],\n state: 'Accepted',\n ipAddress: undefined,\n expiresAt: new Date('2021-01-22T05:14:34.423Z'),\n votesFor: 2,\n votesAgainst: 0,\n importedFrom: '{\"type\":\"join\",\"description\":{\"links\":[],\"description\":\"עע\"},\"createdAt\":{\"_seconds\":1611234874,\"_nanoseconds\":423000000},\"join\":{\"funding\":0,\"payments\":[],\"fundingType\":\"one-time\"},\"id\":\"c05da780-51c7-4971-a0e9-a6e4ffe2c20f\",\"quietEndingPeriod\":3600,\"countdownPeriod\":57600,\"updatedAt\":{\"_seconds\":1611247464,\"_nanoseconds\":203000000},\"votesAgainst\":0,\"votesFor\":2,\"state\":\"passed\",\"commonId\":\"3c19edc2-0b97-4713-93c0-85683b56276b\",\"votes\":[{\"voteId\":\"46e31133-dc93-49b4-89c0-86b3adf28caa\",\"voteOutcome\":\"approved\",\"voterId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\"},{\"voterId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"voteOutcome\":\"approved\",\"voteId\":\"ce233be3-d207-492e-8029-54db723a8d11\"}],\"proposerId\":\"Xh4xoIGHhgOhxz1S5AJkaXCBT8K2\"}',\n join: {\n create: {\n id: 'c05da780-51c7-4971-a0e9-a6e4ffe2c20f',\n fundingType: 'OneTime',\n funding: 0,\n+ card: {\n+ create?: CardCreateWithoutProposalInput | CardUncheckedCreateWithoutProposalInput,\n+ connectOrCreate?: CardCreateOrConnectWithoutProposalInput,\n+ connect?: CardWhereUniqueInput\n+ },\n? createdAt?: DateTime,\n? updatedAt?: DateTime,\n? paymentState?: NotAttempted | Pending | Successful | Unsuccessful,\n? payment?: {\n? create?: PaymentCreateWithoutJoinInput | PaymentCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput | PaymentUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: PaymentCreateOrConnectWithoutJoinInput | PaymentCreateOrConnectWithoutJoinInput,\n? createMany?: PaymentCreateManyJoinInputEnvelope,\n? connect?: PaymentWhereUniqueInput | PaymentWhereUniqueInput\n? },\n? subscription?: {\n? create?: SubscriptionCreateWithoutJoinInput | SubscriptionUncheckedCreateWithoutJoinInput,\n? connectOrCreate?: SubscriptionCreateOrConnectWithoutJoinInput,\n? connect?: SubscriptionWhereUniqueInput\n? }\n }\n }\n }\n}\n\nArgument card for data.join.create.card is missing.\n\nNote: Lines with + are required, lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "votesAgainst": 0, + "updatedAt": { + "_seconds": 1616057401, + "_nanoseconds": 202000000 + }, + "votesFor": 0, + "quietEndingPeriod": 3600, + "votes": [], + "moderation": { + "reporter": "P21SZrJ6z5YjyF8WFaHv5eRsoFo1", + "moderatorNote": "", + "reasons": [ + "Spam" + ], + "moderator": "P21SZrJ6z5YjyF8WFaHv5eRsoFo1", + "flag": "visible", + "updatedAt": { + "_seconds": 1616056045, + "_nanoseconds": 980000000 + } + }, + "proposerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "id": "2e222e69-d6ac-4fd9-93f9-dd59c89337f6", + "type": "join", + "description": { + "links": [], + "description": "ניני" + }, + "state": "failed", + "join": { + "cardId": "0a5532ff-e90c-44e3-b15c-771a1f9e484e", + "payments": [], + "ip": "87.71.10.6", + "funding": 7500, + "fundingType": "one-time" + }, + "createdAt": { + "_seconds": 1615999553, + "_nanoseconds": 189000000 + }, + "commonId": "e09d83a7-8298-423d-87df-e598bc45916b", + "countdownPeriod": 57600 + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "createdAt": { + "_seconds": 1608193139, + "_nanoseconds": 962000000 + }, + "state": "passed", + "votes": [ + { + "voterId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "voteId": "690db6dd-1304-46da-918c-ad42061a7958", + "voteOutcome": "approved" + } + ], + "votesAgainst": 0, + "quietEndingPeriod": 3600, + "commonId": "c4e2a2d7-fce4-4b88-9b47-e74f5338db75", + "countdownPeriod": 7200, + "description": { + "description": "Go", + "links": [] + }, + "updatedAt": { + "_seconds": 1608193179, + "_nanoseconds": 531000000 + }, + "id": "65cd97e2-13cb-4639-a349-a8a23e1ea016", + "type": "join", + "proposerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "join": { + "payments": [ + "a50e2db6-e24f-4b5e-99e3-f86e6f60a43e" + ], + "cardId": "bca3559c-2f4b-4f89-853c-4e0425f88f6f", + "funding": 501, + "fundingType": "one-time" + }, + "votesFor": 1 + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "id": "7cf90135-7b98-410c-a1a2-731cf42996e6", + "quietEndingPeriod": 3600, + "votesFor": 2, + "type": "join", + "paymentState": "confirmed", + "proposerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "votes": [ + { + "voterId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "voteOutcome": "approved", + "voteId": "4657547a-b1aa-46fd-bc7a-f01c245c7bf9" + }, + { + "voterId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "voteId": "b3a23020-a68a-4fb7-80d2-4fb317ab3d24", + "voteOutcome": "approved" + } + ], + "createdAt": { + "_seconds": 1608456337, + "_nanoseconds": 143000000 + }, + "state": "passed", + "join": { + "funding": 1250, + "cardId": "949b3114-f29f-4ae5-84bd-5fce9bb38888", + "fundingType": "one-time", + "payments": [] + }, + "commonId": "8cd28a3c-13b9-45e8-913c-adf26c6544b8", + "description": { + "description": "Dh", + "links": [] + }, + "votesAgainst": 0, + "countdownPeriod": 7200, + "updatedAt": { + "_seconds": 1608456382, + "_nanoseconds": 436000000 + } + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "description": { + "links": [], + "description": "לי" + }, + "updatedAt": { + "_seconds": 1607544752, + "_nanoseconds": 167000000 + }, + "votes": [ + { + "voteOutcome": "approved", + "voteId": "cfc5724e-e522-4a97-9358-cd69e2c5a854", + "voterId": "97d5y9WXk1fEZv767j1ejKuHevi1" + } + ], + "type": "join", + "state": "passed", + "createdAt": { + "_seconds": 1607544641, + "_nanoseconds": 580000000 + }, + "join": { + "fundingType": "monthly", + "cardId": "daa181fc-5581-4d2a-bd0a-0b49894310ea", + "funding": 12500 + }, + "votesFor": 1, + "votesAgainst": 0, + "quietEndingPeriod": 3600, + "proposerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "countdownPeriod": 7200, + "id": "b1eda04f-fc40-425b-a2b4-9792897e5ad0", + "commonId": "e2f89386-bde2-411c-9062-92e907685198" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "votes": [ + { + "voteOutcome": "approved", + "voteId": "8c540e19-1452-499a-8817-99437c82b655", + "voterId": "97d5y9WXk1fEZv767j1ejKuHevi1" + } + ], + "commonId": "ba73039b-8f74-4a6e-90a5-d93df70930a9", + "votesFor": 1, + "quietEndingPeriod": 3600, + "countdownPeriod": 7200, + "join": { + "cardId": "c1780060-74f1-4a7c-b32c-d421580cd176", + "funding": 504, + "fundingType": "monthly", + "payments": [] + }, + "votesAgainst": 0, + "id": "b27b867c-2a22-488f-bb3c-099c08d5729d", + "type": "join", + "updatedAt": { + "_seconds": 1607873500, + "_nanoseconds": 467000000 + }, + "state": "passed", + "description": { + "description": "ימי", + "links": [] + }, + "proposerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "createdAt": { + "_seconds": 1607873183, + "_nanoseconds": 745000000 + } + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "votesAgainst": 0, + "votesFor": 0, + "join": { + "cardId": "47f53dd0-7fcc-4c95-9566-8f8d5da5f82c", + "payments": [], + "fundingType": "monthly", + "funding": 36500 + }, + "quietEndingPeriod": 3600, + "proposerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "countdownPeriod": 57600, + "id": "6b6ed238-9483-46fd-9fb0-b82c4718f59c", + "createdAt": { + "_seconds": 1612691064, + "_nanoseconds": 45000000 + }, + "description": { + "links": [], + "description": "Fb" + }, + "updatedAt": { + "_seconds": 1612748700, + "_nanoseconds": 751000000 + }, + "type": "join", + "commonId": "644786f5-f057-4553-a961-51d8c0daf04f", + "state": "failed", + "votes": [] + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "description": { + "description": "tests", + "links": [] + }, + "createdAt": { + "_seconds": 1609422646, + "_nanoseconds": 930000000 + }, + "countdownPeriod": 57600, + "updatedAt": { + "_seconds": 1609480501, + "_nanoseconds": 51000000 + }, + "state": "failed", + "type": "join", + "join": { + "payments": [], + "funding": 500, + "fundingType": "one-time", + "cardId": "dc17179c-5c03-49f2-b29f-9f572f409609" + }, + "id": "6f4d31a4-3f35-4b9e-b1aa-e096f407443a", + "quietEndingPeriod": 3600, + "votesFor": 0, + "proposerId": "Xlun3Ux94Zfc73axkiuVdkktOWf1", + "votesAgainst": 0, + "votes": [], + "commonId": "05e4c4a2-6957-42ea-bc49-073a307313d8" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposerId": "Xlun3Ux94Zfc73axkiuVdkktOWf1", + "votes": [], + "join": { + "funding": 500, + "fundingType": "one-time", + "cardId": "b39e18bc-816a-4026-a563-194eb2e17b25" + }, + "type": "join", + "countdownPeriod": 7200, + "description": { + "description": "Test", + "links": [] + }, + "votesFor": 0, + "id": "7a2d6bab-2b13-496b-b707-346545eb64b7", + "commonId": "05e4c4a2-6957-42ea-bc49-073a307313d8", + "state": "failed", + "quietEndingPeriod": 3600, + "updatedAt": { + "_seconds": 1606848001, + "_nanoseconds": 152000000 + }, + "createdAt": { + "_seconds": 1606840646, + "_nanoseconds": 932000000 + }, + "votesAgainst": 0 + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "commonId": "20c97f59-d176-41a5-9cfa-1b31b017718f", + "createdAt": { + "_seconds": 1608127041, + "_nanoseconds": 148000000 + }, + "countdownPeriod": 7200, + "id": "e8ec8925-3275-4b0c-ad50-c0705fb192c7", + "quietEndingPeriod": 3600, + "proposerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "updatedAt": { + "_seconds": 1608127340, + "_nanoseconds": 195000000 + }, + "state": "passed", + "type": "join", + "description": { + "links": [ + { + "value": "https://he.m.wikiquote.org/wiki/%D7%99%D7%95%D7%A8%D7%9D_%D7%90%D7%A8%D7%91%D7%9C", + "title": "But now I am new to the dark Kns " + } + ], + "description": "Best wishes 😸 I have any further questions please let us know when I get this message is not display of a long time ago y yvyvyvy the latest flash player is required for video playback is unavailable right now because this video is not display of a long time ago y y yvyvyvy u yvyvvu u yvyvvu u yvyvvu u yvyvvu u yvyvvu u r talking about the same in the coming weeks I will" + }, + "join": { + "cardId": "627a517e-4b23-487b-aef2-79ea3385e987", + "fundingType": "monthly", + "payments": [], + "funding": 25600 + }, + "votesFor": 2, + "votes": [ + { + "voterId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "voteId": "4354ea2d-3c88-4520-8d4f-9f9f6461857d", + "voteOutcome": "approved" + }, + { + "voteOutcome": "approved", + "voterId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "voteId": "09499268-b9b4-44d7-b425-50e21b873add" + } + ], + "votesAgainst": 0 + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "countdownPeriod": 7200, + "quietEndingPeriod": 3600, + "state": "failed", + "createdAt": { + "_seconds": 1608125414, + "_nanoseconds": 823000000 + }, + "join": { + "fundingType": "monthly", + "cardId": "1d099018-3e1d-4ae6-b2f3-f131e69feb28", + "payments": [], + "funding": 2500 + }, + "description": { + "description": "מי", + "links": [] + }, + "updatedAt": { + "_seconds": 1608125567, + "_nanoseconds": 685000000 + }, + "votesAgainst": 2, + "type": "join", + "id": "803774b4-cf81-454b-99fb-64caf5b18061", + "votes": [ + { + "voteId": "20eb1dbb-469a-437c-9ad9-ad4b105985b0", + "voterId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "voteOutcome": "rejected" + }, + { + "voteId": "8016ff0f-dd51-402c-812b-09e77d97ea78", + "voteOutcome": "rejected", + "voterId": "97d5y9WXk1fEZv767j1ejKuHevi1" + } + ], + "proposerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "commonId": "20c97f59-d176-41a5-9cfa-1b31b017718f", + "votesFor": 0 + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "join": { + "fundingType": "one-time", + "payments": [], + "cardId": "d2971292-2b9e-45f3-b2d0-17bfe0c369b6", + "funding": 500 + }, + "votesFor": 0, + "state": "failed", + "countdownPeriod": 57600, + "updatedAt": { + "_seconds": 1611108300, + "_nanoseconds": 236000000 + }, + "id": "9fcdf9fd-5c2e-48fb-a8fc-9e8f89580900", + "quietEndingPeriod": 3600, + "createdAt": { + "_seconds": 1611050514, + "_nanoseconds": 4000000 + }, + "description": { + "description": "Test", + "links": [] + }, + "votesAgainst": 0, + "type": "join", + "commonId": "05e4c4a2-6957-42ea-bc49-073a307313d8", + "votes": [], + "proposerId": "Xlun3Ux94Zfc73axkiuVdkktOWf1" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "proposerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "votesFor": 2, + "createdAt": { + "_seconds": 1607365121, + "_nanoseconds": 892000000 + }, + "updatedAt": { + "_seconds": 1607365198, + "_nanoseconds": 680000000 + }, + "state": "passed", + "quietEndingPeriod": 3600, + "countdownPeriod": 7200, + "type": "join", + "id": "ab5299b5-bbf5-40f3-956b-1271e6bd970c", + "join": { + "fundingType": "one-time", + "funding": 501, + "cardId": "5fb1c43e-ebab-449f-8c34-356080163e09" + }, + "description": { + "description": "ממ", + "links": [] + }, + "commonId": "05e4c4a2-6957-42ea-bc49-073a307313d8", + "votesAgainst": 0, + "votes": [ + { + "voterId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "voteId": "7422996e-5734-4f72-a945-cbef57921229", + "voteOutcome": "approved" + }, + { + "voteOutcome": "approved", + "voterId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "voteId": "3c685c7c-909a-4a70-9f89-3bfd0013522a" + } + ] + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "updatedAt": { + "_seconds": 1605808557, + "_nanoseconds": 565000000 + }, + "countdownPeriod": 86400, + "commonId": "21fc3489-5a80-44c5-bb59-cd8bea165b3d", + "quietEndingPeriod": 3600, + "proposerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "state": "passed", + "id": "c9f728aa-92c5-4b46-9afc-db35b0b5e4f2", + "votesFor": 1, + "description": { + "description": "Good", + "links": [] + }, + "join": { + "funding": 20000, + "cardId": "be591ca1-707f-4bf1-a4bc-e6b47090f4ba", + "fundingType": "monthly" + }, + "votesAgainst": 0, + "type": "join", + "votes": [ + { + "voteId": "bcc8b7ec-dd74-4c3d-8c83-cc1e07801a6a", + "voteOutcome": "approved", + "voterId": "97d5y9WXk1fEZv767j1ejKuHevi1" + } + ], + "createdAt": { + "_seconds": 1605808509, + "_nanoseconds": 594000000 + } + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "id": "bb5608aa-ae57-4e9a-92d7-8930a5d7a3e8", + "join": { + "funding": 2500, + "cardId": "5166f473-79cd-4f80-985e-e29789416738", + "payments": [], + "fundingType": "monthly" + }, + "quietEndingPeriod": 3600, + "countdownPeriod": 57600, + "type": "join", + "createdAt": { + "_seconds": 1609747160, + "_nanoseconds": 137000000 + }, + "commonId": "0313e3e2-b34b-4192-9381-13fc4516a923", + "votesFor": 0, + "description": { + "description": "Just dance", + "links": [] + }, + "votes": [], + "proposerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "votesAgainst": 0, + "updatedAt": { + "_seconds": 1609804800, + "_nanoseconds": 488000000 + }, + "state": "failed" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "votesAgainst": 0, + "type": "join", + "commonId": "e8eb5e55-4648-4d89-b80f-87e645df60da", + "updatedAt": { + "_seconds": 1608132307, + "_nanoseconds": 302000000 + }, + "id": "5800be22-1ad6-4aa5-ad7d-eaf60faeee49", + "votes": [ + { + "voteOutcome": "approved", + "voterId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "voteId": "dbe477e1-3b22-4390-987e-dd7f15d1cde8" + } + ], + "proposerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "join": { + "cardId": "97d16bcf-df1b-4814-865b-041be22e4d18", + "funding": 501, + "fundingType": "one-time", + "payments": [ + "9d606897-2874-4c47-82cb-07debf1941da" + ] + }, + "state": "passed", + "votesFor": 1, + "createdAt": { + "_seconds": 1608132231, + "_nanoseconds": 455000000 + }, + "description": { + "description": "Hdd", + "links": [] + }, + "quietEndingPeriod": 3600, + "countdownPeriod": 7200 + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "commonId": "259f9b2d-c3c9-4014-ad51-22d591955afc", + "id": "cc720890-c586-4279-8cee-bb2fb3f1e45c", + "votesAgainst": 0, + "type": "join", + "description": { + "links": [], + "description": "יעלי" + }, + "votesFor": 0, + "updatedAt": { + "_seconds": 1611291000, + "_nanoseconds": 278000000 + }, + "countdownPeriod": 57600, + "votes": [], + "createdAt": { + "_seconds": 1611233214, + "_nanoseconds": 594000000 + }, + "state": "failed", + "quietEndingPeriod": 3600, + "join": { + "fundingType": "one-time", + "funding": 240000, + "cardId": "d6aefbd2-a6e5-4f20-923b-375115f78ae1", + "payments": [] + }, + "proposerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "votesAgainst": 0, + "join": { + "funding": 10000, + "cardId": "751cac3a-ed59-482e-9a9e-eac279702bed", + "fundingType": "one-time" + }, + "updatedAt": { + "_seconds": 1606319100, + "_nanoseconds": 981000000 + }, + "description": { + "description": "מצלי", + "links": [] + }, + "id": "e047f550-c65b-41d6-8244-d6873cda5da2", + "countdownPeriod": 86400, + "proposerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "votesFor": 0, + "commonId": "ccb9af54-2c85-464f-82cf-3f3d751c1db2", + "createdAt": { + "_seconds": 1606232602, + "_nanoseconds": 977000000 + }, + "quietEndingPeriod": 3600, + "state": "failed", + "type": "join", + "votes": [] + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "description": { + "links": [], + "description": "Hopefully " + }, + "votesFor": 0, + "id": "e6718178-dd54-426c-a4b4-49cd50bcfd04", + "type": "join", + "votes": [], + "countdownPeriod": 7200, + "quietEndingPeriod": 3600, + "updatedAt": { + "_seconds": 1607369400, + "_nanoseconds": 737000000 + }, + "proposerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "state": "failed", + "createdAt": { + "_seconds": 1607362109, + "_nanoseconds": 610000000 + }, + "commonId": "ccb9af54-2c85-464f-82cf-3f3d751c1db2", + "join": { + "fundingType": "one-time", + "cardId": "c300a81a-3640-4b38-b6a5-9c11cf0d19d9", + "funding": 50000 + }, + "votesAgainst": 0 + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "state": "failed", + "id": "e7a7b0f3-49b4-4616-b763-f72183a1ddc4", + "proposerId": "Xlun3Ux94Zfc73axkiuVdkktOWf1", + "createdAt": { + "_seconds": 1611820913, + "_nanoseconds": 941000000 + }, + "type": "join", + "updatedAt": { + "_seconds": 1611878700, + "_nanoseconds": 393000000 + }, + "votes": [], + "votesFor": 0, + "quietEndingPeriod": 3600, + "countdownPeriod": 57600, + "votesAgainst": 0, + "description": { + "description": "Test", + "links": [] + }, + "join": { + "cardId": "953a5d9d-e763-4ab2-94ab-07b2b60996c5", + "payments": [], + "funding": 8000 + }, + "commonId": "4ec02f70-a8dc-4947-9b5f-c74f34954073" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "description": { + "description": "Jgjd fjkgjkdf gif jkgdfjk gkdf ", + "links": [] + }, + "createdAt": { + "_seconds": 1616742244, + "_nanoseconds": 768000000 + }, + "commonId": "15c15871-d513-4a06-9e24-7d2c92cbd571", + "join": { + "payments": [], + "fundingType": "one-time", + "funding": 700, + "ip": "46.53.242.163", + "cardId": "f98b764f-9a3d-421f-934b-1c07943aa508" + }, + "type": "join", + "quietEndingPeriod": 3600, + "moderation": { + "reporter": "WMzKDGJSlWM2Rjx9JVp9StB2Bni2", + "moderatorNote": "", + "reasons": [ + "Something Else" + ], + "flag": "hidden", + "updatedAt": { + "_seconds": 1616745331, + "_nanoseconds": 574000000 + }, + "moderator": "WMzKDGJSlWM2Rjx9JVp9StB2Bni2" + }, + "countdownPeriod": 57600, + "votes": [], + "state": "failed", + "proposerId": "RoUaatJIeccpYxcDD7v1fqJrHZx2", + "votesFor": 0, + "votesAgainst": 0, + "id": "f6d47ac8-366a-4438-a942-0aa8c803b1b2", + "updatedAt": { + "_seconds": 1616799901, + "_nanoseconds": 401000000 + } + }, + "error": { + "message": "\nInvalid `prisma.user.findUnique()` invocation:\n\n{\n where: {\n? email?: String,\n? id?: String\n }\n}\n\nArgument where of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\n\nNote: Lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.user.findUnique()` invocation:\n\n{\n where: {\n? email?: String,\n? id?: String\n }\n}\n\nArgument where of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\n\nNote: Lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "description": { + "description": "Happy", + "links": [] + }, + "commonId": "8cd28a3c-13b9-45e8-913c-adf26c6544b8", + "join": { + "cardId": "08817a26-12a0-45ae-9b61-380f87aa3a20", + "funding": 1250, + "fundingType": "one-time", + "payments": [] + }, + "proposerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "id": "f127f426-f49f-4529-9ea8-24a35b499885", + "updatedAt": { + "_seconds": 1608456138, + "_nanoseconds": 488000000 + }, + "state": "failed", + "votesAgainst": 2, + "type": "join", + "createdAt": { + "_seconds": 1608456066, + "_nanoseconds": 874000000 + }, + "countdownPeriod": 7200, + "votes": [ + { + "voteId": "682e0e34-375a-4b1b-bcbc-6f91cb5d4d53", + "voteOutcome": "rejected", + "voterId": "97d5y9WXk1fEZv767j1ejKuHevi1" + }, + { + "voterId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "voteId": "fabe63e3-a709-4972-8a51-4417f74a4ff5", + "voteOutcome": "rejected" + } + ], + "votesFor": 0, + "quietEndingPeriod": 3600 + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "quietEndingPeriod": 3600, + "countdownPeriod": 7200, + "votes": [ + { + "voteId": "0c29213c-7f5c-468d-bcec-b697b4ab34b5", + "voterId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "voteOutcome": "approved" + } + ], + "votesFor": 1, + "description": { + "description": "Go", + "links": [] + }, + "type": "join", + "id": "f8860433-6965-42ac-bd9d-ee116e5e0f44", + "updatedAt": { + "_seconds": 1607587106, + "_nanoseconds": 448000000 + }, + "votesAgainst": 0, + "proposerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "commonId": "67ad1d5b-194b-457b-9103-26e28a9d62c0", + "state": "passed", + "createdAt": { + "_seconds": 1607587082, + "_nanoseconds": 565000000 + }, + "join": { + "cardId": "592cc159-a1f6-40e8-ab40-d17eb7594cbf", + "funding": 20000, + "fundingType": "monthly" + } + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "state": "passed", + "updatedAt": { + "_seconds": 1606926500, + "_nanoseconds": 347000000 + }, + "quietEndingPeriod": 3600, + "join": { + "funding": 2400, + "fundingType": "one-time", + "cardId": "1dc92d98-3449-4743-911f-b2f5a3143741" + }, + "description": { + "description": "מחר", + "links": [] + }, + "votesAgainst": 0, + "type": "join", + "votes": [ + { + "voteId": "4a44420c-3875-4e25-8735-3af2f563df65", + "voterId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "voteOutcome": "approved" + }, + { + "voterId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "voteId": "09ae6d7d-a2a0-4680-9ea7-47ad392ed9b2", + "voteOutcome": "approved" + } + ], + "id": "1861ad79-6e8b-40ec-8b57-23a0f01e0a7c", + "countdownPeriod": 7200, + "commonId": "02314122-6b05-4563-a8ce-4a10e97b72da", + "votesFor": 2, + "createdAt": { + "_seconds": 1606926467, + "_nanoseconds": 942000000 + }, + "proposerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "updatedAt": { + "_seconds": 1609423645, + "_nanoseconds": 546000000 + }, + "votesFor": 2, + "join": { + "fundingType": "one-time", + "funding": 500, + "payments": [], + "cardId": "fc0112f9-653f-42c4-83af-3b4caff2ed86" + }, + "votesAgainst": 0, + "countdownPeriod": 57600, + "description": { + "links": [], + "description": "H" + }, + "quietEndingPeriod": 3600, + "createdAt": { + "_seconds": 1609423569, + "_nanoseconds": 552000000 + }, + "proposerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "id": "7954d1ca-70e1-4f5e-9819-979264b6a310", + "type": "join", + "commonId": "05e4c4a2-6957-42ea-bc49-073a307313d8", + "state": "passed", + "paymentState": "confirmed", + "votes": [ + { + "voteOutcome": "approved", + "voterId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "voteId": "75e367b4-0a8b-40e8-b6da-a57b3fe26327" + }, + { + "voteOutcome": "approved", + "voteId": "80be3c8e-fbce-4416-a2ee-4cd4111658d6", + "voterId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2" + } + ] + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "updatedAt": { + "_seconds": 1610694900, + "_nanoseconds": 639000000 + }, + "votesFor": 0, + "type": "join", + "countdownPeriod": 57600, + "commonId": "e2f89386-bde2-411c-9062-92e907685198", + "proposerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "join": { + "cardId": "7344748c-cf9a-4638-b29b-8181638a5b4b", + "funding": 5000, + "payments": [], + "fundingType": "monthly" + }, + "votes": [], + "id": "9984e232-698c-462b-8466-aaf544334881", + "state": "failed", + "votesAgainst": 0, + "description": { + "description": "Good", + "links": [] + }, + "createdAt": { + "_seconds": 1610637122, + "_nanoseconds": 985000000 + }, + "quietEndingPeriod": 3600 + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "quietEndingPeriod": 3600, + "proposerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "type": "join", + "description": { + "links": [], + "files": [], + "description": "Bop" + }, + "countdownPeriod": 86400, + "id": "f1b23692-1bca-4d0c-92fc-83598fa6241e", + "createdAt": { + "_seconds": 1605598330, + "_nanoseconds": 264000000 + }, + "commonId": "f5edae9d-e0ab-415c-8610-4ab706b7748e", + "join": { + "funding": 6000, + "cardId": "1b8e238f-1158-4b39-8747-c61cbc968dfc" + }, + "votesAgainst": 0, + "votesFor": 1, + "votes": [ + { + "voteId": "d9e61944-9c30-4f8a-842c-688af22e74c6", + "voterId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "voteOutcome": "approved" + } + ], + "updatedAt": { + "_seconds": 1605599012, + "_nanoseconds": 313000000 + }, + "state": "passed" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "join": { + "funding": 500, + "cardId": "7415f530-f574-42f5-93bf-904cee4350cf", + "fundingType": "one-time" + }, + "type": "join", + "updatedAt": { + "_seconds": 1606479000, + "_nanoseconds": 866000000 + }, + "description": { + "description": "Test", + "links": [] + }, + "votes": [], + "state": "failed", + "quietEndingPeriod": 3600, + "votesFor": 0, + "createdAt": { + "_seconds": 1606392578, + "_nanoseconds": 527000000 + }, + "countdownPeriod": 86400, + "proposerId": "Xlun3Ux94Zfc73axkiuVdkktOWf1", + "id": "dc0f3793-567c-4745-9d14-5ac4a23a58d7", + "votesAgainst": 0, + "commonId": "05e4c4a2-6957-42ea-bc49-073a307313d8" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "votesAgainst": 0, + "id": "4a79cb5d-e110-4a6b-945c-806fb53b42c4", + "proposerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "join": { + "fundingType": "one-time", + "funding": 10000, + "cardId": "1a5387c4-c7f5-4001-ac5e-cf9a1f70e06a" + }, + "type": "join", + "votesFor": 0, + "createdAt": { + "_seconds": 1605802603, + "_nanoseconds": 847000000 + }, + "quietEndingPeriod": 3600, + "description": { + "description": "Ho", + "links": [] + }, + "state": "failed", + "commonId": "ccb9af54-2c85-464f-82cf-3f3d751c1db2", + "countdownPeriod": 86400, + "votes": [], + "updatedAt": { + "_seconds": 1605889201, + "_nanoseconds": 154000000 + } + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "votesFor": 1, + "description": { + "description": "חבל", + "links": [] + }, + "type": "join", + "votes": [ + { + "voteOutcome": "approved", + "voterId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "voteId": "e5d12315-546d-413e-a1df-26f00d4ad674" + } + ], + "quietEndingPeriod": 3600, + "state": "passed", + "countdownPeriod": 86400, + "proposerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "commonId": "1480c6e5-a155-40cd-8bcb-1ae5e0a16b04", + "id": "6b3dc5b4-d0f0-4e5d-9515-329932b5634f", + "votesAgainst": 0, + "updatedAt": { + "_seconds": 1606381490, + "_nanoseconds": 322000000 + }, + "createdAt": { + "_seconds": 1606380859, + "_nanoseconds": 713000000 + }, + "join": { + "funding": 5250, + "fundingType": "one-time", + "cardId": "a238e8be-250b-4b67-810a-3a41edcc6161" + } + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "votesAgainst": 0, + "commonId": "05e4c4a2-6957-42ea-bc49-073a307313d8", + "votesFor": 0, + "votes": [], + "join": { + "cardId": "cca27641-2e8f-4ec9-84b3-986f6f791669", + "fundingType": "one-time", + "ip": "93.123.70.236", + "payments": [], + "funding": 500 + }, + "countdownPeriod": 57600, + "quietEndingPeriod": 3600, + "description": { + "links": [], + "description": "QWERTY" + }, + "state": "failed", + "updatedAt": { + "_seconds": 1617229201, + "_nanoseconds": 895000000 + }, + "proposerId": "Xlun3Ux94Zfc73axkiuVdkktOWf1", + "type": "join", + "id": "8599559f-225b-45e8-9b51-b212b649f9c0", + "createdAt": { + "_seconds": 1617171492, + "_nanoseconds": 17000000 + } + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "commonId": "5dedabe9-c005-4f0b-a02d-48721465dbaf", + "state": "failed", + "createdAt": { + "_seconds": 1605800937, + "_nanoseconds": 543000000 + }, + "id": "49bf6c6a-9734-44c5-a9c4-28a2e4f0b30b", + "votesAgainst": 0, + "description": { + "description": "צריך עזרה", + "links": [] + }, + "updatedAt": { + "_seconds": 1605887400, + "_nanoseconds": 348000000 + }, + "votes": [], + "quietEndingPeriod": 3600, + "type": "join", + "votesFor": 0, + "countdownPeriod": 86400, + "join": { + "funding": 7700, + "cardId": "fd12f37d-6219-42e6-b3c3-ae2bc32597ee" + }, + "proposerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2" + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "createdAt": { + "_seconds": 1606206119, + "_nanoseconds": 62000000 + }, + "id": "edef3704-7454-4094-b452-cee1f3d2dd17", + "proposerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "votes": [], + "countdownPeriod": 86400, + "quietEndingPeriod": 3600, + "updatedAt": { + "_seconds": 1606292701, + "_nanoseconds": 204000000 + }, + "state": "failed", + "votesAgainst": 0, + "votesFor": 0, + "description": { + "description": "יש", + "links": [] + }, + "commonId": "e1996c12-9341-4771-b4a8-11602f728b5f", + "type": "join", + "join": { + "funding": 501, + "cardId": "dde4206f-60d9-445a-b64e-6c62432fcb66", + "fundingType": "one-time" + } + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "votes": [ + { + "voterId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "voteId": "81eeea6b-0549-4db8-a7af-5cf65934a5c4", + "voteOutcome": "approved" + } + ], + "join": { + "cardId": "de073e32-7476-4399-8f7e-8d4312def0b5", + "fundingType": "one-time", + "funding": 75250 + }, + "votesFor": 1, + "state": "passed", + "countdownPeriod": 7200, + "id": "bbc95a94-957f-44d5-8414-a91b068ef160", + "quietEndingPeriod": 3600, + "description": { + "links": [ + { + "title": "B", + "value": "https://www.google.com/amp/s/genius.com/amp/The-beatles-yesterday-lyrics" + } + ], + "description": "Good but the one ☝️ thing I have is a one person to go back and get a little while and then I can do it for a little bit and then I can get a few more things for you and I will be back to you for the one time I " + }, + "type": "join", + "commonId": "dc83fddd-ce17-4ccd-87fe-875fd161d57a", + "proposerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "createdAt": { + "_seconds": 1607247729, + "_nanoseconds": 867000000 + }, + "votesAgainst": 0, + "updatedAt": { + "_seconds": 1607248474, + "_nanoseconds": 932000000 + } + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "proposal": { + "quietEndingPeriod": 3600, + "type": "join", + "countdownPeriod": 7200, + "commonId": "8cd28a3c-13b9-45e8-913c-adf26c6544b8", + "proposerId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "id": "b0eabd9e-8fc2-47a7-b5cf-25ee469158a0", + "updatedAt": { + "_seconds": 1608455616, + "_nanoseconds": 654000000 + }, + "votesFor": 0, + "createdAt": { + "_seconds": 1608455365, + "_nanoseconds": 799000000 + }, + "description": { + "description": "Hh", + "links": [] + }, + "state": "failed", + "votesAgainst": 2, + "join": { + "payments": [], + "cardId": "b8f29793-7883-4dd4-9b0d-e8e6ff75fd67", + "funding": 500, + "fundingType": "one-time" + }, + "votes": [ + { + "voteOutcome": "rejected", + "voterId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "voteId": "0f105dde-3e51-4e7f-a71e-c052f88e0a3f" + }, + { + "voterId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "voteOutcome": "rejected", + "voteId": "f7757f10-95a0-433d-a643-2a48785cc942" + } + ] + }, + "error": { + "message": "\nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.", + "stack": "Error: \nInvalid `prisma.proposal.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'Card' record(s) (needed to inline the relation on 'JoinProposal' record(s)) was found for a nested connect on one-to-many relation 'CardToJoinProposal'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + } +] \ No newline at end of file diff --git a/packages/core/prisma/result/1621327212154/joinProposalsImport-results.json b/packages/core/prisma/result/1621327212154/joinProposalsImport-results.json new file mode 100644 index 000000000..06db8f1aa --- /dev/null +++ b/packages/core/prisma/result/1621327212154/joinProposalsImport-results.json @@ -0,0 +1,5889 @@ +[ + { + "id": "00ceb166-a473-4ac3-b0c1-8a161588f7a3", + "createdAt": "2021-05-18T08:40:19.373Z", + "updatedAt": "2021-05-18T08:40:19.374Z", + "expiresAt": "2021-03-17T04:14:05.760Z", + "title": null, + "description": "Rh", + "links": [ + { + "url": "http://www.test.com", + "title": "1" + }, + { + "url": "www.test.com", + "title": "2" + }, + { + "url": "https://www.test.com/", + "title": "3" + }, + { + "url": "https://www.volvocars.com/il?site=google&lp=volvo.brand&utm_source=google&utm_campaign=volvo_brand&AgId=%25255Badgroup%25255D&utm_term=volvo&AdPos=&utm_content=gs_434894081167&device=m&GeoLoc=1008002&utm_medium=cpc&ToolName=gs&gclid=EAIaIQobChMIz7C_m6D_6wIVZbR3Ch2POwFPEAAYASAAEgKyxvD_BwE&gclsrc=aw.ds", + "title": "4" + } + ], + "files": [], + "images": [], + "ipAddress": "87.71.10.6", + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 2, + "votesAgainst": 0, + "joinId": "00ceb166-a473-4ac3-b0c1-8a161588f7a3", + "fundingId": null, + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "08e9568e-377d-4c6e-aa77-45fd84922948", + "commonMemberId": null, + "importedFrom": "{\"countdownPeriod\":57600,\"proposerId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"type\":\"join\",\"createdAt\":{\"_seconds\":1615896845,\"_nanoseconds\":760000000},\"id\":\"00ceb166-a473-4ac3-b0c1-8a161588f7a3\",\"votesFor\":2,\"commonId\":\"08e9568e-377d-4c6e-aa77-45fd84922948\",\"quietEndingPeriod\":3600,\"paymentState\":\"confirmed\",\"state\":\"passed\",\"votes\":[{\"voterId\":\"Xh4xoIGHhgOhxz1S5AJkaXCBT8K2\",\"voteId\":\"c7de31c1-46c2-4522-8022-137d9531d80a\",\"voteOutcome\":\"approved\"},{\"voteId\":\"b701f3a0-0332-4b40-9575-cda1ed8743ca\",\"voteOutcome\":\"approved\",\"voterId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\"}],\"description\":{\"links\":[{\"value\":\"http://www.test.com\",\"title\":\"1\"},{\"title\":\"2\",\"value\":\"www.test.com\"},{\"value\":\"https://www.test.com/\",\"title\":\"3\"},{\"title\":\"4\",\"value\":\"https://www.volvocars.com/il?site=google&lp=volvo.brand&utm_source=google&utm_campaign=volvo_brand&AgId=%25255Badgroup%25255D&utm_term=volvo&AdPos=&utm_content=gs_434894081167&device=m&GeoLoc=1008002&utm_medium=cpc&ToolName=gs&gclid=EAIaIQobChMIz7C_m6D_6wIVZbR3Ch2POwFPEAAYASAAEgKyxvD_BwE&gclsrc=aw.ds\"}],\"description\":\"Rh\"},\"join\":{\"fundingType\":\"monthly\",\"funding\":50000,\"payments\":[],\"cardId\":\"63ea9f37-0866-4576-baad-74b09da55a8a\",\"ip\":\"87.71.10.6\"},\"updatedAt\":{\"_seconds\":1615899233,\"_nanoseconds\":602000000},\"votesAgainst\":0}" + }, + { + "id": "0276456b-c827-4744-b714-7e654254ad9d", + "createdAt": "2021-05-18T08:40:19.375Z", + "updatedAt": "2021-05-18T08:40:19.376Z", + "expiresAt": "2021-02-01T03:44:51.258Z", + "title": null, + "description": "Hi", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 1, + "votesAgainst": 0, + "joinId": "0276456b-c827-4744-b714-7e654254ad9d", + "fundingId": null, + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "commonId": "ccf9e609-463e-4cd3-92ed-ff5d518cd94b", + "commonMemberId": "79ee13a9-f83e-4053-b652-75196d88fba4", + "importedFrom": "{\"description\":{\"links\":[],\"description\":\"Hi\"},\"id\":\"0276456b-c827-4744-b714-7e654254ad9d\",\"join\":{\"payments\":[\"e3fd4b78-77dc-4ee7-a969-66e903789c00\"],\"fundingType\":\"one-time\",\"funding\":25000,\"cardId\":\"0fb1b45d-0cc5-4005-81b1-4c8462e14a65\"},\"state\":\"passed\",\"votesFor\":1,\"type\":\"join\",\"commonId\":\"ccf9e609-463e-4cd3-92ed-ff5d518cd94b\",\"quietEndingPeriod\":3600,\"updatedAt\":{\"_seconds\":1612093558,\"_nanoseconds\":648000000},\"proposerId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"votes\":[{\"voteId\":\"d86278d6-230f-4f6c-9320-d4a03df44af2\",\"voterId\":\"Xh4xoIGHhgOhxz1S5AJkaXCBT8K2\",\"voteOutcome\":\"approved\"}],\"countdownPeriod\":57600,\"createdAt\":{\"_seconds\":1612093491,\"_nanoseconds\":258000000},\"paymentState\":\"confirmed\",\"votesAgainst\":0}" + }, + { + "id": "02da5a82-d6c3-456f-8201-f3b2de5f9eb4", + "createdAt": "2021-05-18T08:40:19.378Z", + "updatedAt": "2021-05-18T08:40:19.379Z", + "expiresAt": "2021-03-17T01:03:54.457Z", + "title": null, + "description": "לי", + "links": [], + "files": [], + "images": [], + "ipAddress": "147.161.12.130", + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "02da5a82-d6c3-456f-8201-f3b2de5f9eb4", + "fundingId": null, + "userId": "P21SZrJ6z5YjyF8WFaHv5eRsoFo1", + "commonId": "1480c6e5-a155-40cd-8bcb-1ae5e0a16b04", + "commonMemberId": null, + "importedFrom": "{\"commonId\":\"1480c6e5-a155-40cd-8bcb-1ae5e0a16b04\",\"type\":\"join\",\"quietEndingPeriod\":3600,\"votesFor\":0,\"moderation\":{\"moderatorNote\":\"Gohj\",\"reporter\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"flag\":\"visible\",\"moderator\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"reasons\":[\"Something Else\"],\"updatedAt\":{\"_seconds\":1615887393,\"_nanoseconds\":53000000}},\"votes\":[],\"proposerId\":\"P21SZrJ6z5YjyF8WFaHv5eRsoFo1\",\"votesAgainst\":0,\"updatedAt\":{\"_seconds\":1615943100,\"_nanoseconds\":804000000},\"join\":{\"funding\":2100,\"cardId\":\"49cdacee-5331-4222-960a-6dc776f1640f\",\"fundingType\":\"one-time\",\"payments\":[],\"ip\":\"147.161.12.130\"},\"countdownPeriod\":57600,\"createdAt\":{\"_seconds\":1615885434,\"_nanoseconds\":457000000},\"description\":{\"links\":[],\"description\":\"לי\"},\"state\":\"failed\",\"id\":\"02da5a82-d6c3-456f-8201-f3b2de5f9eb4\"}" + }, + { + "id": "0692dd80-6b48-4ce9-9be2-9298562cf6b0", + "createdAt": "2021-05-18T08:40:19.381Z", + "updatedAt": "2021-05-18T08:40:19.382Z", + "expiresAt": "2021-03-07T23:57:11.728Z", + "title": null, + "description": "Yum ", + "links": [], + "files": [], + "images": [], + "ipAddress": "77.127.45.147", + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "0692dd80-6b48-4ce9-9be2-9298562cf6b0", + "fundingId": null, + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "08e9568e-377d-4c6e-aa77-45fd84922948", + "commonMemberId": null, + "importedFrom": "{\"votesAgainst\":0,\"quietEndingPeriod\":3600,\"countdownPeriod\":57600,\"type\":\"join\",\"join\":{\"ip\":\"77.127.45.147\",\"funding\":50000,\"fundingType\":\"monthly\",\"cardId\":\"ad5921af-1441-4ace-a548-441e1d755357\",\"payments\":[]},\"state\":\"failed\",\"createdAt\":{\"_seconds\":1615103831,\"_nanoseconds\":728000000},\"votes\":[],\"id\":\"0692dd80-6b48-4ce9-9be2-9298562cf6b0\",\"proposerId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"description\":{\"description\":\"Yum \",\"links\":[]},\"updatedAt\":{\"_seconds\":1615161600,\"_nanoseconds\":296000000},\"votesFor\":0,\"moderation\":{\"flag\":\"visible\",\"moderator\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"updatedAt\":{\"_seconds\":1615104098,\"_nanoseconds\":256000000},\"moderatorNote\":\"\",\"reasons\":[],\"reporter\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\"},\"commonId\":\"08e9568e-377d-4c6e-aa77-45fd84922948\"}" + }, + { + "id": "079af256-2ce9-4e48-8647-b10ebeaba16c", + "createdAt": "2021-05-18T08:40:19.384Z", + "updatedAt": "2021-05-18T08:40:19.385Z", + "expiresAt": "2020-12-30T00:05:11.909Z", + "title": null, + "description": "Dhd", + "links": [ + { + "url": "https://www.google.com/amp/s/genius.com/amp/The-beatles-yesterday-lyrics", + "title": "Dhdh dhdhd rhrhrhr tvtvtvtv to" + } + ], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "079af256-2ce9-4e48-8647-b10ebeaba16c", + "fundingId": null, + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "58e2c1ba-9f36-49b1-a85c-47e52192b1cb", + "commonMemberId": null, + "importedFrom": "{\"votesAgainst\":0,\"id\":\"079af256-2ce9-4e48-8647-b10ebeaba16c\",\"description\":{\"description\":\"Dhd\",\"links\":[{\"title\":\"Dhdh dhdhd rhrhrhr tvtvtvtv to\",\"value\":\"https://www.google.com/amp/s/genius.com/amp/The-beatles-yesterday-lyrics\"}]},\"createdAt\":{\"_seconds\":1609229111,\"_nanoseconds\":909000000},\"commonId\":\"58e2c1ba-9f36-49b1-a85c-47e52192b1cb\",\"type\":\"join\",\"votesFor\":0,\"updatedAt\":{\"_seconds\":1609287001,\"_nanoseconds\":189000000},\"join\":{\"payments\":[],\"funding\":50000,\"cardId\":\"c8b2999a-f93f-4afa-9438-1a51fd36ad7c\",\"fundingType\":\"one-time\"},\"state\":\"failed\",\"votes\":[],\"countdownPeriod\":57600,\"quietEndingPeriod\":3600,\"proposerId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\"}" + }, + { + "id": "085aeb27-48ea-430c-baee-4063dc9c9a6d", + "createdAt": "2021-05-18T08:40:19.387Z", + "updatedAt": "2021-05-18T08:40:19.388Z", + "expiresAt": "2020-12-14T09:53:12.050Z", + "title": null, + "description": "מימי", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 2, + "votesAgainst": 0, + "joinId": "085aeb27-48ea-430c-baee-4063dc9c9a6d", + "fundingId": null, + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "commonId": "548ca0ab-e29c-44bb-ba2c-684c4d86d591", + "commonMemberId": "4ce3d0f1-635c-4353-8af2-acaa223168e4", + "importedFrom": "{\"votesAgainst\":0,\"updatedAt\":{\"_seconds\":1607932656,\"_nanoseconds\":974000000},\"type\":\"join\",\"commonId\":\"548ca0ab-e29c-44bb-ba2c-684c4d86d591\",\"id\":\"085aeb27-48ea-430c-baee-4063dc9c9a6d\",\"join\":{\"fundingType\":\"one-time\",\"cardId\":\"5c2c3de6-8a24-4bb5-ae5e-089eefa12e45\",\"payments\":[\"e04ff23d-ecd3-43b0-8d48-23d993777046\"],\"funding\":80000},\"votesFor\":2,\"state\":\"passed\",\"description\":{\"links\":[],\"description\":\"מימי\"},\"votes\":[{\"voterId\":\"Xh4xoIGHhgOhxz1S5AJkaXCBT8K2\",\"voteId\":\"2b0c1008-1164-4d61-be5c-2d599fcfb908\",\"voteOutcome\":\"approved\"},{\"voteOutcome\":\"approved\",\"voterId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"voteId\":\"6647b9d6-6ea2-460d-a050-10291439ff81\"}],\"proposerId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"countdownPeriod\":7200,\"quietEndingPeriod\":3600,\"createdAt\":{\"_seconds\":1607932392,\"_nanoseconds\":50000000}}" + }, + { + "id": "0b4c4c4f-e58d-4acb-b068-d0d831826119", + "createdAt": "2021-05-18T08:40:19.389Z", + "updatedAt": "2021-05-18T08:40:19.391Z", + "expiresAt": "2021-02-05T09:34:12.567Z", + "title": null, + "description": "Hdh", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "0b4c4c4f-e58d-4acb-b068-d0d831826119", + "fundingId": null, + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "207b484d-a0cd-4b8d-bd0c-08bb1167f15b", + "commonMemberId": null, + "importedFrom": "{\"state\":\"failed\",\"join\":{\"fundingType\":\"monthly\",\"funding\":50000,\"cardId\":\"51b28aea-b7d5-4671-aea1-49dd13e95f31\",\"payments\":[]},\"commonId\":\"207b484d-a0cd-4b8d-bd0c-08bb1167f15b\",\"votesFor\":0,\"type\":\"join\",\"createdAt\":{\"_seconds\":1612460052,\"_nanoseconds\":567000000},\"updatedAt\":{\"_seconds\":1612517700,\"_nanoseconds\":705000000},\"countdownPeriod\":57600,\"description\":{\"links\":[],\"description\":\"Hdh\"},\"votes\":[],\"quietEndingPeriod\":3600,\"id\":\"0b4c4c4f-e58d-4acb-b068-d0d831826119\",\"votesAgainst\":0,\"proposerId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\"}" + }, + { + "id": "0c0fcf0a-7ce2-4ff7-9d84-f1969e6829ee", + "createdAt": "2021-05-18T08:40:19.393Z", + "updatedAt": "2021-05-18T08:40:19.394Z", + "expiresAt": "2020-12-13T16:50:45.286Z", + "title": null, + "description": "Vop", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 1, + "votesAgainst": 0, + "joinId": "0c0fcf0a-7ce2-4ff7-9d84-f1969e6829ee", + "fundingId": null, + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "commonId": "ba73039b-8f74-4a6e-90a5-d93df70930a9", + "commonMemberId": null, + "importedFrom": "{\"commonId\":\"ba73039b-8f74-4a6e-90a5-d93df70930a9\",\"proposerId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"quietEndingPeriod\":3600,\"description\":{\"description\":\"Vop\",\"links\":[]},\"join\":{\"funding\":501,\"cardId\":\"2a888024-7c50-4324-a1f7-7b0b6ee47c18\",\"payments\":[],\"fundingType\":\"monthly\"},\"votesFor\":1,\"state\":\"passed\",\"countdownPeriod\":7200,\"updatedAt\":{\"_seconds\":1607871072,\"_nanoseconds\":146000000},\"votes\":[{\"voterId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"voteId\":\"615594cb-558c-4ab0-9443-02f9931e5e9c\",\"voteOutcome\":\"approved\"}],\"id\":\"0c0fcf0a-7ce2-4ff7-9d84-f1969e6829ee\",\"votesAgainst\":0,\"createdAt\":{\"_seconds\":1607871045,\"_nanoseconds\":286000000},\"type\":\"join\"}" + }, + { + "id": "0c947aa4-99ff-4108-a24f-a1349ee758af", + "createdAt": "2021-05-18T08:40:19.396Z", + "updatedAt": "2021-05-18T08:40:19.397Z", + "expiresAt": "2021-05-11T00:02:45.853Z", + "title": null, + "description": "Test", + "links": [], + "files": [], + "images": [], + "ipAddress": "87.68.76.241", + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 1, + "votesAgainst": 0, + "joinId": "0c947aa4-99ff-4108-a24f-a1349ee758af", + "fundingId": null, + "userId": "Sxv19oCvKAZq2vntJdYCTYSpWWN2", + "commonId": "c98eb8aa-2ab4-4113-9e40-3cd18d2ead3c", + "commonMemberId": "60c284cd-be2f-49c4-b046-5e7c85d3ca8f", + "importedFrom": "{\"quietEndingPeriod\":3600,\"id\":\"0c947aa4-99ff-4108-a24f-a1349ee758af\",\"description\":{\"description\":\"Test\",\"links\":[]},\"votes\":[{\"voterId\":\"11j4NvvZ4kMRf4BFBUHdbRiXKMp1\",\"voteOutcome\":\"approved\",\"voteId\":\"aeabcb5f-43aa-4ade-80df-6c40b9f6d522\"}],\"updatedAt\":{\"_seconds\":1620633784,\"_nanoseconds\":0},\"paymentState\":\"confirmed\",\"votesAgainst\":0,\"createdAt\":{\"_seconds\":1620633765,\"_nanoseconds\":853000000},\"join\":{\"funding\":500,\"cardId\":\"91584f4e-e4a8-489e-92c2-b7b08b5e51a2\",\"payments\":[],\"fundingType\":\"monthly\",\"ip\":\"87.68.76.241\"},\"state\":\"passed\",\"countdownPeriod\":57600,\"type\":\"join\",\"commonId\":\"c98eb8aa-2ab4-4113-9e40-3cd18d2ead3c\",\"votesFor\":1,\"proposerId\":\"Sxv19oCvKAZq2vntJdYCTYSpWWN2\"}" + }, + { + "id": "142ccb1d-4722-47ea-800b-17d8ff9d8173", + "createdAt": "2021-05-18T08:40:19.399Z", + "updatedAt": "2021-05-18T08:40:19.400Z", + "expiresAt": "2020-12-28T02:57:54.133Z", + "title": null, + "description": "Dh", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 2, + "votesAgainst": 0, + "joinId": "142ccb1d-4722-47ea-800b-17d8ff9d8173", + "fundingId": null, + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "6d778a9d-6ebb-46ab-969a-02d4c4567145", + "commonMemberId": null, + "importedFrom": "{\"commonId\":\"6d778a9d-6ebb-46ab-969a-02d4c4567145\",\"quietEndingPeriod\":3600,\"state\":\"passed\",\"countdownPeriod\":57600,\"votesAgainst\":0,\"createdAt\":{\"_seconds\":1609066674,\"_nanoseconds\":133000000},\"join\":{\"payments\":[],\"fundingType\":\"one-time\",\"funding\":507,\"cardId\":\"72bbd9dc-3d01-4f2e-af4c-95adcb33f326\"},\"type\":\"join\",\"updatedAt\":{\"_seconds\":1609066709,\"_nanoseconds\":71000000},\"id\":\"142ccb1d-4722-47ea-800b-17d8ff9d8173\",\"votes\":[{\"voterId\":\"Xh4xoIGHhgOhxz1S5AJkaXCBT8K2\",\"voteId\":\"21a52788-5952-4dba-a776-56cd675a63e7\",\"voteOutcome\":\"approved\"},{\"voteOutcome\":\"approved\",\"voterId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"voteId\":\"a51a4221-59dc-4a49-96a4-6bea64c1303b\"}],\"votesFor\":2,\"proposerId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"description\":{\"links\":[],\"description\":\"Dh\"},\"paymentState\":\"failed\"}" + }, + { + "id": "149296cb-55c5-49b8-ab61-a80b18bc038b", + "createdAt": "2021-05-18T08:40:19.401Z", + "updatedAt": "2021-05-18T08:40:19.402Z", + "expiresAt": "2021-03-27T01:25:04.975Z", + "title": null, + "description": "Reject", + "links": [], + "files": [], + "images": [], + "ipAddress": "46.56.204.91", + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 2, + "joinId": "149296cb-55c5-49b8-ab61-a80b18bc038b", + "fundingId": null, + "userId": "5Bi1KZGIYzW5UIljHgBlO98NXaI2", + "commonId": "6f88e880-1ed8-4946-8326-d285239d293b", + "commonMemberId": null, + "importedFrom": "{\"updatedAt\":{\"_seconds\":1616750776,\"_nanoseconds\":55000000},\"state\":\"failed\",\"votesAgainst\":2,\"createdAt\":{\"_seconds\":1616750704,\"_nanoseconds\":975000000},\"votesFor\":0,\"votes\":[{\"voteOutcome\":\"rejected\",\"voteId\":\"89c232e0-bf4e-4e17-89fd-819b602a49b6\",\"voterId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\"},{\"voteOutcome\":\"rejected\",\"voteId\":\"5d4cf658-3d45-4e7f-9a77-db9853bc557b\",\"voterId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\"}],\"countdownPeriod\":57600,\"quietEndingPeriod\":3600,\"type\":\"join\",\"proposerId\":\"5Bi1KZGIYzW5UIljHgBlO98NXaI2\",\"description\":{\"description\":\"Reject\",\"links\":[]},\"join\":{\"payments\":[],\"ip\":\"46.56.204.91\",\"fundingType\":\"one-time\",\"cardId\":\"5167e82e-e709-48aa-b8b8-4586e6e0bb94\",\"funding\":400},\"id\":\"149296cb-55c5-49b8-ab61-a80b18bc038b\",\"commonId\":\"6f88e880-1ed8-4946-8326-d285239d293b\"}" + }, + { + "id": "14f2ad77-f337-4a20-b2c7-0e3330cde583", + "createdAt": "2021-05-18T08:40:19.403Z", + "updatedAt": "2021-05-18T08:40:19.404Z", + "expiresAt": "2021-02-04T01:34:25.140Z", + "title": null, + "description": "Fh", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 2, + "votesAgainst": 0, + "joinId": "14f2ad77-f337-4a20-b2c7-0e3330cde583", + "fundingId": null, + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "commonId": "845aadc4-4f62-49f1-9743-c08482ce861e", + "commonMemberId": "eeba44b9-c7bf-47ca-98db-f1e1443dc62e", + "importedFrom": "{\"countdownPeriod\":57600,\"paymentState\":\"confirmed\",\"createdAt\":{\"_seconds\":1612344865,\"_nanoseconds\":140000000},\"votes\":[{\"voteId\":\"ea9cb632-800a-4117-9b41-6ebc6af26941\",\"voteOutcome\":\"approved\",\"voterId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\"},{\"voteOutcome\":\"approved\",\"voteId\":\"3953aefd-29bd-473c-a523-ad1dec81519d\",\"voterId\":\"Xh4xoIGHhgOhxz1S5AJkaXCBT8K2\"}],\"proposerId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"commonId\":\"845aadc4-4f62-49f1-9743-c08482ce861e\",\"id\":\"14f2ad77-f337-4a20-b2c7-0e3330cde583\",\"votesFor\":2,\"description\":{\"description\":\"Fh\",\"links\":[]},\"votesAgainst\":0,\"quietEndingPeriod\":3600,\"join\":{\"cardId\":\"bbe77e8e-0ce7-45ac-92d8-76640579e0d3\",\"funding\":2500,\"fundingType\":\"monthly\",\"payments\":[]},\"state\":\"passed\",\"updatedAt\":{\"_seconds\":1612344900,\"_nanoseconds\":793000000},\"type\":\"join\"}" + }, + { + "id": "15c139f9-20c1-46f9-be10-7c3126aef97a", + "createdAt": "2021-05-18T08:40:19.405Z", + "updatedAt": "2021-05-18T08:40:19.407Z", + "expiresAt": "2021-04-01T13:49:54.931Z", + "title": null, + "description": "1", + "links": [], + "files": [], + "images": [], + "ipAddress": "46.56.203.253", + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "15c139f9-20c1-46f9-be10-7c3126aef97a", + "fundingId": null, + "userId": "5Bi1KZGIYzW5UIljHgBlO98NXaI2", + "commonId": "c45d25f6-d40e-4336-93ac-2274a3f51b1e", + "commonMemberId": null, + "importedFrom": "{\"join\":{\"ip\":\"46.56.203.253\",\"funding\":2500,\"cardId\":\"1b1cedb4-4912-4d20-9eb5-287afdbc2fa4\",\"payments\":[],\"fundingType\":\"monthly\"},\"votesAgainst\":0,\"updatedAt\":{\"_seconds\":1617285001,\"_nanoseconds\":501000000},\"state\":\"failed\",\"votesFor\":0,\"id\":\"15c139f9-20c1-46f9-be10-7c3126aef97a\",\"description\":{\"description\":\"1\",\"links\":[]},\"quietEndingPeriod\":3600,\"createdAt\":{\"_seconds\":1617227394,\"_nanoseconds\":931000000},\"proposerId\":\"5Bi1KZGIYzW5UIljHgBlO98NXaI2\",\"countdownPeriod\":57600,\"votes\":[],\"type\":\"join\",\"commonId\":\"c45d25f6-d40e-4336-93ac-2274a3f51b1e\"}" + }, + { + "id": "16fcf85c-f2fa-4c59-aef6-0987fd99a9fb", + "createdAt": "2021-05-18T08:40:19.408Z", + "updatedAt": "2021-05-18T08:40:19.409Z", + "expiresAt": "2020-12-13T12:24:22.111Z", + "title": null, + "description": "Bsbd", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "16fcf85c-f2fa-4c59-aef6-0987fd99a9fb", + "fundingId": null, + "userId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1", + "commonId": "02314122-6b05-4563-a8ce-4a10e97b72da", + "commonMemberId": null, + "importedFrom": "{\"state\":\"failed\",\"countdownPeriod\":7200,\"votesFor\":0,\"id\":\"16fcf85c-f2fa-4c59-aef6-0987fd99a9fb\",\"description\":{\"description\":\"Bsbd\",\"links\":[]},\"updatedAt\":{\"_seconds\":1607862301,\"_nanoseconds\":202000000},\"proposerId\":\"11j4NvvZ4kMRf4BFBUHdbRiXKMp1\",\"createdAt\":{\"_seconds\":1607855062,\"_nanoseconds\":111000000},\"quietEndingPeriod\":3600,\"commonId\":\"02314122-6b05-4563-a8ce-4a10e97b72da\",\"votes\":[],\"type\":\"join\",\"votesAgainst\":0,\"join\":{\"cardId\":\"8d7ebe5c-9547-44a0-99aa-217d623f42c2\",\"fundingType\":\"one-time\",\"funding\":2400,\"payments\":[]}}" + }, + { + "id": "18bacfc3-8894-4061-a71c-5a1cbff47702", + "createdAt": "2021-05-18T08:40:19.411Z", + "updatedAt": "2021-05-18T08:40:19.412Z", + "expiresAt": "2021-03-24T23:47:38.262Z", + "title": null, + "description": "Hychcuv", + "links": [], + "files": [], + "images": [], + "ipAddress": "46.56.204.176", + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "18bacfc3-8894-4061-a71c-5a1cbff47702", + "fundingId": null, + "userId": "5Bi1KZGIYzW5UIljHgBlO98NXaI2", + "commonId": "c683baee-aacf-4672-a017-b6f3af836b98", + "commonMemberId": null, + "importedFrom": "{\"id\":\"18bacfc3-8894-4061-a71c-5a1cbff47702\",\"type\":\"join\",\"votesFor\":0,\"votes\":[],\"quietEndingPeriod\":3600,\"description\":{\"links\":[],\"description\":\"Hychcuv\"},\"state\":\"failed\",\"countdownPeriod\":57600,\"votesAgainst\":0,\"updatedAt\":{\"_seconds\":1616629802,\"_nanoseconds\":297000000},\"join\":{\"fundingType\":\"one-time\",\"cardId\":\"637d0c47-c8a7-4f96-a83c-58f13d548d35\",\"ip\":\"46.56.204.176\",\"payments\":[],\"funding\":5000},\"proposerId\":\"5Bi1KZGIYzW5UIljHgBlO98NXaI2\",\"createdAt\":{\"_seconds\":1616572058,\"_nanoseconds\":262000000},\"commonId\":\"c683baee-aacf-4672-a017-b6f3af836b98\"}" + }, + { + "id": "1e8284fe-d436-42c1-9f94-d26178e3263d", + "createdAt": "2021-05-18T08:40:19.413Z", + "updatedAt": "2021-05-18T08:40:19.414Z", + "expiresAt": "2021-01-19T07:19:39.587Z", + "title": null, + "description": "Bsbd", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 1, + "votesAgainst": 0, + "joinId": "1e8284fe-d436-42c1-9f94-d26178e3263d", + "fundingId": null, + "userId": "Sxv19oCvKAZq2vntJdYCTYSpWWN2", + "commonId": "03a934ef-a152-42db-aba1-605fa4e4a4b0", + "commonMemberId": "97645aba-20c2-4a5e-a913-eb249af876b9", + "importedFrom": "{\"id\":\"1e8284fe-d436-42c1-9f94-d26178e3263d\",\"updatedAt\":{\"_seconds\":1610983221,\"_nanoseconds\":317000000},\"countdownPeriod\":57600,\"quietEndingPeriod\":3600,\"createdAt\":{\"_seconds\":1610983179,\"_nanoseconds\":587000000},\"votesFor\":1,\"paymentState\":\"confirmed\",\"votesAgainst\":0,\"state\":\"passed\",\"votes\":[{\"voteOutcome\":\"approved\",\"voteId\":\"51e12364-a0e3-41b9-976f-f6211da227a9\",\"voterId\":\"11j4NvvZ4kMRf4BFBUHdbRiXKMp1\"}],\"type\":\"join\",\"proposerId\":\"Sxv19oCvKAZq2vntJdYCTYSpWWN2\",\"commonId\":\"03a934ef-a152-42db-aba1-605fa4e4a4b0\",\"description\":{\"links\":[],\"description\":\"Bsbd\"},\"join\":{\"funding\":500,\"cardId\":\"6a3236c1-b4e1-407d-bf62-ea7947feefe8\",\"payments\":[],\"fundingType\":\"one-time\"}}" + }, + { + "id": "20a4c8f9-fa8a-434c-8da2-45499e08b54e", + "createdAt": "2021-05-18T08:40:19.416Z", + "updatedAt": "2021-05-18T08:40:19.417Z", + "expiresAt": "2020-12-13T13:33:11.081Z", + "title": null, + "description": "Hero", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 2, + "votesAgainst": 0, + "joinId": "20a4c8f9-fa8a-434c-8da2-45499e08b54e", + "fundingId": null, + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "08e9568e-377d-4c6e-aa77-45fd84922948", + "commonMemberId": null, + "importedFrom": "{\"description\":{\"links\":[],\"description\":\"Hero\"},\"countdownPeriod\":7200,\"id\":\"20a4c8f9-fa8a-434c-8da2-45499e08b54e\",\"proposerId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"quietEndingPeriod\":3600,\"join\":{\"funding\":125000,\"fundingType\":\"monthly\",\"cardId\":\"290e2649-8ae7-4e66-b4ba-044817358361\",\"payments\":[]},\"votes\":[{\"voterId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"voteOutcome\":\"approved\",\"voteId\":\"4f02ce23-e437-445c-aa66-2264f5a649d1\"},{\"voteId\":\"6d197c10-45cf-4a45-a8f5-56fd5275f82f\",\"voterId\":\"Xh4xoIGHhgOhxz1S5AJkaXCBT8K2\",\"voteOutcome\":\"approved\"}],\"updatedAt\":{\"_seconds\":1607860233,\"_nanoseconds\":668000000},\"createdAt\":{\"_seconds\":1607859191,\"_nanoseconds\":81000000},\"type\":\"join\",\"votesAgainst\":0,\"votesFor\":2,\"state\":\"passed\",\"commonId\":\"08e9568e-377d-4c6e-aa77-45fd84922948\"}" + }, + { + "id": "223f49f5-9ea3-43d8-a0e3-4c6bd9e2ee49", + "createdAt": "2021-05-18T08:40:19.418Z", + "updatedAt": "2021-05-18T08:40:19.419Z", + "expiresAt": "2021-03-17T04:48:25.699Z", + "title": null, + "description": "Dj", + "links": [], + "files": [], + "images": [], + "ipAddress": "147.161.8.237", + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 1, + "votesAgainst": 2, + "joinId": "223f49f5-9ea3-43d8-a0e3-4c6bd9e2ee49", + "fundingId": null, + "userId": "P21SZrJ6z5YjyF8WFaHv5eRsoFo1", + "commonId": "05e4c4a2-6957-42ea-bc49-073a307313d8", + "commonMemberId": null, + "importedFrom": "{\"join\":{\"payments\":[],\"funding\":500,\"ip\":\"147.161.8.237\",\"cardId\":\"ec53ddbf-c626-4aed-ad0c-d8b558ccfdee\",\"fundingType\":\"one-time\"},\"createdAt\":{\"_seconds\":1615898905,\"_nanoseconds\":699000000},\"type\":\"join\",\"votesFor\":1,\"votesAgainst\":2,\"id\":\"223f49f5-9ea3-43d8-a0e3-4c6bd9e2ee49\",\"updatedAt\":{\"_seconds\":1615899010,\"_nanoseconds\":615000000},\"countdownPeriod\":57600,\"quietEndingPeriod\":3600,\"state\":\"failed\",\"proposerId\":\"P21SZrJ6z5YjyF8WFaHv5eRsoFo1\",\"description\":{\"links\":[],\"description\":\"Dj\"},\"commonId\":\"05e4c4a2-6957-42ea-bc49-073a307313d8\",\"votes\":[{\"voterId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"voteId\":\"715a7a39-e6d4-4d98-92f4-230b0aa59055\",\"voteOutcome\":\"approved\"},{\"voteId\":\"8f979ff1-31ef-4828-b350-fbf522e6d38e\",\"voterId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"voteOutcome\":\"rejected\"},{\"voteOutcome\":\"rejected\",\"voteId\":\"ff0d585d-056d-4cad-931e-06850c7a7ab0\",\"voterId\":\"Xh4xoIGHhgOhxz1S5AJkaXCBT8K2\"}]}" + }, + { + "id": "238623b0-c2dd-4689-a9d2-e11e9c47ffb3", + "createdAt": "2021-05-18T08:40:19.420Z", + "updatedAt": "2021-05-18T08:40:19.421Z", + "expiresAt": "2021-04-10T00:39:41.443Z", + "title": null, + "description": "Test links", + "links": [ + { + "url": "http://www.talyaron.com", + "title": "http://www.talyaron.com" + }, + { + "url": "www.talyaron.com", + "title": "www.talyaron.com" + } + ], + "files": [], + "images": [], + "ipAddress": "46.53.241.63", + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "238623b0-c2dd-4689-a9d2-e11e9c47ffb3", + "fundingId": null, + "userId": "PIpHij5Ft2RdmMZ4C8w4Wi0G2pv2", + "commonId": "15c15871-d513-4a06-9e24-7d2c92cbd571", + "commonMemberId": null, + "importedFrom": "{\"votesAgainst\":0,\"state\":\"failed\",\"id\":\"238623b0-c2dd-4689-a9d2-e11e9c47ffb3\",\"votes\":[],\"description\":{\"description\":\"Test links\",\"links\":[{\"value\":\"http://www.talyaron.com\",\"title\":\"http://www.talyaron.com\"},{\"title\":\"www.talyaron.com\",\"value\":\"www.talyaron.com\"}]},\"commonId\":\"15c15871-d513-4a06-9e24-7d2c92cbd571\",\"quietEndingPeriod\":3600,\"votesFor\":0,\"createdAt\":{\"_seconds\":1617957581,\"_nanoseconds\":443000000},\"join\":{\"ip\":\"46.53.241.63\",\"cardId\":\"a5af045d-ebc8-404d-9324-763a106c6f87\",\"payments\":[],\"fundingType\":\"one-time\",\"funding\":700},\"countdownPeriod\":57600,\"proposerId\":\"PIpHij5Ft2RdmMZ4C8w4Wi0G2pv2\",\"type\":\"join\",\"updatedAt\":{\"_seconds\":1618015201,\"_nanoseconds\":679000000}}" + }, + { + "id": "240e085e-90b5-40e3-95fe-e64ff566ce60", + "createdAt": "2021-05-18T08:40:19.423Z", + "updatedAt": "2021-05-18T08:40:19.424Z", + "expiresAt": "2021-02-10T05:13:17.582Z", + "title": null, + "description": "Know", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 2, + "votesAgainst": 0, + "joinId": "240e085e-90b5-40e3-95fe-e64ff566ce60", + "fundingId": null, + "userId": "P21SZrJ6z5YjyF8WFaHv5eRsoFo1", + "commonId": "23f0f859-6277-414b-b66a-1de673f1792b", + "commonMemberId": "ff18af57-69d6-48da-8fe2-1ea3a58e9408", + "importedFrom": "{\"votesAgainst\":0,\"countdownPeriod\":57600,\"join\":{\"cardId\":\"925ad53b-5229-4c01-bc36-6e629d611a62\",\"funding\":25000,\"fundingType\":\"one-time\",\"payments\":[\"78f179ba-c265-4737-acd3-fa1382c97706\"]},\"type\":\"join\",\"id\":\"240e085e-90b5-40e3-95fe-e64ff566ce60\",\"updatedAt\":{\"_seconds\":1612876587,\"_nanoseconds\":308000000},\"votesFor\":2,\"votes\":[{\"voterId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"voteOutcome\":\"approved\",\"voteId\":\"a44e2156-2133-4817-8533-e80da154cc61\"},{\"voterId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"voteId\":\"7f2278f7-a3fd-4e26-8e8e-00dc3b6accb1\",\"voteOutcome\":\"approved\"}],\"paymentState\":\"confirmed\",\"commonId\":\"23f0f859-6277-414b-b66a-1de673f1792b\",\"quietEndingPeriod\":3600,\"proposerId\":\"P21SZrJ6z5YjyF8WFaHv5eRsoFo1\",\"state\":\"passed\",\"description\":{\"links\":[],\"description\":\"Know\"},\"createdAt\":{\"_seconds\":1612876397,\"_nanoseconds\":582000000}}" + }, + { + "id": "252f1745-063e-427f-a0b6-6fa39fdecdb8", + "createdAt": "2021-05-18T08:40:19.426Z", + "updatedAt": "2021-05-18T08:40:19.427Z", + "expiresAt": "2021-04-01T05:16:52.208Z", + "title": null, + "description": "Hi", + "links": [], + "files": [], + "images": [], + "ipAddress": "178.120.55.200", + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 1, + "votesAgainst": 0, + "joinId": "252f1745-063e-427f-a0b6-6fa39fdecdb8", + "fundingId": null, + "userId": "2HM9WnVvr9aDYbckjCo4cIDjncY2", + "commonId": "1e3d7621-92ba-4b10-a1e8-8245fed4ca88", + "commonMemberId": "a42c6538-f583-4a0c-a02f-a17ff46edb69", + "importedFrom": "{\"proposerId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\",\"description\":{\"links\":[],\"description\":\"Hi\"},\"createdAt\":{\"_seconds\":1617196612,\"_nanoseconds\":208000000},\"quietEndingPeriod\":3600,\"countdownPeriod\":57600,\"votes\":[{\"voteId\":\"2a124836-d0a8-42eb-bbc9-cb3ae7626eae\",\"voterId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"voteOutcome\":\"approved\"}],\"type\":\"join\",\"id\":\"252f1745-063e-427f-a0b6-6fa39fdecdb8\",\"state\":\"passed\",\"votesFor\":1,\"votesAgainst\":0,\"paymentState\":\"confirmed\",\"updatedAt\":{\"_seconds\":1617198862,\"_nanoseconds\":310000000},\"commonId\":\"1e3d7621-92ba-4b10-a1e8-8245fed4ca88\",\"join\":{\"payments\":[],\"funding\":500,\"cardId\":\"93792c31-877c-4671-b8c1-3066165f0063\",\"fundingType\":\"monthly\",\"ip\":\"178.120.55.200\"}}" + }, + { + "id": "2683f751-64c4-4827-bb56-56397a9b7fe3", + "createdAt": "2021-05-18T08:40:19.428Z", + "updatedAt": "2021-05-18T08:40:19.429Z", + "expiresAt": "2021-01-19T05:15:14.945Z", + "title": null, + "description": "D", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 1, + "votesAgainst": 0, + "joinId": "2683f751-64c4-4827-bb56-56397a9b7fe3", + "fundingId": null, + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "8d1d4dd3-ccf4-48f8-90f2-01f8a9448534", + "commonMemberId": "510f655e-9b40-459a-98ea-a58d66989d1b", + "importedFrom": "{\"type\":\"join\",\"proposerId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"createdAt\":{\"_seconds\":1610975714,\"_nanoseconds\":945000000},\"countdownPeriod\":57600,\"description\":{\"description\":\"D\",\"links\":[]},\"votesAgainst\":0,\"id\":\"2683f751-64c4-4827-bb56-56397a9b7fe3\",\"commonId\":\"8d1d4dd3-ccf4-48f8-90f2-01f8a9448534\",\"paymentState\":\"confirmed\",\"quietEndingPeriod\":3600,\"state\":\"passed\",\"updatedAt\":{\"_seconds\":1610975733,\"_nanoseconds\":788000000},\"votesFor\":1,\"join\":{\"payments\":[],\"funding\":500,\"cardId\":\"c2952c4c-6762-4718-957c-271f5e6e6820\",\"fundingType\":\"one-time\"},\"votes\":[{\"voterId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"voteId\":\"1e8d7887-b26e-4276-a8ff-0483becd433e\",\"voteOutcome\":\"approved\"}]}" + }, + { + "id": "29a248d0-fae4-4051-afb5-4fb3d0c7d97b", + "createdAt": "2021-05-18T08:40:19.431Z", + "updatedAt": "2021-05-18T08:40:19.432Z", + "expiresAt": "2020-12-21T19:26:07.959Z", + "title": null, + "description": "Ehh", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "29a248d0-fae4-4051-afb5-4fb3d0c7d97b", + "fundingId": null, + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "db048928-da8b-486f-b787-d810d4e90e7a", + "commonMemberId": null, + "importedFrom": "{\"commonId\":\"db048928-da8b-486f-b787-d810d4e90e7a\",\"proposerId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"description\":{\"description\":\"Ehh\",\"links\":[]},\"updatedAt\":{\"_seconds\":1608579000,\"_nanoseconds\":399000000},\"votesFor\":0,\"type\":\"join\",\"state\":\"failed\",\"createdAt\":{\"_seconds\":1608571567,\"_nanoseconds\":959000000},\"id\":\"29a248d0-fae4-4051-afb5-4fb3d0c7d97b\",\"quietEndingPeriod\":3600,\"join\":{\"fundingType\":\"one-time\",\"funding\":1250,\"cardId\":\"b90824fc-0673-4485-8faf-cca838fd5d73\",\"payments\":[]},\"votesAgainst\":0,\"countdownPeriod\":7200,\"votes\":[]}" + }, + { + "id": "2bfe069f-2426-4dbf-ad38-06d37a3cf445", + "createdAt": "2021-05-18T08:40:19.434Z", + "updatedAt": "2021-05-18T08:40:19.435Z", + "expiresAt": "2021-03-22T22:09:47.705Z", + "title": null, + "description": "Nnnmnmnbknkjnknkj", + "links": [], + "files": [], + "images": [], + "ipAddress": "92.247.241.23", + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 1, + "votesAgainst": 0, + "joinId": "2bfe069f-2426-4dbf-ad38-06d37a3cf445", + "fundingId": null, + "userId": "H5ZkcKBX5eXXNyBiPaph8EHCiax2", + "commonId": "10fd7df7-eae9-4995-9c85-90e691c439e1", + "commonMemberId": null, + "importedFrom": "{\"quietEndingPeriod\":3600,\"updatedAt\":{\"_seconds\":1616451000,\"_nanoseconds\":530000000},\"countdownPeriod\":57600,\"id\":\"2bfe069f-2426-4dbf-ad38-06d37a3cf445\",\"proposerId\":\"H5ZkcKBX5eXXNyBiPaph8EHCiax2\",\"state\":\"passed\",\"votesFor\":1,\"description\":{\"links\":[],\"description\":\"Nnnmnmnbknkjnknkj\"},\"createdAt\":{\"_seconds\":1616393387,\"_nanoseconds\":705000000},\"votes\":[{\"voteId\":\"37f563b1-d365-42bf-817d-ea976c479da6\",\"voterId\":\"11j4NvvZ4kMRf4BFBUHdbRiXKMp1\",\"voteOutcome\":\"approved\"}],\"type\":\"join\",\"votesAgainst\":0,\"commonId\":\"10fd7df7-eae9-4995-9c85-90e691c439e1\",\"join\":{\"cardId\":\"13c4eb3a-d440-4afd-87f1-dbc1c7aab4ab\",\"funding\":500,\"ip\":\"92.247.241.23\",\"payments\":[]}}" + }, + { + "id": "2ca2da23-ce4c-49d5-9b59-f411733d06a7", + "createdAt": "2021-05-18T08:40:19.436Z", + "updatedAt": "2021-05-18T08:40:19.437Z", + "expiresAt": "2021-03-02T01:57:08.588Z", + "title": null, + "description": "Hi", + "links": [], + "files": [], + "images": [], + "ipAddress": "178.120.63.174", + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 2, + "joinId": "2ca2da23-ce4c-49d5-9b59-f411733d06a7", + "fundingId": null, + "userId": "5Bi1KZGIYzW5UIljHgBlO98NXaI2", + "commonId": "0c233ec1-c0a4-4776-8730-79777239a997", + "commonMemberId": "835f0902-1acc-4de1-8628-42e55bf85954", + "importedFrom": "{\"updatedAt\":{\"_seconds\":1614592968,\"_nanoseconds\":23000000},\"quietEndingPeriod\":3600,\"state\":\"failed\",\"description\":{\"description\":\"Hi\",\"links\":[]},\"commonId\":\"0c233ec1-c0a4-4776-8730-79777239a997\",\"votes\":[{\"voteId\":\"8888d5af-cec5-4979-a0d3-0d1cc14a9d9d\",\"voteOutcome\":\"rejected\",\"voterId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\"},{\"voterId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\",\"voteOutcome\":\"rejected\",\"voteId\":\"9be8994e-9adb-4725-adf3-44ae891eb6e1\"}],\"join\":{\"cardId\":\"5a7f4ae1-45bc-4c96-b270-5f61fe92e416\",\"funding\":500,\"ip\":\"178.120.63.174\",\"payments\":[],\"fundingType\":\"one-time\"},\"proposerId\":\"5Bi1KZGIYzW5UIljHgBlO98NXaI2\",\"votesAgainst\":2,\"id\":\"2ca2da23-ce4c-49d5-9b59-f411733d06a7\",\"countdownPeriod\":57600,\"createdAt\":{\"_seconds\":1614592628,\"_nanoseconds\":588000000},\"type\":\"join\",\"votesFor\":0}" + }, + { + "id": "2ce1ce94-9c9c-40a9-be2e-7aff5f312ecd", + "createdAt": "2021-05-18T08:40:19.439Z", + "updatedAt": "2021-05-18T08:40:19.440Z", + "expiresAt": "2021-05-18T23:14:53.219Z", + "title": null, + "description": "Go", + "links": [], + "files": [], + "images": [], + "ipAddress": "87.70.96.96", + "type": "JoinRequest", + "state": "Countdown", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "2ce1ce94-9c9c-40a9-be2e-7aff5f312ecd", + "fundingId": null, + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "7360f527-44fd-4808-ad78-9b02c9863f4d", + "commonMemberId": null, + "importedFrom": "{\"createdAt\":{\"_seconds\":1621322093,\"_nanoseconds\":219000000},\"commonId\":\"7360f527-44fd-4808-ad78-9b02c9863f4d\",\"countdownPeriod\":57600,\"quietEndingPeriod\":3600,\"proposerId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"votes\":[],\"updatedAt\":{\"_seconds\":1621322093,\"_nanoseconds\":219000000},\"id\":\"2ce1ce94-9c9c-40a9-be2e-7aff5f312ecd\",\"join\":{\"cardId\":\"c5f70d50-0686-44ab-8589-98f6b8131682\",\"payments\":[],\"fundingType\":\"one-time\",\"funding\":507,\"ip\":\"87.70.96.96\"},\"state\":\"countdown\",\"votesFor\":0,\"votesAgainst\":0,\"description\":{\"description\":\"Go\",\"links\":[]},\"type\":\"join\"}" + }, + { + "id": "2d22214f-2f7c-472e-a6e9-f29f9d8d1eab", + "createdAt": "2021-05-18T08:40:19.442Z", + "updatedAt": "2021-05-18T08:40:19.443Z", + "expiresAt": "2021-04-21T05:40:52.097Z", + "title": null, + "description": "1", + "links": [], + "files": [], + "images": [], + "ipAddress": "2a02:ed0:537b:9400:b477:3a78:d83d:3aa6", + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 1, + "votesAgainst": 0, + "joinId": "2d22214f-2f7c-472e-a6e9-f29f9d8d1eab", + "fundingId": null, + "userId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1", + "commonId": "2eb88e3e-d5bb-4772-b5ab-490f1da05876", + "commonMemberId": "6b9e15bf-f6f4-41ae-a6f9-7dd7d6e3ada3", + "importedFrom": "{\"commonId\":\"2eb88e3e-d5bb-4772-b5ab-490f1da05876\",\"type\":\"join\",\"votesFor\":1,\"paymentState\":\"confirmed\",\"quietEndingPeriod\":3600,\"description\":{\"links\":[],\"description\":\"1\"},\"join\":{\"payments\":[\"cfd1b30e-128a-4127-a319-14ca701a247b\"],\"funding\":250000,\"cardId\":\"972e852a-b33f-43bf-993c-27be0d24ae5d\",\"fundingType\":\"one-time\",\"ip\":\"2a02:ed0:537b:9400:b477:3a78:d83d:3aa6\"},\"countdownPeriod\":57600,\"votesAgainst\":0,\"updatedAt\":{\"_seconds\":1618926095,\"_nanoseconds\":247000000},\"state\":\"passed\",\"votes\":[{\"voteId\":\"88a7b066-025b-4274-8c6b-afaf94a779cc\",\"voteOutcome\":\"approved\",\"voterId\":\"Sxv19oCvKAZq2vntJdYCTYSpWWN2\"}],\"proposerId\":\"11j4NvvZ4kMRf4BFBUHdbRiXKMp1\",\"createdAt\":{\"_seconds\":1618926052,\"_nanoseconds\":96999000},\"id\":\"2d22214f-2f7c-472e-a6e9-f29f9d8d1eab\"}" + }, + { + "id": "2e512ed1-4909-4094-9e54-c8d6e15eebc8", + "createdAt": "2021-05-18T08:40:19.444Z", + "updatedAt": "2021-05-18T08:40:19.445Z", + "expiresAt": "2021-02-02T03:01:30.127Z", + "title": null, + "description": "Uber", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "2e512ed1-4909-4094-9e54-c8d6e15eebc8", + "fundingId": null, + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "commonId": "0970bc3f-beca-4b6e-acb1-42f1b4bba931", + "commonMemberId": null, + "importedFrom": "{\"votesFor\":0,\"votes\":[],\"join\":{\"payments\":[],\"funding\":23400,\"fundingType\":\"one-time\",\"cardId\":\"d867ee05-8c06-478f-8db4-4891de693910\"},\"description\":{\"links\":[],\"description\":\"Uber\"},\"state\":\"failed\",\"id\":\"2e512ed1-4909-4094-9e54-c8d6e15eebc8\",\"votesAgainst\":0,\"updatedAt\":{\"_seconds\":1612235100,\"_nanoseconds\":853000000},\"createdAt\":{\"_seconds\":1612177290,\"_nanoseconds\":127000000},\"quietEndingPeriod\":3600,\"countdownPeriod\":57600,\"type\":\"join\",\"proposerId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"commonId\":\"0970bc3f-beca-4b6e-acb1-42f1b4bba931\"}" + }, + { + "id": "30186065-b3c3-4d0e-b43c-967cb4040660", + "createdAt": "2021-05-18T08:40:19.447Z", + "updatedAt": "2021-05-18T08:40:19.448Z", + "expiresAt": "2021-03-12T01:16:40.706Z", + "title": null, + "description": "Rh", + "links": [], + "files": [], + "images": [], + "ipAddress": "87.71.10.6", + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 1, + "joinId": "30186065-b3c3-4d0e-b43c-967cb4040660", + "fundingId": null, + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "878ec9a9-1773-4a1d-8b5d-463eb39adc7f", + "commonMemberId": null, + "importedFrom": "{\"votesAgainst\":1,\"quietEndingPeriod\":3600,\"countdownPeriod\":57600,\"createdAt\":{\"_seconds\":1615454200,\"_nanoseconds\":706000000},\"state\":\"failed\",\"type\":\"join\",\"updatedAt\":{\"_seconds\":1615454265,\"_nanoseconds\":42000000},\"votes\":[{\"voteId\":\"68615cba-cd81-4871-a5f0-a7c539e36a8e\",\"voterId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"voteOutcome\":\"rejected\"}],\"commonId\":\"878ec9a9-1773-4a1d-8b5d-463eb39adc7f\",\"proposerId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"description\":{\"description\":\"Rh\",\"links\":[]},\"join\":{\"funding\":20000,\"cardId\":\"35722e7d-b933-42f4-8025-2c39c6aa1da6\",\"ip\":\"87.71.10.6\",\"fundingType\":\"monthly\",\"payments\":[]},\"id\":\"30186065-b3c3-4d0e-b43c-967cb4040660\",\"votesFor\":0}" + }, + { + "id": "30d0d16e-5983-4ca7-8caa-7ef4320732a9", + "createdAt": "2021-05-18T08:40:19.486Z", + "updatedAt": "2021-05-18T08:40:19.487Z", + "expiresAt": "2021-02-09T03:59:47.545Z", + "title": null, + "description": "Me to you", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 1, + "votesAgainst": 0, + "joinId": "30d0d16e-5983-4ca7-8caa-7ef4320732a9", + "fundingId": null, + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "5563ca24-ef7d-4593-96a6-a448db33cf6b", + "commonMemberId": "207b4afa-b538-49be-b18a-e06d96ca7b8a", + "importedFrom": "{\"paymentState\":\"confirmed\",\"id\":\"30d0d16e-5983-4ca7-8caa-7ef4320732a9\",\"votesFor\":1,\"votes\":[{\"voteOutcome\":\"approved\",\"voteId\":\"e5d7be4b-30a9-4559-8035-c75e27302686\",\"voterId\":\"P21SZrJ6z5YjyF8WFaHv5eRsoFo1\"}],\"createdAt\":{\"_seconds\":1612785587,\"_nanoseconds\":545000000},\"commonId\":\"5563ca24-ef7d-4593-96a6-a448db33cf6b\",\"countdownPeriod\":57600,\"quietEndingPeriod\":3600,\"proposerId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"votesAgainst\":0,\"type\":\"join\",\"state\":\"passed\",\"updatedAt\":{\"_seconds\":1612785731,\"_nanoseconds\":490000000},\"description\":{\"description\":\"Me to you\",\"links\":[]},\"join\":{\"fundingType\":\"one-time\",\"cardId\":\"871ae21c-88c6-4553-bc29-568a2d343721\",\"payments\":[\"e35787e8-3ce1-4b88-95bc-76293f264b0e\"],\"funding\":55500}}" + }, + { + "id": "345a8396-f9f9-44fc-8d01-650da619b96c", + "createdAt": "2021-05-18T08:40:19.493Z", + "updatedAt": "2021-05-18T08:40:19.494Z", + "expiresAt": "2021-04-01T11:01:58.419Z", + "title": null, + "description": ":)", + "links": [], + "files": [], + "images": [], + "ipAddress": "178.120.55.200", + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 1, + "votesAgainst": 0, + "joinId": "345a8396-f9f9-44fc-8d01-650da619b96c", + "fundingId": null, + "userId": "2HM9WnVvr9aDYbckjCo4cIDjncY2", + "commonId": "3fc54c58-f31c-43dd-94d7-c3409c109570", + "commonMemberId": "4bb55ac6-49db-495f-aec5-ad6ea3c20b91", + "importedFrom": "{\"state\":\"passed\",\"description\":{\"description\":\":)\",\"links\":[]},\"commonId\":\"3fc54c58-f31c-43dd-94d7-c3409c109570\",\"countdownPeriod\":57600,\"join\":{\"payments\":[],\"funding\":700,\"cardId\":\"9a162409-5f54-41f9-b98d-8da738136c8f\",\"ip\":\"178.120.55.200\",\"fundingType\":\"monthly\"},\"votesFor\":1,\"paymentState\":\"confirmed\",\"votes\":[{\"voterId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"voteOutcome\":\"approved\",\"voteId\":\"0859d599-b231-489e-8c6d-f88e6a0e0419\"}],\"proposerId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\",\"votesAgainst\":0,\"updatedAt\":{\"_seconds\":1617218481,\"_nanoseconds\":814000000},\"quietEndingPeriod\":3600,\"type\":\"join\",\"createdAt\":{\"_seconds\":1617217318,\"_nanoseconds\":419000000},\"id\":\"345a8396-f9f9-44fc-8d01-650da619b96c\"}" + }, + { + "id": "35e06d19-117b-4664-b3cb-5c4b4b6b93ac", + "createdAt": "2021-05-18T08:40:19.496Z", + "updatedAt": "2021-05-18T08:40:19.497Z", + "expiresAt": "2021-04-22T05:20:08.337Z", + "title": null, + "description": "1", + "links": [], + "files": [], + "images": [], + "ipAddress": "141.226.162.23", + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "35e06d19-117b-4664-b3cb-5c4b4b6b93ac", + "fundingId": null, + "userId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1", + "commonId": "0970bc3f-beca-4b6e-acb1-42f1b4bba931", + "commonMemberId": null, + "importedFrom": "{\"votesFor\":0,\"updatedAt\":{\"_seconds\":1619069100,\"_nanoseconds\":847000000},\"quietEndingPeriod\":3600,\"votes\":[],\"description\":{\"links\":[],\"description\":\"1\"},\"countdownPeriod\":57600,\"proposerId\":\"11j4NvvZ4kMRf4BFBUHdbRiXKMp1\",\"id\":\"35e06d19-117b-4664-b3cb-5c4b4b6b93ac\",\"commonId\":\"0970bc3f-beca-4b6e-acb1-42f1b4bba931\",\"join\":{\"fundingType\":\"one-time\",\"payments\":[],\"ip\":\"141.226.162.23\",\"funding\":500,\"cardId\":\"13596755-c2f5-4edf-b237-8e070d8d3260\"},\"type\":\"join\",\"votesAgainst\":0,\"createdAt\":{\"_seconds\":1619011208,\"_nanoseconds\":337000000},\"state\":\"failed\"}" + }, + { + "id": "362ff1a6-32fd-4cb6-bcd9-44bbcbde7e76", + "createdAt": "2021-05-18T08:40:19.498Z", + "updatedAt": "2021-05-18T08:40:19.499Z", + "expiresAt": "2021-03-19T00:24:59.771Z", + "title": null, + "description": "All", + "links": [], + "files": [], + "images": [], + "ipAddress": "178.120.61.209", + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "362ff1a6-32fd-4cb6-bcd9-44bbcbde7e76", + "fundingId": null, + "userId": "Wz0ZgOvKnafrjLDeAeWqx182uBq2", + "commonId": "0970bc3f-beca-4b6e-acb1-42f1b4bba931", + "commonMemberId": null, + "importedFrom": "{\"updatedAt\":{\"_seconds\":1616113500,\"_nanoseconds\":300000000},\"quietEndingPeriod\":3600,\"description\":{\"links\":[],\"description\":\"All\"},\"countdownPeriod\":57600,\"votes\":[],\"type\":\"join\",\"id\":\"362ff1a6-32fd-4cb6-bcd9-44bbcbde7e76\",\"votesAgainst\":0,\"createdAt\":{\"_seconds\":1616055899,\"_nanoseconds\":771000000},\"proposerId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"join\":{\"cardId\":\"d6a6a039-2e9c-4f88-be90-af3487fc951a\",\"fundingType\":\"one-time\",\"payments\":[],\"funding\":500,\"ip\":\"178.120.61.209\"},\"commonId\":\"0970bc3f-beca-4b6e-acb1-42f1b4bba931\",\"votesFor\":0,\"state\":\"failed\"}" + }, + { + "id": "37e32cff-e494-433f-8527-a41d1480341a", + "createdAt": "2021-05-18T08:40:19.501Z", + "updatedAt": "2021-05-18T08:40:19.502Z", + "expiresAt": "2020-12-27T22:51:45.257Z", + "title": null, + "description": "Gdh", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 1, + "votesAgainst": 0, + "joinId": "37e32cff-e494-433f-8527-a41d1480341a", + "fundingId": null, + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "commonId": "6d778a9d-6ebb-46ab-969a-02d4c4567145", + "commonMemberId": "4553d6a2-f768-4e57-8736-7e9ba2de9a49", + "importedFrom": "{\"commonId\":\"6d778a9d-6ebb-46ab-969a-02d4c4567145\",\"votes\":[{\"voterId\":\"Xh4xoIGHhgOhxz1S5AJkaXCBT8K2\",\"voteId\":\"1321b594-461a-4a31-846f-9ae24c9bf221\",\"voteOutcome\":\"approved\"}],\"id\":\"37e32cff-e494-433f-8527-a41d1480341a\",\"proposerId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"countdownPeriod\":57600,\"votesAgainst\":0,\"type\":\"join\",\"state\":\"passed\",\"join\":{\"cardId\":\"ec1279be-0082-41ee-95fd-8b7c02f763d9\",\"payments\":[],\"funding\":504,\"fundingType\":\"one-time\"},\"quietEndingPeriod\":3600,\"paymentState\":\"failed\",\"createdAt\":{\"_seconds\":1609051905,\"_nanoseconds\":257000000},\"updatedAt\":{\"_seconds\":1609051938,\"_nanoseconds\":46000000},\"votesFor\":1,\"description\":{\"description\":\"Gdh\",\"links\":[]}}" + }, + { + "id": "3aa690b6-4d8e-4a2a-aa6f-9180e7cc7f2c", + "createdAt": "2021-05-18T08:40:19.503Z", + "updatedAt": "2021-05-18T08:40:19.504Z", + "expiresAt": "2021-03-18T08:25:52.133Z", + "title": null, + "description": "Vote ", + "links": [], + "files": [], + "images": [], + "ipAddress": "87.71.10.6", + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 2, + "votesAgainst": 0, + "joinId": "3aa690b6-4d8e-4a2a-aa6f-9180e7cc7f2c", + "fundingId": null, + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "e09d83a7-8298-423d-87df-e598bc45916b", + "commonMemberId": "75c05c74-e08b-4551-b116-fdb5d49ac6e3", + "importedFrom": "{\"updatedAt\":{\"_seconds\":1615998808,\"_nanoseconds\":227000000},\"state\":\"passed\",\"quietEndingPeriod\":3600,\"id\":\"3aa690b6-4d8e-4a2a-aa6f-9180e7cc7f2c\",\"countdownPeriod\":57600,\"paymentState\":\"confirmed\",\"join\":{\"payments\":[\"e0a1d3c4-55a5-4373-98e1-c234fd57850f\"],\"cardId\":\"970cbfb0-783a-4010-bc7d-db88c8e3db59\",\"ip\":\"87.71.10.6\",\"fundingType\":\"one-time\",\"funding\":3000},\"proposerId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"votes\":[{\"voterId\":\"P21SZrJ6z5YjyF8WFaHv5eRsoFo1\",\"voteId\":\"6c709907-7031-46cc-a756-f7d2660bee42\",\"voteOutcome\":\"approved\"},{\"voterId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"voteId\":\"e11a85b8-997f-4b90-96b7-08813f4bfc7c\",\"voteOutcome\":\"approved\"}],\"createdAt\":{\"_seconds\":1615998352,\"_nanoseconds\":133000000},\"description\":{\"links\":[],\"description\":\"Vote \"},\"votesFor\":2,\"votesAgainst\":0,\"type\":\"join\",\"commonId\":\"e09d83a7-8298-423d-87df-e598bc45916b\"}" + }, + { + "id": "3b192921-3756-452d-ab9c-5710d1a663a4", + "createdAt": "2021-05-18T08:40:19.505Z", + "updatedAt": "2021-05-18T08:40:19.506Z", + "expiresAt": "2021-01-18T03:25:07.656Z", + "title": null, + "description": "B", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 1, + "votesAgainst": 0, + "joinId": "3b192921-3756-452d-ab9c-5710d1a663a4", + "fundingId": null, + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "bc2fd521-d8f6-47a0-8ad9-da1ad65d1ec0", + "commonMemberId": null, + "importedFrom": "{\"join\":{\"fundingType\":\"monthly\",\"cardId\":\"2c4c6485-30eb-4d06-a5f7-ddd4f8306174\",\"funding\":50000,\"payments\":[]},\"type\":\"join\",\"quietEndingPeriod\":3600,\"votes\":[{\"voterId\":\"P21SZrJ6z5YjyF8WFaHv5eRsoFo1\",\"voteOutcome\":\"approved\",\"voteId\":\"8c229db1-3547-4efb-aed2-c4d4e0f1c5c4\"}],\"countdownPeriod\":57600,\"updatedAt\":{\"_seconds\":1610882731,\"_nanoseconds\":419000000},\"paymentState\":\"confirmed\",\"state\":\"passed\",\"id\":\"3b192921-3756-452d-ab9c-5710d1a663a4\",\"votesAgainst\":0,\"createdAt\":{\"_seconds\":1610882707,\"_nanoseconds\":656000000},\"proposerId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"commonId\":\"bc2fd521-d8f6-47a0-8ad9-da1ad65d1ec0\",\"description\":{\"description\":\"B\",\"links\":[]},\"votesFor\":1}" + }, + { + "id": "3b76f4bf-9053-4921-b34c-8b3ced4748d0", + "createdAt": "2021-05-18T08:40:19.508Z", + "updatedAt": "2021-05-18T08:40:19.509Z", + "expiresAt": "2021-03-11T09:39:17.862Z", + "title": null, + "description": "D", + "links": [], + "files": [], + "images": [], + "ipAddress": "46.56.205.15", + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "3b76f4bf-9053-4921-b34c-8b3ced4748d0", + "fundingId": null, + "userId": "Wz0ZgOvKnafrjLDeAeWqx182uBq2", + "commonId": "8f0c51bb-6c07-4793-8590-d922b7466a9e", + "commonMemberId": null, + "importedFrom": "{\"votesAgainst\":0,\"state\":\"failed\",\"countdownPeriod\":57600,\"createdAt\":{\"_seconds\":1615397957,\"_nanoseconds\":862000000},\"description\":{\"links\":[],\"description\":\"D\"},\"votesFor\":0,\"updatedAt\":{\"_seconds\":1615455601,\"_nanoseconds\":99000000},\"type\":\"join\",\"commonId\":\"8f0c51bb-6c07-4793-8590-d922b7466a9e\",\"votes\":[],\"join\":{\"funding\":500,\"fundingType\":\"monthly\",\"cardId\":\"940ba45b-2151-4623-83a1-52583ba832d8\",\"payments\":[],\"ip\":\"46.56.205.15\"},\"id\":\"3b76f4bf-9053-4921-b34c-8b3ced4748d0\",\"proposerId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"quietEndingPeriod\":3600}" + }, + { + "id": "3c8b40b1-2a4c-4742-95ef-81a446d20dd4", + "createdAt": "2021-05-18T08:40:19.514Z", + "updatedAt": "2021-05-18T08:40:19.515Z", + "expiresAt": "2020-12-17T12:19:19.200Z", + "title": null, + "description": "sdsdsdsdsdsdsdsddsds", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 1, + "votesAgainst": 0, + "joinId": "3c8b40b1-2a4c-4742-95ef-81a446d20dd4", + "fundingId": null, + "userId": "7a3rK55ZsdShvRd27sntddN2v7H2", + "commonId": "505ca135-36e4-4ea6-8978-0f6fb6a7f975", + "commonMemberId": null, + "importedFrom": "{\"description\":{\"description\":\"sdsdsdsdsdsdsdsddsds\",\"links\":[]},\"countdownPeriod\":7200,\"createdAt\":{\"_seconds\":1608200359,\"_nanoseconds\":200000000},\"updatedAt\":{\"_seconds\":1608200379,\"_nanoseconds\":790000000},\"id\":\"3c8b40b1-2a4c-4742-95ef-81a446d20dd4\",\"votes\":[{\"voteId\":\"f36ed404-dbfd-435c-b740-3e0c5fe983ac\",\"voteOutcome\":\"approved\",\"voterId\":\"h59V0do13qhpeH9xDyoLaCZucTm1\"}],\"state\":\"passed\",\"join\":{\"funding\":500,\"payments\":[],\"cardId\":\"e67c3711-3d52-4bac-90dd-0c641169ab20\"},\"votesAgainst\":0,\"quietEndingPeriod\":3600,\"commonId\":\"505ca135-36e4-4ea6-8978-0f6fb6a7f975\",\"proposerId\":\"7a3rK55ZsdShvRd27sntddN2v7H2\",\"votesFor\":1,\"type\":\"join\"}" + }, + { + "id": "40a1db70-13f9-437f-aa31-88f307378dd8", + "createdAt": "2021-05-18T08:40:19.517Z", + "updatedAt": "2021-05-18T08:40:19.518Z", + "expiresAt": "2021-02-01T05:49:43.143Z", + "title": null, + "description": "Testing links", + "links": [ + { + "url": "https://www.apple.com", + "title": "Apple" + } + ], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "40a1db70-13f9-437f-aa31-88f307378dd8", + "fundingId": null, + "userId": "Sxv19oCvKAZq2vntJdYCTYSpWWN2", + "commonId": "02314122-6b05-4563-a8ce-4a10e97b72da", + "commonMemberId": null, + "importedFrom": "{\"proposerId\":\"Sxv19oCvKAZq2vntJdYCTYSpWWN2\",\"updatedAt\":{\"_seconds\":1612158600,\"_nanoseconds\":784000000},\"createdAt\":{\"_seconds\":1612100983,\"_nanoseconds\":143000000},\"countdownPeriod\":57600,\"state\":\"failed\",\"votesFor\":0,\"commonId\":\"02314122-6b05-4563-a8ce-4a10e97b72da\",\"join\":{\"cardId\":\"4d600cd7-ee6c-4ca8-bc5a-3cc3ecba3be4\",\"payments\":[],\"funding\":2400,\"fundingType\":\"one-time\"},\"quietEndingPeriod\":3600,\"votesAgainst\":0,\"type\":\"join\",\"description\":{\"description\":\"Testing links\",\"links\":[{\"value\":\"https://www.apple.com\",\"title\":\"Apple\"}]},\"id\":\"40a1db70-13f9-437f-aa31-88f307378dd8\",\"votes\":[]}" + }, + { + "id": "41454b71-aa2f-44f4-a6d4-353a97b8e487", + "createdAt": "2021-05-18T08:40:19.519Z", + "updatedAt": "2021-05-18T08:40:19.520Z", + "expiresAt": "2021-02-08T02:39:30.953Z", + "title": null, + "description": "Me", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 2, + "votesAgainst": 0, + "joinId": "41454b71-aa2f-44f4-a6d4-353a97b8e487", + "fundingId": null, + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "commonId": "60026234-b1ff-4596-baa2-0d7be186f561", + "commonMemberId": "5187d7ff-2cdf-4f2f-b6bc-adedac101194", + "importedFrom": "{\"updatedAt\":{\"_seconds\":1612694409,\"_nanoseconds\":148000000},\"votesFor\":2,\"votes\":[{\"voterId\":\"Xh4xoIGHhgOhxz1S5AJkaXCBT8K2\",\"voteOutcome\":\"approved\",\"voteId\":\"cc9ca380-1703-4561-a867-98a2ed9098ac\"},{\"voterId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"voteId\":\"d5df928d-b45e-4f18-80dd-55009223a8c1\",\"voteOutcome\":\"approved\"}],\"countdownPeriod\":57600,\"state\":\"passed\",\"votesAgainst\":0,\"createdAt\":{\"_seconds\":1612694370,\"_nanoseconds\":953000000},\"proposerId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"type\":\"join\",\"paymentState\":\"confirmed\",\"quietEndingPeriod\":3600,\"description\":{\"links\":[],\"description\":\"Me\"},\"join\":{\"funding\":27000,\"cardId\":\"cebed72d-b875-4682-91f3-f917f3adfcf2\",\"fundingType\":\"one-time\",\"payments\":[\"e9055440-3e98-4599-a243-f161c658ba7d\"]},\"id\":\"41454b71-aa2f-44f4-a6d4-353a97b8e487\",\"commonId\":\"60026234-b1ff-4596-baa2-0d7be186f561\"}" + }, + { + "id": "432f259e-41fd-4ff8-b02c-9e8e944b247b", + "createdAt": "2021-05-18T08:40:19.522Z", + "updatedAt": "2021-05-18T08:40:19.523Z", + "expiresAt": "2021-02-10T01:42:19.653Z", + "title": null, + "description": "Testing if featured", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "432f259e-41fd-4ff8-b02c-9e8e944b247b", + "fundingId": null, + "userId": "XMAGwJIOilXUABsdC7KWsDY2v4E3", + "commonId": "26f7df46-8956-4c68-b58f-7190368042a8", + "commonMemberId": null, + "importedFrom": "{\"quietEndingPeriod\":3600,\"description\":{\"links\":[],\"description\":\"Testing if featured\"},\"countdownPeriod\":57600,\"state\":\"failed\",\"type\":\"join\",\"votes\":[],\"proposerId\":\"XMAGwJIOilXUABsdC7KWsDY2v4E3\",\"votesAgainst\":0,\"votesFor\":0,\"join\":{\"funding\":500,\"fundingType\":\"one-time\",\"payments\":[],\"cardId\":\"53ac2bc5-037a-4b58-a60e-643f3ddfcf1f\"},\"commonId\":\"26f7df46-8956-4c68-b58f-7190368042a8\",\"id\":\"432f259e-41fd-4ff8-b02c-9e8e944b247b\",\"createdAt\":{\"_seconds\":1612863739,\"_nanoseconds\":653000000},\"updatedAt\":{\"_seconds\":1612921500,\"_nanoseconds\":322000000}}" + }, + { + "id": "44cbb9a8-6310-499f-9956-a4b120740144", + "createdAt": "2021-05-18T08:40:19.524Z", + "updatedAt": "2021-05-18T08:40:19.525Z", + "expiresAt": "2021-03-11T00:45:24.536Z", + "title": null, + "description": "W", + "links": [], + "files": [], + "images": [], + "ipAddress": "178.120.66.122", + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "44cbb9a8-6310-499f-9956-a4b120740144", + "fundingId": null, + "userId": "2HM9WnVvr9aDYbckjCo4cIDjncY2", + "commonId": "d30cb234-01ac-483c-b137-47961ed0cfec", + "commonMemberId": "b3f717be-04af-4e60-9761-2dc3aa3f2347", + "importedFrom": "{\"votesAgainst\":0,\"proposerId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\",\"countdownPeriod\":57600,\"commonId\":\"d30cb234-01ac-483c-b137-47961ed0cfec\",\"quietEndingPeriod\":3600,\"votesFor\":0,\"votes\":[],\"join\":{\"payments\":[],\"funding\":700,\"ip\":\"178.120.66.122\",\"fundingType\":\"monthly\",\"cardId\":\"dc2eca6d-494f-4dff-92e1-f07b0e461ba2\"},\"createdAt\":{\"_seconds\":1615365924,\"_nanoseconds\":536000000},\"id\":\"44cbb9a8-6310-499f-9956-a4b120740144\",\"type\":\"join\",\"state\":\"failed\",\"description\":{\"description\":\"W\",\"links\":[]},\"updatedAt\":{\"_seconds\":1615423801,\"_nanoseconds\":711000000}}" + }, + { + "id": "4506cb3d-13c5-4422-838c-5118bde5d456", + "createdAt": "2021-05-18T08:40:19.526Z", + "updatedAt": "2021-05-18T08:40:19.527Z", + "expiresAt": "2020-12-25T02:38:24.665Z", + "title": null, + "description": "Testing request to join improvements ", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "4506cb3d-13c5-4422-838c-5118bde5d456", + "fundingId": null, + "userId": "Sxv19oCvKAZq2vntJdYCTYSpWWN2", + "commonId": "0313e3e2-b34b-4192-9381-13fc4516a923", + "commonMemberId": null, + "importedFrom": "{\"createdAt\":{\"_seconds\":1608806304,\"_nanoseconds\":665000000},\"join\":{\"payments\":[],\"cardId\":\"81acf4a6-f262-42c8-80d5-5156bb98f185\",\"fundingType\":\"monthly\",\"funding\":500},\"votes\":[],\"updatedAt\":{\"_seconds\":1608864001,\"_nanoseconds\":303000000},\"votesFor\":0,\"votesAgainst\":0,\"type\":\"join\",\"id\":\"4506cb3d-13c5-4422-838c-5118bde5d456\",\"countdownPeriod\":57600,\"state\":\"failed\",\"quietEndingPeriod\":3600,\"proposerId\":\"Sxv19oCvKAZq2vntJdYCTYSpWWN2\",\"description\":{\"links\":[],\"description\":\"Testing request to join improvements \"},\"commonId\":\"0313e3e2-b34b-4192-9381-13fc4516a923\"}" + }, + { + "id": "4605a459-7e0e-4021-9b93-91ae42e9bd6a", + "createdAt": "2021-05-18T08:40:19.529Z", + "updatedAt": "2021-05-18T08:40:19.530Z", + "expiresAt": "2021-01-17T22:48:02.901Z", + "title": null, + "description": "Go", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 1, + "votesAgainst": 0, + "joinId": "4605a459-7e0e-4021-9b93-91ae42e9bd6a", + "fundingId": null, + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "commonId": "672dd9af-0736-4949-b79b-8086559f69f6", + "commonMemberId": "05d4007e-e019-4d80-97ab-fc5a670f61b9", + "importedFrom": "{\"join\":{\"cardId\":\"540c01df-40b0-4ae1-8d42-e7231176ce86\",\"fundingType\":\"monthly\",\"payments\":[],\"funding\":134000},\"quietEndingPeriod\":3600,\"paymentState\":\"confirmed\",\"votes\":[{\"voteOutcome\":\"approved\",\"voterId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"voteId\":\"769a6302-7b38-47b4-ae85-403dd5c14ce5\"}],\"id\":\"4605a459-7e0e-4021-9b93-91ae42e9bd6a\",\"description\":{\"links\":[],\"description\":\"Go\"},\"votesFor\":1,\"countdownPeriod\":57600,\"commonId\":\"672dd9af-0736-4949-b79b-8086559f69f6\",\"updatedAt\":{\"_seconds\":1610866122,\"_nanoseconds\":839000000},\"state\":\"passed\",\"votesAgainst\":0,\"type\":\"join\",\"proposerId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"createdAt\":{\"_seconds\":1610866082,\"_nanoseconds\":901000000}}" + }, + { + "id": "467212db-a811-4f79-94d3-3320f177c919", + "createdAt": "2021-05-18T08:40:19.531Z", + "updatedAt": "2021-05-18T08:40:19.532Z", + "expiresAt": "2021-01-06T00:15:53.652Z", + "title": null, + "description": "Checking profile image", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "467212db-a811-4f79-94d3-3320f177c919", + "fundingId": null, + "userId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1", + "commonId": "0313e3e2-b34b-4192-9381-13fc4516a923", + "commonMemberId": null, + "importedFrom": "{\"quietEndingPeriod\":3600,\"state\":\"failed\",\"votesFor\":0,\"updatedAt\":{\"_seconds\":1609892401,\"_nanoseconds\":91000000},\"description\":{\"links\":[],\"description\":\"Checking profile image\"},\"proposerId\":\"11j4NvvZ4kMRf4BFBUHdbRiXKMp1\",\"type\":\"join\",\"countdownPeriod\":57600,\"votes\":[],\"join\":{\"payments\":[],\"cardId\":\"a3b95531-e57f-4764-a8f4-61cb7c7eae9e\",\"fundingType\":\"monthly\",\"funding\":500},\"createdAt\":{\"_seconds\":1609834553,\"_nanoseconds\":652000000},\"commonId\":\"0313e3e2-b34b-4192-9381-13fc4516a923\",\"votesAgainst\":0,\"id\":\"467212db-a811-4f79-94d3-3320f177c919\"}" + }, + { + "id": "48061d4c-36f7-493e-ad27-a68e062da124", + "createdAt": "2021-05-18T08:40:19.537Z", + "updatedAt": "2021-05-18T08:40:19.538Z", + "expiresAt": "2021-01-15T01:43:14.674Z", + "title": null, + "description": "Fail this", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 1, + "votesAgainst": 0, + "joinId": "48061d4c-36f7-493e-ad27-a68e062da124", + "fundingId": null, + "userId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1", + "commonId": "e07c6cd7-3f45-4d4e-8a4f-3139e28b5c00", + "commonMemberId": null, + "importedFrom": "{\"commonId\":\"e07c6cd7-3f45-4d4e-8a4f-3139e28b5c00\",\"proposerId\":\"11j4NvvZ4kMRf4BFBUHdbRiXKMp1\",\"join\":{\"cardId\":\"db2b8f95-4b8d-42c9-be03-fe0eb29f604e\",\"fundingType\":\"one-time\",\"payments\":[],\"funding\":501},\"type\":\"join\",\"paymentState\":\"failed\",\"quietEndingPeriod\":3600,\"votesAgainst\":0,\"updatedAt\":{\"_seconds\":1610617636,\"_nanoseconds\":890000000},\"votes\":[{\"voteOutcome\":\"approved\",\"voteId\":\"ed09c1cb-772a-49e4-bac9-eb498e955670\",\"voterId\":\"b0Kxsd0x4OMLeOlDnheysBz5THo1\"}],\"description\":{\"description\":\"Fail this\",\"links\":[]},\"votesFor\":1,\"state\":\"passed\",\"createdAt\":{\"_seconds\":1610617394,\"_nanoseconds\":674000000},\"id\":\"48061d4c-36f7-493e-ad27-a68e062da124\",\"countdownPeriod\":57600}" + }, + { + "id": "48596593-f5ac-4428-bf8b-c59475c86ade", + "createdAt": "2021-05-18T08:40:19.540Z", + "updatedAt": "2021-05-18T08:40:19.541Z", + "expiresAt": "2020-12-27T22:57:39.238Z", + "title": null, + "description": "Hi", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "48596593-f5ac-4428-bf8b-c59475c86ade", + "fundingId": null, + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "47729f96-adfe-4dc4-95fd-a74431d38942", + "commonMemberId": null, + "importedFrom": "{\"votesFor\":0,\"countdownPeriod\":57600,\"updatedAt\":{\"_seconds\":1609110000,\"_nanoseconds\":439000000},\"state\":\"failed\",\"votesAgainst\":0,\"quietEndingPeriod\":3600,\"proposerId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"type\":\"join\",\"createdAt\":{\"_seconds\":1609052259,\"_nanoseconds\":238000000},\"commonId\":\"47729f96-adfe-4dc4-95fd-a74431d38942\",\"join\":{\"fundingType\":\"one-time\",\"funding\":500,\"cardId\":\"b8bf75eb-e057-4fc5-a6a6-ad2bf2ef4b16\",\"payments\":[]},\"description\":{\"links\":[],\"description\":\"Hi\"},\"votes\":[],\"id\":\"48596593-f5ac-4428-bf8b-c59475c86ade\"}" + }, + { + "id": "49a06b1b-e3e3-4217-86c2-6d2468322ef5", + "createdAt": "2021-05-18T08:40:19.542Z", + "updatedAt": "2021-05-18T08:40:19.543Z", + "expiresAt": "2021-03-31T07:40:49.207Z", + "title": null, + "description": "How", + "links": [], + "files": [], + "images": [], + "ipAddress": "147.161.8.194", + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "49a06b1b-e3e3-4217-86c2-6d2468322ef5", + "fundingId": null, + "userId": "P21SZrJ6z5YjyF8WFaHv5eRsoFo1", + "commonId": "05e4c4a2-6957-42ea-bc49-073a307313d8", + "commonMemberId": null, + "importedFrom": "{\"votesFor\":0,\"votesAgainst\":0,\"type\":\"join\",\"id\":\"49a06b1b-e3e3-4217-86c2-6d2468322ef5\",\"quietEndingPeriod\":3600,\"createdAt\":{\"_seconds\":1617118849,\"_nanoseconds\":207000000},\"join\":{\"ip\":\"147.161.8.194\",\"payments\":[],\"fundingType\":\"one-time\",\"funding\":500,\"cardId\":\"4455e524-378d-46ca-88e8-d82263e3b359\"},\"votes\":[],\"state\":\"failed\",\"description\":{\"links\":[],\"description\":\"How\"},\"countdownPeriod\":57600,\"commonId\":\"05e4c4a2-6957-42ea-bc49-073a307313d8\",\"updatedAt\":{\"_seconds\":1617176701,\"_nanoseconds\":891000000},\"moderation\":{\"flag\":\"visible\",\"reasons\":[\"Spam\"],\"moderator\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"reporter\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"updatedAt\":{\"_seconds\":1617171345,\"_nanoseconds\":116000000},\"moderatorNote\":\"\"},\"proposerId\":\"P21SZrJ6z5YjyF8WFaHv5eRsoFo1\"}" + }, + { + "id": "4bbfb6df-5559-4e27-b326-4187c60f7d62", + "createdAt": "2021-05-18T08:40:19.545Z", + "updatedAt": "2021-05-18T08:40:19.546Z", + "expiresAt": "2021-01-20T05:28:21.925Z", + "title": null, + "description": "H", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 1, + "votesAgainst": 0, + "joinId": "4bbfb6df-5559-4e27-b326-4187c60f7d62", + "fundingId": null, + "userId": "P21SZrJ6z5YjyF8WFaHv5eRsoFo1", + "commonId": "85d5ce2d-4f32-47cb-973f-dc99dd6ac202", + "commonMemberId": "55df328c-0676-480e-9e0f-76856b42061a", + "importedFrom": "{\"votesFor\":1,\"commonId\":\"85d5ce2d-4f32-47cb-973f-dc99dd6ac202\",\"type\":\"join\",\"proposerId\":\"P21SZrJ6z5YjyF8WFaHv5eRsoFo1\",\"votesAgainst\":0,\"updatedAt\":{\"_seconds\":1611063089,\"_nanoseconds\":988000000},\"paymentState\":\"confirmed\",\"state\":\"passed\",\"join\":{\"cardId\":\"a1180192-e4e8-436a-a9b0-e3c15951689e\",\"fundingType\":\"one-time\",\"funding\":2500,\"payments\":[]},\"countdownPeriod\":57600,\"votes\":[{\"voterId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"voteId\":\"3253f3fc-000a-4e81-9052-7eec7571e9bd\",\"voteOutcome\":\"approved\"}],\"description\":{\"links\":[],\"description\":\"H\"},\"quietEndingPeriod\":3600,\"id\":\"4bbfb6df-5559-4e27-b326-4187c60f7d62\",\"createdAt\":{\"_seconds\":1611062901,\"_nanoseconds\":925000000}}" + }, + { + "id": "4c77af92-b06c-4514-b317-912f75dc129d", + "createdAt": "2021-05-18T08:40:19.547Z", + "updatedAt": "2021-05-18T08:40:19.548Z", + "expiresAt": "2021-03-05T08:33:16.740Z", + "title": null, + "description": "Your android", + "links": [], + "files": [], + "images": [], + "ipAddress": "147.161.12.69", + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "4c77af92-b06c-4514-b317-912f75dc129d", + "fundingId": null, + "userId": "P21SZrJ6z5YjyF8WFaHv5eRsoFo1", + "commonId": "05e4c4a2-6957-42ea-bc49-073a307313d8", + "commonMemberId": null, + "importedFrom": "{\"description\":{\"links\":[],\"description\":\"Your android\"},\"votesFor\":0,\"quietEndingPeriod\":3600,\"createdAt\":{\"_seconds\":1614875596,\"_nanoseconds\":740000000},\"votes\":[],\"countdownPeriod\":57600,\"join\":{\"ip\":\"147.161.12.69\",\"cardId\":\"d455ed3b-b10c-4a4c-930e-baef9faf6cd1\",\"payments\":[],\"funding\":500,\"fundingType\":\"one-time\"},\"updatedAt\":{\"_seconds\":1614933300,\"_nanoseconds\":548000000},\"proposerId\":\"P21SZrJ6z5YjyF8WFaHv5eRsoFo1\",\"votesAgainst\":0,\"type\":\"join\",\"moderation\":{\"moderator\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"flag\":\"visible\",\"moderatorNote\":\"\",\"reasons\":[\"Something Else\"],\"updatedAt\":{\"_seconds\":1614886179,\"_nanoseconds\":677000000},\"reporter\":\"97d5y9WXk1fEZv767j1ejKuHevi1\"},\"id\":\"4c77af92-b06c-4514-b317-912f75dc129d\",\"state\":\"failed\",\"commonId\":\"05e4c4a2-6957-42ea-bc49-073a307313d8\"}" + }, + { + "id": "4d554310-712c-4592-9845-9dc63b021f99", + "createdAt": "2021-05-18T08:40:19.549Z", + "updatedAt": "2021-05-18T08:40:19.550Z", + "expiresAt": "2021-02-10T00:21:12.473Z", + "title": null, + "description": "Db", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 1, + "votesAgainst": 0, + "joinId": "4d554310-712c-4592-9845-9dc63b021f99", + "fundingId": null, + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "244884c6-6682-4a21-90af-bc8025f42eff", + "commonMemberId": null, + "importedFrom": "{\"countdownPeriod\":57600,\"quietEndingPeriod\":3600,\"join\":{\"fundingType\":\"monthly\",\"cardId\":\"55fbeba4-880f-4a3c-a63c-858eaba6ffc0\",\"funding\":75000,\"payments\":[]},\"votesFor\":1,\"description\":{\"description\":\"Db\",\"links\":[]},\"votes\":[{\"voteOutcome\":\"approved\",\"voterId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"voteId\":\"2c1710fc-123e-4822-a45f-5dcd00ce023d\"}],\"commonId\":\"244884c6-6682-4a21-90af-bc8025f42eff\",\"updatedAt\":{\"_seconds\":1612858903,\"_nanoseconds\":607000000},\"votesAgainst\":0,\"id\":\"4d554310-712c-4592-9845-9dc63b021f99\",\"type\":\"join\",\"paymentState\":\"confirmed\",\"state\":\"passed\",\"createdAt\":{\"_seconds\":1612858872,\"_nanoseconds\":473000000},\"proposerId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\"}" + }, + { + "id": "4d9cee31-45da-48da-be20-007d19aa96c0", + "createdAt": "2021-05-18T08:40:19.551Z", + "updatedAt": "2021-05-18T08:40:19.552Z", + "expiresAt": "2021-03-26T01:25:15.700Z", + "title": null, + "description": "1", + "links": [], + "files": [], + "images": [], + "ipAddress": "178.120.64.230", + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 2, + "joinId": "4d9cee31-45da-48da-be20-007d19aa96c0", + "fundingId": null, + "userId": "5Bi1KZGIYzW5UIljHgBlO98NXaI2", + "commonId": "6f88e880-1ed8-4946-8326-d285239d293b", + "commonMemberId": null, + "importedFrom": "{\"updatedAt\":{\"_seconds\":1616664369,\"_nanoseconds\":864000000},\"commonId\":\"6f88e880-1ed8-4946-8326-d285239d293b\",\"proposerId\":\"5Bi1KZGIYzW5UIljHgBlO98NXaI2\",\"quietEndingPeriod\":3600,\"votes\":[{\"voteOutcome\":\"rejected\",\"voteId\":\"1f054487-9ae6-41cd-93a1-38470a6ebb93\",\"voterId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\"},{\"voterId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\",\"voteId\":\"4e777a5f-fd06-42e3-844a-b9f4d3a9f029\",\"voteOutcome\":\"rejected\"}],\"createdAt\":{\"_seconds\":1616664315,\"_nanoseconds\":700000000},\"join\":{\"cardId\":\"c383e053-3564-47df-ab25-6a6007673b38\",\"ip\":\"178.120.64.230\",\"payments\":[],\"funding\":400,\"fundingType\":\"one-time\"},\"state\":\"failed\",\"description\":{\"links\":[],\"description\":\"1\"},\"countdownPeriod\":57600,\"votesFor\":0,\"id\":\"4d9cee31-45da-48da-be20-007d19aa96c0\",\"votesAgainst\":2,\"type\":\"join\"}" + }, + { + "id": "4ebe9718-2566-4a92-9020-533ee9cf9b4d", + "createdAt": "2021-05-18T08:40:19.554Z", + "updatedAt": "2021-05-18T08:40:19.555Z", + "expiresAt": "2021-01-10T10:39:35.789Z", + "title": null, + "description": "מנוף", + "links": [ + { + "url": "https://healthy.walla.co.il/item/3169487", + "title": "מניה" + }, + { + "url": "https://healthy.walla.co.il/item/3169487", + "title": "מחר" + } + ], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 1, + "joinId": "4ebe9718-2566-4a92-9020-533ee9cf9b4d", + "fundingId": null, + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "5c065a47-00f1-4279-acd1-4d3dac8638ef", + "commonMemberId": null, + "importedFrom": "{\"countdownPeriod\":7200,\"commonId\":\"5c065a47-00f1-4279-acd1-4d3dac8638ef\",\"quietEndingPeriod\":3600,\"join\":{\"cardId\":\"e39877c9-91be-47fc-9abd-7c25a1379790\",\"funding\":141500,\"fundingType\":\"one-time\",\"payments\":[]},\"proposerId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"createdAt\":{\"_seconds\":1610267975,\"_nanoseconds\":789000000},\"votesAgainst\":1,\"votes\":[{\"voteId\":\"8584978c-f8d3-429c-9d4b-2e7e8aa057af\",\"voterId\":\"Xh4xoIGHhgOhxz1S5AJkaXCBT8K2\",\"voteOutcome\":\"rejected\"}],\"updatedAt\":{\"_seconds\":1610269687,\"_nanoseconds\":325000000},\"type\":\"join\",\"votesFor\":0,\"id\":\"4ebe9718-2566-4a92-9020-533ee9cf9b4d\",\"state\":\"failed\",\"description\":{\"description\":\"מנוף\",\"links\":[{\"value\":\"https://healthy.walla.co.il/item/3169487\",\"title\":\"מניה\"},{\"title\":\"מחר\",\"value\":\"https://healthy.walla.co.il/item/3169487\"}]}}" + }, + { + "id": "51a81f19-1817-4c42-aa42-7f183130fadd", + "createdAt": "2021-05-18T08:40:19.556Z", + "updatedAt": "2021-05-18T08:40:19.558Z", + "expiresAt": "2021-03-08T23:27:34.921Z", + "title": null, + "description": "Dh", + "links": [], + "files": [], + "images": [], + "ipAddress": "2a02:ed0:5f7a:8b00:f0f5:1cc3:26c6:6336", + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 1, + "votesAgainst": 0, + "joinId": "51a81f19-1817-4c42-aa42-7f183130fadd", + "fundingId": null, + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "d6a4263c-d315-4112-87ae-0071cdaf2187", + "commonMemberId": "87665b3d-bdae-42ed-8a4c-1a76bd275f27", + "importedFrom": "{\"votesFor\":1,\"commonId\":\"d6a4263c-d315-4112-87ae-0071cdaf2187\",\"countdownPeriod\":57600,\"join\":{\"payments\":[\"e74aac05-b8f0-462f-a52e-30fa19c1f573\"],\"cardId\":\"4da6f08e-8c8b-4be6-b02e-386abfd20c1b\",\"fundingType\":\"one-time\",\"ip\":\"2a02:ed0:5f7a:8b00:f0f5:1cc3:26c6:6336\",\"funding\":500},\"state\":\"passed\",\"id\":\"51a81f19-1817-4c42-aa42-7f183130fadd\",\"votes\":[{\"voterId\":\"3cjGUe2krtc68oBdCVAYHxV3ouZ2\",\"voteOutcome\":\"approved\",\"voteId\":\"f6684093-d020-46ba-bdf3-51c283fde8aa\"}],\"quietEndingPeriod\":3600,\"proposerId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"createdAt\":{\"_seconds\":1615188454,\"_nanoseconds\":921000000},\"updatedAt\":{\"_seconds\":1615194537,\"_nanoseconds\":830000000},\"description\":{\"description\":\"Dh\",\"links\":[]},\"type\":\"join\",\"paymentState\":\"confirmed\",\"votesAgainst\":0}" + }, + { + "id": "51f46a01-3d8b-4c4a-a298-023f02b99ddb", + "createdAt": "2021-05-18T08:40:19.559Z", + "updatedAt": "2021-05-18T08:40:19.560Z", + "expiresAt": "2021-02-09T08:07:00.882Z", + "title": null, + "description": "Yaniv", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 1, + "votesAgainst": 0, + "joinId": "51f46a01-3d8b-4c4a-a298-023f02b99ddb", + "fundingId": null, + "userId": "P21SZrJ6z5YjyF8WFaHv5eRsoFo1", + "commonId": "26f7df46-8956-4c68-b58f-7190368042a8", + "commonMemberId": "914fad60-500b-4695-8fcd-42c6505628de", + "importedFrom": "{\"quietEndingPeriod\":3600,\"type\":\"join\",\"votes\":[{\"voteOutcome\":\"approved\",\"voterId\":\"11j4NvvZ4kMRf4BFBUHdbRiXKMp1\",\"voteId\":\"183b3216-4aae-4df1-baaf-81467d180924\"}],\"updatedAt\":{\"_seconds\":1612800689,\"_nanoseconds\":833000000},\"state\":\"passed\",\"votesAgainst\":0,\"createdAt\":{\"_seconds\":1612800420,\"_nanoseconds\":882000000},\"votesFor\":1,\"countdownPeriod\":57600,\"commonId\":\"26f7df46-8956-4c68-b58f-7190368042a8\",\"paymentState\":\"confirmed\",\"id\":\"51f46a01-3d8b-4c4a-a298-023f02b99ddb\",\"join\":{\"funding\":500,\"cardId\":\"ba78840a-2dd1-4883-bee4-3530e1e0fa2c\",\"fundingType\":\"one-time\",\"payments\":[\"20d858c1-21ad-4b71-94ce-b721fce35e75\"]},\"proposerId\":\"P21SZrJ6z5YjyF8WFaHv5eRsoFo1\",\"description\":{\"description\":\"Yaniv\",\"links\":[]}}" + }, + { + "id": "5796387e-8ea0-4efa-8faa-45a6f3d28874", + "createdAt": "2021-05-18T08:40:19.564Z", + "updatedAt": "2021-05-18T08:40:19.565Z", + "expiresAt": "2021-03-02T01:47:53.437Z", + "title": null, + "description": "Find the ip", + "links": [], + "files": [], + "images": [], + "ipAddress": "147.161.9.114", + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "5796387e-8ea0-4efa-8faa-45a6f3d28874", + "fundingId": null, + "userId": "P21SZrJ6z5YjyF8WFaHv5eRsoFo1", + "commonId": "05e4c4a2-6957-42ea-bc49-073a307313d8", + "commonMemberId": null, + "importedFrom": "{\"updatedAt\":{\"_seconds\":1614649800,\"_nanoseconds\":827000000},\"state\":\"failed\",\"commonId\":\"05e4c4a2-6957-42ea-bc49-073a307313d8\",\"type\":\"join\",\"description\":{\"links\":[],\"description\":\"Find the ip\"},\"join\":{\"ip\":\"147.161.9.114\",\"cardId\":\"f067ed3b-6ad3-4f5a-8ef5-9c37cbc839fa\",\"fundingType\":\"one-time\",\"payments\":[],\"funding\":1250},\"proposerId\":\"P21SZrJ6z5YjyF8WFaHv5eRsoFo1\",\"quietEndingPeriod\":3600,\"votesAgainst\":0,\"id\":\"5796387e-8ea0-4efa-8faa-45a6f3d28874\",\"votesFor\":0,\"createdAt\":{\"_seconds\":1614592073,\"_nanoseconds\":437000000},\"votes\":[],\"countdownPeriod\":57600}" + }, + { + "id": "5d82246f-7140-4ec8-b55b-9e8b76fa9685", + "createdAt": "2021-05-18T08:40:19.566Z", + "updatedAt": "2021-05-18T08:40:19.567Z", + "expiresAt": "2020-12-19T22:00:06.809Z", + "title": null, + "description": "Vote ", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 1, + "votesAgainst": 0, + "joinId": "5d82246f-7140-4ec8-b55b-9e8b76fa9685", + "fundingId": null, + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "845aadc4-4f62-49f1-9743-c08482ce861e", + "commonMemberId": null, + "importedFrom": "{\"votesFor\":1,\"votes\":[{\"voteId\":\"4424c131-ec57-4bfc-a0af-de3b87da29bc\",\"voteOutcome\":\"approved\",\"voterId\":\"Xh4xoIGHhgOhxz1S5AJkaXCBT8K2\"}],\"type\":\"join\",\"createdAt\":{\"_seconds\":1608408006,\"_nanoseconds\":809000000},\"votesAgainst\":0,\"state\":\"passed\",\"proposerId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"join\":{\"fundingType\":\"monthly\",\"cardId\":\"e0832154-659e-4582-b6da-918a904610c7\",\"payments\":[],\"funding\":12500},\"quietEndingPeriod\":3600,\"description\":{\"links\":[],\"description\":\"Vote \"},\"countdownPeriod\":7200,\"updatedAt\":{\"_seconds\":1608408251,\"_nanoseconds\":834000000},\"paymentState\":\"confirmed\",\"id\":\"5d82246f-7140-4ec8-b55b-9e8b76fa9685\",\"commonId\":\"845aadc4-4f62-49f1-9743-c08482ce861e\"}" + }, + { + "id": "02975d07-071f-4417-9ae3-5214c5362d16", + "createdAt": "2021-05-18T08:40:19.569Z", + "updatedAt": "2021-05-18T08:40:19.570Z", + "expiresAt": "2021-01-17T11:08:13.925Z", + "title": null, + "description": "This is intro", + "links": [ + { + "url": "https://www.sail-world.com/news/234533/Baron-Benjamin-de-Rothschild-passes-away", + "title": "Titlr" + }, + { + "url": "https://www.sail-world.com/news/234533/Baron-Benjamin-de-Rothschild-passes-away", + "title": "Hh" + } + ], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 1, + "joinId": "02975d07-071f-4417-9ae3-5214c5362d16", + "fundingId": null, + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "commonId": "672dd9af-0736-4949-b79b-8086559f69f6", + "commonMemberId": "05d4007e-e019-4d80-97ab-fc5a670f61b9", + "importedFrom": "{\"join\":{\"payments\":[],\"funding\":134000,\"cardId\":\"7929a735-ee33-4802-b26d-2efd3067f422\",\"fundingType\":\"monthly\"},\"state\":\"failed\",\"countdownPeriod\":57600,\"createdAt\":{\"_seconds\":1610824093,\"_nanoseconds\":925000000},\"description\":{\"links\":[{\"value\":\"https://www.sail-world.com/news/234533/Baron-Benjamin-de-Rothschild-passes-away\",\"title\":\"Titlr\"},{\"value\":\"https://www.sail-world.com/news/234533/Baron-Benjamin-de-Rothschild-passes-away\",\"title\":\"Hh\"}],\"description\":\"This is intro\"},\"quietEndingPeriod\":3600,\"votes\":[{\"voteOutcome\":\"rejected\",\"voterId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"voteId\":\"264770c6-3698-4c40-9a9f-ea2897c16fee\"}],\"type\":\"join\",\"updatedAt\":{\"_seconds\":1610865824,\"_nanoseconds\":375000000},\"votesFor\":0,\"id\":\"02975d07-071f-4417-9ae3-5214c5362d16\",\"commonId\":\"672dd9af-0736-4949-b79b-8086559f69f6\",\"votesAgainst\":1,\"proposerId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\"}" + }, + { + "id": "07b02d75-a971-4403-b6c1-80fcf48f22a7", + "createdAt": "2021-05-18T08:40:19.572Z", + "updatedAt": "2021-05-18T08:40:19.573Z", + "expiresAt": "2021-01-30T01:46:19.138Z", + "title": null, + "description": "א", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "07b02d75-a971-4403-b6c1-80fcf48f22a7", + "fundingId": null, + "userId": "P21SZrJ6z5YjyF8WFaHv5eRsoFo1", + "commonId": "02314122-6b05-4563-a8ce-4a10e97b72da", + "commonMemberId": "2d65a429-aea8-4005-930f-dc81d886136f", + "importedFrom": "{\"quietEndingPeriod\":3600,\"state\":\"failed\",\"id\":\"07b02d75-a971-4403-b6c1-80fcf48f22a7\",\"votes\":[],\"updatedAt\":{\"_seconds\":1611971401,\"_nanoseconds\":50000000},\"votesAgainst\":0,\"votesFor\":0,\"type\":\"join\",\"createdAt\":{\"_seconds\":1611913579,\"_nanoseconds\":138000000},\"commonId\":\"02314122-6b05-4563-a8ce-4a10e97b72da\",\"join\":{\"fundingType\":\"one-time\",\"funding\":2400,\"cardId\":\"27b36c07-bb18-40fa-af74-6aabed9a22d1\",\"payments\":[]},\"countdownPeriod\":57600,\"proposerId\":\"P21SZrJ6z5YjyF8WFaHv5eRsoFo1\",\"description\":{\"links\":[],\"description\":\"א\"}}" + }, + { + "id": "07f6e4d0-d630-43cb-b5a6-b3b6b11e3475", + "createdAt": "2021-05-18T08:40:19.574Z", + "updatedAt": "2021-05-18T08:40:19.575Z", + "expiresAt": "2021-02-04T01:30:43.664Z", + "title": null, + "description": "Rh", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 2, + "joinId": "07f6e4d0-d630-43cb-b5a6-b3b6b11e3475", + "fundingId": null, + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "commonId": "845aadc4-4f62-49f1-9743-c08482ce861e", + "commonMemberId": "eeba44b9-c7bf-47ca-98db-f1e1443dc62e", + "importedFrom": "{\"state\":\"failed\",\"createdAt\":{\"_seconds\":1612344643,\"_nanoseconds\":664000000},\"votesAgainst\":2,\"votes\":[{\"voteId\":\"78b1d73c-024a-44b4-a3d4-63a1502d98c4\",\"voteOutcome\":\"rejected\",\"voterId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\"},{\"voteOutcome\":\"rejected\",\"voterId\":\"Xh4xoIGHhgOhxz1S5AJkaXCBT8K2\",\"voteId\":\"223f3c38-8965-4945-9f6f-7c23b67ef87c\"}],\"id\":\"07f6e4d0-d630-43cb-b5a6-b3b6b11e3475\",\"quietEndingPeriod\":3600,\"proposerId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"votesFor\":0,\"updatedAt\":{\"_seconds\":1612344744,\"_nanoseconds\":67000000},\"join\":{\"cardId\":\"7da5a61c-64e6-46db-9963-b455ede5389d\",\"funding\":2500,\"fundingType\":\"monthly\",\"payments\":[]},\"commonId\":\"845aadc4-4f62-49f1-9743-c08482ce861e\",\"type\":\"join\",\"countdownPeriod\":57600,\"description\":{\"links\":[],\"description\":\"Rh\"}}" + }, + { + "id": "0c8e9440-79dc-4757-bf20-724007445529", + "createdAt": "2021-05-18T08:40:19.577Z", + "updatedAt": "2021-05-18T08:40:19.578Z", + "expiresAt": "2021-02-05T05:46:10.203Z", + "title": null, + "description": "Vo", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 1, + "votesAgainst": 0, + "joinId": "0c8e9440-79dc-4757-bf20-724007445529", + "fundingId": null, + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "commonId": "04c837a8-1f63-4e37-9d22-5d8236a45880", + "commonMemberId": "eace0ee4-f531-48b8-bb3a-5daeec85d6d5", + "importedFrom": "{\"countdownPeriod\":57600,\"proposerId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"updatedAt\":{\"_seconds\":1612446440,\"_nanoseconds\":908000000},\"votesAgainst\":0,\"quietEndingPeriod\":3600,\"type\":\"join\",\"join\":{\"fundingType\":\"one-time\",\"payments\":[\"26b4ba78-989a-4b5f-954d-ca9488e78035\"],\"funding\":11500,\"cardId\":\"2bfd94b1-3c30-454c-8d47-647d1d3f461c\"},\"description\":{\"description\":\"Vo\",\"links\":[]},\"createdAt\":{\"_seconds\":1612446370,\"_nanoseconds\":203000000},\"id\":\"0c8e9440-79dc-4757-bf20-724007445529\",\"paymentState\":\"confirmed\",\"votes\":[{\"voteId\":\"679b9da6-f5f3-456d-917a-49b55fc8665b\",\"voterId\":\"Xh4xoIGHhgOhxz1S5AJkaXCBT8K2\",\"voteOutcome\":\"approved\"}],\"commonId\":\"04c837a8-1f63-4e37-9d22-5d8236a45880\",\"votesFor\":1,\"state\":\"passed\"}" + }, + { + "id": "0ff7738d-8e0f-4472-a8b5-17a58729334c", + "createdAt": "2021-05-18T08:40:19.579Z", + "updatedAt": "2021-05-18T08:40:19.580Z", + "expiresAt": "2020-12-21T10:08:47.322Z", + "title": null, + "description": "Bo", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 2, + "votesAgainst": 0, + "joinId": "0ff7738d-8e0f-4472-a8b5-17a58729334c", + "fundingId": null, + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "37c974a2-fb15-46e3-a7ba-0be50d026971", + "commonMemberId": "e35b4fc4-926b-45f3-8990-9c00b5083c18", + "importedFrom": "{\"type\":\"join\",\"commonId\":\"37c974a2-fb15-46e3-a7ba-0be50d026971\",\"id\":\"0ff7738d-8e0f-4472-a8b5-17a58729334c\",\"join\":{\"payments\":[],\"funding\":30500,\"fundingType\":\"one-time\",\"cardId\":\"e7ded3ee-230d-480f-a496-20e016babd00\"},\"description\":{\"links\":[],\"description\":\"Bo\"},\"votesAgainst\":0,\"votes\":[{\"voterId\":\"Xh4xoIGHhgOhxz1S5AJkaXCBT8K2\",\"voteId\":\"1bc01b84-a14b-4a2b-832c-fd32c25868d0\",\"voteOutcome\":\"approved\"},{\"voterId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"voteId\":\"06313e98-9a76-41bf-973c-fbc02711aa1b\",\"voteOutcome\":\"approved\"}],\"state\":\"passed\",\"updatedAt\":{\"_seconds\":1608538275,\"_nanoseconds\":404000000},\"quietEndingPeriod\":3600,\"createdAt\":{\"_seconds\":1608538127,\"_nanoseconds\":322000000},\"proposerId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"paymentState\":\"confirmed\",\"countdownPeriod\":7200,\"votesFor\":2}" + }, + { + "id": "1229fb47-da58-43fe-8227-4766eb25c947", + "createdAt": "2021-05-18T08:40:19.582Z", + "updatedAt": "2021-05-18T08:40:19.583Z", + "expiresAt": "2021-03-10T03:03:59.643Z", + "title": null, + "description": "Lol", + "links": [ + { + "url": "https://test.com", + "title": "Tree" + } + ], + "files": [], + "images": [], + "ipAddress": "178.120.66.122", + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 2, + "joinId": "1229fb47-da58-43fe-8227-4766eb25c947", + "fundingId": null, + "userId": "2HM9WnVvr9aDYbckjCo4cIDjncY2", + "commonId": "d30cb234-01ac-483c-b137-47961ed0cfec", + "commonMemberId": "b3f717be-04af-4e60-9761-2dc3aa3f2347", + "importedFrom": "{\"id\":\"1229fb47-da58-43fe-8227-4766eb25c947\",\"updatedAt\":{\"_seconds\":1615287939,\"_nanoseconds\":21000000},\"state\":\"failed\",\"votes\":[{\"voterId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"voteId\":\"9a5dee09-a1c1-428a-ae62-cc61316074d9\",\"voteOutcome\":\"rejected\"},{\"voterId\":\"5Bi1KZGIYzW5UIljHgBlO98NXaI2\",\"voteOutcome\":\"rejected\",\"voteId\":\"d2c06646-f9ff-4903-b27c-c85862dbb424\"}],\"quietEndingPeriod\":3600,\"countdownPeriod\":57600,\"proposerId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\",\"commonId\":\"d30cb234-01ac-483c-b137-47961ed0cfec\",\"description\":{\"links\":[{\"value\":\"https://test.com\",\"title\":\"Tree\"}],\"description\":\"Lol\"},\"votesAgainst\":2,\"votesFor\":0,\"join\":{\"cardId\":\"78342511-79f3-44fe-94ee-e1816efe4f02\",\"fundingType\":\"monthly\",\"funding\":700,\"payments\":[],\"ip\":\"178.120.66.122\"},\"createdAt\":{\"_seconds\":1615287839,\"_nanoseconds\":643000000},\"type\":\"join\"}" + }, + { + "id": "1315a4ba-634c-4e68-a237-71cb5b24f9d7", + "createdAt": "2021-05-18T08:40:19.584Z", + "updatedAt": "2021-05-18T08:40:19.585Z", + "expiresAt": "2021-01-04T07:14:54.654Z", + "title": null, + "description": "Hum", + "links": [ + { + "url": "https://www.google.com/amp/s/genius.com/amp/The-beatles-yesterday-lyrics", + "title": "Yum " + } + ], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "1315a4ba-634c-4e68-a237-71cb5b24f9d7", + "fundingId": null, + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "0313e3e2-b34b-4192-9381-13fc4516a923", + "commonMemberId": null, + "importedFrom": "{\"commonId\":\"0313e3e2-b34b-4192-9381-13fc4516a923\",\"quietEndingPeriod\":3600,\"votesAgainst\":0,\"join\":{\"cardId\":\"be3cf56b-fe49-4bf6-9a26-1a6cbb650d58\",\"fundingType\":\"monthly\",\"payments\":[],\"funding\":2500},\"updatedAt\":{\"_seconds\":1609744500,\"_nanoseconds\":526000000},\"type\":\"join\",\"votes\":[],\"state\":\"failed\",\"description\":{\"description\":\"Hum\",\"links\":[{\"value\":\"https://www.google.com/amp/s/genius.com/amp/The-beatles-yesterday-lyrics\",\"title\":\"Yum \"}]},\"countdownPeriod\":57600,\"createdAt\":{\"_seconds\":1609686894,\"_nanoseconds\":654000000},\"proposerId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"id\":\"1315a4ba-634c-4e68-a237-71cb5b24f9d7\",\"votesFor\":0}" + }, + { + "id": "140912ce-06e1-44c0-809f-010888861361", + "createdAt": "2021-05-18T08:40:19.587Z", + "updatedAt": "2021-05-18T08:40:19.588Z", + "expiresAt": "2021-03-30T10:40:14.954Z", + "title": null, + "description": "12", + "links": [], + "files": [], + "images": [], + "ipAddress": "2a01:6502:6457:3cd8:a423:6f4c:d4bf:5a11", + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "140912ce-06e1-44c0-809f-010888861361", + "fundingId": null, + "userId": "y2wLlb4FV6PehGGAmj9akMnwkzl2", + "commonId": "10fd7df7-eae9-4995-9c85-90e691c439e1", + "commonMemberId": null, + "importedFrom": "{\"countdownPeriod\":57600,\"quietEndingPeriod\":3600,\"updatedAt\":{\"_seconds\":1617101102,\"_nanoseconds\":112000000},\"createdAt\":{\"_seconds\":1617043214,\"_nanoseconds\":954000000},\"type\":\"join\",\"votes\":[],\"state\":\"failed\",\"join\":{\"ip\":\"2a01:6502:6457:3cd8:a423:6f4c:d4bf:5a11\",\"cardId\":\"167895ab-33c5-42e4-a1d4-d159a6d3f48e\",\"payments\":[],\"funding\":500},\"votesFor\":0,\"proposerId\":\"y2wLlb4FV6PehGGAmj9akMnwkzl2\",\"id\":\"140912ce-06e1-44c0-809f-010888861361\",\"votesAgainst\":0,\"commonId\":\"10fd7df7-eae9-4995-9c85-90e691c439e1\",\"moderation\":{\"moderator\":\"\",\"moderatorNote\":\"\",\"reasons\":[\"Spam\"],\"reporter\":\"Sxv19oCvKAZq2vntJdYCTYSpWWN2\",\"flag\":\"reported\",\"updatedAt\":{\"_seconds\":1617043832,\"_nanoseconds\":805000000}},\"description\":{\"description\":\"12\",\"links\":[]}}" + }, + { + "id": "14cc3bf0-a427-4e48-9b56-c85da6ed2bee", + "createdAt": "2021-05-18T08:40:19.589Z", + "updatedAt": "2021-05-18T08:40:19.590Z", + "expiresAt": "2021-02-09T01:27:53.622Z", + "title": null, + "description": "Fh", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 1, + "votesAgainst": 0, + "joinId": "14cc3bf0-a427-4e48-9b56-c85da6ed2bee", + "fundingId": null, + "userId": "P21SZrJ6z5YjyF8WFaHv5eRsoFo1", + "commonId": "5a9e159d-f462-4adc-87d6-72de03d86e3e", + "commonMemberId": "54db0566-4b97-4453-9bd3-9f7ed5e7d9e0", + "importedFrom": "{\"updatedAt\":{\"_seconds\":1612776857,\"_nanoseconds\":273000000},\"proposerId\":\"P21SZrJ6z5YjyF8WFaHv5eRsoFo1\",\"votes\":[{\"voteOutcome\":\"approved\",\"voterId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"voteId\":\"0adec0f9-e66b-4d44-9525-463c27f6c4f6\"}],\"quietEndingPeriod\":3600,\"type\":\"join\",\"id\":\"14cc3bf0-a427-4e48-9b56-c85da6ed2bee\",\"createdAt\":{\"_seconds\":1612776473,\"_nanoseconds\":622000000},\"commonId\":\"5a9e159d-f462-4adc-87d6-72de03d86e3e\",\"paymentState\":\"confirmed\",\"state\":\"passed\",\"description\":{\"links\":[],\"description\":\"Fh\"},\"votesFor\":1,\"countdownPeriod\":57600,\"votesAgainst\":0,\"join\":{\"fundingType\":\"one-time\",\"cardId\":\"2185ca88-2775-4a6a-a75a-397e6ed9f309\",\"funding\":3000,\"payments\":[\"510fe955-f8ce-49da-afed-3bf49b7a7f29\"]}}" + }, + { + "id": "1511ba8c-9574-4550-96ea-08d798dbcd0f", + "createdAt": "2021-05-18T08:40:19.591Z", + "updatedAt": "2021-05-18T08:40:19.592Z", + "expiresAt": "2021-04-21T10:22:16.713Z", + "title": null, + "description": "Good morning ", + "links": [ + { + "url": "https://www.yahoo.com", + "title": "Yahoo" + } + ], + "files": [], + "images": [], + "ipAddress": "178.120.3.148", + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 1, + "votesAgainst": 0, + "joinId": "1511ba8c-9574-4550-96ea-08d798dbcd0f", + "fundingId": null, + "userId": "2HM9WnVvr9aDYbckjCo4cIDjncY2", + "commonId": "c634475b-76a3-4620-b79d-853528e0ec2e", + "commonMemberId": "bc1c223f-9d7b-4fca-86ca-ed10b6da978a", + "importedFrom": "{\"votesFor\":1,\"state\":\"passed\",\"commonId\":\"c634475b-76a3-4620-b79d-853528e0ec2e\",\"type\":\"join\",\"proposerId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\",\"votesAgainst\":0,\"countdownPeriod\":57600,\"join\":{\"fundingType\":\"one-time\",\"funding\":500,\"payments\":[\"c1cffff5-de36-4dbf-8151-6e34f6c38f9c\"],\"ip\":\"178.120.3.148\",\"cardId\":\"4e00f0e5-58f8-4c19-8b9a-b2826aaeafea\"},\"createdAt\":{\"_seconds\":1618942936,\"_nanoseconds\":712999000},\"updatedAt\":{\"_seconds\":1618999401,\"_nanoseconds\":492000000},\"paymentState\":\"confirmed\",\"quietEndingPeriod\":3600,\"id\":\"1511ba8c-9574-4550-96ea-08d798dbcd0f\",\"description\":{\"description\":\"Good morning \",\"links\":[{\"value\":\"https://www.yahoo.com\",\"title\":\"Yahoo\"}]},\"votes\":[{\"voteId\":\"a6dee018-476a-4b0a-8c3d-ccf54f669ab2\",\"voterId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"voteOutcome\":\"approved\"}]}" + }, + { + "id": "1641caf8-f1f6-4637-967a-5992f43d8550", + "createdAt": "2021-05-18T08:40:19.594Z", + "updatedAt": "2021-05-18T08:40:19.595Z", + "expiresAt": "2021-02-08T03:04:53.799Z", + "title": null, + "description": "Ho", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 2, + "votesAgainst": 0, + "joinId": "1641caf8-f1f6-4637-967a-5992f43d8550", + "fundingId": null, + "userId": "P21SZrJ6z5YjyF8WFaHv5eRsoFo1", + "commonId": "60026234-b1ff-4596-baa2-0d7be186f561", + "commonMemberId": "f373880a-6514-4957-8b23-729180913fff", + "importedFrom": "{\"type\":\"join\",\"createdAt\":{\"_seconds\":1612695893,\"_nanoseconds\":799000000},\"commonId\":\"60026234-b1ff-4596-baa2-0d7be186f561\",\"join\":{\"fundingType\":\"one-time\",\"funding\":26000,\"cardId\":\"a18672f4-1902-4259-8652-4ba994aea1c0\",\"payments\":[\"6fddd70b-350e-4a48-8dad-5f12401191e7\"]},\"state\":\"passed\",\"id\":\"1641caf8-f1f6-4637-967a-5992f43d8550\",\"updatedAt\":{\"_seconds\":1612696157,\"_nanoseconds\":119000000},\"paymentState\":\"confirmed\",\"votesFor\":2,\"votesAgainst\":0,\"proposerId\":\"P21SZrJ6z5YjyF8WFaHv5eRsoFo1\",\"votes\":[{\"voterId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"voteOutcome\":\"approved\",\"voteId\":\"27ecda57-f42c-4aa8-ab13-216e8ed6235c\"},{\"voteId\":\"3b7812c2-d32e-4574-a664-b7438f464786\",\"voteOutcome\":\"approved\",\"voterId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\"}],\"quietEndingPeriod\":3600,\"countdownPeriod\":57600,\"description\":{\"links\":[],\"description\":\"Ho\"}}" + }, + { + "id": "16c61e05-29f1-4a2c-b790-42c687839f61", + "createdAt": "2021-05-18T08:40:19.597Z", + "updatedAt": "2021-05-18T08:40:19.598Z", + "expiresAt": "2021-04-21T06:40:22.429Z", + "title": null, + "description": "Usu", + "links": [], + "files": [], + "images": [], + "ipAddress": "46.56.246.124", + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "16c61e05-29f1-4a2c-b790-42c687839f61", + "fundingId": null, + "userId": "Wz0ZgOvKnafrjLDeAeWqx182uBq2", + "commonId": "5dedabe9-c005-4f0b-a02d-48721465dbaf", + "commonMemberId": null, + "importedFrom": "{\"description\":{\"description\":\"Usu\",\"links\":[]},\"votesAgainst\":0,\"createdAt\":{\"_seconds\":1618929622,\"_nanoseconds\":428999000},\"countdownPeriod\":57600,\"type\":\"join\",\"votes\":[],\"id\":\"16c61e05-29f1-4a2c-b790-42c687839f61\",\"updatedAt\":{\"_seconds\":1618987500,\"_nanoseconds\":256000000},\"commonId\":\"5dedabe9-c005-4f0b-a02d-48721465dbaf\",\"proposerId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"votesFor\":0,\"join\":{\"payments\":[],\"cardId\":\"89c548aa-b302-4126-810c-8f949dc1fbfe\",\"ip\":\"46.56.246.124\",\"funding\":38500},\"state\":\"failed\",\"quietEndingPeriod\":3600}" + }, + { + "id": "179068b1-2e45-4be3-823c-f4041713690e", + "createdAt": "2021-05-18T08:40:19.599Z", + "updatedAt": "2021-05-18T08:40:19.600Z", + "expiresAt": "2021-03-15T02:32:50.666Z", + "title": null, + "description": "Ho ho", + "links": [], + "files": [], + "images": [], + "ipAddress": "87.71.10.6", + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 1, + "votesAgainst": 0, + "joinId": "179068b1-2e45-4be3-823c-f4041713690e", + "fundingId": null, + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "commonId": "f3432e09-f044-426e-92b6-d39388c17002", + "commonMemberId": null, + "importedFrom": "{\"join\":{\"fundingType\":\"monthly\",\"payments\":[],\"funding\":6000,\"ip\":\"87.71.10.6\",\"cardId\":\"3bc9e7a6-4524-44dc-b4a6-89434e840a40\"},\"votes\":[{\"voteId\":\"55e2a320-dce0-4686-969e-d1366d6bd770\",\"voteOutcome\":\"approved\",\"voterId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\"}],\"state\":\"passed\",\"quietEndingPeriod\":3600,\"paymentState\":\"confirmed\",\"proposerId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"votesFor\":1,\"type\":\"join\",\"commonId\":\"f3432e09-f044-426e-92b6-d39388c17002\",\"votesAgainst\":0,\"id\":\"179068b1-2e45-4be3-823c-f4041713690e\",\"description\":{\"links\":[],\"description\":\"Ho ho\"},\"createdAt\":{\"_seconds\":1615717970,\"_nanoseconds\":666000000},\"updatedAt\":{\"_seconds\":1615718212,\"_nanoseconds\":868000000},\"countdownPeriod\":57600}" + }, + { + "id": "1ce5c858-15bd-4828-bbae-4c22232d02ce", + "createdAt": "2021-05-18T08:40:19.602Z", + "updatedAt": "2021-05-18T08:40:19.603Z", + "expiresAt": "2021-03-10T03:06:33.392Z", + "title": null, + "description": "Join", + "links": [ + { + "url": "https://www.volvocars.com/il?site=google&lp=volvo.brand&utm_source=google&utm_campaign=volvo_brand&AgId=%255Badgroup%255D&utm_term=volvo&AdPos=&utm_content=gs_434894081167&device=m&GeoLoc=1008002&utm_medium=cpc&ToolName=gs&gclid=EAIaIQobChMIz7C_m6D_6wIVZbR3Ch2POwFPEAAYASAAEgKyxvD_BwE&gclsrc=aw.ds", + "title": "Volvo" + } + ], + "files": [], + "images": [], + "ipAddress": "178.120.66.122", + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "1ce5c858-15bd-4828-bbae-4c22232d02ce", + "fundingId": null, + "userId": "2HM9WnVvr9aDYbckjCo4cIDjncY2", + "commonId": "d30cb234-01ac-483c-b137-47961ed0cfec", + "commonMemberId": "b3f717be-04af-4e60-9761-2dc3aa3f2347", + "importedFrom": "{\"updatedAt\":{\"_seconds\":1615345800,\"_nanoseconds\":554000000},\"quietEndingPeriod\":3600,\"createdAt\":{\"_seconds\":1615287993,\"_nanoseconds\":392000000},\"id\":\"1ce5c858-15bd-4828-bbae-4c22232d02ce\",\"type\":\"join\",\"description\":{\"description\":\"Join\",\"links\":[{\"title\":\"Volvo\",\"value\":\"https://www.volvocars.com/il?site=google&lp=volvo.brand&utm_source=google&utm_campaign=volvo_brand&AgId=%255Badgroup%255D&utm_term=volvo&AdPos=&utm_content=gs_434894081167&device=m&GeoLoc=1008002&utm_medium=cpc&ToolName=gs&gclid=EAIaIQobChMIz7C_m6D_6wIVZbR3Ch2POwFPEAAYASAAEgKyxvD_BwE&gclsrc=aw.ds\"}]},\"votesAgainst\":0,\"proposerId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\",\"state\":\"failed\",\"countdownPeriod\":57600,\"votes\":[],\"votesFor\":0,\"join\":{\"payments\":[],\"ip\":\"178.120.66.122\",\"cardId\":\"2c22d073-273d-44ad-81fd-e76cf538f3cd\",\"fundingType\":\"monthly\",\"funding\":700},\"commonId\":\"d30cb234-01ac-483c-b137-47961ed0cfec\"}" + }, + { + "id": "1f5bc259-cb74-423a-bac5-40cdab6e8b7f", + "createdAt": "2021-05-18T08:40:19.604Z", + "updatedAt": "2021-05-18T08:40:19.605Z", + "expiresAt": "2021-03-12T07:44:27.803Z", + "title": null, + "description": "Vika iOS", + "links": [], + "files": [], + "images": [], + "ipAddress": "134.17.176.64", + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 2, + "votesAgainst": 0, + "joinId": "1f5bc259-cb74-423a-bac5-40cdab6e8b7f", + "fundingId": null, + "userId": "WKODFO6A3VMqWLYE2rrmrSGRrKF2", + "commonId": "c45d25f6-d40e-4336-93ac-2274a3f51b1e", + "commonMemberId": "b48d3668-fb39-49f9-a4b2-cd537fc321d7", + "importedFrom": "{\"state\":\"passed\",\"createdAt\":{\"_seconds\":1615477467,\"_nanoseconds\":803000000},\"votesAgainst\":0,\"countdownPeriod\":57600,\"id\":\"1f5bc259-cb74-423a-bac5-40cdab6e8b7f\",\"votesFor\":2,\"paymentState\":\"confirmed\",\"proposerId\":\"WKODFO6A3VMqWLYE2rrmrSGRrKF2\",\"description\":{\"links\":[],\"description\":\"Vika iOS\"},\"type\":\"join\",\"join\":{\"ip\":\"134.17.176.64\",\"cardId\":\"739a102c-0bc2-4335-bcbf-97a5657770a0\",\"payments\":[],\"funding\":500,\"fundingType\":\"monthly\"},\"quietEndingPeriod\":3600,\"commonId\":\"c45d25f6-d40e-4336-93ac-2274a3f51b1e\",\"votes\":[{\"voteOutcome\":\"approved\",\"voteId\":\"06d3ad1b-66a6-4bc2-b6ec-960264677277\",\"voterId\":\"RN4V4T2Z4gf2ld9QhwanrQbSnP23\"},{\"voterId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"voteOutcome\":\"approved\",\"voteId\":\"292dc473-f216-4eef-8e41-9fa184e4a040\"}],\"updatedAt\":{\"_seconds\":1615477598,\"_nanoseconds\":163000000}}" + }, + { + "id": "1fe3d513-24c6-44a3-a6cd-342d577374cb", + "createdAt": "2021-05-18T08:40:19.606Z", + "updatedAt": "2021-05-18T08:40:19.607Z", + "expiresAt": "2021-01-25T03:30:58.953Z", + "title": null, + "description": "Bv", + "links": [ + { + "url": "https://www.bing.com/", + "title": "T" + } + ], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 1, + "votesAgainst": 0, + "joinId": "1fe3d513-24c6-44a3-a6cd-342d577374cb", + "fundingId": null, + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "23f0f859-6277-414b-b66a-1de673f1792b", + "commonMemberId": "dcb520ea-1644-4108-8e49-5ba3d06871d1", + "importedFrom": "{\"type\":\"join\",\"votes\":[{\"voteOutcome\":\"approved\",\"voteId\":\"3961675b-950d-4641-9fb4-bf48f3d04b0d\",\"voterId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\"}],\"updatedAt\":{\"_seconds\":1611489516,\"_nanoseconds\":137000000},\"paymentState\":\"confirmed\",\"join\":{\"cardId\":\"2314d4f2-faae-40fa-aa00-4a57f34a0d0f\",\"payments\":[],\"fundingType\":\"one-time\",\"funding\":25100},\"votesFor\":1,\"commonId\":\"23f0f859-6277-414b-b66a-1de673f1792b\",\"id\":\"1fe3d513-24c6-44a3-a6cd-342d577374cb\",\"quietEndingPeriod\":3600,\"createdAt\":{\"_seconds\":1611487858,\"_nanoseconds\":953000000},\"proposerId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"description\":{\"description\":\"Bv\",\"links\":[{\"title\":\"T\",\"value\":\"https://www.bing.com/\"}]},\"votesAgainst\":0,\"state\":\"passed\",\"countdownPeriod\":57600}" + }, + { + "id": "23abbf68-95e2-4ab1-8ae0-77861e2a7c54", + "createdAt": "2021-05-18T08:40:19.613Z", + "updatedAt": "2021-05-18T08:40:19.614Z", + "expiresAt": "2020-12-20T10:53:10.414Z", + "title": null, + "description": "Go", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 1, + "votesAgainst": 0, + "joinId": "23abbf68-95e2-4ab1-8ae0-77861e2a7c54", + "fundingId": null, + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "8cd28a3c-13b9-45e8-913c-adf26c6544b8", + "commonMemberId": "0b9fbacf-f1d9-4fcd-9990-ea6bf670a724", + "importedFrom": "{\"type\":\"join\",\"paymentState\":\"confirmed\",\"description\":{\"description\":\"Go\",\"links\":[]},\"commonId\":\"8cd28a3c-13b9-45e8-913c-adf26c6544b8\",\"votesAgainst\":0,\"updatedAt\":{\"_seconds\":1608454823,\"_nanoseconds\":677000000},\"id\":\"23abbf68-95e2-4ab1-8ae0-77861e2a7c54\",\"proposerId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"quietEndingPeriod\":3600,\"join\":{\"fundingType\":\"one-time\",\"funding\":1250,\"payments\":[],\"cardId\":\"08b65514-cb2e-45ba-ba34-ed9ee235f0a9\"},\"votes\":[{\"voteId\":\"937cc64e-9dd1-4d69-ba2c-5dab0e0982b7\",\"voterId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"voteOutcome\":\"approved\"}],\"votesFor\":1,\"countdownPeriod\":7200,\"createdAt\":{\"_seconds\":1608454390,\"_nanoseconds\":414000000},\"state\":\"passed\"}" + }, + { + "id": "25e474c2-9364-45a9-88f8-e03d47625a80", + "createdAt": "2021-05-18T08:40:19.617Z", + "updatedAt": "2021-05-18T08:40:19.618Z", + "expiresAt": "2021-03-27T05:12:07.604Z", + "title": null, + "description": "🙃", + "links": [], + "files": [], + "images": [], + "ipAddress": "178.120.64.230", + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 2, + "joinId": "25e474c2-9364-45a9-88f8-e03d47625a80", + "fundingId": null, + "userId": "5Bi1KZGIYzW5UIljHgBlO98NXaI2", + "commonId": "6f88e880-1ed8-4946-8326-d285239d293b", + "commonMemberId": null, + "importedFrom": "{\"updatedAt\":{\"_seconds\":1616765116,\"_nanoseconds\":394000000},\"description\":{\"links\":[],\"description\":\"🙃\"},\"join\":{\"cardId\":\"bfc0d675-a732-44ab-a5d2-2fa9a10dcc73\",\"ip\":\"178.120.64.230\",\"fundingType\":\"one-time\",\"funding\":2000,\"payments\":[]},\"moderation\":{\"moderator\":\"\",\"updatedAt\":{\"_seconds\":1616764783,\"_nanoseconds\":316000000},\"reasons\":[\"Something Else\"],\"moderatorNote\":\"\",\"flag\":\"reported\",\"reporter\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\"},\"votes\":[{\"voteOutcome\":\"rejected\",\"voteId\":\"73f224fb-fc63-43c2-9b05-cbf5f74a6237\",\"voterId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\"},{\"voteOutcome\":\"rejected\",\"voteId\":\"9437a087-850f-463b-953e-f9143c8c7a98\",\"voterId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\"}],\"commonId\":\"6f88e880-1ed8-4946-8326-d285239d293b\",\"quietEndingPeriod\":3600,\"id\":\"25e474c2-9364-45a9-88f8-e03d47625a80\",\"proposerId\":\"5Bi1KZGIYzW5UIljHgBlO98NXaI2\",\"createdAt\":{\"_seconds\":1616764327,\"_nanoseconds\":604000000},\"votesFor\":0,\"countdownPeriod\":57600,\"type\":\"join\",\"state\":\"failed\",\"votesAgainst\":2}" + }, + { + "id": "27665ddd-8398-44ef-87cd-ce10320be2e2", + "createdAt": "2021-05-18T08:40:19.620Z", + "updatedAt": "2021-05-18T08:40:19.621Z", + "expiresAt": "2021-02-01T01:00:12.461Z", + "title": null, + "description": "Hi", + "links": [ + { + "url": "https://www.bbc.com/news/business-55842994", + "title": "Thth" + } + ], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "27665ddd-8398-44ef-87cd-ce10320be2e2", + "fundingId": null, + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "commonId": "2aa8ec05-e951-4097-94c8-a8dc30f00c78", + "commonMemberId": null, + "importedFrom": "{\"votes\":[],\"type\":\"join\",\"join\":{\"cardId\":\"381204e2-5e5f-4edf-a869-16375cf2ebfd\",\"payments\":[],\"funding\":5000,\"fundingType\":\"monthly\"},\"quietEndingPeriod\":3600,\"description\":{\"links\":[{\"title\":\"Thth\",\"value\":\"https://www.bbc.com/news/business-55842994\"}],\"description\":\"Hi\"},\"updatedAt\":{\"_seconds\":1612141500,\"_nanoseconds\":686000000},\"countdownPeriod\":57600,\"state\":\"failed\",\"createdAt\":{\"_seconds\":1612083612,\"_nanoseconds\":461000000},\"commonId\":\"2aa8ec05-e951-4097-94c8-a8dc30f00c78\",\"id\":\"27665ddd-8398-44ef-87cd-ce10320be2e2\",\"votesFor\":0,\"votesAgainst\":0,\"proposerId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\"}" + }, + { + "id": "28cb4684-e9b1-4edc-bac1-376b1545d1e0", + "createdAt": "2021-05-18T08:40:19.622Z", + "updatedAt": "2021-05-18T08:40:19.623Z", + "expiresAt": "2021-04-01T13:46:50.743Z", + "title": null, + "description": "Uvyvkn", + "links": [], + "files": [], + "images": [], + "ipAddress": "46.56.203.253", + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "28cb4684-e9b1-4edc-bac1-376b1545d1e0", + "fundingId": null, + "userId": "5Bi1KZGIYzW5UIljHgBlO98NXaI2", + "commonId": "7e41a751-1cbc-4e98-a0ad-cad25fdd9c9c", + "commonMemberId": null, + "importedFrom": "{\"votes\":[],\"createdAt\":{\"_seconds\":1617227210,\"_nanoseconds\":743000000},\"description\":{\"links\":[],\"description\":\"Uvyvkn\"},\"countdownPeriod\":57600,\"votesFor\":0,\"join\":{\"cardId\":\"5cddc89b-2b68-483a-94a0-c5612c30456c\",\"payments\":[],\"funding\":500,\"ip\":\"46.56.203.253\",\"fundingType\":\"monthly\"},\"type\":\"join\",\"proposerId\":\"5Bi1KZGIYzW5UIljHgBlO98NXaI2\",\"votesAgainst\":0,\"updatedAt\":{\"_seconds\":1617285001,\"_nanoseconds\":501000000},\"state\":\"failed\",\"quietEndingPeriod\":3600,\"commonId\":\"7e41a751-1cbc-4e98-a0ad-cad25fdd9c9c\",\"id\":\"28cb4684-e9b1-4edc-bac1-376b1545d1e0\"}" + }, + { + "id": "2aa481a3-a080-441b-acc8-e244d2b4c38c", + "createdAt": "2021-05-18T08:40:19.625Z", + "updatedAt": "2021-05-18T08:40:19.626Z", + "expiresAt": "2020-12-17T13:14:14.276Z", + "title": null, + "description": "sffsfs", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 1, + "votesAgainst": 0, + "joinId": "2aa481a3-a080-441b-acc8-e244d2b4c38c", + "fundingId": null, + "userId": "7a3rK55ZsdShvRd27sntddN2v7H2", + "commonId": "8e7b0468-4c9e-4447-96da-b455a5b8c190", + "commonMemberId": "b88108e7-82bc-42f5-af58-42ed1f43eb0a", + "importedFrom": "{\"updatedAt\":{\"_seconds\":1608203677,\"_nanoseconds\":703000000},\"quietEndingPeriod\":3600,\"commonId\":\"8e7b0468-4c9e-4447-96da-b455a5b8c190\",\"votesAgainst\":0,\"proposerId\":\"7a3rK55ZsdShvRd27sntddN2v7H2\",\"votesFor\":1,\"id\":\"2aa481a3-a080-441b-acc8-e244d2b4c38c\",\"state\":\"passed\",\"votes\":[{\"voteId\":\"90d25a85-5115-4dee-baf6-1be431f786c2\",\"voterId\":\"h59V0do13qhpeH9xDyoLaCZucTm1\",\"voteOutcome\":\"approved\"}],\"description\":{\"links\":[],\"description\":\"sffsfs\"},\"join\":{\"funding\":500,\"cardId\":\"faf2e66f-fa2a-46ef-a924-77a3c08f8291\",\"fundingType\":\"one-time\",\"payments\":[\"cf892de9-6f04-4b25-a941-966794e7c14c\"]},\"countdownPeriod\":7200,\"type\":\"join\",\"createdAt\":{\"_seconds\":1608203654,\"_nanoseconds\":276000000}}" + }, + { + "id": "2bb3add4-dd16-4e4f-9441-ec86fde50cec", + "createdAt": "2021-05-18T08:40:19.629Z", + "updatedAt": "2021-05-18T08:40:19.630Z", + "expiresAt": "2021-02-23T07:47:30.909Z", + "title": null, + "description": "Dh", + "links": [], + "files": [], + "images": [], + "ipAddress": "147.161.8.66", + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 2, + "votesAgainst": 0, + "joinId": "2bb3add4-dd16-4e4f-9441-ec86fde50cec", + "fundingId": null, + "userId": "P21SZrJ6z5YjyF8WFaHv5eRsoFo1", + "commonId": "02314122-6b05-4563-a8ce-4a10e97b72da", + "commonMemberId": "2d65a429-aea8-4005-930f-dc81d886136f", + "importedFrom": "{\"type\":\"join\",\"quietEndingPeriod\":3600,\"commonId\":\"02314122-6b05-4563-a8ce-4a10e97b72da\",\"updatedAt\":{\"_seconds\":1614009739,\"_nanoseconds\":500000000},\"join\":{\"cardId\":\"9dccfee9-0815-46c2-8d8e-ed22b0c1519f\",\"payments\":[\"577bd453-07f0-4243-8474-6cd458272be8\"],\"funding\":2400,\"ip\":\"147.161.8.66\",\"fundingType\":\"one-time\"},\"id\":\"2bb3add4-dd16-4e4f-9441-ec86fde50cec\",\"proposerId\":\"P21SZrJ6z5YjyF8WFaHv5eRsoFo1\",\"votes\":[{\"voterId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"voteOutcome\":\"approved\",\"voteId\":\"8930894d-dd37-40e7-8bfa-356fbbee3d23\"},{\"voteOutcome\":\"approved\",\"voterId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"voteId\":\"ad38e7cb-65f7-49a9-9bea-117525d16922\"}],\"description\":{\"description\":\"Dh\",\"links\":[]},\"createdAt\":{\"_seconds\":1614008850,\"_nanoseconds\":909000000},\"paymentState\":\"confirmed\",\"votesFor\":2,\"state\":\"passed\",\"countdownPeriod\":57600,\"votesAgainst\":0}" + }, + { + "id": "2c4be72f-6662-4db1-a299-6058966d2471", + "createdAt": "2021-05-18T08:40:19.631Z", + "updatedAt": "2021-05-18T08:40:19.632Z", + "expiresAt": "2021-02-16T08:30:02.186Z", + "title": null, + "description": "Boo", + "links": [], + "files": [], + "images": [], + "ipAddress": "87.70.83.200", + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "2c4be72f-6662-4db1-a299-6058966d2471", + "fundingId": null, + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "120b0708-dc65-42d2-95e6-cb2efa89bbf5", + "commonMemberId": null, + "importedFrom": "{\"createdAt\":{\"_seconds\":1613406602,\"_nanoseconds\":186000000},\"id\":\"2c4be72f-6662-4db1-a299-6058966d2471\",\"description\":{\"description\":\"Boo\",\"links\":[]},\"type\":\"join\",\"updatedAt\":{\"_seconds\":1613464500,\"_nanoseconds\":356000000},\"proposerId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"votes\":[],\"join\":{\"ip\":\"87.70.83.200\",\"cardId\":\"60402aef-a583-4c7f-b0fe-d69cb822a0f0\",\"payments\":[],\"fundingType\":\"one-time\",\"funding\":500},\"quietEndingPeriod\":3600,\"votesFor\":0,\"state\":\"failed\",\"commonId\":\"120b0708-dc65-42d2-95e6-cb2efa89bbf5\",\"votesAgainst\":0,\"countdownPeriod\":57600}" + }, + { + "id": "2d0be6bb-73fa-4c81-9c13-94922adaf8df", + "createdAt": "2021-05-18T08:40:19.633Z", + "updatedAt": "2021-05-18T08:40:19.634Z", + "expiresAt": "2021-03-15T04:28:11.831Z", + "title": null, + "description": "Yu", + "links": [], + "files": [], + "images": [], + "ipAddress": "87.71.10.6", + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 1, + "votesAgainst": 0, + "joinId": "2d0be6bb-73fa-4c81-9c13-94922adaf8df", + "fundingId": null, + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "commonId": "2a5bfc7d-9f50-4ff8-8c00-835e4b5f7b67", + "commonMemberId": null, + "importedFrom": "{\"updatedAt\":{\"_seconds\":1615724927,\"_nanoseconds\":233000000},\"votes\":[{\"voterId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"voteId\":\"0522a011-0b2d-4664-b4c2-72283917727a\",\"voteOutcome\":\"approved\"}],\"createdAt\":{\"_seconds\":1615724891,\"_nanoseconds\":831000000},\"state\":\"passed\",\"type\":\"join\",\"proposerId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"votesFor\":1,\"commonId\":\"2a5bfc7d-9f50-4ff8-8c00-835e4b5f7b67\",\"quietEndingPeriod\":3600,\"paymentState\":\"confirmed\",\"countdownPeriod\":57600,\"description\":{\"links\":[],\"description\":\"Yu\"},\"votesAgainst\":0,\"join\":{\"ip\":\"87.71.10.6\",\"fundingType\":\"monthly\",\"payments\":[],\"funding\":6250,\"cardId\":\"430d2926-591e-481a-b351-f9481165608b\"},\"id\":\"2d0be6bb-73fa-4c81-9c13-94922adaf8df\"}" + }, + { + "id": "2f5afd01-fd76-4e2d-9653-efc4b89292f4", + "createdAt": "2021-05-18T08:40:19.638Z", + "updatedAt": "2021-05-18T08:40:19.639Z", + "expiresAt": "2021-01-27T06:59:00.236Z", + "title": null, + "description": "Intro", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "2f5afd01-fd76-4e2d-9653-efc4b89292f4", + "fundingId": null, + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "67ad1d5b-194b-457b-9103-26e28a9d62c0", + "commonMemberId": null, + "importedFrom": "{\"votes\":[],\"state\":\"failed\",\"description\":{\"description\":\"Intro\",\"links\":[]},\"proposerId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"updatedAt\":{\"_seconds\":1611730800,\"_nanoseconds\":313000000},\"countdownPeriod\":57600,\"commonId\":\"67ad1d5b-194b-457b-9103-26e28a9d62c0\",\"join\":{\"cardId\":\"e48bdae1-1024-4fcf-84d0-8e57046f2307\",\"funding\":20000,\"payments\":[],\"fundingType\":\"monthly\"},\"votesAgainst\":0,\"type\":\"join\",\"votesFor\":0,\"id\":\"2f5afd01-fd76-4e2d-9653-efc4b89292f4\",\"createdAt\":{\"_seconds\":1611673140,\"_nanoseconds\":236000000},\"quietEndingPeriod\":3600}" + }, + { + "id": "301c8d27-4c1f-40ea-a6c9-3b663b18f188", + "createdAt": "2021-05-18T08:40:19.642Z", + "updatedAt": "2021-05-18T08:40:19.643Z", + "expiresAt": "2021-02-09T04:55:46.666Z", + "title": null, + "description": "Dhbr", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 1, + "votesAgainst": 0, + "joinId": "301c8d27-4c1f-40ea-a6c9-3b663b18f188", + "fundingId": null, + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "commonId": "644786f5-f057-4553-a961-51d8c0daf04f", + "commonMemberId": null, + "importedFrom": "{\"quietEndingPeriod\":3600,\"updatedAt\":{\"_seconds\":1612789037,\"_nanoseconds\":180000000},\"type\":\"join\",\"votes\":[{\"voteOutcome\":\"approved\",\"voteId\":\"c5e33460-a95b-4102-92bf-cfbf527535dc\",\"voterId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\"}],\"countdownPeriod\":57600,\"commonId\":\"644786f5-f057-4553-a961-51d8c0daf04f\",\"votesFor\":1,\"id\":\"301c8d27-4c1f-40ea-a6c9-3b663b18f188\",\"state\":\"passed\",\"createdAt\":{\"_seconds\":1612788946,\"_nanoseconds\":666000000},\"description\":{\"links\":[],\"description\":\"Dhbr\"},\"proposerId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"votesAgainst\":0,\"paymentState\":\"confirmed\",\"join\":{\"payments\":[],\"funding\":18000,\"fundingType\":\"monthly\",\"cardId\":\"7b284f88-d6ca-424f-8e7e-6ccaac3a1b98\"}}" + }, + { + "id": "318f0296-f2da-422d-bed8-76bc116016f8", + "createdAt": "2021-05-18T08:40:19.649Z", + "updatedAt": "2021-05-18T08:40:19.649Z", + "expiresAt": "2021-03-10T04:07:11.533Z", + "title": null, + "description": "Testing", + "links": [], + "files": [], + "images": [], + "ipAddress": "2a02:ed0:6d9e:4b00:a5cb:31ad:4da:e0f9", + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "318f0296-f2da-422d-bed8-76bc116016f8", + "fundingId": null, + "userId": "y2wLlb4FV6PehGGAmj9akMnwkzl2", + "commonId": "10fd7df7-eae9-4995-9c85-90e691c439e1", + "commonMemberId": null, + "importedFrom": "{\"state\":\"failed\",\"updatedAt\":{\"_seconds\":1615349401,\"_nanoseconds\":250000000},\"votesAgainst\":0,\"description\":{\"description\":\"Testing\",\"links\":[]},\"countdownPeriod\":57600,\"join\":{\"funding\":500,\"cardId\":\"02cd176f-3479-445c-bbb5-452528282b2b\",\"ip\":\"2a02:ed0:6d9e:4b00:a5cb:31ad:4da:e0f9\",\"payments\":[]},\"votes\":[],\"id\":\"318f0296-f2da-422d-bed8-76bc116016f8\",\"commonId\":\"10fd7df7-eae9-4995-9c85-90e691c439e1\",\"type\":\"join\",\"quietEndingPeriod\":3600,\"createdAt\":{\"_seconds\":1615291631,\"_nanoseconds\":533000000},\"proposerId\":\"y2wLlb4FV6PehGGAmj9akMnwkzl2\",\"votesFor\":0}" + }, + { + "id": "32086f77-9889-4156-93e6-e423104761e9", + "createdAt": "2021-05-18T08:40:19.651Z", + "updatedAt": "2021-05-18T08:40:19.652Z", + "expiresAt": "2021-02-19T03:35:57.119Z", + "title": null, + "description": "No", + "links": [], + "files": [], + "images": [], + "ipAddress": "87.71.109.34", + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 1, + "votesAgainst": 0, + "joinId": "32086f77-9889-4156-93e6-e423104761e9", + "fundingId": null, + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "0f932979-eb1f-47d2-a6ac-7ba63a60019a", + "commonMemberId": "2b6e175d-eca6-4782-9d76-40ea1f41345c", + "importedFrom": "{\"votesAgainst\":0,\"type\":\"join\",\"quietEndingPeriod\":3600,\"createdAt\":{\"_seconds\":1613648157,\"_nanoseconds\":119000000},\"votes\":[{\"voterId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"voteId\":\"94d75c86-45c4-44cb-84a1-bfa3f0d43024\",\"voteOutcome\":\"approved\"}],\"state\":\"passed\",\"description\":{\"links\":[],\"description\":\"No\"},\"id\":\"32086f77-9889-4156-93e6-e423104761e9\",\"updatedAt\":{\"_seconds\":1613648183,\"_nanoseconds\":423000000},\"paymentState\":\"confirmed\",\"commonId\":\"0f932979-eb1f-47d2-a6ac-7ba63a60019a\",\"votesFor\":1,\"countdownPeriod\":57600,\"proposerId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"join\":{\"payments\":[\"15ad4383-05ba-47a9-bf04-8d7e915ecf72\"],\"fundingType\":\"one-time\",\"cardId\":\"d807dd9d-10de-46e4-9020-846e2bdcc623\",\"ip\":\"87.71.109.34\",\"funding\":2500}}" + }, + { + "id": "34cbd8ac-45ba-4254-aa87-f91a2e567623", + "createdAt": "2021-05-18T08:40:19.653Z", + "updatedAt": "2021-05-18T08:40:19.654Z", + "expiresAt": "2021-03-10T03:57:19.037Z", + "title": null, + "description": "Hi", + "links": [], + "files": [], + "images": [], + "ipAddress": "46.56.228.242", + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 3, + "votesAgainst": 0, + "joinId": "34cbd8ac-45ba-4254-aa87-f91a2e567623", + "fundingId": null, + "userId": "5Bi1KZGIYzW5UIljHgBlO98NXaI2", + "commonId": "02314122-6b05-4563-a8ce-4a10e97b72da", + "commonMemberId": "7c79cd41-2d2c-4b57-a702-16b00c6cdd14", + "importedFrom": "{\"commonId\":\"02314122-6b05-4563-a8ce-4a10e97b72da\",\"id\":\"34cbd8ac-45ba-4254-aa87-f91a2e567623\",\"quietEndingPeriod\":3600,\"state\":\"passed\",\"type\":\"join\",\"votes\":[{\"voteOutcome\":\"approved\",\"voterId\":\"Xh4xoIGHhgOhxz1S5AJkaXCBT8K2\",\"voteId\":\"cc25ba42-6150-42b6-b051-32b89f655016\"},{\"voterId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"voteId\":\"d21a6aa3-448a-4dd6-a9b9-69a3fd698b63\",\"voteOutcome\":\"approved\"},{\"voterId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"voteOutcome\":\"approved\",\"voteId\":\"fee599b8-608d-41e7-922a-5ede6ea8a28c\"}],\"proposerId\":\"5Bi1KZGIYzW5UIljHgBlO98NXaI2\",\"votesFor\":3,\"paymentState\":\"confirmed\",\"countdownPeriod\":57600,\"join\":{\"payments\":[\"c9d665c8-361f-4645-9f4f-46ffef28429f\"],\"fundingType\":\"one-time\",\"funding\":2400,\"cardId\":\"9e21b3c3-6da6-4198-af36-28507b2a98e0\",\"ip\":\"46.56.228.242\"},\"updatedAt\":{\"_seconds\":1615291134,\"_nanoseconds\":293000000},\"createdAt\":{\"_seconds\":1615291039,\"_nanoseconds\":37000000},\"description\":{\"links\":[],\"description\":\"Hi\"},\"votesAgainst\":0}" + }, + { + "id": "35b53077-b783-4365-8e5c-e2e0a6551c97", + "createdAt": "2021-05-18T08:40:19.656Z", + "updatedAt": "2021-05-18T08:40:19.657Z", + "expiresAt": "2021-03-17T04:01:55.180Z", + "title": null, + "description": "Hugh just", + "links": [], + "files": [], + "images": [], + "ipAddress": "178.120.59.188", + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 2, + "joinId": "35b53077-b783-4365-8e5c-e2e0a6551c97", + "fundingId": null, + "userId": "2HM9WnVvr9aDYbckjCo4cIDjncY2", + "commonId": "d30cb234-01ac-483c-b137-47961ed0cfec", + "commonMemberId": "b3f717be-04af-4e60-9761-2dc3aa3f2347", + "importedFrom": "{\"votesFor\":0,\"join\":{\"fundingType\":\"monthly\",\"ip\":\"178.120.59.188\",\"funding\":700,\"payments\":[],\"cardId\":\"d1965564-b177-4a0b-8dd6-73aebe6d7de9\"},\"description\":{\"description\":\"Hugh just\",\"links\":[]},\"state\":\"failed\",\"createdAt\":{\"_seconds\":1615896115,\"_nanoseconds\":180000000},\"type\":\"join\",\"votes\":[{\"voterId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"voteId\":\"3e3faac1-c788-4448-b208-f4b364de4731\",\"voteOutcome\":\"rejected\"},{\"voterId\":\"5Bi1KZGIYzW5UIljHgBlO98NXaI2\",\"voteOutcome\":\"rejected\",\"voteId\":\"0a964f24-06cc-43d5-b3d7-3111bf0cc6ae\"}],\"countdownPeriod\":57600,\"updatedAt\":{\"_seconds\":1615896698,\"_nanoseconds\":263000000},\"quietEndingPeriod\":3600,\"id\":\"35b53077-b783-4365-8e5c-e2e0a6551c97\",\"proposerId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\",\"commonId\":\"d30cb234-01ac-483c-b137-47961ed0cfec\",\"votesAgainst\":2}" + }, + { + "id": "362c25e3-31a6-480a-904c-febdd756ac4d", + "createdAt": "2021-05-18T08:40:19.658Z", + "updatedAt": "2021-05-18T08:40:19.659Z", + "expiresAt": "2021-02-08T01:54:02.046Z", + "title": null, + "description": "123", + "links": [ + { + "url": "https://www.volvocars.com/il/cars/lp?site=google&lp=volvo.brand&utm_source=google&utm_campaign=volvo_brand&AgIdwe", + "title": "Title" + } + ], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "362c25e3-31a6-480a-904c-febdd756ac4d", + "fundingId": null, + "userId": "b0Kxsd0x4OMLeOlDnheysBz5THo1", + "commonId": "0970bc3f-beca-4b6e-acb1-42f1b4bba931", + "commonMemberId": null, + "importedFrom": "{\"votesFor\":0,\"commonId\":\"0970bc3f-beca-4b6e-acb1-42f1b4bba931\",\"createdAt\":{\"_seconds\":1612691642,\"_nanoseconds\":46000000},\"quietEndingPeriod\":3600,\"updatedAt\":{\"_seconds\":1612749300,\"_nanoseconds\":847000000},\"proposerId\":\"b0Kxsd0x4OMLeOlDnheysBz5THo1\",\"countdownPeriod\":57600,\"votes\":[],\"type\":\"join\",\"state\":\"failed\",\"join\":{\"funding\":500,\"payments\":[],\"cardId\":\"82c7b3bb-3cf1-495e-a1c5-9514c1f6cda8\",\"fundingType\":\"one-time\"},\"description\":{\"links\":[{\"value\":\"https://www.volvocars.com/il/cars/lp?site=google&lp=volvo.brand&utm_source=google&utm_campaign=volvo_brand&AgIdwe\",\"title\":\"Title\"}],\"description\":\"123\"},\"votesAgainst\":0,\"id\":\"362c25e3-31a6-480a-904c-febdd756ac4d\"}" + }, + { + "id": "3864e1c7-7a18-4d73-8c86-0fc8bf9559c9", + "createdAt": "2021-05-18T08:40:19.661Z", + "updatedAt": "2021-05-18T08:40:19.662Z", + "expiresAt": "2020-12-28T02:10:40.331Z", + "title": null, + "description": "More", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 1, + "votesAgainst": 0, + "joinId": "3864e1c7-7a18-4d73-8c86-0fc8bf9559c9", + "fundingId": null, + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "commonId": "6d778a9d-6ebb-46ab-969a-02d4c4567145", + "commonMemberId": "4553d6a2-f768-4e57-8736-7e9ba2de9a49", + "importedFrom": "{\"type\":\"join\",\"createdAt\":{\"_seconds\":1609063840,\"_nanoseconds\":331000000},\"state\":\"passed\",\"id\":\"3864e1c7-7a18-4d73-8c86-0fc8bf9559c9\",\"updatedAt\":{\"_seconds\":1609063891,\"_nanoseconds\":510000000},\"votesFor\":1,\"proposerId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"join\":{\"fundingType\":\"one-time\",\"payments\":[],\"funding\":505,\"cardId\":\"199e6e76-bfed-435f-81d5-96754618c7ff\"},\"countdownPeriod\":57600,\"commonId\":\"6d778a9d-6ebb-46ab-969a-02d4c4567145\",\"quietEndingPeriod\":3600,\"votesAgainst\":0,\"paymentState\":\"failed\",\"description\":{\"description\":\"More\",\"links\":[]},\"votes\":[{\"voterId\":\"Xh4xoIGHhgOhxz1S5AJkaXCBT8K2\",\"voteId\":\"472fb1f1-3950-40d1-9941-969b0e3eed56\",\"voteOutcome\":\"approved\"}]}" + }, + { + "id": "3b9b9c5f-b313-46cd-8541-b31dec6123dc", + "createdAt": "2021-05-18T08:40:19.664Z", + "updatedAt": "2021-05-18T08:40:19.665Z", + "expiresAt": "2021-01-22T04:39:35.692Z", + "title": null, + "description": "Dh", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "3b9b9c5f-b313-46cd-8541-b31dec6123dc", + "fundingId": null, + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "6d778a9d-6ebb-46ab-969a-02d4c4567145", + "commonMemberId": null, + "importedFrom": "{\"createdAt\":{\"_seconds\":1611232775,\"_nanoseconds\":692000000},\"join\":{\"funding\":500,\"payments\":[],\"cardId\":\"f2ef3272-a69c-4fbd-a56a-6ac304a6bdc0\",\"fundingType\":\"one-time\"},\"votesAgainst\":0,\"updatedAt\":{\"_seconds\":1611290401,\"_nanoseconds\":42000000},\"type\":\"join\",\"commonId\":\"6d778a9d-6ebb-46ab-969a-02d4c4567145\",\"description\":{\"links\":[],\"description\":\"Dh\"},\"countdownPeriod\":57600,\"id\":\"3b9b9c5f-b313-46cd-8541-b31dec6123dc\",\"votes\":[],\"proposerId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"state\":\"failed\",\"quietEndingPeriod\":3600,\"votesFor\":0}" + }, + { + "id": "411b66ad-0d34-45a1-be9e-f7f5d739290f", + "createdAt": "2021-05-18T08:40:19.668Z", + "updatedAt": "2021-05-18T08:40:19.669Z", + "expiresAt": "2021-02-02T02:43:53.847Z", + "title": null, + "description": "Go", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 1, + "votesAgainst": 0, + "joinId": "411b66ad-0d34-45a1-be9e-f7f5d739290f", + "fundingId": null, + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "0970bc3f-beca-4b6e-acb1-42f1b4bba931", + "commonMemberId": "6e1454e1-093f-4f91-8466-f1fa3341b2fa", + "importedFrom": "{\"join\":{\"funding\":53600,\"payments\":[\"51124803-6143-4bd1-b460-b99d177e7834\"],\"fundingType\":\"one-time\",\"cardId\":\"471fbee2-e22a-422f-9b5e-e7afd632209a\"},\"countdownPeriod\":57600,\"votesAgainst\":0,\"votesFor\":1,\"votes\":[{\"voterId\":\"Xh4xoIGHhgOhxz1S5AJkaXCBT8K2\",\"voteId\":\"0582b03f-f179-4c71-858f-ce1220e5e921\",\"voteOutcome\":\"approved\"}],\"createdAt\":{\"_seconds\":1612176233,\"_nanoseconds\":847000000},\"updatedAt\":{\"_seconds\":1612180560,\"_nanoseconds\":488000000},\"commonId\":\"0970bc3f-beca-4b6e-acb1-42f1b4bba931\",\"paymentState\":\"confirmed\",\"quietEndingPeriod\":3600,\"type\":\"join\",\"description\":{\"links\":[],\"description\":\"Go\"},\"id\":\"411b66ad-0d34-45a1-be9e-f7f5d739290f\",\"proposerId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"state\":\"passed\"}" + }, + { + "id": "445d577f-7188-43b6-81ec-2826d9784abf", + "createdAt": "2021-05-18T08:40:19.669Z", + "updatedAt": "2021-05-18T08:40:19.670Z", + "expiresAt": "2020-12-14T14:52:33.592Z", + "title": null, + "description": "can you approve me?", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 1, + "votesAgainst": 0, + "joinId": "445d577f-7188-43b6-81ec-2826d9784abf", + "fundingId": null, + "userId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1", + "commonId": "0970bc3f-beca-4b6e-acb1-42f1b4bba931", + "commonMemberId": null, + "importedFrom": "{\"type\":\"join\",\"join\":{\"funding\":501,\"payments\":[\"e7aaa06e-6ec9-422e-b448-1a1e81c730a8\"],\"cardId\":\"e5c6a948-dcb8-401f-b043-b89f82a0dfb8\",\"fundingType\":\"one-time\"},\"description\":{\"description\":\"can you approve me?\",\"links\":[]},\"id\":\"445d577f-7188-43b6-81ec-2826d9784abf\",\"votesAgainst\":0,\"votesFor\":1,\"proposerId\":\"11j4NvvZ4kMRf4BFBUHdbRiXKMp1\",\"votes\":[{\"voteId\":\"79b4349c-376b-4745-ae83-f5c8ec4cbda4\",\"voterId\":\"Xh4xoIGHhgOhxz1S5AJkaXCBT8K2\",\"voteOutcome\":\"approved\"}],\"quietEndingPeriod\":3600,\"createdAt\":{\"_seconds\":1607950353,\"_nanoseconds\":592000000},\"updatedAt\":{\"_seconds\":1607950734,\"_nanoseconds\":655000000},\"countdownPeriod\":7200,\"commonId\":\"0970bc3f-beca-4b6e-acb1-42f1b4bba931\",\"state\":\"passed\"}" + }, + { + "id": "450b5d74-ddc7-43a2-9305-9d7eff570ed9", + "createdAt": "2021-05-18T08:40:19.672Z", + "updatedAt": "2021-05-18T08:40:19.673Z", + "expiresAt": "2021-03-08T06:52:50.209Z", + "title": null, + "description": "Hop", + "links": [], + "files": [], + "images": [], + "ipAddress": "77.127.45.147", + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 1, + "votesAgainst": 0, + "joinId": "450b5d74-ddc7-43a2-9305-9d7eff570ed9", + "fundingId": null, + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "commonId": "21bed599-c9cc-41e1-9c58-255eae958848", + "commonMemberId": "cdb511e5-bc49-44a4-b693-831c62106fd3", + "importedFrom": "{\"join\":{\"payments\":[\"bba36b68-acee-4d08-8fd6-6cc082b8af57\"],\"funding\":15000,\"ip\":\"77.127.45.147\",\"cardId\":\"7f942e2f-cbf7-4b14-aae2-853eaa9bb532\",\"fundingType\":\"one-time\"},\"quietEndingPeriod\":3600,\"proposerId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"countdownPeriod\":57600,\"id\":\"450b5d74-ddc7-43a2-9305-9d7eff570ed9\",\"updatedAt\":{\"_seconds\":1615128790,\"_nanoseconds\":57000000},\"paymentState\":\"confirmed\",\"votesFor\":1,\"state\":\"passed\",\"votesAgainst\":0,\"commonId\":\"21bed599-c9cc-41e1-9c58-255eae958848\",\"description\":{\"description\":\"Hop\",\"links\":[]},\"type\":\"join\",\"votes\":[{\"voteOutcome\":\"approved\",\"voteId\":\"a7d62efd-d5f1-4287-8fa2-945e19f55b32\",\"voterId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\"}],\"createdAt\":{\"_seconds\":1615128770,\"_nanoseconds\":209000000}}" + }, + { + "id": "45e64a26-0996-431a-98f7-dd8a0b800c78", + "createdAt": "2021-05-18T08:40:19.674Z", + "updatedAt": "2021-05-18T08:40:19.675Z", + "expiresAt": "2020-12-21T19:27:58.334Z", + "title": null, + "description": "Bb", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "45e64a26-0996-431a-98f7-dd8a0b800c78", + "fundingId": null, + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "commonId": "8db41ae6-98c8-421a-88f9-24cfff29bb22", + "commonMemberId": null, + "importedFrom": "{\"join\":{\"payments\":[],\"fundingType\":\"one-time\",\"cardId\":\"9416d635-bd22-40f9-a6fd-2eefc20b8d17\",\"funding\":3500},\"votes\":[],\"description\":{\"links\":[],\"description\":\"Bb\"},\"type\":\"join\",\"id\":\"45e64a26-0996-431a-98f7-dd8a0b800c78\",\"updatedAt\":{\"_seconds\":1608579000,\"_nanoseconds\":400000000},\"createdAt\":{\"_seconds\":1608571678,\"_nanoseconds\":334000000},\"votesAgainst\":0,\"state\":\"failed\",\"countdownPeriod\":7200,\"proposerId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"commonId\":\"8db41ae6-98c8-421a-88f9-24cfff29bb22\",\"quietEndingPeriod\":3600,\"votesFor\":0}" + }, + { + "id": "481da29e-1ada-4d68-8290-18f084f67d83", + "createdAt": "2021-05-18T08:40:19.675Z", + "updatedAt": "2021-05-18T08:40:19.676Z", + "expiresAt": "2021-01-19T07:29:32.875Z", + "title": null, + "description": "P", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 2, + "votesAgainst": 0, + "joinId": "481da29e-1ada-4d68-8290-18f084f67d83", + "fundingId": null, + "userId": "y2wLlb4FV6PehGGAmj9akMnwkzl2", + "commonId": "1d85812f-5a59-49bf-bb0d-c6579597bb0d", + "commonMemberId": "d878ee5c-830a-4a0a-a254-0ecfbfea2974", + "importedFrom": "{\"proposerId\":\"y2wLlb4FV6PehGGAmj9akMnwkzl2\",\"votesFor\":2,\"updatedAt\":{\"_seconds\":1610984244,\"_nanoseconds\":819000000},\"votesAgainst\":0,\"type\":\"join\",\"state\":\"passed\",\"quietEndingPeriod\":3600,\"join\":{\"funding\":3000,\"fundingType\":\"one-time\",\"payments\":[],\"cardId\":\"3d6ee220-2b7f-4acd-93cd-4638f79119f6\"},\"description\":{\"description\":\"P\",\"links\":[]},\"countdownPeriod\":57600,\"commonId\":\"1d85812f-5a59-49bf-bb0d-c6579597bb0d\",\"paymentState\":\"confirmed\",\"votes\":[{\"voteId\":\"8a821f95-c8d2-4f64-aec1-9b00bb46d48f\",\"voterId\":\"Sxv19oCvKAZq2vntJdYCTYSpWWN2\",\"voteOutcome\":\"approved\"},{\"voteOutcome\":\"approved\",\"voterId\":\"b0Kxsd0x4OMLeOlDnheysBz5THo1\",\"voteId\":\"7a4560b3-7f3b-4b73-8aac-af62f45a2f37\"}],\"createdAt\":{\"_seconds\":1610983772,\"_nanoseconds\":875000000},\"id\":\"481da29e-1ada-4d68-8290-18f084f67d83\"}" + }, + { + "id": "49b208b6-14bb-4821-9840-14288c78beba", + "createdAt": "2021-05-18T08:40:19.679Z", + "updatedAt": "2021-05-18T08:40:19.680Z", + "expiresAt": "2021-03-08T06:56:02.458Z", + "title": null, + "description": "יניב", + "links": [], + "files": [], + "images": [], + "ipAddress": "77.127.45.147", + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 1, + "votesAgainst": 0, + "joinId": "49b208b6-14bb-4821-9840-14288c78beba", + "fundingId": null, + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "b78beeff-4213-4599-a6cb-01547a2c7fd1", + "commonMemberId": "8f5fa9c0-0bb3-4f51-8a5b-e29c9e91cef8", + "importedFrom": "{\"votes\":[{\"voteId\":\"88affb72-f511-442a-a1c9-64dad1c91f68\",\"voterId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"voteOutcome\":\"approved\"}],\"createdAt\":{\"_seconds\":1615128962,\"_nanoseconds\":458000000},\"quietEndingPeriod\":3600,\"join\":{\"ip\":\"77.127.45.147\",\"cardId\":\"99838f31-d607-41c2-99e9-2ef6a62d4d74\",\"fundingType\":\"one-time\",\"payments\":[\"da96e667-29a9-4a78-b468-8c94b3f794f7\"],\"funding\":25000},\"votesAgainst\":0,\"type\":\"join\",\"countdownPeriod\":57600,\"description\":{\"description\":\"יניב\",\"links\":[]},\"updatedAt\":{\"_seconds\":1615129164,\"_nanoseconds\":318000000},\"commonId\":\"b78beeff-4213-4599-a6cb-01547a2c7fd1\",\"id\":\"49b208b6-14bb-4821-9840-14288c78beba\",\"proposerId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"state\":\"passed\",\"votesFor\":1,\"paymentState\":\"confirmed\"}" + }, + { + "id": "4d15ee2b-76f0-4c78-b033-80d48f31b005", + "createdAt": "2021-05-18T08:40:19.683Z", + "updatedAt": "2021-05-18T08:40:19.684Z", + "expiresAt": "2021-03-10T02:59:58.762Z", + "title": null, + "description": "Hi", + "links": [ + { + "url": "http://www.test.com", + "title": "Test" + } + ], + "files": [], + "images": [], + "ipAddress": "178.120.66.122", + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "4d15ee2b-76f0-4c78-b033-80d48f31b005", + "fundingId": null, + "userId": "Wz0ZgOvKnafrjLDeAeWqx182uBq2", + "commonId": "05e4c4a2-6957-42ea-bc49-073a307313d8", + "commonMemberId": null, + "importedFrom": "{\"proposerId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"quietEndingPeriod\":3600,\"id\":\"4d15ee2b-76f0-4c78-b033-80d48f31b005\",\"commonId\":\"05e4c4a2-6957-42ea-bc49-073a307313d8\",\"votesFor\":0,\"description\":{\"links\":[{\"value\":\"http://www.test.com\",\"title\":\"Test\"}],\"description\":\"Hi\"},\"state\":\"failed\",\"votes\":[],\"votesAgainst\":0,\"updatedAt\":{\"_seconds\":1615345200,\"_nanoseconds\":459000000},\"createdAt\":{\"_seconds\":1615287598,\"_nanoseconds\":762000000},\"join\":{\"payments\":[],\"cardId\":\"c0bf4eaa-0786-4e6e-bdc8-94bfa5811c78\",\"funding\":500,\"ip\":\"178.120.66.122\",\"fundingType\":\"one-time\"},\"countdownPeriod\":57600,\"type\":\"join\"}" + }, + { + "id": "4d80208d-277c-43f7-820c-4bfb5ac411fb", + "createdAt": "2021-05-18T08:40:19.685Z", + "updatedAt": "2021-05-18T08:40:19.686Z", + "expiresAt": "2021-03-15T09:51:30.061Z", + "title": null, + "description": "Let me in", + "links": [], + "files": [], + "images": [], + "ipAddress": "31.210.180.183", + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 2, + "votesAgainst": 0, + "joinId": "4d80208d-277c-43f7-820c-4bfb5ac411fb", + "fundingId": null, + "userId": "y2wLlb4FV6PehGGAmj9akMnwkzl2", + "commonId": "03a934ef-a152-42db-aba1-605fa4e4a4b0", + "commonMemberId": "d128cd3e-f49d-4638-80f6-b9d538e6498c", + "importedFrom": "{\"commonId\":\"03a934ef-a152-42db-aba1-605fa4e4a4b0\",\"id\":\"4d80208d-277c-43f7-820c-4bfb5ac411fb\",\"createdAt\":{\"_seconds\":1615744290,\"_nanoseconds\":61000000},\"type\":\"join\",\"updatedAt\":{\"_seconds\":1615744397,\"_nanoseconds\":568000000},\"paymentState\":\"confirmed\",\"description\":{\"links\":[],\"description\":\"Let me in\"},\"proposerId\":\"y2wLlb4FV6PehGGAmj9akMnwkzl2\",\"votesAgainst\":0,\"votesFor\":2,\"state\":\"passed\",\"quietEndingPeriod\":3600,\"join\":{\"fundingType\":\"one-time\",\"payments\":[\"7f08b11a-aad4-4ebf-8159-d19fd4e4972b\"],\"funding\":500,\"ip\":\"31.210.180.183\",\"cardId\":\"1e99d969-888c-470a-90c0-d49b56879aed\"},\"countdownPeriod\":57600,\"votes\":[{\"voteOutcome\":\"approved\",\"voterId\":\"11j4NvvZ4kMRf4BFBUHdbRiXKMp1\",\"voteId\":\"e3c3c323-e71b-4b79-b37d-e108aafb905b\"},{\"voteOutcome\":\"approved\",\"voteId\":\"96f976dd-47c0-4ae0-8ba8-fc8bfc630200\",\"voterId\":\"Sxv19oCvKAZq2vntJdYCTYSpWWN2\"}]}" + }, + { + "id": "4dbf0f0f-e2e3-48ce-ae5e-81e783876617", + "createdAt": "2021-05-18T08:40:19.686Z", + "updatedAt": "2021-05-18T08:40:19.688Z", + "expiresAt": "2020-12-16T15:25:16.943Z", + "title": null, + "description": "Hop", + "links": [ + { + "url": "https://www.google.com/amp/s/genius.com/amp/The-beatles-yesterday-lyrics", + "title": "Bop" + } + ], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 1, + "votesAgainst": 0, + "joinId": "4dbf0f0f-e2e3-48ce-ae5e-81e783876617", + "fundingId": null, + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "20c97f59-d176-41a5-9cfa-1b31b017718f", + "commonMemberId": null, + "importedFrom": "{\"votesFor\":1,\"join\":{\"fundingType\":\"monthly\",\"payments\":[],\"funding\":1250,\"cardId\":\"e8a2c186-b1b2-44dd-b36d-2af457125347\"},\"proposerId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"createdAt\":{\"_seconds\":1608125116,\"_nanoseconds\":943000000},\"commonId\":\"20c97f59-d176-41a5-9cfa-1b31b017718f\",\"type\":\"join\",\"state\":\"passed\",\"quietEndingPeriod\":3600,\"description\":{\"description\":\"Hop\",\"links\":[{\"title\":\"Bop\",\"value\":\"https://www.google.com/amp/s/genius.com/amp/The-beatles-yesterday-lyrics\"}]},\"id\":\"4dbf0f0f-e2e3-48ce-ae5e-81e783876617\",\"votes\":[{\"voteOutcome\":\"approved\",\"voteId\":\"ed6a5e12-1f91-41ac-9fbb-12d5ba917dfe\",\"voterId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\"}],\"countdownPeriod\":7200,\"votesAgainst\":0,\"updatedAt\":{\"_seconds\":1608125199,\"_nanoseconds\":997000000}}" + }, + { + "id": "4e56bdc3-b3e8-4d40-a83d-b426014ff97c", + "createdAt": "2021-05-18T08:40:19.688Z", + "updatedAt": "2021-05-18T08:40:19.689Z", + "expiresAt": "2020-12-13T12:25:51.626Z", + "title": null, + "description": "Hellos ", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "4e56bdc3-b3e8-4d40-a83d-b426014ff97c", + "fundingId": null, + "userId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1", + "commonId": "21fc3489-5a80-44c5-bb59-cd8bea165b3d", + "commonMemberId": null, + "importedFrom": "{\"id\":\"4e56bdc3-b3e8-4d40-a83d-b426014ff97c\",\"countdownPeriod\":7200,\"createdAt\":{\"_seconds\":1607855151,\"_nanoseconds\":626000000},\"quietEndingPeriod\":3600,\"updatedAt\":{\"_seconds\":1607862600,\"_nanoseconds\":307000000},\"type\":\"join\",\"state\":\"failed\",\"votes\":[],\"commonId\":\"21fc3489-5a80-44c5-bb59-cd8bea165b3d\",\"description\":{\"links\":[],\"description\":\"Hellos \"},\"join\":{\"funding\":20000,\"payments\":[],\"cardId\":\"ed436bdc-dd4f-41b6-93f9-d7c9143a72c4\",\"fundingType\":\"monthly\"},\"proposerId\":\"11j4NvvZ4kMRf4BFBUHdbRiXKMp1\",\"votesFor\":0,\"votesAgainst\":0}" + }, + { + "id": "4fba5156-1356-45e5-a645-668812405b2f", + "createdAt": "2021-05-18T08:40:19.689Z", + "updatedAt": "2021-05-18T08:40:19.691Z", + "expiresAt": "2021-03-12T05:38:18.755Z", + "title": null, + "description": "Que ", + "links": [], + "files": [], + "images": [], + "ipAddress": "178.120.66.122", + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 2, + "votesAgainst": 0, + "joinId": "4fba5156-1356-45e5-a645-668812405b2f", + "fundingId": null, + "userId": "2HM9WnVvr9aDYbckjCo4cIDjncY2", + "commonId": "c45d25f6-d40e-4336-93ac-2274a3f51b1e", + "commonMemberId": "1a874900-8d20-4d7a-bab8-695be56964ba", + "importedFrom": "{\"state\":\"passed\",\"proposerId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\",\"votesFor\":2,\"paymentState\":\"confirmed\",\"createdAt\":{\"_seconds\":1615469898,\"_nanoseconds\":755000000},\"countdownPeriod\":57600,\"type\":\"join\",\"description\":{\"description\":\"Que \",\"links\":[]},\"id\":\"4fba5156-1356-45e5-a645-668812405b2f\",\"votesAgainst\":0,\"commonId\":\"c45d25f6-d40e-4336-93ac-2274a3f51b1e\",\"updatedAt\":{\"_seconds\":1615477972,\"_nanoseconds\":101000000},\"quietEndingPeriod\":3600,\"join\":{\"fundingType\":\"monthly\",\"ip\":\"178.120.66.122\",\"cardId\":\"2d0603bb-ca88-4a4c-b5e6-74a63426032b\",\"payments\":[],\"funding\":500},\"votes\":[{\"voterId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"voteId\":\"fee38f51-67b8-4b11-a92b-d171ecb7b898\",\"voteOutcome\":\"approved\"},{\"voterId\":\"WKODFO6A3VMqWLYE2rrmrSGRrKF2\",\"voteOutcome\":\"approved\",\"voteId\":\"d478e221-7dc9-44ec-b89a-231808fc80f8\"}]}" + }, + { + "id": "51d095f0-9655-4e18-a94a-2bbc4ca5aa93", + "createdAt": "2021-05-18T08:40:19.691Z", + "updatedAt": "2021-05-18T08:40:19.692Z", + "expiresAt": "2021-03-12T00:28:06.377Z", + "title": null, + "description": "Kali\n", + "links": [], + "files": [], + "images": [], + "ipAddress": "178.120.66.122", + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 1, + "joinId": "51d095f0-9655-4e18-a94a-2bbc4ca5aa93", + "fundingId": null, + "userId": "2HM9WnVvr9aDYbckjCo4cIDjncY2", + "commonId": "3b62150c-b978-4c4f-9bb3-3b39f04485d2", + "commonMemberId": null, + "importedFrom": "{\"id\":\"51d095f0-9655-4e18-a94a-2bbc4ca5aa93\",\"votesFor\":0,\"type\":\"join\",\"createdAt\":{\"_seconds\":1615451286,\"_nanoseconds\":377000000},\"commonId\":\"3b62150c-b978-4c4f-9bb3-3b39f04485d2\",\"join\":{\"payments\":[],\"funding\":300,\"fundingType\":\"one-time\",\"ip\":\"178.120.66.122\",\"cardId\":\"c77c21ce-dd4b-47c3-b236-0427921ad393\"},\"description\":{\"description\":\"Kali\\n\",\"links\":[]},\"votes\":[{\"voteId\":\"c0ab4b24-a4e4-4673-8b45-96a860a4d7c5\",\"voteOutcome\":\"rejected\",\"voterId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\"}],\"quietEndingPeriod\":3600,\"countdownPeriod\":57600,\"votesAgainst\":1,\"state\":\"failed\",\"updatedAt\":{\"_seconds\":1615458241,\"_nanoseconds\":662000000},\"proposerId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\"}" + }, + { + "id": "52417e4b-cf96-4d52-8ea3-2e85d590085b", + "createdAt": "2021-05-18T08:40:19.693Z", + "updatedAt": "2021-05-18T08:40:19.694Z", + "expiresAt": "2021-02-08T03:20:20.264Z", + "title": null, + "description": "12", + "links": [ + { + "url": "https://www.volvocars.com/il/cars/lp?site=google&lp=volvo.brand&utm_source=google&utm_campaign=volvo_brand&AgId=%5Badgroup%5D&utm_term=volvo&AdPos=&utm_content=gs_434894081167&device=m&GeoLoc=1008002&utm_medium=cpc&ToolName=gs&gclid=EAIaIQobChMIz7C_m6D_6wIVZbR3Ch2POwFPEAAYASAAEgKyxvD_BwE&gclsrc=aw.ds", + "title": "12" + } + ], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "52417e4b-cf96-4d52-8ea3-2e85d590085b", + "fundingId": null, + "userId": "b0Kxsd0x4OMLeOlDnheysBz5THo1", + "commonId": "04c837a8-1f63-4e37-9d22-5d8236a45880", + "commonMemberId": null, + "importedFrom": "{\"votesFor\":0,\"votesAgainst\":0,\"description\":{\"description\":\"12\",\"links\":[{\"value\":\"https://www.volvocars.com/il/cars/lp?site=google&lp=volvo.brand&utm_source=google&utm_campaign=volvo_brand&AgId=%5Badgroup%5D&utm_term=volvo&AdPos=&utm_content=gs_434894081167&device=m&GeoLoc=1008002&utm_medium=cpc&ToolName=gs&gclid=EAIaIQobChMIz7C_m6D_6wIVZbR3Ch2POwFPEAAYASAAEgKyxvD_BwE&gclsrc=aw.ds\",\"title\":\"12\"}]},\"type\":\"join\",\"countdownPeriod\":57600,\"id\":\"52417e4b-cf96-4d52-8ea3-2e85d590085b\",\"commonId\":\"04c837a8-1f63-4e37-9d22-5d8236a45880\",\"createdAt\":{\"_seconds\":1612696820,\"_nanoseconds\":264000000},\"votes\":[],\"quietEndingPeriod\":3600,\"join\":{\"fundingType\":\"one-time\",\"funding\":2300,\"cardId\":\"6ce969b5-241c-4154-a25e-0e49f840b34a\",\"payments\":[]},\"proposerId\":\"b0Kxsd0x4OMLeOlDnheysBz5THo1\",\"updatedAt\":{\"_seconds\":1612754700,\"_nanoseconds\":648000000},\"state\":\"failed\"}" + }, + { + "id": "55a1b0dc-7d46-4a97-b1a0-9602840f71e8", + "createdAt": "2021-05-18T08:40:19.694Z", + "updatedAt": "2021-05-18T08:40:19.696Z", + "expiresAt": "2020-12-30T21:55:42.350Z", + "title": null, + "description": "Bob ", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "55a1b0dc-7d46-4a97-b1a0-9602840f71e8", + "fundingId": null, + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "207b484d-a0cd-4b8d-bd0c-08bb1167f15b", + "commonMemberId": null, + "importedFrom": "{\"description\":{\"description\":\"Bob \",\"links\":[]},\"updatedAt\":{\"_seconds\":1609365600,\"_nanoseconds\":957000000},\"commonId\":\"207b484d-a0cd-4b8d-bd0c-08bb1167f15b\",\"quietEndingPeriod\":3600,\"votesFor\":0,\"createdAt\":{\"_seconds\":1609307742,\"_nanoseconds\":350000000},\"id\":\"55a1b0dc-7d46-4a97-b1a0-9602840f71e8\",\"state\":\"failed\",\"type\":\"join\",\"votesAgainst\":0,\"votes\":[],\"countdownPeriod\":57600,\"proposerId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"join\":{\"funding\":50000,\"fundingType\":\"monthly\",\"cardId\":\"9da72721-c7e5-4f3e-be23-757baecc2627\",\"payments\":[]}}" + }, + { + "id": "5676b7be-5950-4a65-bbd6-3f1cf1be4351", + "createdAt": "2021-05-18T08:40:19.696Z", + "updatedAt": "2021-05-18T08:40:19.697Z", + "expiresAt": "2020-12-17T12:28:29.998Z", + "title": null, + "description": "sddssdsd", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 1, + "votesAgainst": 0, + "joinId": "5676b7be-5950-4a65-bbd6-3f1cf1be4351", + "fundingId": null, + "userId": "7a3rK55ZsdShvRd27sntddN2v7H2", + "commonId": "505ca135-36e4-4ea6-8978-0f6fb6a7f975", + "commonMemberId": null, + "importedFrom": "{\"votesAgainst\":0,\"join\":{\"cardId\":\"a82c3afd-5e49-446e-96b2-5dd5159404a5\",\"payments\":[],\"funding\":500},\"description\":{\"links\":[],\"description\":\"sddssdsd\"},\"type\":\"join\",\"votesFor\":1,\"id\":\"5676b7be-5950-4a65-bbd6-3f1cf1be4351\",\"commonId\":\"505ca135-36e4-4ea6-8978-0f6fb6a7f975\",\"countdownPeriod\":7200,\"quietEndingPeriod\":3600,\"updatedAt\":{\"_seconds\":1608200946,\"_nanoseconds\":716000000},\"state\":\"passed\",\"proposerId\":\"7a3rK55ZsdShvRd27sntddN2v7H2\",\"createdAt\":{\"_seconds\":1608200909,\"_nanoseconds\":998000000},\"votes\":[{\"voteId\":\"42a01d54-e2fd-4668-b198-e235da6f6b53\",\"voteOutcome\":\"approved\",\"voterId\":\"h59V0do13qhpeH9xDyoLaCZucTm1\"}]}" + }, + { + "id": "56fbd5da-e406-43a8-a57f-ddfbc3c6a23c", + "createdAt": "2021-05-18T08:40:19.698Z", + "updatedAt": "2021-05-18T08:40:19.700Z", + "expiresAt": "2021-01-29T23:28:05.859Z", + "title": null, + "description": "Hop", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 1, + "votesAgainst": 0, + "joinId": "56fbd5da-e406-43a8-a57f-ddfbc3c6a23c", + "fundingId": null, + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "commonId": "5c065a47-00f1-4279-acd1-4d3dac8638ef", + "commonMemberId": "8feab0dd-f967-4776-9f96-89b411b28996", + "importedFrom": "{\"id\":\"56fbd5da-e406-43a8-a57f-ddfbc3c6a23c\",\"votes\":[{\"voteOutcome\":\"approved\",\"voteId\":\"764d9fa1-f60d-4c73-90c8-5d7b87596f1e\",\"voterId\":\"Xh4xoIGHhgOhxz1S5AJkaXCBT8K2\"}],\"votesFor\":1,\"quietEndingPeriod\":3600,\"countdownPeriod\":57600,\"commonId\":\"5c065a47-00f1-4279-acd1-4d3dac8638ef\",\"createdAt\":{\"_seconds\":1611905285,\"_nanoseconds\":859000000},\"updatedAt\":{\"_seconds\":1611905367,\"_nanoseconds\":440000000},\"votesAgainst\":0,\"state\":\"passed\",\"description\":{\"links\":[],\"description\":\"Hop\"},\"paymentState\":\"confirmed\",\"join\":{\"payments\":[\"469e840d-868a-4395-b9f2-4d87399430ba\"],\"cardId\":\"1a3e7e34-01c5-4c1a-bf00-7cdba3b49f3e\",\"fundingType\":\"one-time\",\"funding\":56600},\"proposerId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"type\":\"join\"}" + }, + { + "id": "582685ac-a358-433f-932f-c570c6bdde9b", + "createdAt": "2021-05-18T08:40:19.702Z", + "updatedAt": "2021-05-18T08:40:19.703Z", + "expiresAt": "2021-03-19T00:34:38.540Z", + "title": null, + "description": "111", + "links": [], + "files": [], + "images": [], + "ipAddress": "178.120.61.209", + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 1, + "votesAgainst": 0, + "joinId": "582685ac-a358-433f-932f-c570c6bdde9b", + "fundingId": null, + "userId": "Wz0ZgOvKnafrjLDeAeWqx182uBq2", + "commonId": "505ca135-36e4-4ea6-8978-0f6fb6a7f975", + "commonMemberId": null, + "importedFrom": "{\"votesFor\":1,\"commonId\":\"505ca135-36e4-4ea6-8978-0f6fb6a7f975\",\"description\":{\"links\":[],\"description\":\"111\"},\"id\":\"582685ac-a358-433f-932f-c570c6bdde9b\",\"quietEndingPeriod\":3600,\"votesAgainst\":0,\"join\":{\"ip\":\"178.120.61.209\",\"funding\":500,\"cardId\":\"ccf98595-b08e-413f-a14d-9848e11c3b5f\",\"payments\":[]},\"type\":\"join\",\"votes\":[{\"voterId\":\"h59V0do13qhpeH9xDyoLaCZucTm1\",\"voteOutcome\":\"approved\",\"voteId\":\"b49416d3-dd4c-4af6-afdb-869e975ebb46\"}],\"updatedAt\":{\"_seconds\":1616064519,\"_nanoseconds\":631000000},\"createdAt\":{\"_seconds\":1616056478,\"_nanoseconds\":540000000},\"countdownPeriod\":57600,\"proposerId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"state\":\"passed\"}" + }, + { + "id": "5ace44ff-767e-45f4-9ac0-75e091aaa104", + "createdAt": "2021-05-18T08:40:19.704Z", + "updatedAt": "2021-05-18T08:40:19.705Z", + "expiresAt": "2021-01-27T07:12:47.165Z", + "title": null, + "description": "Intro", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "5ace44ff-767e-45f4-9ac0-75e091aaa104", + "fundingId": null, + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "commonId": "5c065a47-00f1-4279-acd1-4d3dac8638ef", + "commonMemberId": "8feab0dd-f967-4776-9f96-89b411b28996", + "importedFrom": "{\"countdownPeriod\":57600,\"votes\":[],\"votesFor\":0,\"quietEndingPeriod\":3600,\"createdAt\":{\"_seconds\":1611673967,\"_nanoseconds\":165000000},\"updatedAt\":{\"_seconds\":1611731700,\"_nanoseconds\":514000000},\"state\":\"failed\",\"join\":{\"fundingType\":\"one-time\",\"funding\":56600,\"cardId\":\"50d5d7c5-6a64-4876-bb4a-56e5abfb6f94\",\"payments\":[]},\"commonId\":\"5c065a47-00f1-4279-acd1-4d3dac8638ef\",\"description\":{\"links\":[],\"description\":\"Intro\"},\"id\":\"5ace44ff-767e-45f4-9ac0-75e091aaa104\",\"votesAgainst\":0,\"type\":\"join\",\"proposerId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\"}" + }, + { + "id": "5e7f1dfb-9582-453b-a5c5-a167bcf6ea8e", + "createdAt": "2021-05-18T08:40:19.708Z", + "updatedAt": "2021-05-18T08:40:19.709Z", + "expiresAt": "2021-01-28T07:59:02.298Z", + "title": null, + "description": "מימי", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 1, + "votesAgainst": 0, + "joinId": "5e7f1dfb-9582-453b-a5c5-a167bcf6ea8e", + "fundingId": null, + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "46749aca-ec3a-49f3-82e2-c3d0c977bc05", + "commonMemberId": "d11e8bee-4a27-4e76-ac7c-7dc111bd2590", + "importedFrom": "{\"createdAt\":{\"_seconds\":1611763142,\"_nanoseconds\":298000000},\"countdownPeriod\":57600,\"votes\":[{\"voteOutcome\":\"approved\",\"voterId\":\"Xh4xoIGHhgOhxz1S5AJkaXCBT8K2\",\"voteId\":\"ec9df3ea-559c-4729-b470-515c8116c129\"}],\"updatedAt\":{\"_seconds\":1611764153,\"_nanoseconds\":405000000},\"commonId\":\"46749aca-ec3a-49f3-82e2-c3d0c977bc05\",\"type\":\"join\",\"quietEndingPeriod\":3600,\"votesFor\":1,\"proposerId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"description\":{\"description\":\"מימי\",\"links\":[]},\"votesAgainst\":0,\"id\":\"5e7f1dfb-9582-453b-a5c5-a167bcf6ea8e\",\"state\":\"passed\",\"paymentState\":\"confirmed\",\"join\":{\"funding\":20000,\"payments\":[],\"fundingType\":\"one-time\",\"cardId\":\"ddfbfe2e-5519-48c2-ad41-53d9c5f9da41\"}}" + }, + { + "id": "5ef45913-429b-4af9-8d04-4fea6c950d52", + "createdAt": "2021-05-18T08:40:19.710Z", + "updatedAt": "2021-05-18T08:40:19.711Z", + "expiresAt": "2020-12-25T02:06:25.542Z", + "title": null, + "description": "Hello", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 1, + "votesAgainst": 0, + "joinId": "5ef45913-429b-4af9-8d04-4fea6c950d52", + "fundingId": null, + "userId": "Sxv19oCvKAZq2vntJdYCTYSpWWN2", + "commonId": "1d85812f-5a59-49bf-bb0d-c6579597bb0d", + "commonMemberId": "de795c76-f0b7-4125-bc00-f544ec9b6aaa", + "importedFrom": "{\"updatedAt\":{\"_seconds\":1608804495,\"_nanoseconds\":722000000},\"commonId\":\"1d85812f-5a59-49bf-bb0d-c6579597bb0d\",\"createdAt\":{\"_seconds\":1608804385,\"_nanoseconds\":542000000},\"id\":\"5ef45913-429b-4af9-8d04-4fea6c950d52\",\"join\":{\"payments\":[],\"funding\":3000,\"cardId\":\"707e4ba4-7520-498d-b077-b2db650200b9\",\"fundingType\":\"one-time\"},\"votesFor\":1,\"description\":{\"links\":[],\"description\":\"Hello\"},\"votesAgainst\":0,\"quietEndingPeriod\":3600,\"votes\":[{\"voterId\":\"b0Kxsd0x4OMLeOlDnheysBz5THo1\",\"voteOutcome\":\"approved\",\"voteId\":\"0e7c893f-ecd0-4e87-9b22-d62b957b8613\"}],\"state\":\"passed\",\"paymentState\":\"confirmed\",\"countdownPeriod\":57600,\"type\":\"join\",\"proposerId\":\"Sxv19oCvKAZq2vntJdYCTYSpWWN2\"}" + }, + { + "id": "5f007512-ba23-4f4e-9c18-3920a7538ae0", + "createdAt": "2021-05-18T08:40:19.711Z", + "updatedAt": "2021-05-18T08:40:19.712Z", + "expiresAt": "2021-03-27T05:26:21.302Z", + "title": null, + "description": "1", + "links": [], + "files": [], + "images": [], + "ipAddress": "178.120.64.230", + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "5f007512-ba23-4f4e-9c18-3920a7538ae0", + "fundingId": null, + "userId": "5Bi1KZGIYzW5UIljHgBlO98NXaI2", + "commonId": "6f88e880-1ed8-4946-8326-d285239d293b", + "commonMemberId": null, + "importedFrom": "{\"join\":{\"cardId\":\"a03a98e8-f816-42df-a3aa-e4a43896a041\",\"payments\":[],\"fundingType\":\"one-time\",\"funding\":400,\"ip\":\"178.120.64.230\"},\"id\":\"5f007512-ba23-4f4e-9c18-3920a7538ae0\",\"votes\":[],\"description\":{\"links\":[],\"description\":\"1\"},\"quietEndingPeriod\":3600,\"state\":\"failed\",\"moderation\":{\"moderatorNote\":\"\",\"updatedAt\":{\"_seconds\":1616765251,\"_nanoseconds\":726000000},\"reporter\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"reasons\":[\"Nudity\"],\"moderator\":\"\",\"flag\":\"reported\"},\"type\":\"join\",\"updatedAt\":{\"_seconds\":1616823002,\"_nanoseconds\":104000000},\"countdownPeriod\":57600,\"createdAt\":{\"_seconds\":1616765181,\"_nanoseconds\":302000000},\"commonId\":\"6f88e880-1ed8-4946-8326-d285239d293b\",\"proposerId\":\"5Bi1KZGIYzW5UIljHgBlO98NXaI2\",\"votesFor\":0,\"votesAgainst\":0}" + }, + { + "id": "5f690056-cedd-4e9c-976e-5ef4354100e7", + "createdAt": "2021-05-18T08:40:19.712Z", + "updatedAt": "2021-05-18T08:40:19.714Z", + "expiresAt": "2021-02-19T03:38:01.772Z", + "title": null, + "description": "Bb", + "links": [], + "files": [], + "images": [], + "ipAddress": "87.71.109.34", + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 1, + "joinId": "5f690056-cedd-4e9c-976e-5ef4354100e7", + "fundingId": null, + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "commonId": "2a5bfc7d-9f50-4ff8-8c00-835e4b5f7b67", + "commonMemberId": null, + "importedFrom": "{\"quietEndingPeriod\":3600,\"createdAt\":{\"_seconds\":1613648281,\"_nanoseconds\":772000000},\"join\":{\"fundingType\":\"monthly\",\"cardId\":\"ee509c32-eabe-4f12-b7ba-4903e08c0510\",\"funding\":2500,\"ip\":\"87.71.109.34\",\"payments\":[]},\"type\":\"join\",\"votesAgainst\":1,\"votes\":[{\"voterId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"voteOutcome\":\"rejected\",\"voteId\":\"09431663-5d41-41c8-9815-590128d13697\"}],\"state\":\"failed\",\"description\":{\"links\":[],\"description\":\"Bb\"},\"id\":\"5f690056-cedd-4e9c-976e-5ef4354100e7\",\"updatedAt\":{\"_seconds\":1613648398,\"_nanoseconds\":709000000},\"countdownPeriod\":57600,\"commonId\":\"2a5bfc7d-9f50-4ff8-8c00-835e4b5f7b67\",\"votesFor\":0,\"proposerId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\"}" + }, + { + "id": "60abfdeb-52a3-4a7d-842c-f3107c2e3f08", + "createdAt": "2021-05-18T08:40:19.802Z", + "updatedAt": "2021-05-18T08:40:19.803Z", + "expiresAt": "2020-12-24T15:06:23.979Z", + "title": null, + "description": "Usuusdhxhx", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "60abfdeb-52a3-4a7d-842c-f3107c2e3f08", + "fundingId": null, + "userId": "DAawzIgIIifv6GfzdDJRJ1kZl7J2", + "commonId": "548ca0ab-e29c-44bb-ba2c-684c4d86d591", + "commonMemberId": null, + "importedFrom": "{\"votesAgainst\":0,\"countdownPeriod\":57600,\"proposerId\":\"DAawzIgIIifv6GfzdDJRJ1kZl7J2\",\"votes\":[],\"updatedAt\":{\"_seconds\":1608822600,\"_nanoseconds\":940000000},\"join\":{\"fundingType\":\"one-time\",\"payments\":[],\"funding\":80000,\"cardId\":\"258ab551-c7aa-4dcd-8d38-576781a198f5\"},\"id\":\"60abfdeb-52a3-4a7d-842c-f3107c2e3f08\",\"votesFor\":0,\"type\":\"join\",\"quietEndingPeriod\":3600,\"createdAt\":{\"_seconds\":1608764783,\"_nanoseconds\":979000000},\"state\":\"failed\",\"commonId\":\"548ca0ab-e29c-44bb-ba2c-684c4d86d591\",\"description\":{\"links\":[],\"description\":\"Usuusdhxhx\"}}" + }, + { + "id": "60cc3c67-e7fe-4285-a366-10237479654f", + "createdAt": "2021-05-18T08:40:19.804Z", + "updatedAt": "2021-05-18T08:40:19.805Z", + "expiresAt": "2021-04-01T07:21:14.506Z", + "title": null, + "description": "Hi ", + "links": [], + "files": [], + "images": [], + "ipAddress": "87.71.16.245", + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "60cc3c67-e7fe-4285-a366-10237479654f", + "fundingId": null, + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "50615c2f-1754-4ca0-b05b-8a3bbe026d43", + "commonMemberId": null, + "importedFrom": "{\"createdAt\":{\"_seconds\":1617204074,\"_nanoseconds\":506000000},\"quietEndingPeriod\":3600,\"proposerId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"votes\":[],\"type\":\"join\",\"countdownPeriod\":57600,\"votesAgainst\":0,\"votesFor\":0,\"id\":\"60cc3c67-e7fe-4285-a366-10237479654f\",\"state\":\"failed\",\"updatedAt\":{\"_seconds\":1617261902,\"_nanoseconds\":202000000},\"join\":{\"payments\":[],\"funding\":3000,\"ip\":\"87.71.16.245\",\"cardId\":\"14830c05-9828-4e91-bfb6-28b6b6e43e35\",\"fundingType\":\"one-time\"},\"commonId\":\"50615c2f-1754-4ca0-b05b-8a3bbe026d43\",\"moderation\":{\"updatedAt\":{\"_seconds\":1617204598,\"_nanoseconds\":612000000},\"moderatorNote\":\"\",\"flag\":\"reported\",\"reasons\":[\"Spam\",\"Violence\"],\"moderator\":\"\",\"reporter\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\"},\"description\":{\"description\":\"Hi \",\"links\":[]}}" + }, + { + "id": "60f88d67-2ad9-4c05-8571-714094c0a981", + "createdAt": "2021-05-18T08:40:19.806Z", + "updatedAt": "2021-05-18T08:40:19.807Z", + "expiresAt": "2021-03-12T02:18:22.952Z", + "title": null, + "description": "Yaniv", + "links": [], + "files": [], + "images": [], + "ipAddress": "87.71.10.6", + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 2, + "votesAgainst": 0, + "joinId": "60f88d67-2ad9-4c05-8571-714094c0a981", + "fundingId": null, + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "commonId": "858836dc-776d-4b5d-a999-4cc154f81e11", + "commonMemberId": "cdfd5b93-6075-4a26-a6b0-c875232837ea", + "importedFrom": "{\"updatedAt\":{\"_seconds\":1615458248,\"_nanoseconds\":329000000},\"join\":{\"payments\":[\"0ba99148-25e6-42c7-8e67-b901dc4805da\"],\"cardId\":\"57d34321-2abc-4982-a86a-a60719133c09\",\"fundingType\":\"one-time\",\"ip\":\"87.71.10.6\",\"funding\":500},\"quietEndingPeriod\":3600,\"id\":\"60f88d67-2ad9-4c05-8571-714094c0a981\",\"createdAt\":{\"_seconds\":1615457902,\"_nanoseconds\":952000000},\"votes\":[{\"voteOutcome\":\"approved\",\"voterId\":\"tPfZmRJnQjdnXIlgMZyfphEat3n2\",\"voteId\":\"aab57d0f-e69b-4940-a0c9-9f5a34be0b1c\"},{\"voterId\":\"11j4NvvZ4kMRf4BFBUHdbRiXKMp1\",\"voteId\":\"4495dc19-08a1-423e-9cd9-6b23d96536da\",\"voteOutcome\":\"approved\"}],\"commonId\":\"858836dc-776d-4b5d-a999-4cc154f81e11\",\"proposerId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"votesFor\":2,\"type\":\"join\",\"countdownPeriod\":57600,\"description\":{\"description\":\"Yaniv\",\"links\":[]},\"votesAgainst\":0,\"state\":\"passed\",\"paymentState\":\"confirmed\"}" + }, + { + "id": "61a13148-5eb8-4c4a-9e3b-4f5784247f18", + "createdAt": "2021-05-18T08:40:19.808Z", + "updatedAt": "2021-05-18T08:40:19.809Z", + "expiresAt": "2020-12-21T18:02:17.451Z", + "title": null, + "description": "Hello", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "61a13148-5eb8-4c4a-9e3b-4f5784247f18", + "fundingId": null, + "userId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1", + "commonId": "02314122-6b05-4563-a8ce-4a10e97b72da", + "commonMemberId": null, + "importedFrom": "{\"type\":\"join\",\"votesAgainst\":0,\"state\":\"failed\",\"createdAt\":{\"_seconds\":1608566537,\"_nanoseconds\":451000000},\"countdownPeriod\":7200,\"updatedAt\":{\"_seconds\":1608573900,\"_nanoseconds\":891000000},\"description\":{\"links\":[],\"description\":\"Hello\"},\"quietEndingPeriod\":3600,\"proposerId\":\"11j4NvvZ4kMRf4BFBUHdbRiXKMp1\",\"votes\":[],\"join\":{\"cardId\":\"58f49768-c13b-4ced-b3ec-d112c298bb8d\",\"payments\":[],\"fundingType\":\"one-time\",\"funding\":2400},\"commonId\":\"02314122-6b05-4563-a8ce-4a10e97b72da\",\"id\":\"61a13148-5eb8-4c4a-9e3b-4f5784247f18\",\"votesFor\":0}" + }, + { + "id": "62051307-cc4a-4ed9-91d8-7141c2eb8fd9", + "createdAt": "2021-05-18T08:40:19.810Z", + "updatedAt": "2021-05-18T08:40:19.811Z", + "expiresAt": "2021-04-21T23:27:21.141Z", + "title": null, + "description": "Shush", + "links": [], + "files": [], + "images": [], + "ipAddress": "178.120.3.148", + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 1, + "joinId": "62051307-cc4a-4ed9-91d8-7141c2eb8fd9", + "fundingId": null, + "userId": "2HM9WnVvr9aDYbckjCo4cIDjncY2", + "commonId": "c7db9d37-813e-42a2-8e63-8e8c9260c534", + "commonMemberId": null, + "importedFrom": "{\"votes\":[{\"voteId\":\"7af3e73f-9235-440e-b5bb-91869255d171\",\"voterId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"voteOutcome\":\"rejected\"}],\"proposerId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\",\"quietEndingPeriod\":3600,\"createdAt\":{\"_seconds\":1618990041,\"_nanoseconds\":140999000},\"description\":{\"description\":\"Shush\",\"links\":[]},\"id\":\"62051307-cc4a-4ed9-91d8-7141c2eb8fd9\",\"votesAgainst\":1,\"type\":\"join\",\"join\":{\"fundingType\":\"one-time\",\"funding\":560,\"cardId\":\"7f17a5ed-e4b9-4e4b-9ca9-10a360dc8505\",\"ip\":\"178.120.3.148\",\"payments\":[]},\"votesFor\":0,\"state\":\"failed\",\"commonId\":\"c7db9d37-813e-42a2-8e63-8e8c9260c534\",\"updatedAt\":{\"_seconds\":1618998028,\"_nanoseconds\":947000000},\"countdownPeriod\":57600}" + }, + { + "id": "629bf4b2-7a49-4dd7-bb4a-d25a7a7c456c", + "createdAt": "2021-05-18T08:40:19.812Z", + "updatedAt": "2021-05-18T08:40:19.813Z", + "expiresAt": "2021-03-11T09:26:58.812Z", + "title": null, + "description": "Hi", + "links": [], + "files": [], + "images": [], + "ipAddress": "178.120.66.122", + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 1, + "votesAgainst": 0, + "joinId": "629bf4b2-7a49-4dd7-bb4a-d25a7a7c456c", + "fundingId": null, + "userId": "2HM9WnVvr9aDYbckjCo4cIDjncY2", + "commonId": "02314122-6b05-4563-a8ce-4a10e97b72da", + "commonMemberId": "95dba28a-b3e2-4971-ae49-24d3424153a3", + "importedFrom": "{\"type\":\"join\",\"votesFor\":1,\"votesAgainst\":0,\"join\":{\"payments\":[\"4324c344-5c35-4373-9020-195800ad4875\"],\"ip\":\"178.120.66.122\",\"funding\":2400,\"cardId\":\"c5678569-d2ba-49d5-bb47-e41da3650589\",\"fundingType\":\"one-time\"},\"id\":\"629bf4b2-7a49-4dd7-bb4a-d25a7a7c456c\",\"votes\":[{\"voteId\":\"99825223-1a93-4249-9b20-eecfeba50df9\",\"voteOutcome\":\"approved\",\"voterId\":\"P21SZrJ6z5YjyF8WFaHv5eRsoFo1\"}],\"updatedAt\":{\"_seconds\":1615455004,\"_nanoseconds\":458000000},\"paymentState\":\"confirmed\",\"quietEndingPeriod\":3600,\"commonId\":\"02314122-6b05-4563-a8ce-4a10e97b72da\",\"createdAt\":{\"_seconds\":1615397218,\"_nanoseconds\":812000000},\"proposerId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\",\"state\":\"passed\",\"description\":{\"description\":\"Hi\",\"links\":[]},\"countdownPeriod\":57600}" + }, + { + "id": "6325563a-a02e-4241-8995-1a74325fa41b", + "createdAt": "2021-05-18T08:40:19.814Z", + "updatedAt": "2021-05-18T08:40:19.815Z", + "expiresAt": "2021-03-03T01:04:39.129Z", + "title": null, + "description": "7tghh", + "links": [], + "files": [], + "images": [], + "ipAddress": "178.120.63.174", + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 2, + "joinId": "6325563a-a02e-4241-8995-1a74325fa41b", + "fundingId": null, + "userId": "Wz0ZgOvKnafrjLDeAeWqx182uBq2", + "commonId": "e87ef1d5-7802-4f64-aa71-d605ddde17cb", + "commonMemberId": null, + "importedFrom": "{\"proposerId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"quietEndingPeriod\":3600,\"commonId\":\"e87ef1d5-7802-4f64-aa71-d605ddde17cb\",\"createdAt\":{\"_seconds\":1614675879,\"_nanoseconds\":129000000},\"votes\":[{\"voteId\":\"b9f83021-4acc-4430-8a11-f805f6fef3ed\",\"voterId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\",\"voteOutcome\":\"rejected\"},{\"voterId\":\"5Bi1KZGIYzW5UIljHgBlO98NXaI2\",\"voteOutcome\":\"rejected\",\"voteId\":\"4afa11bc-9e31-4bfc-83d3-ca7b5fdf35ef\"}],\"type\":\"join\",\"votesAgainst\":2,\"votesFor\":0,\"description\":{\"description\":\"7tghh\",\"links\":[]},\"countdownPeriod\":57600,\"id\":\"6325563a-a02e-4241-8995-1a74325fa41b\",\"join\":{\"funding\":500,\"payments\":[],\"cardId\":\"aebc5ee1-a5bc-4e12-be1d-35dd72f43003\",\"fundingType\":\"monthly\",\"ip\":\"178.120.63.174\"},\"updatedAt\":{\"_seconds\":1614676076,\"_nanoseconds\":493000000},\"state\":\"failed\"}" + }, + { + "id": "641af90c-a0aa-469a-af01-761fcf5efc0f", + "createdAt": "2021-05-18T08:40:19.815Z", + "updatedAt": "2021-05-18T08:40:19.816Z", + "expiresAt": "2021-03-11T01:18:54.287Z", + "title": null, + "description": "Go", + "links": [], + "files": [], + "images": [], + "ipAddress": "87.71.10.6", + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 1, + "votesAgainst": 0, + "joinId": "641af90c-a0aa-469a-af01-761fcf5efc0f", + "fundingId": null, + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "commonId": "120b0708-dc65-42d2-95e6-cb2efa89bbf5", + "commonMemberId": "18d41abb-43e7-4117-90b6-b21238b4ddb2", + "importedFrom": "{\"paymentState\":\"confirmed\",\"createdAt\":{\"_seconds\":1615367934,\"_nanoseconds\":287000000},\"id\":\"641af90c-a0aa-469a-af01-761fcf5efc0f\",\"updatedAt\":{\"_seconds\":1615379505,\"_nanoseconds\":194000000},\"quietEndingPeriod\":3600,\"votesFor\":1,\"type\":\"join\",\"commonId\":\"120b0708-dc65-42d2-95e6-cb2efa89bbf5\",\"votes\":[{\"voteId\":\"39fad6db-537a-414b-9e36-5eae073c28fd\",\"voteOutcome\":\"approved\",\"voterId\":\"Sxv19oCvKAZq2vntJdYCTYSpWWN2\"}],\"join\":{\"ip\":\"87.71.10.6\",\"cardId\":\"b4f0c75b-9e9e-427d-bfa5-76b1db785cc7\",\"payments\":[\"a1339d03-6819-45b0-bec0-9a6ad71443a1\"],\"fundingType\":\"one-time\",\"funding\":500},\"description\":{\"links\":[],\"description\":\"Go\"},\"countdownPeriod\":57600,\"votesAgainst\":0,\"state\":\"passed\",\"proposerId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\"}" + }, + { + "id": "643e112b-8f62-4fad-8e8b-37990a4368f0", + "createdAt": "2021-05-18T08:40:19.817Z", + "updatedAt": "2021-05-18T08:40:19.819Z", + "expiresAt": "2021-04-21T23:11:57.213Z", + "title": null, + "description": "צריך לדבר", + "links": [], + "files": [], + "images": [], + "ipAddress": "147.161.9.51", + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "643e112b-8f62-4fad-8e8b-37990a4368f0", + "fundingId": null, + "userId": "P21SZrJ6z5YjyF8WFaHv5eRsoFo1", + "commonId": "05e4c4a2-6957-42ea-bc49-073a307313d8", + "commonMemberId": null, + "importedFrom": "{\"createdAt\":{\"_seconds\":1618989117,\"_nanoseconds\":212999000},\"votesFor\":0,\"updatedAt\":{\"_seconds\":1619046901,\"_nanoseconds\":446000000},\"countdownPeriod\":57600,\"quietEndingPeriod\":3600,\"proposerId\":\"P21SZrJ6z5YjyF8WFaHv5eRsoFo1\",\"commonId\":\"05e4c4a2-6957-42ea-bc49-073a307313d8\",\"votes\":[],\"join\":{\"cardId\":\"2f2a93ba-2b91-423b-9db6-2077541b0668\",\"payments\":[],\"ip\":\"147.161.9.51\",\"funding\":30000,\"fundingType\":\"one-time\"},\"votesAgainst\":0,\"moderation\":{\"reporter\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"reasons\":[\"Spam\",\"Violence\",\"Harassment\"],\"moderator\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"updatedAt\":{\"_seconds\":1618989913,\"_nanoseconds\":574000000},\"moderatorNote\":\"Vv\",\"flag\":\"visible\"},\"description\":{\"links\":[],\"description\":\"צריך לדבר\"},\"state\":\"failed\",\"id\":\"643e112b-8f62-4fad-8e8b-37990a4368f0\",\"type\":\"join\"}" + }, + { + "id": "64ecdc5a-140e-4dc4-9189-5ea21f3dea09", + "createdAt": "2021-05-18T08:40:19.820Z", + "updatedAt": "2021-05-18T08:40:19.821Z", + "expiresAt": "2021-02-01T01:02:09.768Z", + "title": null, + "description": "Dhdh", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 1, + "joinId": "64ecdc5a-140e-4dc4-9189-5ea21f3dea09", + "fundingId": null, + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "ccf9e609-463e-4cd3-92ed-ff5d518cd94b", + "commonMemberId": null, + "importedFrom": "{\"commonId\":\"ccf9e609-463e-4cd3-92ed-ff5d518cd94b\",\"description\":{\"links\":[],\"description\":\"Dhdh\"},\"join\":{\"funding\":25000,\"fundingType\":\"one-time\",\"cardId\":\"368bd20d-3bd5-4ed9-86fb-6c84152ae5a0\",\"payments\":[]},\"state\":\"failed\",\"votes\":[{\"voteId\":\"96105dec-a908-4cc0-a2df-7abc26bb8ee4\",\"voteOutcome\":\"rejected\",\"voterId\":\"Xh4xoIGHhgOhxz1S5AJkaXCBT8K2\"}],\"proposerId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"createdAt\":{\"_seconds\":1612083729,\"_nanoseconds\":768000000},\"id\":\"64ecdc5a-140e-4dc4-9189-5ea21f3dea09\",\"votesAgainst\":1,\"type\":\"join\",\"countdownPeriod\":57600,\"votesFor\":0,\"quietEndingPeriod\":3600,\"updatedAt\":{\"_seconds\":1612085825,\"_nanoseconds\":288000000}}" + }, + { + "id": "6582d777-82eb-40c0-b15a-ef5ec03d06c3", + "createdAt": "2021-05-18T08:40:19.822Z", + "updatedAt": "2021-05-18T08:40:19.823Z", + "expiresAt": "2021-04-21T23:24:46.112Z", + "title": null, + "description": "Urgen", + "links": [], + "files": [], + "images": [], + "ipAddress": "178.120.3.148", + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "6582d777-82eb-40c0-b15a-ef5ec03d06c3", + "fundingId": null, + "userId": "2HM9WnVvr9aDYbckjCo4cIDjncY2", + "commonId": "ff456b6f-b289-4e35-b895-3d23e23eaf81", + "commonMemberId": null, + "importedFrom": "{\"id\":\"6582d777-82eb-40c0-b15a-ef5ec03d06c3\",\"votesAgainst\":0,\"state\":\"failed\",\"commonId\":\"ff456b6f-b289-4e35-b895-3d23e23eaf81\",\"type\":\"join\",\"createdAt\":{\"_seconds\":1618989886,\"_nanoseconds\":112000000},\"quietEndingPeriod\":3600,\"votesFor\":0,\"proposerId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\",\"countdownPeriod\":57600,\"votes\":[],\"join\":{\"cardId\":\"95a762a2-e592-4d78-8688-cf4c1231fbe0\",\"payments\":[],\"fundingType\":\"one-time\",\"funding\":14500,\"ip\":\"178.120.3.148\"},\"description\":{\"links\":[],\"description\":\"Urgen\"},\"updatedAt\":{\"_seconds\":1619047500,\"_nanoseconds\":239000000}}" + }, + { + "id": "6726e432-c4de-4276-940b-0b8eba9185f1", + "createdAt": "2021-05-18T08:40:19.824Z", + "updatedAt": "2021-05-18T08:40:19.825Z", + "expiresAt": "2020-12-31T05:02:06.659Z", + "title": null, + "description": "Non ", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 2, + "votesAgainst": 0, + "joinId": "6726e432-c4de-4276-940b-0b8eba9185f1", + "fundingId": null, + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "commonId": "3f7ea48d-594f-4a2c-88d7-d28012573964", + "commonMemberId": "65b9df07-d19a-4249-ad8d-058e80e3c07b", + "importedFrom": "{\"type\":\"join\",\"votes\":[{\"voteOutcome\":\"approved\",\"voteId\":\"c853f4cc-39dc-485a-b0c3-d4e14ed9184e\",\"voterId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\"},{\"voteOutcome\":\"approved\",\"voteId\":\"d757066b-015a-4531-8845-e84acd29c8e6\",\"voterId\":\"Xh4xoIGHhgOhxz1S5AJkaXCBT8K2\"}],\"proposerId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"votesAgainst\":0,\"countdownPeriod\":57600,\"state\":\"passed\",\"paymentState\":\"confirmed\",\"description\":{\"description\":\"Non \",\"links\":[]},\"quietEndingPeriod\":3600,\"commonId\":\"3f7ea48d-594f-4a2c-88d7-d28012573964\",\"updatedAt\":{\"_seconds\":1609333359,\"_nanoseconds\":656000000},\"votesFor\":2,\"id\":\"6726e432-c4de-4276-940b-0b8eba9185f1\",\"createdAt\":{\"_seconds\":1609333326,\"_nanoseconds\":659000000},\"join\":{\"funding\":6250,\"cardId\":\"402c805b-95c7-4674-920a-ef932dff425a\",\"fundingType\":\"one-time\",\"payments\":[]}}" + }, + { + "id": "683cd5e1-b05d-4d69-a76a-5730a636064c", + "createdAt": "2021-05-18T08:40:19.828Z", + "updatedAt": "2021-05-18T08:40:19.829Z", + "expiresAt": "2021-03-18T11:36:37.533Z", + "title": null, + "description": "Hey", + "links": [ + { + "url": "https://www.fb.com", + "title": "Link" + } + ], + "files": [], + "images": [], + "ipAddress": "178.120.61.209", + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "683cd5e1-b05d-4d69-a76a-5730a636064c", + "fundingId": null, + "userId": "Wz0ZgOvKnafrjLDeAeWqx182uBq2", + "commonId": "0f932979-eb1f-47d2-a6ac-7ba63a60019a", + "commonMemberId": null, + "importedFrom": "{\"join\":{\"fundingType\":\"one-time\",\"funding\":6250,\"payments\":[],\"cardId\":\"a0c40fe8-76c6-4afb-8de4-ece828d54a44\",\"ip\":\"178.120.61.209\"},\"votesAgainst\":0,\"createdAt\":{\"_seconds\":1616009797,\"_nanoseconds\":533000000},\"votes\":[],\"commonId\":\"0f932979-eb1f-47d2-a6ac-7ba63a60019a\",\"countdownPeriod\":57600,\"quietEndingPeriod\":3600,\"description\":{\"description\":\"Hey\",\"links\":[{\"value\":\"https://www.fb.com\",\"title\":\"Link\"}]},\"updatedAt\":{\"_seconds\":1616067600,\"_nanoseconds\":506000000},\"id\":\"683cd5e1-b05d-4d69-a76a-5730a636064c\",\"state\":\"failed\",\"type\":\"join\",\"votesFor\":0,\"proposerId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\"}" + }, + { + "id": "6d4b148a-8b24-4cac-9ba5-388b943d056e", + "createdAt": "2021-05-18T08:40:19.836Z", + "updatedAt": "2021-05-18T08:40:19.837Z", + "expiresAt": "2021-04-01T13:46:12.727Z", + "title": null, + "description": "Rcyn", + "links": [], + "files": [], + "images": [], + "ipAddress": "46.56.203.253", + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "6d4b148a-8b24-4cac-9ba5-388b943d056e", + "fundingId": null, + "userId": "5Bi1KZGIYzW5UIljHgBlO98NXaI2", + "commonId": "c683baee-aacf-4672-a017-b6f3af836b98", + "commonMemberId": null, + "importedFrom": "{\"votesFor\":0,\"description\":{\"links\":[],\"description\":\"Rcyn\"},\"votesAgainst\":0,\"countdownPeriod\":57600,\"votes\":[],\"updatedAt\":{\"_seconds\":1617285001,\"_nanoseconds\":502000000},\"proposerId\":\"5Bi1KZGIYzW5UIljHgBlO98NXaI2\",\"id\":\"6d4b148a-8b24-4cac-9ba5-388b943d056e\",\"commonId\":\"c683baee-aacf-4672-a017-b6f3af836b98\",\"state\":\"failed\",\"quietEndingPeriod\":3600,\"type\":\"join\",\"join\":{\"cardId\":\"3329d258-e799-47a8-a343-80ac673e5f09\",\"fundingType\":\"one-time\",\"ip\":\"46.56.203.253\",\"payments\":[],\"funding\":1000},\"createdAt\":{\"_seconds\":1617227172,\"_nanoseconds\":727000000}}" + }, + { + "id": "6deb283c-0dc6-4d9b-b63e-39a08d554fb0", + "createdAt": "2021-05-18T08:40:19.838Z", + "updatedAt": "2021-05-18T08:40:19.839Z", + "expiresAt": "2021-01-22T04:41:38.449Z", + "title": null, + "description": "Gg", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "6deb283c-0dc6-4d9b-b63e-39a08d554fb0", + "fundingId": null, + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "commonId": "0970bc3f-beca-4b6e-acb1-42f1b4bba931", + "commonMemberId": null, + "importedFrom": "{\"state\":\"failed\",\"description\":{\"links\":[],\"description\":\"Gg\"},\"updatedAt\":{\"_seconds\":1611290701,\"_nanoseconds\":244000000},\"votesAgainst\":0,\"votes\":[],\"id\":\"6deb283c-0dc6-4d9b-b63e-39a08d554fb0\",\"createdAt\":{\"_seconds\":1611232898,\"_nanoseconds\":449000000},\"commonId\":\"0970bc3f-beca-4b6e-acb1-42f1b4bba931\",\"type\":\"join\",\"join\":{\"payments\":[],\"funding\":500,\"cardId\":\"faad10ad-a986-46e7-8845-3bef0ec7ccf2\",\"fundingType\":\"one-time\"},\"countdownPeriod\":57600,\"votesFor\":0,\"quietEndingPeriod\":3600,\"proposerId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\"}" + }, + { + "id": "6e094cf3-c709-471d-8a4b-3a94f0cc50c8", + "createdAt": "2021-05-18T08:40:19.839Z", + "updatedAt": "2021-05-18T08:40:19.840Z", + "expiresAt": "2021-01-10T14:18:19.890Z", + "title": null, + "description": "Fh", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 2, + "votesAgainst": 0, + "joinId": "6e094cf3-c709-471d-8a4b-3a94f0cc50c8", + "fundingId": null, + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "commonId": "4d0805e3-d4ae-406d-bc89-66025e7087e2", + "commonMemberId": null, + "importedFrom": "{\"quietEndingPeriod\":3600,\"countdownPeriod\":7200,\"votes\":[{\"voteOutcome\":\"approved\",\"voterId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"voteId\":\"c2daf333-e706-4d75-a802-47a170195feb\"},{\"voterId\":\"Xh4xoIGHhgOhxz1S5AJkaXCBT8K2\",\"voteId\":\"81b12718-acd7-4bed-97fa-8c629d87341c\",\"voteOutcome\":\"approved\"}],\"updatedAt\":{\"_seconds\":1610281251,\"_nanoseconds\":226000000},\"paymentState\":\"confirmed\",\"proposerId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"state\":\"passed\",\"votesAgainst\":0,\"type\":\"join\",\"votesFor\":2,\"join\":{\"funding\":210000,\"fundingType\":\"monthly\",\"cardId\":\"0857a600-f970-4729-ba7c-93a19b8402dd\",\"payments\":[]},\"id\":\"6e094cf3-c709-471d-8a4b-3a94f0cc50c8\",\"commonId\":\"4d0805e3-d4ae-406d-bc89-66025e7087e2\",\"createdAt\":{\"_seconds\":1610281099,\"_nanoseconds\":890000000},\"description\":{\"links\":[],\"description\":\"Fh\"}}" + }, + { + "id": "6ea94275-d1f9-4d2b-89f1-4333c372dfba", + "createdAt": "2021-05-18T08:40:19.843Z", + "updatedAt": "2021-05-18T08:40:19.845Z", + "expiresAt": "2021-02-08T01:34:01.603Z", + "title": null, + "description": "Bob was very nice to me but the first ", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 1, + "votesAgainst": 0, + "joinId": "6ea94275-d1f9-4d2b-89f1-4333c372dfba", + "fundingId": null, + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "60026234-b1ff-4596-baa2-0d7be186f561", + "commonMemberId": "83f3a71c-b544-40c8-8e74-3ffc10f5ec87", + "importedFrom": "{\"state\":\"passed\",\"id\":\"6ea94275-d1f9-4d2b-89f1-4333c372dfba\",\"join\":{\"cardId\":\"67a07784-215f-44d5-8c70-f8942d615cf2\",\"payments\":[\"8b98d3f1-f56e-4b6a-bec5-9c4bc310f8b6\"],\"fundingType\":\"one-time\",\"funding\":36000},\"type\":\"join\",\"proposerId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"createdAt\":{\"_seconds\":1612690441,\"_nanoseconds\":603000000},\"votesFor\":1,\"countdownPeriod\":57600,\"commonId\":\"60026234-b1ff-4596-baa2-0d7be186f561\",\"updatedAt\":{\"_seconds\":1612690467,\"_nanoseconds\":858000000},\"paymentState\":\"confirmed\",\"quietEndingPeriod\":3600,\"description\":{\"description\":\"Bob was very nice to me but the first \",\"links\":[]},\"votes\":[{\"voteId\":\"0301d83f-c8b8-4e14-af8f-f947679851ec\",\"voteOutcome\":\"approved\",\"voterId\":\"Xh4xoIGHhgOhxz1S5AJkaXCBT8K2\"}],\"votesAgainst\":0}" + }, + { + "id": "6eb40783-64a4-42dc-b516-2bb2373077a8", + "createdAt": "2021-05-18T08:40:19.845Z", + "updatedAt": "2021-05-18T08:40:19.846Z", + "expiresAt": "2020-12-14T14:57:31.223Z", + "title": null, + "description": "Failed", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 1, + "votesAgainst": 0, + "joinId": "6eb40783-64a4-42dc-b516-2bb2373077a8", + "fundingId": null, + "userId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1", + "commonId": "e07c6cd7-3f45-4d4e-8a4f-3139e28b5c00", + "commonMemberId": null, + "importedFrom": "{\"id\":\"6eb40783-64a4-42dc-b516-2bb2373077a8\",\"commonId\":\"e07c6cd7-3f45-4d4e-8a4f-3139e28b5c00\",\"type\":\"join\",\"createdAt\":{\"_seconds\":1607950651,\"_nanoseconds\":223000000},\"quietEndingPeriod\":3600,\"proposerId\":\"11j4NvvZ4kMRf4BFBUHdbRiXKMp1\",\"votes\":[{\"voterId\":\"b0Kxsd0x4OMLeOlDnheysBz5THo1\",\"voteId\":\"58adb69e-d867-47e1-b6ca-d0bc7c26ca28\",\"voteOutcome\":\"approved\"}],\"countdownPeriod\":7200,\"state\":\"passed\",\"votesAgainst\":0,\"updatedAt\":{\"_seconds\":1607950689,\"_nanoseconds\":918000000},\"votesFor\":1,\"join\":{\"payments\":[\"4d0c2a50-99ff-47a4-91fa-f3c49c65b7b1\"],\"funding\":501,\"cardId\":\"eb0b0cdd-f1f7-4c5f-85c0-7824ff7c015a\",\"fundingType\":\"one-time\"},\"description\":{\"description\":\"Failed\",\"links\":[]}}" + }, + { + "id": "6edde120-a96b-4347-9075-286fbd18588b", + "createdAt": "2021-05-18T08:40:19.846Z", + "updatedAt": "2021-05-18T08:40:19.847Z", + "expiresAt": "2021-03-31T23:51:54.656Z", + "title": null, + "description": "Fhjijnugbihiuvvuvyuvvivivib ", + "links": [], + "files": [], + "images": [], + "ipAddress": "46.53.241.63", + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "6edde120-a96b-4347-9075-286fbd18588b", + "fundingId": null, + "userId": "WMzKDGJSlWM2Rjx9JVp9StB2Bni2", + "commonId": "02314122-6b05-4563-a8ce-4a10e97b72da", + "commonMemberId": null, + "importedFrom": "{\"quietEndingPeriod\":3600,\"proposerId\":\"WMzKDGJSlWM2Rjx9JVp9StB2Bni2\",\"countdownPeriod\":57600,\"votes\":[],\"votesFor\":0,\"createdAt\":{\"_seconds\":1617177114,\"_nanoseconds\":656000000},\"votesAgainst\":0,\"description\":{\"links\":[],\"description\":\"Fhjijnugbihiuvvuvyuvvivivib \"},\"commonId\":\"02314122-6b05-4563-a8ce-4a10e97b72da\",\"state\":\"failed\",\"updatedAt\":{\"_seconds\":1617234901,\"_nanoseconds\":505000000},\"id\":\"6edde120-a96b-4347-9075-286fbd18588b\",\"type\":\"join\",\"join\":{\"fundingType\":\"one-time\",\"payments\":[],\"funding\":2400,\"ip\":\"46.53.241.63\",\"cardId\":\"a10a2603-e9b1-4f97-a936-44875e2f3853\"}}" + }, + { + "id": "6fa46619-5513-41ab-b921-243958e1ad44", + "createdAt": "2021-05-18T08:40:19.848Z", + "updatedAt": "2021-05-18T08:40:19.849Z", + "expiresAt": "2021-03-11T02:03:36.886Z", + "title": null, + "description": "https://m.imdb.com/title/tt2737304/", + "links": [], + "files": [], + "images": [], + "ipAddress": "87.71.10.6", + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "6fa46619-5513-41ab-b921-243958e1ad44", + "fundingId": null, + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "commonId": "0970bc3f-beca-4b6e-acb1-42f1b4bba931", + "commonMemberId": null, + "importedFrom": "{\"votes\":[],\"votesFor\":0,\"state\":\"failed\",\"createdAt\":{\"_seconds\":1615370616,\"_nanoseconds\":886000000},\"quietEndingPeriod\":3600,\"proposerId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"countdownPeriod\":57600,\"id\":\"6fa46619-5513-41ab-b921-243958e1ad44\",\"votesAgainst\":0,\"description\":{\"links\":[],\"description\":\"https://m.imdb.com/title/tt2737304/\"},\"type\":\"join\",\"commonId\":\"0970bc3f-beca-4b6e-acb1-42f1b4bba931\",\"updatedAt\":{\"_seconds\":1615428300,\"_nanoseconds\":907000000},\"join\":{\"ip\":\"87.71.10.6\",\"payments\":[],\"fundingType\":\"one-time\",\"cardId\":\"e713ca10-7f86-4ab3-aa05-d9794be86cb0\",\"funding\":500}}" + }, + { + "id": "6fb7753f-4872-4ec9-b4e5-373dc9a1255f", + "createdAt": "2021-05-18T08:40:19.850Z", + "updatedAt": "2021-05-18T08:40:19.851Z", + "expiresAt": "2021-02-09T04:18:34.532Z", + "title": null, + "description": "Tut", + "links": [ + { + "url": "https://www.volvocars.com/il/cars/lp?site=google&lp=volvo.brand&utm_source=google&utm_campaign=volvo_brand&AgId=%5Badgroup%5D&utm_term=volvo&AdPos=&utm_content=gs_434894081167&device=m&GeoLoc=1008002&utm_medium=cpc&ToolName=gs&gclid=EAIaIQobChMIz7C_m6D_6wIVZbR3Ch2POwFPEAAYASAAEgKyxvD_BwE&gclsrc=aw.ds", + "title": "Tyu" + } + ], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "6fb7753f-4872-4ec9-b4e5-373dc9a1255f", + "fundingId": null, + "userId": "b0Kxsd0x4OMLeOlDnheysBz5THo1", + "commonId": "15c15871-d513-4a06-9e24-7d2c92cbd571", + "commonMemberId": null, + "importedFrom": "{\"commonId\":\"15c15871-d513-4a06-9e24-7d2c92cbd571\",\"updatedAt\":{\"_seconds\":1612844400,\"_nanoseconds\":593000000},\"type\":\"join\",\"join\":{\"funding\":700,\"cardId\":\"c5c7ed13-9e01-4839-8d2b-caafc4a3616a\",\"fundingType\":\"one-time\",\"payments\":[]},\"id\":\"6fb7753f-4872-4ec9-b4e5-373dc9a1255f\",\"quietEndingPeriod\":3600,\"votesAgainst\":0,\"createdAt\":{\"_seconds\":1612786714,\"_nanoseconds\":532000000},\"votes\":[],\"countdownPeriod\":57600,\"proposerId\":\"b0Kxsd0x4OMLeOlDnheysBz5THo1\",\"state\":\"failed\",\"description\":{\"description\":\"Tut\",\"links\":[{\"value\":\"https://www.volvocars.com/il/cars/lp?site=google&lp=volvo.brand&utm_source=google&utm_campaign=volvo_brand&AgId=%5Badgroup%5D&utm_term=volvo&AdPos=&utm_content=gs_434894081167&device=m&GeoLoc=1008002&utm_medium=cpc&ToolName=gs&gclid=EAIaIQobChMIz7C_m6D_6wIVZbR3Ch2POwFPEAAYASAAEgKyxvD_BwE&gclsrc=aw.ds\",\"title\":\"Tyu\"}]},\"votesFor\":0}" + }, + { + "id": "7045334b-ded3-4690-b7c3-19507e3f2eb8", + "createdAt": "2021-05-18T08:40:19.852Z", + "updatedAt": "2021-05-18T08:40:19.853Z", + "expiresAt": "2020-12-13T12:42:36.292Z", + "title": null, + "description": "Test", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "7045334b-ded3-4690-b7c3-19507e3f2eb8", + "fundingId": null, + "userId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1", + "commonId": "05e4c4a2-6957-42ea-bc49-073a307313d8", + "commonMemberId": null, + "importedFrom": "{\"createdAt\":{\"_seconds\":1607856156,\"_nanoseconds\":292000000},\"quietEndingPeriod\":3600,\"votesAgainst\":0,\"join\":{\"cardId\":\"fc4982f0-60d3-460a-a1ca-1b999b4a322f\",\"payments\":[],\"fundingType\":\"one-time\",\"funding\":500},\"state\":\"failed\",\"description\":{\"links\":[],\"description\":\"Test\"},\"updatedAt\":{\"_seconds\":1607863500,\"_nanoseconds\":405000000},\"commonId\":\"05e4c4a2-6957-42ea-bc49-073a307313d8\",\"proposerId\":\"11j4NvvZ4kMRf4BFBUHdbRiXKMp1\",\"type\":\"join\",\"id\":\"7045334b-ded3-4690-b7c3-19507e3f2eb8\",\"countdownPeriod\":7200,\"votes\":[],\"votesFor\":0}" + }, + { + "id": "706da88a-a417-464d-8d36-3d68fb2b954c", + "createdAt": "2021-05-18T08:40:19.854Z", + "updatedAt": "2021-05-18T08:40:19.855Z", + "expiresAt": "2021-01-01T00:36:36.639Z", + "title": null, + "description": "Plese add ne", + "links": [ + { + "url": "https://edition.cnn.com/videos/tech/2020/12/30/boston-dynamics-dancing-robots-do-you-love-me-contours-moos-pkg-ebof-vpx.cnn", + "title": "Hol" + }, + { + "url": "https://edition.cnn.com/videos/tech/2020/12/30/boston-dynamics-dancing-robots-do-you-love-me-contours-moos-pkg-ebof-vpx.cnn", + "title": "B" + } + ], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 1, + "votesAgainst": 0, + "joinId": "706da88a-a417-464d-8d36-3d68fb2b954c", + "fundingId": null, + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "commonId": "e3492bce-fda8-4e42-b427-d0da03206f85", + "commonMemberId": "238926e3-6cbc-4c7f-aec6-44198f605059", + "importedFrom": "{\"description\":{\"links\":[{\"title\":\"Hol\",\"value\":\"https://edition.cnn.com/videos/tech/2020/12/30/boston-dynamics-dancing-robots-do-you-love-me-contours-moos-pkg-ebof-vpx.cnn\"},{\"value\":\"https://edition.cnn.com/videos/tech/2020/12/30/boston-dynamics-dancing-robots-do-you-love-me-contours-moos-pkg-ebof-vpx.cnn\",\"title\":\"B\"}],\"description\":\"Plese add ne\"},\"id\":\"706da88a-a417-464d-8d36-3d68fb2b954c\",\"createdAt\":{\"_seconds\":1609403796,\"_nanoseconds\":639000000},\"countdownPeriod\":57600,\"votesFor\":1,\"votesAgainst\":0,\"proposerId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"type\":\"join\",\"updatedAt\":{\"_seconds\":1609404359,\"_nanoseconds\":681000000},\"commonId\":\"e3492bce-fda8-4e42-b427-d0da03206f85\",\"quietEndingPeriod\":3600,\"paymentState\":\"confirmed\",\"join\":{\"cardId\":\"62e367b3-6e16-44d8-9407-d5f9486924f4\",\"funding\":36900,\"fundingType\":\"monthly\",\"payments\":[]},\"state\":\"passed\",\"votes\":[{\"voteOutcome\":\"approved\",\"voterId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"voteId\":\"eef56cfb-a216-4d27-a501-09ced46146f9\"}]}" + }, + { + "id": "708db731-9b36-487b-b268-56815a951d31", + "createdAt": "2021-05-18T08:40:19.856Z", + "updatedAt": "2021-05-18T08:40:19.857Z", + "expiresAt": "2021-01-29T04:07:39.797Z", + "title": null, + "description": "Hop", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 1, + "votesAgainst": 0, + "joinId": "708db731-9b36-487b-b268-56815a951d31", + "fundingId": null, + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "bcb0e449-7ce0-439b-bf0c-d1976072c7fb", + "commonMemberId": "660ec3b5-aa91-4ca5-9183-c545f8fa3184", + "importedFrom": "{\"type\":\"join\",\"createdAt\":{\"_seconds\":1611835659,\"_nanoseconds\":797000000},\"countdownPeriod\":57600,\"updatedAt\":{\"_seconds\":1611835720,\"_nanoseconds\":466000000},\"paymentState\":\"confirmed\",\"proposerId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"join\":{\"cardId\":\"ea427191-98b7-458b-b42b-92dc54021a74\",\"payments\":[],\"fundingType\":\"monthly\",\"funding\":64500},\"votesFor\":1,\"quietEndingPeriod\":3600,\"id\":\"708db731-9b36-487b-b268-56815a951d31\",\"description\":{\"links\":[],\"description\":\"Hop\"},\"state\":\"passed\",\"votesAgainst\":0,\"commonId\":\"bcb0e449-7ce0-439b-bf0c-d1976072c7fb\",\"votes\":[{\"voterId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"voteId\":\"1c75df32-5abf-4131-a0ba-271656d48a8f\",\"voteOutcome\":\"approved\"}]}" + }, + { + "id": "70d0bef4-4f29-4b62-a776-f15733d378cc", + "createdAt": "2021-05-18T08:40:19.858Z", + "updatedAt": "2021-05-18T08:40:19.859Z", + "expiresAt": "2021-03-19T05:36:51.095Z", + "title": null, + "description": "Please reject ", + "links": [], + "files": [], + "images": [], + "ipAddress": "178.120.61.209", + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "70d0bef4-4f29-4b62-a776-f15733d378cc", + "fundingId": null, + "userId": "Wz0ZgOvKnafrjLDeAeWqx182uBq2", + "commonId": "8db41ae6-98c8-421a-88f9-24cfff29bb22", + "commonMemberId": null, + "importedFrom": "{\"votesAgainst\":0,\"votesFor\":0,\"id\":\"70d0bef4-4f29-4b62-a776-f15733d378cc\",\"quietEndingPeriod\":3600,\"proposerId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"countdownPeriod\":57600,\"description\":{\"links\":[],\"description\":\"Please reject \"},\"type\":\"join\",\"votes\":[],\"state\":\"failed\",\"createdAt\":{\"_seconds\":1616074611,\"_nanoseconds\":95000000},\"commonId\":\"8db41ae6-98c8-421a-88f9-24cfff29bb22\",\"updatedAt\":{\"_seconds\":1616132400,\"_nanoseconds\":307000000},\"join\":{\"cardId\":\"3e2af28d-9599-45aa-97cd-e58031ed571c\",\"ip\":\"178.120.61.209\",\"payments\":[],\"funding\":1250,\"fundingType\":\"one-time\"}}" + }, + { + "id": "71db5e63-ec23-465a-a7cd-6ca78240a674", + "createdAt": "2021-05-18T08:40:19.861Z", + "updatedAt": "2021-05-18T08:40:19.862Z", + "expiresAt": "2021-03-03T00:17:55.783Z", + "title": null, + "description": "You can create a user name and password for the same", + "links": [], + "files": [], + "images": [], + "ipAddress": "147.161.8.234", + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "71db5e63-ec23-465a-a7cd-6ca78240a674", + "fundingId": null, + "userId": "P21SZrJ6z5YjyF8WFaHv5eRsoFo1", + "commonId": "05e4c4a2-6957-42ea-bc49-073a307313d8", + "commonMemberId": null, + "importedFrom": "{\"proposerId\":\"P21SZrJ6z5YjyF8WFaHv5eRsoFo1\",\"id\":\"71db5e63-ec23-465a-a7cd-6ca78240a674\",\"commonId\":\"05e4c4a2-6957-42ea-bc49-073a307313d8\",\"countdownPeriod\":57600,\"createdAt\":{\"_seconds\":1614673075,\"_nanoseconds\":783000000},\"state\":\"failed\",\"updatedAt\":{\"_seconds\":1614730801,\"_nanoseconds\":130000000},\"votesFor\":0,\"join\":{\"payments\":[],\"funding\":1250,\"ip\":\"147.161.8.234\",\"cardId\":\"df0b58f1-25cb-4891-b175-18dea28d676b\",\"fundingType\":\"one-time\"},\"votes\":[],\"type\":\"join\",\"quietEndingPeriod\":3600,\"votesAgainst\":0,\"description\":{\"description\":\"You can create a user name and password for the same\",\"links\":[]}}" + }, + { + "id": "7523974c-bdc4-49e4-a880-94825f64581d", + "createdAt": "2021-05-18T08:40:19.863Z", + "updatedAt": "2021-05-18T08:40:19.864Z", + "expiresAt": "2021-03-15T03:54:20.325Z", + "title": null, + "description": "Let me in", + "links": [], + "files": [], + "images": [], + "ipAddress": "2a02:ed0:5395:ef00:a4d7:fe99:1758:a31e", + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "7523974c-bdc4-49e4-a880-94825f64581d", + "fundingId": null, + "userId": "y2wLlb4FV6PehGGAmj9akMnwkzl2", + "commonId": "26f7df46-8956-4c68-b58f-7190368042a8", + "commonMemberId": null, + "importedFrom": "{\"join\":{\"ip\":\"2a02:ed0:5395:ef00:a4d7:fe99:1758:a31e\",\"cardId\":\"291a4dd4-d968-45e4-bf86-a01fa52f7883\",\"funding\":500,\"fundingType\":\"one-time\",\"payments\":[]},\"votesAgainst\":0,\"updatedAt\":{\"_seconds\":1615780500,\"_nanoseconds\":606000000},\"votes\":[],\"quietEndingPeriod\":3600,\"state\":\"failed\",\"countdownPeriod\":57600,\"createdAt\":{\"_seconds\":1615722860,\"_nanoseconds\":325000000},\"description\":{\"links\":[],\"description\":\"Let me in\"},\"proposerId\":\"y2wLlb4FV6PehGGAmj9akMnwkzl2\",\"id\":\"7523974c-bdc4-49e4-a880-94825f64581d\",\"type\":\"join\",\"commonId\":\"26f7df46-8956-4c68-b58f-7190368042a8\",\"votesFor\":0}" + }, + { + "id": "77184611-5eb0-4f11-95c7-da683962530e", + "createdAt": "2021-05-18T08:40:19.864Z", + "updatedAt": "2021-05-18T08:40:19.865Z", + "expiresAt": "2021-03-10T02:48:38.279Z", + "title": null, + "description": "Pop", + "links": [], + "files": [], + "images": [], + "ipAddress": "178.120.66.122", + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 1, + "votesAgainst": 0, + "joinId": "77184611-5eb0-4f11-95c7-da683962530e", + "fundingId": null, + "userId": "Wz0ZgOvKnafrjLDeAeWqx182uBq2", + "commonId": "d30cb234-01ac-483c-b137-47961ed0cfec", + "commonMemberId": null, + "importedFrom": "{\"votes\":[{\"voterId\":\"5Bi1KZGIYzW5UIljHgBlO98NXaI2\",\"voteId\":\"f27f4c8b-a4b5-482f-8505-8ee74ac76652\",\"voteOutcome\":\"approved\"}],\"type\":\"join\",\"id\":\"77184611-5eb0-4f11-95c7-da683962530e\",\"votesAgainst\":0,\"updatedAt\":{\"_seconds\":1615286971,\"_nanoseconds\":939000000},\"paymentState\":\"confirmed\",\"commonId\":\"d30cb234-01ac-483c-b137-47961ed0cfec\",\"votesFor\":1,\"createdAt\":{\"_seconds\":1615286918,\"_nanoseconds\":279000000},\"proposerId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"description\":{\"links\":[],\"description\":\"Pop\"},\"join\":{\"fundingType\":\"monthly\",\"ip\":\"178.120.66.122\",\"funding\":700,\"cardId\":\"2faeaa61-8998-4eff-b03f-b4588f564ac4\",\"payments\":[]},\"quietEndingPeriod\":3600,\"countdownPeriod\":57600,\"state\":\"passed\"}" + }, + { + "id": "78a10fd2-9e4a-4acd-84d6-8c97f5339cd2", + "createdAt": "2021-05-18T08:40:19.866Z", + "updatedAt": "2021-05-18T08:40:19.867Z", + "expiresAt": "2021-01-22T01:09:01.602Z", + "title": null, + "description": "Too", + "links": [ + { + "url": "https://common.io/", + "title": "Rh" + } + ], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "78a10fd2-9e4a-4acd-84d6-8c97f5339cd2", + "fundingId": null, + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "0970bc3f-beca-4b6e-acb1-42f1b4bba931", + "commonMemberId": "6e1454e1-093f-4f91-8466-f1fa3341b2fa", + "importedFrom": "{\"description\":{\"description\":\"Too\",\"links\":[{\"value\":\"https://common.io/\",\"title\":\"Rh\"}]},\"updatedAt\":{\"_seconds\":1611277800,\"_nanoseconds\":482000000},\"votesAgainst\":0,\"votesFor\":0,\"quietEndingPeriod\":3600,\"votes\":[],\"state\":\"failed\",\"id\":\"78a10fd2-9e4a-4acd-84d6-8c97f5339cd2\",\"type\":\"join\",\"createdAt\":{\"_seconds\":1611220141,\"_nanoseconds\":602000000},\"commonId\":\"0970bc3f-beca-4b6e-acb1-42f1b4bba931\",\"join\":{\"fundingType\":\"one-time\",\"cardId\":\"3867ac82-7eac-4e4d-9c97-a18c9cb8f021\",\"funding\":500,\"payments\":[]},\"proposerId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"countdownPeriod\":57600}" + }, + { + "id": "79b68613-9d94-4f8c-9e53-faec5dda0d80", + "createdAt": "2021-05-18T08:40:19.870Z", + "updatedAt": "2021-05-18T08:40:19.871Z", + "expiresAt": "2021-04-01T13:45:24.693Z", + "title": null, + "description": "Tcyv", + "links": [], + "files": [], + "images": [], + "ipAddress": "46.56.203.253", + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "79b68613-9d94-4f8c-9e53-faec5dda0d80", + "fundingId": null, + "userId": "5Bi1KZGIYzW5UIljHgBlO98NXaI2", + "commonId": "6f88e880-1ed8-4946-8326-d285239d293b", + "commonMemberId": null, + "importedFrom": "{\"votesAgainst\":0,\"description\":{\"description\":\"Tcyv\",\"links\":[]},\"proposerId\":\"5Bi1KZGIYzW5UIljHgBlO98NXaI2\",\"commonId\":\"6f88e880-1ed8-4946-8326-d285239d293b\",\"moderation\":{\"flag\":\"reported\",\"reasons\":[\"Spam\"],\"updatedAt\":{\"_seconds\":1617264999,\"_nanoseconds\":946000000},\"reporter\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\",\"moderatorNote\":\"\",\"moderator\":\"\"},\"state\":\"failed\",\"countdownPeriod\":57600,\"createdAt\":{\"_seconds\":1617227124,\"_nanoseconds\":693000000},\"votes\":[],\"votesFor\":0,\"id\":\"79b68613-9d94-4f8c-9e53-faec5dda0d80\",\"join\":{\"cardId\":\"4265f3fe-6b46-400c-83c1-c090f24b0a05\",\"payments\":[],\"funding\":2000,\"fundingType\":\"one-time\",\"ip\":\"46.56.203.253\"},\"quietEndingPeriod\":3600,\"type\":\"join\",\"updatedAt\":{\"_seconds\":1617285001,\"_nanoseconds\":503000000}}" + }, + { + "id": "7ad4a700-4a30-43d0-9dfe-8432b145341a", + "createdAt": "2021-05-18T08:40:19.871Z", + "updatedAt": "2021-05-18T08:40:19.872Z", + "expiresAt": "2021-01-22T05:13:11.226Z", + "title": null, + "description": "Eh", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "7ad4a700-4a30-43d0-9dfe-8432b145341a", + "fundingId": null, + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "commonId": "54435e0a-8675-42de-9df2-803ff3a30b6e", + "commonMemberId": null, + "importedFrom": "{\"votesAgainst\":0,\"state\":\"failed\",\"updatedAt\":{\"_seconds\":1611292500,\"_nanoseconds\":882000000},\"countdownPeriod\":57600,\"votesFor\":0,\"id\":\"7ad4a700-4a30-43d0-9dfe-8432b145341a\",\"join\":{\"fundingType\":\"one-time\",\"funding\":6300,\"cardId\":\"16456dc2-8832-4e6b-9850-52ad626cd4fd\",\"payments\":[]},\"description\":{\"description\":\"Eh\",\"links\":[]},\"proposerId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"votes\":[],\"createdAt\":{\"_seconds\":1611234791,\"_nanoseconds\":226000000},\"commonId\":\"54435e0a-8675-42de-9df2-803ff3a30b6e\",\"quietEndingPeriod\":3600,\"type\":\"join\"}" + }, + { + "id": "7ae37a5c-afa5-4751-8564-94d53324445c", + "createdAt": "2021-05-18T08:40:19.873Z", + "updatedAt": "2021-05-18T08:40:19.874Z", + "expiresAt": "2021-04-01T10:57:45.162Z", + "title": null, + "description": "🖼", + "links": [ + { + "url": "https://ru.m.wikipedia.org/wiki/%2525D0%252592%2525D0%2525B0%2525D0%2525BD_%2525D0%252593%2525D0%2525BE%2525D0%2525B3,_%2525D0%252592%2525D0%2525B8%2525D0%2525BD%2525D1%252581%2525D0%2525B5%2525D0%2525BD%2525D1%252582", + "title": "Van Gogh" + } + ], + "files": [], + "images": [], + "ipAddress": "46.56.203.253", + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 1, + "joinId": "7ae37a5c-afa5-4751-8564-94d53324445c", + "fundingId": null, + "userId": "Wz0ZgOvKnafrjLDeAeWqx182uBq2", + "commonId": "179ae685-5cf2-4bbb-917d-a994e3d85cce", + "commonMemberId": null, + "importedFrom": "{\"votesAgainst\":1,\"description\":{\"links\":[{\"value\":\"https://ru.m.wikipedia.org/wiki/%2525D0%252592%2525D0%2525B0%2525D0%2525BD_%2525D0%252593%2525D0%2525BE%2525D0%2525B3,_%2525D0%252592%2525D0%2525B8%2525D0%2525BD%2525D1%252581%2525D0%2525B5%2525D0%2525BD%2525D1%252582\",\"title\":\"Van Gogh\"}],\"description\":\"🖼\"},\"updatedAt\":{\"_seconds\":1617217695,\"_nanoseconds\":677000000},\"quietEndingPeriod\":3600,\"state\":\"failed\",\"votesFor\":0,\"id\":\"7ae37a5c-afa5-4751-8564-94d53324445c\",\"proposerId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"type\":\"join\",\"commonId\":\"179ae685-5cf2-4bbb-917d-a994e3d85cce\",\"countdownPeriod\":57600,\"votes\":[{\"voterId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\",\"voteId\":\"93dbc8e1-946f-423b-b539-f717bf6c5610\",\"voteOutcome\":\"rejected\"}],\"createdAt\":{\"_seconds\":1617217065,\"_nanoseconds\":162000000},\"join\":{\"fundingType\":\"one-time\",\"funding\":1700,\"cardId\":\"155feb02-72a0-4ab5-9fc6-eba42139d398\",\"payments\":[],\"ip\":\"46.56.203.253\"}}" + }, + { + "id": "7c08b12c-252f-417f-8eda-59cc7cd2b3d3", + "createdAt": "2021-05-18T08:40:19.874Z", + "updatedAt": "2021-05-18T08:40:19.875Z", + "expiresAt": "2021-02-04T23:50:33.956Z", + "title": null, + "description": "My first visit to a few new restaurants that is very fun 🤩 and it is a great way for me to get the money back and get a few bucks to go to get it to the store 🏬 I get to a ", + "links": [ + { + "url": "https://www.bug.co.il/?utm_source=google&utm_medium=cpc&utm_campaign=home&cq_src=google_ads&cq_cmp=10208354291&cq_con=103696385204&cq_term=bug&cq_med=&cq_plac=&cq_net=g&cq_pos=&cq_plt=gp&gclid=Cj0KCQiA6t6ABhDMARIsAONIYyxdrMYMVlMSs2T6KOq6unkErESDOulmQwk-mhGI4DhItzjohSSXChUaAkDLEALw_wcB", + "title": "Vo" + }, + { + "url": "https://www.bug.co.il/?utm_source=google&utm_medium=cpc&utm_campaign=home&cq_src=google_ads&cq_cmp=10208354291&cq_con=103696385204&cq_term=bug&cq_med=&cq_plac=&cq_net=g&cq_pos=&cq_plt=gp&gclid=Cj0KCQiA6t6ABhDMARIsAONIYyxdrMYMVlMSs2T6KOq6unkErESDOulmQwk-mhGI4DhItzjohSSXChUaAkDLEALw_wcB", + "title": "Yum " + } + ], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 1, + "votesAgainst": 0, + "joinId": "7c08b12c-252f-417f-8eda-59cc7cd2b3d3", + "fundingId": null, + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "f419ad93-d978-45b6-8ed0-70645cdeb62a", + "commonMemberId": null, + "importedFrom": "{\"proposerId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"id\":\"7c08b12c-252f-417f-8eda-59cc7cd2b3d3\",\"paymentState\":\"confirmed\",\"createdAt\":{\"_seconds\":1612425033,\"_nanoseconds\":956000000},\"quietEndingPeriod\":3600,\"description\":{\"description\":\"My first visit to a few new restaurants that is very fun 🤩 and it is a great way for me to get the money back and get a few bucks to go to get it to the store 🏬 I get to a \",\"links\":[{\"value\":\"https://www.bug.co.il/?utm_source=google&utm_medium=cpc&utm_campaign=home&cq_src=google_ads&cq_cmp=10208354291&cq_con=103696385204&cq_term=bug&cq_med=&cq_plac=&cq_net=g&cq_pos=&cq_plt=gp&gclid=Cj0KCQiA6t6ABhDMARIsAONIYyxdrMYMVlMSs2T6KOq6unkErESDOulmQwk-mhGI4DhItzjohSSXChUaAkDLEALw_wcB\",\"title\":\"Vo\"},{\"value\":\"https://www.bug.co.il/?utm_source=google&utm_medium=cpc&utm_campaign=home&cq_src=google_ads&cq_cmp=10208354291&cq_con=103696385204&cq_term=bug&cq_med=&cq_plac=&cq_net=g&cq_pos=&cq_plt=gp&gclid=Cj0KCQiA6t6ABhDMARIsAONIYyxdrMYMVlMSs2T6KOq6unkErESDOulmQwk-mhGI4DhItzjohSSXChUaAkDLEALw_wcB\",\"title\":\"Yum \"}]},\"votes\":[{\"voteOutcome\":\"approved\",\"voterId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"voteId\":\"1cb96dd8-002d-489c-b725-5a39bb7f5dd4\"}],\"votesFor\":1,\"state\":\"passed\",\"votesAgainst\":0,\"type\":\"join\",\"join\":{\"fundingType\":\"monthly\",\"cardId\":\"27747ea6-98ce-494c-8b06-8f3720897e67\",\"funding\":10000,\"payments\":[]},\"countdownPeriod\":57600,\"updatedAt\":{\"_seconds\":1612425132,\"_nanoseconds\":732000000},\"commonId\":\"f419ad93-d978-45b6-8ed0-70645cdeb62a\"}" + }, + { + "id": "7d5f33b5-da63-4457-8a17-7f17bab68449", + "createdAt": "2021-05-18T08:40:19.876Z", + "updatedAt": "2021-05-18T08:40:19.877Z", + "expiresAt": "2021-03-17T03:58:42.264Z", + "title": null, + "description": "Hi", + "links": [], + "files": [], + "images": [], + "ipAddress": "46.56.242.40", + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "7d5f33b5-da63-4457-8a17-7f17bab68449", + "fundingId": null, + "userId": "Wz0ZgOvKnafrjLDeAeWqx182uBq2", + "commonId": "05e4c4a2-6957-42ea-bc49-073a307313d8", + "commonMemberId": null, + "importedFrom": "{\"commonId\":\"05e4c4a2-6957-42ea-bc49-073a307313d8\",\"type\":\"join\",\"description\":{\"links\":[],\"description\":\"Hi\"},\"proposerId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"votesFor\":0,\"join\":{\"funding\":500,\"cardId\":\"d5556782-e437-472f-9f62-9091aaf03db2\",\"fundingType\":\"one-time\",\"payments\":[],\"ip\":\"46.56.242.40\"},\"countdownPeriod\":57600,\"updatedAt\":{\"_seconds\":1615953601,\"_nanoseconds\":405000000},\"id\":\"7d5f33b5-da63-4457-8a17-7f17bab68449\",\"state\":\"failed\",\"createdAt\":{\"_seconds\":1615895922,\"_nanoseconds\":264000000},\"votesAgainst\":0,\"votes\":[],\"quietEndingPeriod\":3600}" + }, + { + "id": "7e9e5e58-6b5d-491d-9e19-89664d6a45c7", + "createdAt": "2021-05-18T08:40:19.880Z", + "updatedAt": "2021-05-18T08:40:19.882Z", + "expiresAt": "2021-03-15T02:17:21.352Z", + "title": null, + "description": "Yum I can get you the money 💰 I have it in my life and then ", + "links": [ + { + "url": "https://www.shufersal.co.il/online/he/promo/A?utm_source=google&utm_medium=search&utm_campaign=online_july&utm_content=brand&gclid=Cj0KCQiA-aGCBhCwARIsAHDl5x_dVJ3PHRSn771eu-M6KlgjsvgPQXaxZQNOiT5v4pd-DinltQIEo9EaAvzLEALw_wcB", + "title": "😜" + } + ], + "files": [], + "images": [], + "ipAddress": "87.71.10.6", + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 1, + "votesAgainst": 0, + "joinId": "7e9e5e58-6b5d-491d-9e19-89664d6a45c7", + "fundingId": null, + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "959cb7c0-afb4-4872-a9a9-9b10d6c59a60", + "commonMemberId": "e43ddd77-8008-4d74-8deb-38f31aa9d0bb", + "importedFrom": "{\"proposerId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"commonId\":\"959cb7c0-afb4-4872-a9a9-9b10d6c59a60\",\"votesFor\":1,\"votes\":[{\"voteOutcome\":\"approved\",\"voteId\":\"ae43fc16-f44c-4640-9adf-0315045eb97a\",\"voterId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\"}],\"type\":\"join\",\"quietEndingPeriod\":3600,\"id\":\"7e9e5e58-6b5d-491d-9e19-89664d6a45c7\",\"paymentState\":\"confirmed\",\"createdAt\":{\"_seconds\":1615717041,\"_nanoseconds\":352000000},\"state\":\"passed\",\"join\":{\"cardId\":\"4a7a25ba-5861-4822-a6d1-55a7e4612c89\",\"fundingType\":\"one-time\",\"funding\":25000,\"ip\":\"87.71.10.6\",\"payments\":[\"6bf95d8c-3f76-48c9-94dd-dadb37edf0b9\"]},\"countdownPeriod\":57600,\"updatedAt\":{\"_seconds\":1615718318,\"_nanoseconds\":5000000},\"description\":{\"description\":\"Yum I can get you the money 💰 I have it in my life and then \",\"links\":[{\"value\":\"https://www.shufersal.co.il/online/he/promo/A?utm_source=google&utm_medium=search&utm_campaign=online_july&utm_content=brand&gclid=Cj0KCQiA-aGCBhCwARIsAHDl5x_dVJ3PHRSn771eu-M6KlgjsvgPQXaxZQNOiT5v4pd-DinltQIEo9EaAvzLEALw_wcB\",\"title\":\"😜\"}]},\"votesAgainst\":0}" + }, + { + "id": "7fa13786-8907-48b8-a7fb-4d3b6d43339d", + "createdAt": "2021-05-18T08:40:19.882Z", + "updatedAt": "2021-05-18T08:40:19.883Z", + "expiresAt": "2020-12-30T21:54:12.657Z", + "title": null, + "description": "DND", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "7fa13786-8907-48b8-a7fb-4d3b6d43339d", + "fundingId": null, + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "f115aaab-cb74-4104-8ead-ae5e53264cc8", + "commonMemberId": null, + "importedFrom": "{\"votesFor\":0,\"commonId\":\"f115aaab-cb74-4104-8ead-ae5e53264cc8\",\"votesAgainst\":0,\"id\":\"7fa13786-8907-48b8-a7fb-4d3b6d43339d\",\"state\":\"failed\",\"countdownPeriod\":57600,\"join\":{\"cardId\":\"6e1f5a4c-f0f6-4ef0-8a76-7542caa33a68\",\"payments\":[],\"funding\":10000},\"description\":{\"links\":[],\"description\":\"DND\"},\"createdAt\":{\"_seconds\":1609307652,\"_nanoseconds\":657000000},\"votes\":[],\"quietEndingPeriod\":3600,\"updatedAt\":{\"_seconds\":1609365301,\"_nanoseconds\":908000000},\"type\":\"join\",\"proposerId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\"}" + }, + { + "id": "81b9105a-c83e-4ad7-9cb2-5850a9987b93", + "createdAt": "2021-05-18T08:40:19.884Z", + "updatedAt": "2021-05-18T08:40:19.885Z", + "expiresAt": "2021-03-12T07:20:01.199Z", + "title": null, + "description": "Vika dao", + "links": [], + "files": [], + "images": [], + "ipAddress": "134.17.176.64", + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 2, + "votesAgainst": 0, + "joinId": "81b9105a-c83e-4ad7-9cb2-5850a9987b93", + "fundingId": null, + "userId": "WKODFO6A3VMqWLYE2rrmrSGRrKF2", + "commonId": "9aafbea4-fccb-40ea-a791-cfb013703d92", + "commonMemberId": "abc69c6a-924f-4f43-8134-354dbac9c5d1", + "importedFrom": "{\"quietEndingPeriod\":3600,\"join\":{\"funding\":20000,\"payments\":[\"f4f4f46e-40a5-42c9-b199-cd45f423fed7\"],\"cardId\":\"05fdcbd7-e16c-47c9-bcff-27dcda711141\",\"fundingType\":\"one-time\",\"ip\":\"134.17.176.64\"},\"type\":\"join\",\"id\":\"81b9105a-c83e-4ad7-9cb2-5850a9987b93\",\"commonId\":\"9aafbea4-fccb-40ea-a791-cfb013703d92\",\"votes\":[{\"voteOutcome\":\"approved\",\"voterId\":\"RN4V4T2Z4gf2ld9QhwanrQbSnP23\",\"voteId\":\"ff83507c-3e2e-44b4-a3bb-e581c1a6f379\"},{\"voteOutcome\":\"approved\",\"voteId\":\"fd413d6c-c5b1-4436-bf13-acf5f0438afd\",\"voterId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\"}],\"votesAgainst\":0,\"state\":\"passed\",\"proposerId\":\"WKODFO6A3VMqWLYE2rrmrSGRrKF2\",\"votesFor\":2,\"updatedAt\":{\"_seconds\":1615476700,\"_nanoseconds\":791000000},\"createdAt\":{\"_seconds\":1615476001,\"_nanoseconds\":199000000},\"paymentState\":\"confirmed\",\"countdownPeriod\":57600,\"description\":{\"links\":[],\"description\":\"Vika dao\"}}" + }, + { + "id": "83815ee3-507a-4c75-a591-5fc17e3154bd", + "createdAt": "2021-05-18T08:40:19.886Z", + "updatedAt": "2021-05-18T08:40:19.888Z", + "expiresAt": "2021-01-31T09:14:18.477Z", + "title": null, + "description": "Hop", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "83815ee3-507a-4c75-a591-5fc17e3154bd", + "fundingId": null, + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "259f9b2d-c3c9-4014-ad51-22d591955afc", + "commonMemberId": null, + "importedFrom": "{\"votes\":[],\"join\":{\"payments\":[],\"cardId\":\"61076520-ec64-4313-a791-1d69d0e2308a\",\"fundingType\":\"one-time\",\"funding\":240000},\"countdownPeriod\":57600,\"type\":\"join\",\"updatedAt\":{\"_seconds\":1612084501,\"_nanoseconds\":185000000},\"votesAgainst\":0,\"description\":{\"description\":\"Hop\",\"links\":[]},\"quietEndingPeriod\":3600,\"state\":\"failed\",\"id\":\"83815ee3-507a-4c75-a591-5fc17e3154bd\",\"proposerId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"commonId\":\"259f9b2d-c3c9-4014-ad51-22d591955afc\",\"createdAt\":{\"_seconds\":1612026858,\"_nanoseconds\":477000000},\"votesFor\":0}" + }, + { + "id": "84f3b147-ace9-4c71-8cb3-8a76c9a88d50", + "createdAt": "2021-05-18T08:40:19.888Z", + "updatedAt": "2021-05-18T08:40:19.890Z", + "expiresAt": "2020-12-13T12:58:26.455Z", + "title": null, + "description": "dsfafdasadfsdsf", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "84f3b147-ace9-4c71-8cb3-8a76c9a88d50", + "fundingId": null, + "userId": "DAawzIgIIifv6GfzdDJRJ1kZl7J2", + "commonId": "845aadc4-4f62-49f1-9743-c08482ce861e", + "commonMemberId": null, + "importedFrom": "{\"proposerId\":\"DAawzIgIIifv6GfzdDJRJ1kZl7J2\",\"type\":\"join\",\"votesAgainst\":0,\"updatedAt\":{\"_seconds\":1607864400,\"_nanoseconds\":706000000},\"state\":\"failed\",\"votesFor\":0,\"commonId\":\"845aadc4-4f62-49f1-9743-c08482ce861e\",\"description\":{\"description\":\"dsfafdasadfsdsf\",\"links\":[]},\"quietEndingPeriod\":3600,\"join\":{\"funding\":2500,\"cardId\":\"9e8ab842-e93a-4883-a5e1-6b103b57978e\",\"fundingType\":\"monthly\",\"payments\":[]},\"countdownPeriod\":7200,\"votes\":[],\"createdAt\":{\"_seconds\":1607857106,\"_nanoseconds\":455000000},\"id\":\"84f3b147-ace9-4c71-8cb3-8a76c9a88d50\"}" + }, + { + "id": "854606c7-be78-4ba0-ac7e-35ad8e013beb", + "createdAt": "2021-05-18T08:40:19.890Z", + "updatedAt": "2021-05-18T08:40:19.891Z", + "expiresAt": "2021-03-05T23:47:35.019Z", + "title": null, + "description": "Epate", + "links": [], + "files": [], + "images": [], + "ipAddress": "178.120.56.0", + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 1, + "joinId": "854606c7-be78-4ba0-ac7e-35ad8e013beb", + "fundingId": null, + "userId": "2HM9WnVvr9aDYbckjCo4cIDjncY2", + "commonId": "39d28344-d7aa-4ed4-9b5b-3969984c8247", + "commonMemberId": "b7908830-97ef-4ce1-99e3-27020aa07483", + "importedFrom": "{\"createdAt\":{\"_seconds\":1614930455,\"_nanoseconds\":19000000},\"proposerId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\",\"quietEndingPeriod\":3600,\"join\":{\"fundingType\":\"one-time\",\"funding\":100,\"cardId\":\"b29d502d-98f4-4efa-8e81-b5fc6df45a1a\",\"payments\":[],\"ip\":\"178.120.56.0\"},\"type\":\"join\",\"countdownPeriod\":57600,\"votesAgainst\":1,\"state\":\"failed\",\"id\":\"854606c7-be78-4ba0-ac7e-35ad8e013beb\",\"votesFor\":0,\"commonId\":\"39d28344-d7aa-4ed4-9b5b-3969984c8247\",\"description\":{\"links\":[],\"description\":\"Epate\"},\"votes\":[{\"voterId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"voteOutcome\":\"rejected\",\"voteId\":\"095d3e25-8082-45e4-bf5f-699f2dc45f8d\"}],\"updatedAt\":{\"_seconds\":1614930526,\"_nanoseconds\":596000000}}" + }, + { + "id": "85c10197-368c-437c-968f-bbed8c81f2d0", + "createdAt": "2021-05-18T08:40:19.892Z", + "updatedAt": "2021-05-18T08:40:19.893Z", + "expiresAt": "2021-02-09T03:26:17.520Z", + "title": null, + "description": "123", + "links": [ + { + "url": "https://www.volvocars.com/il/cars/lp?site=google&lp=volvo.brand&utm_source=google&utm_campaign=volvo_brand&AgId=%5Badgroup%5D&utm_term=volvo&AdPos=&utm_content=gs_434894081167&device=m&GeoLoc=1008002&utm_medium=cpc&ToolName=gs&gclid=EAIaIQobChMIz7C_m6D_6wIVZbR3Ch2POwFPEAAYASAAEgKyxvD_BwE&gclsrc=aw.ds", + "title": "Broken link" + } + ], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "85c10197-368c-437c-968f-bbed8c81f2d0", + "fundingId": null, + "userId": "b0Kxsd0x4OMLeOlDnheysBz5THo1", + "commonId": "10fd7df7-eae9-4995-9c85-90e691c439e1", + "commonMemberId": null, + "importedFrom": "{\"id\":\"85c10197-368c-437c-968f-bbed8c81f2d0\",\"votesAgainst\":0,\"join\":{\"cardId\":\"e643b7ba-7381-40d9-ad91-4abed216957a\",\"funding\":500,\"payments\":[]},\"commonId\":\"10fd7df7-eae9-4995-9c85-90e691c439e1\",\"type\":\"join\",\"updatedAt\":{\"_seconds\":1612841401,\"_nanoseconds\":208000000},\"createdAt\":{\"_seconds\":1612783577,\"_nanoseconds\":520000000},\"proposerId\":\"b0Kxsd0x4OMLeOlDnheysBz5THo1\",\"quietEndingPeriod\":3600,\"votesFor\":0,\"description\":{\"links\":[{\"value\":\"https://www.volvocars.com/il/cars/lp?site=google&lp=volvo.brand&utm_source=google&utm_campaign=volvo_brand&AgId=%5Badgroup%5D&utm_term=volvo&AdPos=&utm_content=gs_434894081167&device=m&GeoLoc=1008002&utm_medium=cpc&ToolName=gs&gclid=EAIaIQobChMIz7C_m6D_6wIVZbR3Ch2POwFPEAAYASAAEgKyxvD_BwE&gclsrc=aw.ds\",\"title\":\"Broken link\"}],\"description\":\"123\"},\"countdownPeriod\":57600,\"state\":\"failed\",\"votes\":[]}" + }, + { + "id": "8822537a-ef24-4209-977e-0ce6cce7053e", + "createdAt": "2021-05-18T08:40:19.894Z", + "updatedAt": "2021-05-18T08:40:19.895Z", + "expiresAt": "2021-02-02T03:06:00.185Z", + "title": null, + "description": "חח", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "8822537a-ef24-4209-977e-0ce6cce7053e", + "fundingId": null, + "userId": "P21SZrJ6z5YjyF8WFaHv5eRsoFo1", + "commonId": "0970bc3f-beca-4b6e-acb1-42f1b4bba931", + "commonMemberId": "05bba7b4-05fd-44b3-9bf1-a598d6017d05", + "importedFrom": "{\"votesAgainst\":0,\"join\":{\"fundingType\":\"one-time\",\"funding\":39900,\"payments\":[],\"cardId\":\"8688dfe5-2d4c-427d-921d-3898f45f2e98\"},\"type\":\"join\",\"updatedAt\":{\"_seconds\":1612235400,\"_nanoseconds\":849000000},\"state\":\"failed\",\"proposerId\":\"P21SZrJ6z5YjyF8WFaHv5eRsoFo1\",\"commonId\":\"0970bc3f-beca-4b6e-acb1-42f1b4bba931\",\"votes\":[],\"quietEndingPeriod\":3600,\"countdownPeriod\":57600,\"description\":{\"links\":[],\"description\":\"חח\"},\"createdAt\":{\"_seconds\":1612177560,\"_nanoseconds\":185000000},\"votesFor\":0,\"id\":\"8822537a-ef24-4209-977e-0ce6cce7053e\"}" + }, + { + "id": "8887b498-7551-4978-902e-9f7f5c47e10b", + "createdAt": "2021-05-18T08:40:19.896Z", + "updatedAt": "2021-05-18T08:40:19.897Z", + "expiresAt": "2021-02-04T05:11:50.055Z", + "title": null, + "description": "Bv", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "8887b498-7551-4978-902e-9f7f5c47e10b", + "fundingId": null, + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "67ad1d5b-194b-457b-9103-26e28a9d62c0", + "commonMemberId": null, + "importedFrom": "{\"commonId\":\"67ad1d5b-194b-457b-9103-26e28a9d62c0\",\"proposerId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"votesAgainst\":0,\"votes\":[],\"votesFor\":0,\"join\":{\"payments\":[],\"cardId\":\"ef4bf363-64bb-4413-bdb0-ddb8caa69db6\",\"fundingType\":\"monthly\",\"funding\":20000},\"id\":\"8887b498-7551-4978-902e-9f7f5c47e10b\",\"updatedAt\":{\"_seconds\":1612415700,\"_nanoseconds\":939000000},\"state\":\"failed\",\"quietEndingPeriod\":3600,\"createdAt\":{\"_seconds\":1612357910,\"_nanoseconds\":55000000},\"type\":\"join\",\"description\":{\"links\":[],\"description\":\"Bv\"},\"countdownPeriod\":57600}" + }, + { + "id": "88adf572-f751-48c6-8ba9-5cdff783ae86", + "createdAt": "2021-05-18T08:40:19.899Z", + "updatedAt": "2021-05-18T08:40:19.900Z", + "expiresAt": "2021-02-08T07:17:16.266Z", + "title": null, + "description": "123", + "links": [ + { + "url": "https://www.volvocars.com/il/cars/lp?site=google&lp=volvo.brand%5Bwe%5D", + "title": "22" + } + ], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "88adf572-f751-48c6-8ba9-5cdff783ae86", + "fundingId": null, + "userId": "b0Kxsd0x4OMLeOlDnheysBz5THo1", + "commonId": "08e9568e-377d-4c6e-aa77-45fd84922948", + "commonMemberId": null, + "importedFrom": "{\"state\":\"failed\",\"countdownPeriod\":57600,\"type\":\"join\",\"quietEndingPeriod\":3600,\"proposerId\":\"b0Kxsd0x4OMLeOlDnheysBz5THo1\",\"createdAt\":{\"_seconds\":1612711036,\"_nanoseconds\":266000000},\"updatedAt\":{\"_seconds\":1612768800,\"_nanoseconds\":988000000},\"votesAgainst\":0,\"commonId\":\"08e9568e-377d-4c6e-aa77-45fd84922948\",\"join\":{\"cardId\":\"355e1f42-7c98-498e-a964-c7f757a8b103\",\"payments\":[],\"fundingType\":\"monthly\",\"funding\":50000},\"votesFor\":0,\"id\":\"88adf572-f751-48c6-8ba9-5cdff783ae86\",\"description\":{\"description\":\"123\",\"links\":[{\"title\":\"22\",\"value\":\"https://www.volvocars.com/il/cars/lp?site=google&lp=volvo.brand%5Bwe%5D\"}]},\"votes\":[]}" + }, + { + "id": "89fb1aa7-2ac9-4b8e-89d6-959dc716f5e9", + "createdAt": "2021-05-18T08:40:19.903Z", + "updatedAt": "2021-05-18T08:40:19.904Z", + "expiresAt": "2021-02-09T05:21:02.649Z", + "title": null, + "description": "Dh", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 2, + "votesAgainst": 0, + "joinId": "89fb1aa7-2ac9-4b8e-89d6-959dc716f5e9", + "fundingId": null, + "userId": "P21SZrJ6z5YjyF8WFaHv5eRsoFo1", + "commonId": "04c837a8-1f63-4e37-9d22-5d8236a45880", + "commonMemberId": "a1613ffd-074e-4c94-9673-fee9b8987716", + "importedFrom": "{\"quietEndingPeriod\":3600,\"updatedAt\":{\"_seconds\":1612790920,\"_nanoseconds\":485000000},\"paymentState\":\"confirmed\",\"state\":\"passed\",\"countdownPeriod\":57600,\"proposerId\":\"P21SZrJ6z5YjyF8WFaHv5eRsoFo1\",\"join\":{\"cardId\":\"4825d0cc-cbe4-46e0-8a19-b527d6b02515\",\"fundingType\":\"one-time\",\"payments\":[\"691f76db-6d4d-4982-b27c-d2041cc10bad\"],\"funding\":2300},\"votesFor\":2,\"description\":{\"description\":\"Dh\",\"links\":[]},\"createdAt\":{\"_seconds\":1612790462,\"_nanoseconds\":649000000},\"commonId\":\"04c837a8-1f63-4e37-9d22-5d8236a45880\",\"type\":\"join\",\"votesAgainst\":0,\"id\":\"89fb1aa7-2ac9-4b8e-89d6-959dc716f5e9\",\"votes\":[{\"voteId\":\"39ed215f-d681-4cfc-a3eb-1330a916a0a8\",\"voteOutcome\":\"approved\",\"voterId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\"},{\"voterId\":\"Xh4xoIGHhgOhxz1S5AJkaXCBT8K2\",\"voteId\":\"ec11257a-03d2-43bd-b0a5-6798d39db9d0\",\"voteOutcome\":\"approved\"}]}" + }, + { + "id": "8a6c308c-4eec-4861-a99b-e6c790585311", + "createdAt": "2021-05-18T08:40:19.905Z", + "updatedAt": "2021-05-18T08:40:19.906Z", + "expiresAt": "2021-03-02T02:04:41.434Z", + "title": null, + "description": "Ok", + "links": [], + "files": [], + "images": [], + "ipAddress": "178.120.63.174", + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 2, + "joinId": "8a6c308c-4eec-4861-a99b-e6c790585311", + "fundingId": null, + "userId": "5Bi1KZGIYzW5UIljHgBlO98NXaI2", + "commonId": "0c233ec1-c0a4-4776-8730-79777239a997", + "commonMemberId": "835f0902-1acc-4de1-8628-42e55bf85954", + "importedFrom": "{\"votesFor\":0,\"state\":\"failed\",\"type\":\"join\",\"commonId\":\"0c233ec1-c0a4-4776-8730-79777239a997\",\"countdownPeriod\":57600,\"votesAgainst\":2,\"quietEndingPeriod\":3600,\"updatedAt\":{\"_seconds\":1614593150,\"_nanoseconds\":717000000},\"proposerId\":\"5Bi1KZGIYzW5UIljHgBlO98NXaI2\",\"id\":\"8a6c308c-4eec-4861-a99b-e6c790585311\",\"description\":{\"description\":\"Ok\",\"links\":[]},\"join\":{\"ip\":\"178.120.63.174\",\"payments\":[],\"fundingType\":\"one-time\",\"funding\":500,\"cardId\":\"de2f8590-4576-4aca-a408-0b606ca565e4\"},\"votes\":[{\"voteId\":\"3f261ff4-7034-4358-aef1-d79e7cb92644\",\"voteOutcome\":\"rejected\",\"voterId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\"},{\"voteId\":\"8e9e80e1-78c9-4c75-bd74-23033d0b3cdd\",\"voterId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\",\"voteOutcome\":\"rejected\"}],\"createdAt\":{\"_seconds\":1614593081,\"_nanoseconds\":434000000}}" + }, + { + "id": "8b54c4f2-07fd-438f-88b8-9e404932896b", + "createdAt": "2021-05-18T08:40:19.906Z", + "updatedAt": "2021-05-18T08:40:19.907Z", + "expiresAt": "2021-03-19T05:28:37.098Z", + "title": null, + "description": "How much do on this weekend 🥺💋💋🥺💋💋🥺💋 oo", + "links": [], + "files": [], + "images": [], + "ipAddress": "147.161.12.165", + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "8b54c4f2-07fd-438f-88b8-9e404932896b", + "fundingId": null, + "userId": "P21SZrJ6z5YjyF8WFaHv5eRsoFo1", + "commonId": "05e4c4a2-6957-42ea-bc49-073a307313d8", + "commonMemberId": null, + "importedFrom": "{\"proposerId\":\"P21SZrJ6z5YjyF8WFaHv5eRsoFo1\",\"commonId\":\"05e4c4a2-6957-42ea-bc49-073a307313d8\",\"votesAgainst\":0,\"join\":{\"fundingType\":\"one-time\",\"cardId\":\"b3750031-2009-437e-b7b0-64555bd13711\",\"ip\":\"147.161.12.165\",\"funding\":3600,\"payments\":[]},\"type\":\"join\",\"countdownPeriod\":57600,\"id\":\"8b54c4f2-07fd-438f-88b8-9e404932896b\",\"description\":{\"links\":[],\"description\":\"How much do on this weekend 🥺💋💋🥺💋💋🥺💋 oo\"},\"state\":\"failed\",\"quietEndingPeriod\":3600,\"createdAt\":{\"_seconds\":1616074117,\"_nanoseconds\":98000000},\"updatedAt\":{\"_seconds\":1616131800,\"_nanoseconds\":291000000},\"votesFor\":0,\"votes\":[]}" + }, + { + "id": "8ce7c4ba-6cca-47bb-9914-f4ac46c6d4f6", + "createdAt": "2021-05-18T08:40:19.908Z", + "updatedAt": "2021-05-18T08:40:19.910Z", + "expiresAt": "2020-12-17T07:59:46.027Z", + "title": null, + "description": "Hollow\n", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "8ce7c4ba-6cca-47bb-9914-f4ac46c6d4f6", + "fundingId": null, + "userId": "H5ZkcKBX5eXXNyBiPaph8EHCiax2", + "commonId": "21fc3489-5a80-44c5-bb59-cd8bea165b3d", + "commonMemberId": null, + "importedFrom": "{\"updatedAt\":{\"_seconds\":1608184786,\"_nanoseconds\":27000000},\"type\":\"join\",\"votesFor\":0,\"countdownPeriod\":7200,\"votesAgainst\":0,\"proposerId\":\"H5ZkcKBX5eXXNyBiPaph8EHCiax2\",\"commonId\":\"21fc3489-5a80-44c5-bb59-cd8bea165b3d\",\"state\":\"passed\",\"quietEndingPeriod\":3600,\"votes\":[],\"join\":{\"cardId\":\"c07730b5-b029-4678-a886-118058cee81b\",\"funding\":50000,\"payments\":[],\"fundingType\":\"monthly\"},\"id\":\"8ce7c4ba-6cca-47bb-9914-f4ac46c6d4f6\",\"description\":{\"description\":\"Hollow\\n\",\"links\":[]},\"createdAt\":{\"_seconds\":1608184786,\"_nanoseconds\":27000000}}" + }, + { + "id": "8d78fc29-f2ef-4612-8be9-221ce87114d7", + "createdAt": "2021-05-18T08:40:19.911Z", + "updatedAt": "2021-05-18T08:40:19.912Z", + "expiresAt": "2021-01-28T08:12:56.320Z", + "title": null, + "description": "Hi", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 2, + "votesAgainst": 0, + "joinId": "8d78fc29-f2ef-4612-8be9-221ce87114d7", + "fundingId": null, + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "commonId": "46749aca-ec3a-49f3-82e2-c3d0c977bc05", + "commonMemberId": "c779dcd1-40c6-49c4-9beb-6b5a0517db0f", + "importedFrom": "{\"state\":\"passed\",\"countdownPeriod\":57600,\"join\":{\"cardId\":\"4aee0d17-a330-40e6-9ecb-f34c9554b4b5\",\"funding\":20000,\"fundingType\":\"one-time\",\"payments\":[]},\"quietEndingPeriod\":3600,\"description\":{\"links\":[],\"description\":\"Hi\"},\"updatedAt\":{\"_seconds\":1611764226,\"_nanoseconds\":118000000},\"type\":\"join\",\"commonId\":\"46749aca-ec3a-49f3-82e2-c3d0c977bc05\",\"votesAgainst\":0,\"proposerId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"id\":\"8d78fc29-f2ef-4612-8be9-221ce87114d7\",\"votesFor\":2,\"paymentState\":\"confirmed\",\"votes\":[{\"voterId\":\"Xh4xoIGHhgOhxz1S5AJkaXCBT8K2\",\"voteId\":\"6ded4d12-351f-4816-959c-43f6140c15a8\",\"voteOutcome\":\"approved\"},{\"voteId\":\"8d8de624-6803-4880-938c-cb7da495d9fb\",\"voterId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"voteOutcome\":\"approved\"}],\"createdAt\":{\"_seconds\":1611763976,\"_nanoseconds\":320000000}}" + }, + { + "id": "8d8824d9-c095-4689-851f-8ffe72bf61e7", + "createdAt": "2021-05-18T08:40:19.912Z", + "updatedAt": "2021-05-18T08:40:19.913Z", + "expiresAt": "2021-02-23T00:33:30.692Z", + "title": null, + "description": "Ho", + "links": [], + "files": [], + "images": [], + "ipAddress": "87.71.109.34", + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 1, + "votesAgainst": 0, + "joinId": "8d8824d9-c095-4689-851f-8ffe72bf61e7", + "fundingId": null, + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "2e5d4cab-a1a1-40b4-88e5-0a69ee2d9347", + "commonMemberId": "ca3294b5-8d43-4dab-bd50-2c39b3bb9996", + "importedFrom": "{\"quietEndingPeriod\":3600,\"id\":\"8d8824d9-c095-4689-851f-8ffe72bf61e7\",\"updatedAt\":{\"_seconds\":1613982836,\"_nanoseconds\":746000000},\"type\":\"join\",\"commonId\":\"2e5d4cab-a1a1-40b4-88e5-0a69ee2d9347\",\"state\":\"passed\",\"votesFor\":1,\"join\":{\"cardId\":\"a2cf1b42-5558-4e26-8067-a1dd000264fd\",\"ip\":\"87.71.109.34\",\"funding\":5000,\"fundingType\":\"one-time\",\"payments\":[\"dd09b196-74f3-43c1-be6b-b25dc3b5a03f\"]},\"proposerId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"description\":{\"description\":\"Ho\",\"links\":[]},\"createdAt\":{\"_seconds\":1613982810,\"_nanoseconds\":692000000},\"paymentState\":\"confirmed\",\"votesAgainst\":0,\"votes\":[{\"voterId\":\"mQrMFNLotDcxftkFL7cCxk3cCL92\",\"voteId\":\"d75aa602-8583-40a6-8e91-19ec9eb8539b\",\"voteOutcome\":\"approved\"}],\"countdownPeriod\":57600}" + }, + { + "id": "8f85cdd6-2e34-4e7a-9452-0ca2dabb8b39", + "createdAt": "2021-05-18T08:40:19.916Z", + "updatedAt": "2021-05-18T08:40:19.918Z", + "expiresAt": "2021-03-01T03:37:33.695Z", + "title": null, + "description": "Vote vote on the one year vote for a one vote for a year for a few days and then the one year vote for a vote for one year for a year for one year for a year for one vote for the one vote ", + "links": [ + { + "url": "https://www.foxnews.com", + "title": "The one " + } + ], + "files": [], + "images": [], + "ipAddress": "87.70.117.34", + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 1, + "votesAgainst": 0, + "joinId": "8f85cdd6-2e34-4e7a-9452-0ca2dabb8b39", + "fundingId": null, + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "b4a470a5-1f7c-48b8-aec2-eee997632829", + "commonMemberId": "c04460d1-8029-42ca-9b0c-57d52b23dbaf", + "importedFrom": "{\"createdAt\":{\"_seconds\":1614512253,\"_nanoseconds\":695000000},\"votesFor\":1,\"countdownPeriod\":57600,\"quietEndingPeriod\":3600,\"description\":{\"description\":\"Vote vote on the one year vote for a one vote for a year for a few days and then the one year vote for a vote for one year for a year for one year for a year for one vote for the one vote \",\"links\":[{\"value\":\"https://www.foxnews.com\",\"title\":\"The one \"}]},\"id\":\"8f85cdd6-2e34-4e7a-9452-0ca2dabb8b39\",\"commonId\":\"b4a470a5-1f7c-48b8-aec2-eee997632829\",\"paymentState\":\"confirmed\",\"proposerId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"updatedAt\":{\"_seconds\":1614512283,\"_nanoseconds\":27000000},\"votes\":[{\"voterId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"voteId\":\"1afcf438-f8c0-407f-83fb-c540bf4f6615\",\"voteOutcome\":\"approved\"}],\"type\":\"join\",\"state\":\"passed\",\"join\":{\"payments\":[\"87685c1f-65f6-4976-bb9b-3b995c5dc7aa\"],\"funding\":3000,\"ip\":\"87.70.117.34\",\"cardId\":\"6a32b85e-6d01-4d74-9400-6e44fe83b5b0\",\"fundingType\":\"one-time\"},\"votesAgainst\":0}" + }, + { + "id": "905b4c6c-369c-40a9-afc0-0068212b2c7f", + "createdAt": "2021-05-18T08:40:19.922Z", + "updatedAt": "2021-05-18T08:40:19.923Z", + "expiresAt": "2020-12-14T14:49:22.147Z", + "title": null, + "description": "Fail this payments", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "905b4c6c-369c-40a9-afc0-0068212b2c7f", + "fundingId": null, + "userId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1", + "commonId": "1d85812f-5a59-49bf-bb0d-c6579597bb0d", + "commonMemberId": null, + "importedFrom": "{\"commonId\":\"1d85812f-5a59-49bf-bb0d-c6579597bb0d\",\"description\":{\"links\":[],\"description\":\"Fail this payments\"},\"createdAt\":{\"_seconds\":1607950162,\"_nanoseconds\":147000000},\"votes\":[],\"type\":\"join\",\"votesFor\":0,\"proposerId\":\"11j4NvvZ4kMRf4BFBUHdbRiXKMp1\",\"updatedAt\":{\"_seconds\":1607957402,\"_nanoseconds\":445000000},\"id\":\"905b4c6c-369c-40a9-afc0-0068212b2c7f\",\"quietEndingPeriod\":3600,\"state\":\"failed\",\"countdownPeriod\":7200,\"join\":{\"payments\":[],\"fundingType\":\"one-time\",\"funding\":3000,\"cardId\":\"81263804-e428-4c0f-aee8-aac100a8c615\"},\"votesAgainst\":0}" + }, + { + "id": "910204c6-1ecd-4852-8b6f-7b2aa6d4a827", + "createdAt": "2021-05-18T08:40:19.925Z", + "updatedAt": "2021-05-18T08:40:19.926Z", + "expiresAt": "2021-03-23T07:32:19.076Z", + "title": null, + "description": "Test payment", + "links": [], + "files": [], + "images": [], + "ipAddress": "2a02:bf0:1a:aade:2c8e:df64:7d4a:fe9e", + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 2, + "votesAgainst": 0, + "joinId": "910204c6-1ecd-4852-8b6f-7b2aa6d4a827", + "fundingId": null, + "userId": "RN4V4T2Z4gf2ld9QhwanrQbSnP23", + "commonId": "04c837a8-1f63-4e37-9d22-5d8236a45880", + "commonMemberId": "941438b2-7192-47fd-bdc2-5477894ad42d", + "importedFrom": "{\"votesAgainst\":0,\"id\":\"910204c6-1ecd-4852-8b6f-7b2aa6d4a827\",\"votesFor\":2,\"join\":{\"ip\":\"2a02:bf0:1a:aade:2c8e:df64:7d4a:fe9e\",\"funding\":2300,\"fundingType\":\"one-time\",\"payments\":[\"27b56ef0-a9da-419f-a5c6-ff9a28c7bd3b\"],\"cardId\":\"96accb3a-cac1-4e05-81e9-7175c1b0f3e5\"},\"countdownPeriod\":57600,\"quietEndingPeriod\":3600,\"state\":\"passed\",\"createdAt\":{\"_seconds\":1616427139,\"_nanoseconds\":76000000},\"description\":{\"description\":\"Test payment\",\"links\":[]},\"commonId\":\"04c837a8-1f63-4e37-9d22-5d8236a45880\",\"proposerId\":\"RN4V4T2Z4gf2ld9QhwanrQbSnP23\",\"updatedAt\":{\"_seconds\":1616427735,\"_nanoseconds\":369000000},\"paymentState\":\"confirmed\",\"votes\":[{\"voterId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"voteId\":\"ff2a85cc-51fb-452f-bbac-adeb9b2740a7\",\"voteOutcome\":\"approved\"},{\"voteOutcome\":\"approved\",\"voterId\":\"Xh4xoIGHhgOhxz1S5AJkaXCBT8K2\",\"voteId\":\"b205d4b5-6187-46fa-8627-ddf94a44e05f\"}],\"type\":\"join\"}" + }, + { + "id": "92ae6a80-4a29-4816-a3b2-09d6d49f531a", + "createdAt": "2021-05-18T08:40:19.927Z", + "updatedAt": "2021-05-18T08:40:19.928Z", + "expiresAt": "2021-01-31T08:44:47.748Z", + "title": null, + "description": "Udu", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "92ae6a80-4a29-4816-a3b2-09d6d49f531a", + "fundingId": null, + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "commonId": "0970bc3f-beca-4b6e-acb1-42f1b4bba931", + "commonMemberId": null, + "importedFrom": "{\"description\":{\"links\":[],\"description\":\"Udu\"},\"votesFor\":0,\"createdAt\":{\"_seconds\":1612025087,\"_nanoseconds\":748000000},\"type\":\"join\",\"updatedAt\":{\"_seconds\":1612082700,\"_nanoseconds\":946000000},\"votesAgainst\":0,\"votes\":[],\"quietEndingPeriod\":3600,\"countdownPeriod\":57600,\"proposerId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"state\":\"failed\",\"commonId\":\"0970bc3f-beca-4b6e-acb1-42f1b4bba931\",\"join\":{\"fundingType\":\"one-time\",\"funding\":500,\"cardId\":\"9cc2ad86-79a7-4484-85be-a7d47173d4e8\",\"payments\":[]},\"id\":\"92ae6a80-4a29-4816-a3b2-09d6d49f531a\"}" + }, + { + "id": "93f9d575-fba8-47c3-b741-e64e20896bf3", + "createdAt": "2021-05-18T08:40:19.930Z", + "updatedAt": "2021-05-18T08:40:19.931Z", + "expiresAt": "2021-03-17T05:30:58.842Z", + "title": null, + "description": "1", + "links": [], + "files": [], + "images": [], + "ipAddress": "2a02:ed0:5395:ef00:31d5:6395:6872:311c", + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "93f9d575-fba8-47c3-b741-e64e20896bf3", + "fundingId": null, + "userId": "y2wLlb4FV6PehGGAmj9akMnwkzl2", + "commonId": "10fd7df7-eae9-4995-9c85-90e691c439e1", + "commonMemberId": null, + "importedFrom": "{\"createdAt\":{\"_seconds\":1615901458,\"_nanoseconds\":842000000},\"join\":{\"cardId\":\"793ee515-5666-4df3-a8bb-de01a0a382be\",\"funding\":500,\"ip\":\"2a02:ed0:5395:ef00:31d5:6395:6872:311c\",\"payments\":[]},\"quietEndingPeriod\":3600,\"state\":\"failed\",\"commonId\":\"10fd7df7-eae9-4995-9c85-90e691c439e1\",\"id\":\"93f9d575-fba8-47c3-b741-e64e20896bf3\",\"proposerId\":\"y2wLlb4FV6PehGGAmj9akMnwkzl2\",\"votesAgainst\":0,\"votes\":[],\"countdownPeriod\":57600,\"updatedAt\":{\"_seconds\":1615959301,\"_nanoseconds\":305000000},\"description\":{\"description\":\"1\",\"links\":[]},\"votesFor\":0,\"type\":\"join\"}" + }, + { + "id": "946200c6-bc12-42a5-ad82-0fad4b0befec", + "createdAt": "2021-05-18T08:40:19.932Z", + "updatedAt": "2021-05-18T08:40:19.933Z", + "expiresAt": "2020-12-16T09:49:31.495Z", + "title": null, + "description": "Tt", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 1, + "votesAgainst": 0, + "joinId": "946200c6-bc12-42a5-ad82-0fad4b0befec", + "fundingId": null, + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "commonId": "ba73039b-8f74-4a6e-90a5-d93df70930a9", + "commonMemberId": null, + "importedFrom": "{\"join\":{\"cardId\":\"25533db6-4fd5-4606-b477-90e885f1a7e5\",\"funding\":501,\"fundingType\":\"monthly\",\"payments\":[]},\"proposerId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"votesAgainst\":0,\"votes\":[{\"voterId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"voteOutcome\":\"approved\",\"voteId\":\"11da0baa-abd8-4a50-943d-99a6f6a8d667\"}],\"votesFor\":1,\"type\":\"join\",\"id\":\"946200c6-bc12-42a5-ad82-0fad4b0befec\",\"createdAt\":{\"_seconds\":1608104971,\"_nanoseconds\":495000000},\"commonId\":\"ba73039b-8f74-4a6e-90a5-d93df70930a9\",\"countdownPeriod\":7200,\"updatedAt\":{\"_seconds\":1608105030,\"_nanoseconds\":317000000},\"quietEndingPeriod\":3600,\"description\":{\"description\":\"Tt\",\"links\":[]},\"state\":\"passed\"}" + }, + { + "id": "94ae8447-bb6a-4ef8-963a-ad59d29aa7e0", + "createdAt": "2021-05-18T08:40:19.934Z", + "updatedAt": "2021-05-18T08:40:19.935Z", + "expiresAt": "2021-02-03T05:23:02.710Z", + "title": null, + "description": "Test", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 2, + "votesAgainst": 0, + "joinId": "94ae8447-bb6a-4ef8-963a-ad59d29aa7e0", + "fundingId": null, + "userId": "skBkfQh8E1f4eOGBSVLaiuJ097v1", + "commonId": "15c15871-d513-4a06-9e24-7d2c92cbd571", + "commonMemberId": "085ef536-9c02-4172-9311-7038bfdba330", + "importedFrom": "{\"createdAt\":{\"_seconds\":1612272182,\"_nanoseconds\":710000000},\"votesFor\":2,\"proposerId\":\"skBkfQh8E1f4eOGBSVLaiuJ097v1\",\"updatedAt\":{\"_seconds\":1612272305,\"_nanoseconds\":567000000},\"join\":{\"cardId\":\"12a07ec9-f9aa-4715-bf67-b27564eab32a\",\"payments\":[\"5f6c2e61-ac2a-4ba7-9678-05d1d880501c\"],\"fundingType\":\"one-time\",\"funding\":700},\"commonId\":\"15c15871-d513-4a06-9e24-7d2c92cbd571\",\"votesAgainst\":0,\"state\":\"passed\",\"paymentState\":\"confirmed\",\"countdownPeriod\":57600,\"description\":{\"description\":\"Test\",\"links\":[]},\"type\":\"join\",\"quietEndingPeriod\":3600,\"id\":\"94ae8447-bb6a-4ef8-963a-ad59d29aa7e0\",\"votes\":[{\"voteOutcome\":\"approved\",\"voteId\":\"f19e2b7d-aebc-4733-9970-4151a8607027\",\"voterId\":\"Xlun3Ux94Zfc73axkiuVdkktOWf1\"},{\"voterId\":\"0jL6u33k2rMoEY8wUmnIvkJM48O2\",\"voteOutcome\":\"approved\",\"voteId\":\"b637ab2b-ed1e-4860-aa40-86388ad86e77\"}]}" + }, + { + "id": "9666cb97-f5f5-4731-8ca2-35bdc28ffc77", + "createdAt": "2021-05-18T08:40:19.937Z", + "updatedAt": "2021-05-18T08:40:19.938Z", + "expiresAt": "2020-12-30T05:43:33.347Z", + "title": null, + "description": "adfksjdfkjdafkj", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "9666cb97-f5f5-4731-8ca2-35bdc28ffc77", + "fundingId": null, + "userId": "BONVnugkzuhlKnhSTvQSlYGZMEy1", + "commonId": "05e4c4a2-6957-42ea-bc49-073a307313d8", + "commonMemberId": null, + "importedFrom": "{\"updatedAt\":{\"_seconds\":1609307100,\"_nanoseconds\":942000000},\"description\":{\"links\":[],\"description\":\"adfksjdfkjdafkj\"},\"votesAgainst\":0,\"votesFor\":0,\"id\":\"9666cb97-f5f5-4731-8ca2-35bdc28ffc77\",\"proposerId\":\"BONVnugkzuhlKnhSTvQSlYGZMEy1\",\"countdownPeriod\":57600,\"createdAt\":{\"_seconds\":1609249413,\"_nanoseconds\":347000000},\"type\":\"join\",\"commonId\":\"05e4c4a2-6957-42ea-bc49-073a307313d8\",\"join\":{\"funding\":500,\"fundingType\":\"one-time\",\"payments\":[],\"cardId\":\"999d64b1-496b-4e12-8686-82a7b7e96b6f\"},\"quietEndingPeriod\":3600,\"votes\":[],\"state\":\"failed\"}" + }, + { + "id": "966a3c5a-b082-4998-9615-8fabbb985f7a", + "createdAt": "2021-05-18T08:40:19.939Z", + "updatedAt": "2021-05-18T08:40:19.940Z", + "expiresAt": "2021-03-24T23:41:03.350Z", + "title": null, + "description": "1", + "links": [], + "files": [], + "images": [], + "ipAddress": "46.56.204.176", + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 2, + "joinId": "966a3c5a-b082-4998-9615-8fabbb985f7a", + "fundingId": null, + "userId": "5Bi1KZGIYzW5UIljHgBlO98NXaI2", + "commonId": "c683baee-aacf-4672-a017-b6f3af836b98", + "commonMemberId": null, + "importedFrom": "{\"quietEndingPeriod\":3600,\"createdAt\":{\"_seconds\":1616571663,\"_nanoseconds\":350000000},\"state\":\"failed\",\"countdownPeriod\":57600,\"votesAgainst\":2,\"proposerId\":\"5Bi1KZGIYzW5UIljHgBlO98NXaI2\",\"join\":{\"cardId\":\"97125bde-8bf4-4d90-a462-14a643d33824\",\"fundingType\":\"one-time\",\"payments\":[],\"ip\":\"46.56.204.176\",\"funding\":2500},\"updatedAt\":{\"_seconds\":1616571768,\"_nanoseconds\":186000000},\"type\":\"join\",\"votes\":[{\"voterId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"voteOutcome\":\"rejected\",\"voteId\":\"50f4cd4e-bfa8-48db-9f04-2bcd86d607e0\"},{\"voteOutcome\":\"rejected\",\"voterId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\",\"voteId\":\"cfe16afc-9c82-4f1f-8526-77acb3425023\"}],\"commonId\":\"c683baee-aacf-4672-a017-b6f3af836b98\",\"votesFor\":0,\"id\":\"966a3c5a-b082-4998-9615-8fabbb985f7a\",\"description\":{\"links\":[],\"description\":\"1\"}}" + }, + { + "id": "967b44da-a0bf-42aa-a7ee-563d676a7bac", + "createdAt": "2021-05-18T08:40:19.940Z", + "updatedAt": "2021-05-18T08:40:19.942Z", + "expiresAt": "2021-04-01T05:05:33.193Z", + "title": null, + "description": "Jo", + "links": [], + "files": [], + "images": [], + "ipAddress": "87.71.16.245", + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 1, + "votesAgainst": 0, + "joinId": "967b44da-a0bf-42aa-a7ee-563d676a7bac", + "fundingId": null, + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "commonId": "50615c2f-1754-4ca0-b05b-8a3bbe026d43", + "commonMemberId": "b0c6b433-43d3-496f-80df-7b9d2ad75505", + "importedFrom": "{\"votesAgainst\":0,\"state\":\"passed\",\"paymentState\":\"confirmed\",\"quietEndingPeriod\":3600,\"updatedAt\":{\"_seconds\":1617195976,\"_nanoseconds\":754000000},\"votes\":[{\"voteId\":\"0ce74883-f816-4a49-87b4-5888de6f3273\",\"voterId\":\"P21SZrJ6z5YjyF8WFaHv5eRsoFo1\",\"voteOutcome\":\"approved\"}],\"join\":{\"cardId\":\"6e3aeca4-ddb0-4031-a7e1-b1c11893d58c\",\"fundingType\":\"one-time\",\"ip\":\"87.71.16.245\",\"funding\":3000,\"payments\":[\"77ec51d7-014e-4df3-ac8e-965c7ad1c1db\"]},\"proposerId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"type\":\"join\",\"commonId\":\"50615c2f-1754-4ca0-b05b-8a3bbe026d43\",\"votesFor\":1,\"description\":{\"links\":[],\"description\":\"Jo\"},\"countdownPeriod\":57600,\"createdAt\":{\"_seconds\":1617195933,\"_nanoseconds\":193000000},\"id\":\"967b44da-a0bf-42aa-a7ee-563d676a7bac\"}" + }, + { + "id": "96a0edaf-9716-4a69-92ec-8d321563c8f7", + "createdAt": "2021-05-18T08:40:19.942Z", + "updatedAt": "2021-05-18T08:40:19.944Z", + "expiresAt": "2021-04-21T06:46:59.183Z", + "title": null, + "description": "Dbdb", + "links": [], + "files": [], + "images": [], + "ipAddress": "87.70.24.133", + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 2, + "joinId": "96a0edaf-9716-4a69-92ec-8d321563c8f7", + "fundingId": null, + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "9861e6b0-4a8e-4f4e-8783-a5afebd6e4fa", + "commonMemberId": null, + "importedFrom": "{\"commonId\":\"9861e6b0-4a8e-4f4e-8783-a5afebd6e4fa\",\"quietEndingPeriod\":3600,\"createdAt\":{\"_seconds\":1618930019,\"_nanoseconds\":183000000},\"updatedAt\":{\"_seconds\":1618930043,\"_nanoseconds\":52999000},\"votes\":[{\"voteId\":\"9ac8aa59-ab3a-4883-87c9-ce3c3d0cf6b5\",\"voterId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"voteOutcome\":\"rejected\"},{\"voteOutcome\":\"rejected\",\"voterId\":\"Xh4xoIGHhgOhxz1S5AJkaXCBT8K2\",\"voteId\":\"7601b684-7615-46b3-b159-8a29f6003753\"}],\"votesAgainst\":2,\"countdownPeriod\":57600,\"id\":\"96a0edaf-9716-4a69-92ec-8d321563c8f7\",\"description\":{\"description\":\"Dbdb\",\"links\":[]},\"type\":\"join\",\"state\":\"failed\",\"proposerId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"join\":{\"fundingType\":\"monthly\",\"ip\":\"87.70.24.133\",\"payments\":[],\"funding\":62500,\"cardId\":\"a38d72f9-f44a-4e62-a8ec-43818b512029\"},\"votesFor\":0}" + }, + { + "id": "970e912c-09f6-4057-95df-9e93934254dc", + "createdAt": "2021-05-18T08:40:19.944Z", + "updatedAt": "2021-05-18T08:40:19.945Z", + "expiresAt": "2021-01-29T05:01:14.043Z", + "title": null, + "description": "Yy", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 2, + "joinId": "970e912c-09f6-4057-95df-9e93934254dc", + "fundingId": null, + "userId": "P21SZrJ6z5YjyF8WFaHv5eRsoFo1", + "commonId": "bcb0e449-7ce0-439b-bf0c-d1976072c7fb", + "commonMemberId": null, + "importedFrom": "{\"id\":\"970e912c-09f6-4057-95df-9e93934254dc\",\"votesAgainst\":2,\"votesFor\":0,\"state\":\"failed\",\"description\":{\"description\":\"Yy\",\"links\":[]},\"updatedAt\":{\"_seconds\":1611838906,\"_nanoseconds\":390000000},\"countdownPeriod\":57600,\"votes\":[{\"voterId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"voteOutcome\":\"rejected\",\"voteId\":\"1a48ec82-6b68-47bb-99f2-e60823eadcc6\"},{\"voteOutcome\":\"rejected\",\"voterId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"voteId\":\"629fe954-e3c5-4a4b-badf-7317b73a2517\"}],\"proposerId\":\"P21SZrJ6z5YjyF8WFaHv5eRsoFo1\",\"createdAt\":{\"_seconds\":1611838874,\"_nanoseconds\":43000000},\"type\":\"join\",\"quietEndingPeriod\":3600,\"commonId\":\"bcb0e449-7ce0-439b-bf0c-d1976072c7fb\",\"join\":{\"cardId\":\"ceba0925-7ae1-48b1-b028-8ca57c41d026\",\"fundingType\":\"monthly\",\"payments\":[],\"funding\":25800}}" + }, + { + "id": "98304dd8-e94f-48ab-a801-503078ba3888", + "createdAt": "2021-05-18T08:40:19.948Z", + "updatedAt": "2021-05-18T08:40:19.949Z", + "expiresAt": "2021-01-19T08:57:39.073Z", + "title": null, + "description": "Chic", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 1, + "votesAgainst": 0, + "joinId": "98304dd8-e94f-48ab-a801-503078ba3888", + "fundingId": null, + "userId": "Sxv19oCvKAZq2vntJdYCTYSpWWN2", + "commonId": "31254d89-71fd-4337-9a6b-84f640f77f78", + "commonMemberId": null, + "importedFrom": "{\"votesAgainst\":0,\"id\":\"98304dd8-e94f-48ab-a801-503078ba3888\",\"join\":{\"funding\":500,\"cardId\":\"5108dfec-a7b1-4d88-998a-828ac991acd5\",\"fundingType\":\"monthly\",\"payments\":[]},\"commonId\":\"31254d89-71fd-4337-9a6b-84f640f77f78\",\"paymentState\":\"confirmed\",\"type\":\"join\",\"proposerId\":\"Sxv19oCvKAZq2vntJdYCTYSpWWN2\",\"description\":{\"links\":[],\"description\":\"Chic\"},\"createdAt\":{\"_seconds\":1610989059,\"_nanoseconds\":73000000},\"state\":\"passed\",\"votes\":[{\"voteOutcome\":\"approved\",\"voterId\":\"b0Kxsd0x4OMLeOlDnheysBz5THo1\",\"voteId\":\"661dc7e1-6610-459e-950c-dc597e4bd88e\"}],\"updatedAt\":{\"_seconds\":1610989098,\"_nanoseconds\":721000000},\"quietEndingPeriod\":3600,\"votesFor\":1,\"countdownPeriod\":57600}" + }, + { + "id": "9a26e43b-e84a-4993-9537-a9472cfd9948", + "createdAt": "2021-05-18T08:40:19.949Z", + "updatedAt": "2021-05-18T08:40:19.950Z", + "expiresAt": "2020-12-28T07:34:36.790Z", + "title": null, + "description": "Gil", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 2, + "votesAgainst": 0, + "joinId": "9a26e43b-e84a-4993-9537-a9472cfd9948", + "fundingId": null, + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "6d778a9d-6ebb-46ab-969a-02d4c4567145", + "commonMemberId": null, + "importedFrom": "{\"join\":{\"payments\":[],\"cardId\":\"0d3651da-faac-4135-8e4c-46c41a30b678\",\"funding\":519,\"fundingType\":\"one-time\"},\"description\":{\"description\":\"Gil\",\"links\":[]},\"id\":\"9a26e43b-e84a-4993-9537-a9472cfd9948\",\"proposerId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"votes\":[{\"voteId\":\"fa9bf9db-af02-41fe-be24-cae952ed7704\",\"voterId\":\"Xh4xoIGHhgOhxz1S5AJkaXCBT8K2\",\"voteOutcome\":\"approved\"},{\"voteOutcome\":\"approved\",\"voterId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"voteId\":\"b1764258-ef1f-4c9a-a346-e4294e06f0ba\"}],\"quietEndingPeriod\":3600,\"type\":\"join\",\"countdownPeriod\":57600,\"state\":\"passed\",\"votesAgainst\":0,\"commonId\":\"6d778a9d-6ebb-46ab-969a-02d4c4567145\",\"votesFor\":2,\"createdAt\":{\"_seconds\":1609083276,\"_nanoseconds\":790000000},\"updatedAt\":{\"_seconds\":1609084271,\"_nanoseconds\":946000000},\"paymentState\":\"failed\"}" + }, + { + "id": "9ad67c59-e6c5-4f0d-a042-087963a15bf6", + "createdAt": "2021-05-18T08:40:19.951Z", + "updatedAt": "2021-05-18T08:40:19.952Z", + "expiresAt": "2021-01-31T09:15:54.093Z", + "title": null, + "description": "Dhj", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "9ad67c59-e6c5-4f0d-a042-087963a15bf6", + "fundingId": null, + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "commonId": "ba73039b-8f74-4a6e-90a5-d93df70930a9", + "commonMemberId": null, + "importedFrom": "{\"countdownPeriod\":57600,\"commonId\":\"ba73039b-8f74-4a6e-90a5-d93df70930a9\",\"description\":{\"description\":\"Dhj\",\"links\":[]},\"id\":\"9ad67c59-e6c5-4f0d-a042-087963a15bf6\",\"proposerId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"join\":{\"funding\":500,\"cardId\":\"ef06a200-7934-4c40-b82d-512a241afa15\",\"fundingType\":\"monthly\",\"payments\":[]},\"votesAgainst\":0,\"votesFor\":0,\"state\":\"failed\",\"createdAt\":{\"_seconds\":1612026954,\"_nanoseconds\":93000000},\"quietEndingPeriod\":3600,\"updatedAt\":{\"_seconds\":1612084801,\"_nanoseconds\":185000000},\"type\":\"join\",\"votes\":[]}" + }, + { + "id": "9ae11cef-1bd8-400c-814d-afeeb4f13ffa", + "createdAt": "2021-05-18T08:40:19.953Z", + "updatedAt": "2021-05-18T08:40:19.954Z", + "expiresAt": "2020-12-31T04:56:44.613Z", + "title": null, + "description": "Israel", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 1, + "votesAgainst": 0, + "joinId": "9ae11cef-1bd8-400c-814d-afeeb4f13ffa", + "fundingId": null, + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "3f7ea48d-594f-4a2c-88d7-d28012573964", + "commonMemberId": "ce30145a-c66a-4781-80f3-ca6989a3c792", + "importedFrom": "{\"votesAgainst\":0,\"proposerId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"state\":\"passed\",\"description\":{\"links\":[],\"description\":\"Israel\"},\"updatedAt\":{\"_seconds\":1609333025,\"_nanoseconds\":749000000},\"votes\":[{\"voteOutcome\":\"approved\",\"voteId\":\"65c340c5-d13e-43d1-8008-10f65ef1eeae\",\"voterId\":\"Xh4xoIGHhgOhxz1S5AJkaXCBT8K2\"}],\"votesFor\":1,\"quietEndingPeriod\":3600,\"id\":\"9ae11cef-1bd8-400c-814d-afeeb4f13ffa\",\"countdownPeriod\":57600,\"type\":\"join\",\"createdAt\":{\"_seconds\":1609333004,\"_nanoseconds\":613000000},\"paymentState\":\"confirmed\",\"commonId\":\"3f7ea48d-594f-4a2c-88d7-d28012573964\",\"join\":{\"fundingType\":\"one-time\",\"funding\":6250,\"payments\":[],\"cardId\":\"1d036016-3431-4205-95ea-360c890e1dbf\"}}" + }, + { + "id": "9e48109f-b46f-43cc-b657-e456e3dbe97f", + "createdAt": "2021-05-18T08:40:19.954Z", + "updatedAt": "2021-05-18T08:40:19.955Z", + "expiresAt": "2021-03-02T03:48:18.433Z", + "title": null, + "description": "Hi", + "links": [], + "files": [], + "images": [], + "ipAddress": "178.120.63.174", + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 1, + "votesAgainst": 0, + "joinId": "9e48109f-b46f-43cc-b657-e456e3dbe97f", + "fundingId": null, + "userId": "5Bi1KZGIYzW5UIljHgBlO98NXaI2", + "commonId": "e87ef1d5-7802-4f64-aa71-d605ddde17cb", + "commonMemberId": null, + "importedFrom": "{\"updatedAt\":{\"_seconds\":1614599354,\"_nanoseconds\":712000000},\"countdownPeriod\":57600,\"votesAgainst\":0,\"join\":{\"cardId\":\"91d6f450-537b-4117-b552-c6510d55afcb\",\"funding\":500,\"ip\":\"178.120.63.174\",\"payments\":[],\"fundingType\":\"monthly\"},\"paymentState\":\"confirmed\",\"state\":\"passed\",\"proposerId\":\"5Bi1KZGIYzW5UIljHgBlO98NXaI2\",\"id\":\"9e48109f-b46f-43cc-b657-e456e3dbe97f\",\"commonId\":\"e87ef1d5-7802-4f64-aa71-d605ddde17cb\",\"description\":{\"description\":\"Hi\",\"links\":[]},\"votesFor\":1,\"type\":\"join\",\"votes\":[{\"voterId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\",\"voteId\":\"c12a975c-b304-4c19-8ac9-950f68bcf174\",\"voteOutcome\":\"approved\"}],\"createdAt\":{\"_seconds\":1614599298,\"_nanoseconds\":433000000},\"quietEndingPeriod\":3600}" + }, + { + "id": "9ea8e314-b7f6-4ae4-b10a-36256dba7fe2", + "createdAt": "2021-05-18T08:40:19.956Z", + "updatedAt": "2021-05-18T08:40:19.957Z", + "expiresAt": "2021-03-15T03:47:10.447Z", + "title": null, + "description": "1", + "links": [], + "files": [], + "images": [], + "ipAddress": "2a02:ed0:5395:ef00:a4d7:fe99:1758:a31e", + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "9ea8e314-b7f6-4ae4-b10a-36256dba7fe2", + "fundingId": null, + "userId": "y2wLlb4FV6PehGGAmj9akMnwkzl2", + "commonId": "10fd7df7-eae9-4995-9c85-90e691c439e1", + "commonMemberId": null, + "importedFrom": "{\"join\":{\"cardId\":\"a27ba10a-1f7f-43f5-9a10-b97fbbd05550\",\"payments\":[],\"funding\":500,\"ip\":\"2a02:ed0:5395:ef00:a4d7:fe99:1758:a31e\"},\"updatedAt\":{\"_seconds\":1615780200,\"_nanoseconds\":613000000},\"votesFor\":0,\"votes\":[],\"description\":{\"links\":[],\"description\":\"1\"},\"votesAgainst\":0,\"createdAt\":{\"_seconds\":1615722430,\"_nanoseconds\":447000000},\"proposerId\":\"y2wLlb4FV6PehGGAmj9akMnwkzl2\",\"id\":\"9ea8e314-b7f6-4ae4-b10a-36256dba7fe2\",\"state\":\"failed\",\"type\":\"join\",\"countdownPeriod\":57600,\"quietEndingPeriod\":3600,\"commonId\":\"10fd7df7-eae9-4995-9c85-90e691c439e1\"}" + }, + { + "id": "9eda9ee1-2352-47ef-8b3a-14735ae42433", + "createdAt": "2021-05-18T08:40:19.957Z", + "updatedAt": "2021-05-18T08:40:19.958Z", + "expiresAt": "2021-04-01T23:33:23.288Z", + "title": null, + "description": "Gh", + "links": [], + "files": [], + "images": [], + "ipAddress": "147.161.13.222", + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 2, + "votesAgainst": 0, + "joinId": "9eda9ee1-2352-47ef-8b3a-14735ae42433", + "fundingId": null, + "userId": "P21SZrJ6z5YjyF8WFaHv5eRsoFo1", + "commonId": "20c97f59-d176-41a5-9cfa-1b31b017718f", + "commonMemberId": "31400eac-dc1e-4134-98e4-28dcf2cc42f5", + "importedFrom": "{\"state\":\"passed\",\"type\":\"join\",\"votesFor\":2,\"join\":{\"funding\":500,\"payments\":[],\"fundingType\":\"monthly\",\"ip\":\"147.161.13.222\",\"cardId\":\"479bd585-1216-4fe6-a6e6-795169cd5cbe\"},\"updatedAt\":{\"_seconds\":1617262548,\"_nanoseconds\":473000000},\"votesAgainst\":0,\"createdAt\":{\"_seconds\":1617262403,\"_nanoseconds\":288000000},\"description\":{\"description\":\"Gh\",\"links\":[]},\"proposerId\":\"P21SZrJ6z5YjyF8WFaHv5eRsoFo1\",\"id\":\"9eda9ee1-2352-47ef-8b3a-14735ae42433\",\"paymentState\":\"confirmed\",\"countdownPeriod\":57600,\"votes\":[{\"voteId\":\"527b091d-72b2-4f17-a4c9-8420fe20470c\",\"voteOutcome\":\"approved\",\"voterId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\"},{\"voterId\":\"Xh4xoIGHhgOhxz1S5AJkaXCBT8K2\",\"voteId\":\"9f63d7ce-45b2-4430-95ad-f5e99818ed7a\",\"voteOutcome\":\"approved\"}],\"commonId\":\"20c97f59-d176-41a5-9cfa-1b31b017718f\",\"quietEndingPeriod\":3600}" + }, + { + "id": "9f544836-cc63-4a51-a9c1-d85960a4165d", + "createdAt": "2021-05-18T08:40:19.959Z", + "updatedAt": "2021-05-18T08:40:19.960Z", + "expiresAt": "2021-04-21T07:09:28.785Z", + "title": null, + "description": "123456789", + "links": [], + "files": [], + "images": [], + "ipAddress": "178.120.3.148", + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 1, + "votesAgainst": 0, + "joinId": "9f544836-cc63-4a51-a9c1-d85960a4165d", + "fundingId": null, + "userId": "Wz0ZgOvKnafrjLDeAeWqx182uBq2", + "commonId": "9b5c3b34-22f9-4f0f-9f98-9e6eb686ee2e", + "commonMemberId": "36245457-6062-4b97-a8fb-cd44ba263c0c", + "importedFrom": "{\"type\":\"join\",\"id\":\"9f544836-cc63-4a51-a9c1-d85960a4165d\",\"quietEndingPeriod\":3600,\"join\":{\"payments\":[],\"funding\":2700,\"fundingType\":\"monthly\",\"cardId\":\"6882c14f-1a0e-4327-bab0-059d9288eca0\",\"ip\":\"178.120.3.148\"},\"state\":\"passed\",\"commonId\":\"9b5c3b34-22f9-4f0f-9f98-9e6eb686ee2e\",\"votesFor\":1,\"createdAt\":{\"_seconds\":1618931368,\"_nanoseconds\":784999000},\"updatedAt\":{\"_seconds\":1618943894,\"_nanoseconds\":927000000},\"proposerId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"description\":{\"links\":[],\"description\":\"123456789\"},\"countdownPeriod\":57600,\"votesAgainst\":0,\"paymentState\":\"confirmed\",\"votes\":[{\"voterId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\",\"voteOutcome\":\"approved\",\"voteId\":\"b812b57b-3205-4b34-9c2b-472010749c9c\"}]}" + }, + { + "id": "9f98c78f-8600-4505-972e-c3eaee467356", + "createdAt": "2021-05-18T08:40:19.960Z", + "updatedAt": "2021-05-18T08:40:19.962Z", + "expiresAt": "2021-02-03T05:13:39.474Z", + "title": null, + "description": "Test", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 1, + "votesAgainst": 0, + "joinId": "9f98c78f-8600-4505-972e-c3eaee467356", + "fundingId": null, + "userId": "0jL6u33k2rMoEY8wUmnIvkJM48O2", + "commonId": "15c15871-d513-4a06-9e24-7d2c92cbd571", + "commonMemberId": "f8e72179-a969-4586-95f3-993ea9fdecfa", + "importedFrom": "{\"paymentState\":\"confirmed\",\"state\":\"passed\",\"type\":\"join\",\"votes\":[{\"voterId\":\"Xlun3Ux94Zfc73axkiuVdkktOWf1\",\"voteId\":\"2256fbbb-dbd4-4350-a55c-c2d527ceeb61\",\"voteOutcome\":\"approved\"}],\"join\":{\"cardId\":\"eaca84ce-8d6a-46ef-972a-4dbb6f476738\",\"fundingType\":\"one-time\",\"funding\":700,\"payments\":[\"c7e9cab7-1b79-4760-a49c-78ed52e64127\"]},\"quietEndingPeriod\":3600,\"countdownPeriod\":57600,\"votesFor\":1,\"proposerId\":\"0jL6u33k2rMoEY8wUmnIvkJM48O2\",\"createdAt\":{\"_seconds\":1612271619,\"_nanoseconds\":474000000},\"updatedAt\":{\"_seconds\":1612271666,\"_nanoseconds\":376000000},\"description\":{\"links\":[],\"description\":\"Test\"},\"id\":\"9f98c78f-8600-4505-972e-c3eaee467356\",\"commonId\":\"15c15871-d513-4a06-9e24-7d2c92cbd571\",\"votesAgainst\":0}" + }, + { + "id": "9ffcd43c-9476-4dc2-9ecd-3437d9f7b4e4", + "createdAt": "2021-05-18T08:40:19.962Z", + "updatedAt": "2021-05-18T08:40:19.963Z", + "expiresAt": "2021-05-19T00:28:25.821Z", + "title": null, + "description": "צי", + "links": [], + "files": [], + "images": [], + "ipAddress": "87.70.96.96", + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 1, + "votesAgainst": 0, + "joinId": "9ffcd43c-9476-4dc2-9ecd-3437d9f7b4e4", + "fundingId": null, + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "5b0de0ee-2823-4500-90d3-95adbe0e86af", + "commonMemberId": "ae3a83ce-151c-428e-86ff-156a1a8be3dc", + "importedFrom": "{\"quietEndingPeriod\":3600,\"commonId\":\"5b0de0ee-2823-4500-90d3-95adbe0e86af\",\"votes\":[{\"voteOutcome\":\"approved\",\"voterId\":\"P21SZrJ6z5YjyF8WFaHv5eRsoFo1\",\"voteId\":\"1eac75ba-2a1b-4086-9bb6-5658432b65aa\"}],\"id\":\"9ffcd43c-9476-4dc2-9ecd-3437d9f7b4e4\",\"join\":{\"fundingType\":\"monthly\",\"cardId\":\"3f05676f-863b-48f9-80b1-d45b9e77d51c\",\"payments\":[],\"funding\":600,\"ip\":\"87.70.96.96\"},\"countdownPeriod\":57600,\"votesFor\":1,\"updatedAt\":{\"_seconds\":1621326526,\"_nanoseconds\":983000000},\"votesAgainst\":0,\"description\":{\"links\":[],\"description\":\"צי\"},\"paymentState\":\"confirmed\",\"proposerId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"type\":\"join\",\"state\":\"passed\",\"createdAt\":{\"_seconds\":1621326505,\"_nanoseconds\":821000000}}" + }, + { + "id": "a0329146-e32c-46fb-83b5-25673b2ce543", + "createdAt": "2021-05-18T08:40:19.964Z", + "updatedAt": "2021-05-18T08:40:19.965Z", + "expiresAt": "2020-12-25T02:44:23.569Z", + "title": null, + "description": "Hello", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 1, + "votesAgainst": 0, + "joinId": "a0329146-e32c-46fb-83b5-25673b2ce543", + "fundingId": null, + "userId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1", + "commonId": "120b0708-dc65-42d2-95e6-cb2efa89bbf5", + "commonMemberId": null, + "importedFrom": "{\"votesAgainst\":0,\"votes\":[{\"voteId\":\"e6ce4cde-0477-43ec-8126-54d53bfcb190\",\"voteOutcome\":\"approved\",\"voterId\":\"Sxv19oCvKAZq2vntJdYCTYSpWWN2\"}],\"description\":{\"links\":[],\"description\":\"Hello\"},\"votesFor\":1,\"countdownPeriod\":57600,\"id\":\"a0329146-e32c-46fb-83b5-25673b2ce543\",\"createdAt\":{\"_seconds\":1608806663,\"_nanoseconds\":569000000},\"quietEndingPeriod\":3600,\"join\":{\"payments\":[],\"fundingType\":\"one-time\",\"funding\":501,\"cardId\":\"04c64b65-a59e-4c6a-8df1-ff9cd28114ef\"},\"commonId\":\"120b0708-dc65-42d2-95e6-cb2efa89bbf5\",\"updatedAt\":{\"_seconds\":1608806718,\"_nanoseconds\":524000000},\"proposerId\":\"11j4NvvZ4kMRf4BFBUHdbRiXKMp1\",\"paymentState\":\"failed\",\"state\":\"passed\",\"type\":\"join\"}" + }, + { + "id": "a0dae02f-4f35-47bb-92da-0508bb7ec9e7", + "createdAt": "2021-05-18T08:40:19.967Z", + "updatedAt": "2021-05-18T08:40:19.968Z", + "expiresAt": "2021-05-12T02:33:24.295Z", + "title": null, + "description": "Test ", + "links": [], + "files": [], + "images": [], + "ipAddress": "2a02:ed0:5fa6:7f00:4420:e57a:5635:6dc9", + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "a0dae02f-4f35-47bb-92da-0508bb7ec9e7", + "fundingId": null, + "userId": "Sxv19oCvKAZq2vntJdYCTYSpWWN2", + "commonId": "3a179460-03a1-488e-bc68-cc798cc693e0", + "commonMemberId": null, + "importedFrom": "{\"countdownPeriod\":57600,\"updatedAt\":{\"_seconds\":1620786900,\"_nanoseconds\":966000000},\"proposerId\":\"Sxv19oCvKAZq2vntJdYCTYSpWWN2\",\"description\":{\"description\":\"Test \",\"links\":[]},\"join\":{\"cardId\":\"efc5aaad-1ea2-4764-b51a-4225fcf32508\",\"fundingType\":\"one-time\",\"ip\":\"2a02:ed0:5fa6:7f00:4420:e57a:5635:6dc9\",\"funding\":500,\"payments\":[]},\"votesAgainst\":0,\"votes\":[],\"quietEndingPeriod\":3600,\"moderation\":{\"updatedAt\":{\"_seconds\":1620729246,\"_nanoseconds\":586000000},\"flag\":\"visible\",\"reporter\":\"11j4NvvZ4kMRf4BFBUHdbRiXKMp1\",\"reasons\":[],\"countdownPeriod\":57580,\"moderatorNote\":\"\",\"quietEnding\":null,\"moderator\":\"11j4NvvZ4kMRf4BFBUHdbRiXKMp1\"},\"type\":\"join\",\"state\":\"failed\",\"votesFor\":0,\"createdAt\":{\"_seconds\":1620729204,\"_nanoseconds\":295000000},\"id\":\"a0dae02f-4f35-47bb-92da-0508bb7ec9e7\",\"commonId\":\"3a179460-03a1-488e-bc68-cc798cc693e0\"}" + }, + { + "id": "a1f20464-4a89-44af-bf0a-d45246c023c8", + "createdAt": "2021-05-18T08:40:19.969Z", + "updatedAt": "2021-05-18T08:40:19.970Z", + "expiresAt": "2021-01-22T05:06:23.125Z", + "title": null, + "description": " Dh", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "a1f20464-4a89-44af-bf0a-d45246c023c8", + "fundingId": null, + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "1d85812f-5a59-49bf-bb0d-c6579597bb0d", + "commonMemberId": null, + "importedFrom": "{\"description\":{\"links\":[],\"description\":\" Dh\"},\"proposerId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"votesAgainst\":0,\"updatedAt\":{\"_seconds\":1611292200,\"_nanoseconds\":787000000},\"createdAt\":{\"_seconds\":1611234383,\"_nanoseconds\":125000000},\"id\":\"a1f20464-4a89-44af-bf0a-d45246c023c8\",\"votes\":[],\"votesFor\":0,\"state\":\"failed\",\"commonId\":\"1d85812f-5a59-49bf-bb0d-c6579597bb0d\",\"quietEndingPeriod\":3600,\"join\":{\"payments\":[],\"fundingType\":\"one-time\",\"cardId\":\"e464ec20-4204-4d11-b66c-8d94dc12dbce\",\"funding\":3000},\"countdownPeriod\":57600,\"type\":\"join\"}" + }, + { + "id": "a26f3fe4-812b-4517-a0c2-e82f56e3aa8c", + "createdAt": "2021-05-18T08:40:19.970Z", + "updatedAt": "2021-05-18T08:40:19.971Z", + "expiresAt": "2021-01-10T12:28:01.279Z", + "title": null, + "description": "The", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "a26f3fe4-812b-4517-a0c2-e82f56e3aa8c", + "fundingId": null, + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "db048928-da8b-486f-b787-d810d4e90e7a", + "commonMemberId": null, + "importedFrom": "{\"updatedAt\":{\"_seconds\":1610281800,\"_nanoseconds\":543000000},\"id\":\"a26f3fe4-812b-4517-a0c2-e82f56e3aa8c\",\"type\":\"join\",\"quietEndingPeriod\":3600,\"votesFor\":0,\"state\":\"failed\",\"join\":{\"cardId\":\"cb4cbd98-6908-4a7d-95d8-838e52339a12\",\"funding\":1250,\"fundingType\":\"one-time\",\"payments\":[]},\"countdownPeriod\":7200,\"votes\":[],\"proposerId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"description\":{\"links\":[],\"description\":\"The\"},\"createdAt\":{\"_seconds\":1610274481,\"_nanoseconds\":279000000},\"commonId\":\"db048928-da8b-486f-b787-d810d4e90e7a\",\"votesAgainst\":0}" + }, + { + "id": "a366feab-76bb-4d99-8e6e-503a7db46811", + "createdAt": "2021-05-18T08:40:19.973Z", + "updatedAt": "2021-05-18T08:40:19.974Z", + "expiresAt": "2020-12-18T13:13:32.596Z", + "title": null, + "description": "Let me in", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "a366feab-76bb-4d99-8e6e-503a7db46811", + "fundingId": null, + "userId": "H5ZkcKBX5eXXNyBiPaph8EHCiax2", + "commonId": "8e7b0468-4c9e-4447-96da-b455a5b8c190", + "commonMemberId": null, + "importedFrom": "{\"proposerId\":\"H5ZkcKBX5eXXNyBiPaph8EHCiax2\",\"description\":{\"links\":[],\"description\":\"Let me in\"},\"votesFor\":0,\"state\":\"failed\",\"id\":\"a366feab-76bb-4d99-8e6e-503a7db46811\",\"createdAt\":{\"_seconds\":1608290012,\"_nanoseconds\":596000000},\"quietEndingPeriod\":3600,\"votes\":[],\"join\":{\"funding\":2500,\"fundingType\":\"one-time\",\"payments\":[],\"cardId\":\"a7aa3ad9-6b13-45b3-9efe-c6c19d371402\"},\"countdownPeriod\":7200,\"commonId\":\"8e7b0468-4c9e-4447-96da-b455a5b8c190\",\"updatedAt\":{\"_seconds\":1608297301,\"_nanoseconds\":842000000},\"votesAgainst\":0,\"type\":\"join\"}" + }, + { + "id": "a3e327dd-d92d-42d8-a8b3-aac26e8e43a5", + "createdAt": "2021-05-18T08:40:19.975Z", + "updatedAt": "2021-05-18T08:40:19.976Z", + "expiresAt": "2021-04-21T23:25:52.337Z", + "title": null, + "description": "Yergue", + "links": [], + "files": [], + "images": [], + "ipAddress": "178.120.3.148", + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "a3e327dd-d92d-42d8-a8b3-aac26e8e43a5", + "fundingId": null, + "userId": "2HM9WnVvr9aDYbckjCo4cIDjncY2", + "commonId": "e8eb5e55-4648-4d89-b80f-87e645df60da", + "commonMemberId": null, + "importedFrom": "{\"updatedAt\":{\"_seconds\":1619047800,\"_nanoseconds\":400000000},\"type\":\"join\",\"votesAgainst\":0,\"id\":\"a3e327dd-d92d-42d8-a8b3-aac26e8e43a5\",\"createdAt\":{\"_seconds\":1618989952,\"_nanoseconds\":336999000},\"description\":{\"links\":[],\"description\":\"Yergue\"},\"quietEndingPeriod\":3600,\"proposerId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\",\"votes\":[],\"commonId\":\"e8eb5e55-4648-4d89-b80f-87e645df60da\",\"state\":\"failed\",\"countdownPeriod\":57600,\"votesFor\":0,\"join\":{\"payments\":[],\"fundingType\":\"one-time\",\"ip\":\"178.120.3.148\",\"funding\":500,\"cardId\":\"17b65cce-72e3-4e86-ae6a-38a17207b3e6\"}}" + }, + { + "id": "a46e6785-c49d-4d8b-8aea-df7ed62f873d", + "createdAt": "2021-05-18T08:40:19.977Z", + "updatedAt": "2021-05-18T08:40:19.978Z", + "expiresAt": "2021-02-08T01:01:39.604Z", + "title": null, + "description": "This game is very good and fun and I can get a few more coins for a one person to buy one of my new ones I can do that is fun and I love the game but I love the one time and it is ", + "links": [ + { + "url": "https://en.m.wikipedia.org/wiki/Armadillo", + "title": "The only thing that is that I " + }, + { + "url": "https://en.m.wikipedia.org/wiki/Armadillo", + "title": "Armadillo " + } + ], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 1, + "joinId": "a46e6785-c49d-4d8b-8aea-df7ed62f873d", + "fundingId": null, + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "60026234-b1ff-4596-baa2-0d7be186f561", + "commonMemberId": "83f3a71c-b544-40c8-8e74-3ffc10f5ec87", + "importedFrom": "{\"countdownPeriod\":57600,\"id\":\"a46e6785-c49d-4d8b-8aea-df7ed62f873d\",\"updatedAt\":{\"_seconds\":1612690317,\"_nanoseconds\":200000000},\"quietEndingPeriod\":3600,\"votesAgainst\":1,\"description\":{\"description\":\"This game is very good and fun and I can get a few more coins for a one person to buy one of my new ones I can do that is fun and I love the game but I love the one time and it is \",\"links\":[{\"title\":\"The only thing that is that I \",\"value\":\"https://en.m.wikipedia.org/wiki/Armadillo\"},{\"title\":\"Armadillo \",\"value\":\"https://en.m.wikipedia.org/wiki/Armadillo\"}]},\"proposerId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"join\":{\"cardId\":\"06ae077d-09f8-4d70-bcd0-2a087a361544\",\"fundingType\":\"one-time\",\"funding\":30000,\"payments\":[]},\"votes\":[{\"voterId\":\"Xh4xoIGHhgOhxz1S5AJkaXCBT8K2\",\"voteOutcome\":\"rejected\",\"voteId\":\"a84f5b7f-da6b-4499-aa4b-2a7d8def8898\"}],\"votesFor\":0,\"state\":\"failed\",\"commonId\":\"60026234-b1ff-4596-baa2-0d7be186f561\",\"createdAt\":{\"_seconds\":1612688499,\"_nanoseconds\":604000000},\"type\":\"join\"}" + }, + { + "id": "a493f825-2609-4891-8d1d-b5bff9c4fcf3", + "createdAt": "2021-05-18T08:40:19.979Z", + "updatedAt": "2021-05-18T08:40:19.980Z", + "expiresAt": "2021-03-17T05:12:28.518Z", + "title": null, + "description": "Hi", + "links": [], + "files": [], + "images": [], + "ipAddress": "46.56.242.100", + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 1, + "votesAgainst": 0, + "joinId": "a493f825-2609-4891-8d1d-b5bff9c4fcf3", + "fundingId": null, + "userId": "5Bi1KZGIYzW5UIljHgBlO98NXaI2", + "commonId": "15c15871-d513-4a06-9e24-7d2c92cbd571", + "commonMemberId": "b388f34e-f221-45ef-93f2-d09fffd804b1", + "importedFrom": "{\"createdAt\":{\"_seconds\":1615900348,\"_nanoseconds\":518000000},\"votes\":[{\"voteOutcome\":\"approved\",\"voterId\":\"Xlun3Ux94Zfc73axkiuVdkktOWf1\",\"voteId\":\"30a529d2-1187-4bfd-92c8-704a1b121332\"}],\"join\":{\"cardId\":\"38004bd6-fa1b-4ae7-b845-cb764beb3915\",\"fundingType\":\"one-time\",\"payments\":[\"a09473c3-43dd-4b17-9bc6-6088a45a35a5\"],\"ip\":\"46.56.242.100\",\"funding\":700},\"commonId\":\"15c15871-d513-4a06-9e24-7d2c92cbd571\",\"votesAgainst\":0,\"id\":\"a493f825-2609-4891-8d1d-b5bff9c4fcf3\",\"updatedAt\":{\"_seconds\":1615958107,\"_nanoseconds\":856000000},\"state\":\"passed\",\"votesFor\":1,\"paymentState\":\"confirmed\",\"countdownPeriod\":57600,\"type\":\"join\",\"proposerId\":\"5Bi1KZGIYzW5UIljHgBlO98NXaI2\",\"description\":{\"links\":[],\"description\":\"Hi\"},\"quietEndingPeriod\":3600}" + }, + { + "id": "a58c7340-604c-49ef-ac49-79caba954f10", + "createdAt": "2021-05-18T08:40:19.980Z", + "updatedAt": "2021-05-18T08:40:19.981Z", + "expiresAt": "2021-02-05T05:13:18.774Z", + "title": null, + "description": "Yu", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 2, + "votesAgainst": 0, + "joinId": "a58c7340-604c-49ef-ac49-79caba954f10", + "fundingId": null, + "userId": "P21SZrJ6z5YjyF8WFaHv5eRsoFo1", + "commonId": "f419ad93-d978-45b6-8ed0-70645cdeb62a", + "commonMemberId": null, + "importedFrom": "{\"countdownPeriod\":57600,\"state\":\"passed\",\"proposerId\":\"P21SZrJ6z5YjyF8WFaHv5eRsoFo1\",\"description\":{\"links\":[],\"description\":\"Yu\"},\"createdAt\":{\"_seconds\":1612444398,\"_nanoseconds\":774000000},\"votes\":[{\"voterId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"voteOutcome\":\"approved\",\"voteId\":\"38de6486-51b0-42de-920e-e0114e3053b6\"},{\"voteId\":\"0f7508fe-9bde-4507-9b25-d3cd679976aa\",\"voteOutcome\":\"approved\",\"voterId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\"}],\"votesAgainst\":0,\"updatedAt\":{\"_seconds\":1612444441,\"_nanoseconds\":208000000},\"commonId\":\"f419ad93-d978-45b6-8ed0-70645cdeb62a\",\"quietEndingPeriod\":3600,\"votesFor\":2,\"paymentState\":\"confirmed\",\"id\":\"a58c7340-604c-49ef-ac49-79caba954f10\",\"type\":\"join\",\"join\":{\"funding\":20000,\"cardId\":\"09410e41-8fe9-491b-b928-163a57e3dea6\",\"fundingType\":\"monthly\",\"payments\":[]}}" + }, + { + "id": "a6759027-906c-4af0-bea4-84d5cb2f1648", + "createdAt": "2021-05-18T08:40:20.014Z", + "updatedAt": "2021-05-18T08:40:20.015Z", + "expiresAt": "2021-03-03T01:10:13.721Z", + "title": null, + "description": "Dbdjurh", + "links": [], + "files": [], + "images": [], + "ipAddress": "178.120.63.174", + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 2, + "votesAgainst": 0, + "joinId": "a6759027-906c-4af0-bea4-84d5cb2f1648", + "fundingId": null, + "userId": "Wz0ZgOvKnafrjLDeAeWqx182uBq2", + "commonId": "e87ef1d5-7802-4f64-aa71-d605ddde17cb", + "commonMemberId": null, + "importedFrom": "{\"updatedAt\":{\"_seconds\":1614676256,\"_nanoseconds\":966000000},\"quietEndingPeriod\":3600,\"type\":\"join\",\"description\":{\"links\":[],\"description\":\"Dbdjurh\"},\"proposerId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"join\":{\"ip\":\"178.120.63.174\",\"fundingType\":\"monthly\",\"payments\":[],\"cardId\":\"e37d423e-4e10-4483-9ec6-a90e7b7abe7b\",\"funding\":500},\"state\":\"passed\",\"commonId\":\"e87ef1d5-7802-4f64-aa71-d605ddde17cb\",\"id\":\"a6759027-906c-4af0-bea4-84d5cb2f1648\",\"countdownPeriod\":57600,\"votes\":[{\"voteOutcome\":\"approved\",\"voterId\":\"5Bi1KZGIYzW5UIljHgBlO98NXaI2\",\"voteId\":\"5b997731-7ce5-40e1-881b-a6be6d868ef1\"},{\"voteId\":\"b7020811-b425-4f10-b414-47fc1cdee3e1\",\"voteOutcome\":\"approved\",\"voterId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\"}],\"createdAt\":{\"_seconds\":1614676213,\"_nanoseconds\":721000000},\"paymentState\":\"confirmed\",\"votesAgainst\":0,\"votesFor\":2}" + }, + { + "id": "a73bfe11-0c08-4fea-83d7-d9fbba9e8be2", + "createdAt": "2021-05-18T08:40:20.016Z", + "updatedAt": "2021-05-18T08:40:20.017Z", + "expiresAt": "2021-02-02T23:27:19.604Z", + "title": null, + "description": "Thanks 👍👍👍👍👍👍👍👍", + "links": [ + { + "url": "https://m-maariv-co-il.cdn.ampproject.org/v/s/m.maariv.co.il/amp/news/politics/Article-819196?amp_js_v=a6&_gsa=1&usqp=mq331AQHKAFQArABIA%3D%3D#aoh=16122505099745&_ct=1612250672885&csi=1&referrer=https%3A%2F%2Fwww.google.com&_tf=From%20%251%24s&share=https%3A%2F%2Fwww.maariv.co.il%2Fnews%2Fpolitics%2FArticle-819196", + "title": "Vhd" + } + ], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 2, + "votesAgainst": 0, + "joinId": "a73bfe11-0c08-4fea-83d7-d9fbba9e8be2", + "fundingId": null, + "userId": "P21SZrJ6z5YjyF8WFaHv5eRsoFo1", + "commonId": "0970bc3f-beca-4b6e-acb1-42f1b4bba931", + "commonMemberId": "05bba7b4-05fd-44b3-9bf1-a598d6017d05", + "importedFrom": "{\"id\":\"a73bfe11-0c08-4fea-83d7-d9fbba9e8be2\",\"votesFor\":2,\"countdownPeriod\":57600,\"proposerId\":\"P21SZrJ6z5YjyF8WFaHv5eRsoFo1\",\"updatedAt\":{\"_seconds\":1612251061,\"_nanoseconds\":96000000},\"createdAt\":{\"_seconds\":1612250839,\"_nanoseconds\":604000000},\"state\":\"passed\",\"description\":{\"links\":[{\"title\":\"Vhd\",\"value\":\"https://m-maariv-co-il.cdn.ampproject.org/v/s/m.maariv.co.il/amp/news/politics/Article-819196?amp_js_v=a6&_gsa=1&usqp=mq331AQHKAFQArABIA%3D%3D#aoh=16122505099745&_ct=1612250672885&csi=1&referrer=https%3A%2F%2Fwww.google.com&_tf=From%20%251%24s&share=https%3A%2F%2Fwww.maariv.co.il%2Fnews%2Fpolitics%2FArticle-819196\"}],\"description\":\"Thanks 👍👍👍👍👍👍👍👍\"},\"join\":{\"funding\":30000,\"payments\":[\"042e4198-083b-4fe8-9aea-50938503f2c9\"],\"cardId\":\"351b8c5e-5c97-418d-a986-4b1fe7fca81a\",\"fundingType\":\"one-time\"},\"votes\":[{\"voteId\":\"130f85ab-c652-4174-927d-1d3a8a7bb67e\",\"voteOutcome\":\"approved\",\"voterId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\"},{\"voterId\":\"Xh4xoIGHhgOhxz1S5AJkaXCBT8K2\",\"voteOutcome\":\"approved\",\"voteId\":\"9488d784-5e7e-4412-948b-f9cd6de176ae\"}],\"type\":\"join\",\"paymentState\":\"confirmed\",\"votesAgainst\":0,\"commonId\":\"0970bc3f-beca-4b6e-acb1-42f1b4bba931\",\"quietEndingPeriod\":3600}" + }, + { + "id": "a8b88ea8-8e7e-4e2f-945a-db1c0b169f1b", + "createdAt": "2021-05-18T08:40:20.017Z", + "updatedAt": "2021-05-18T08:40:20.018Z", + "expiresAt": "2021-03-11T09:16:50.803Z", + "title": null, + "description": "Ggg", + "links": [], + "files": [], + "images": [], + "ipAddress": "178.120.66.122", + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "a8b88ea8-8e7e-4e2f-945a-db1c0b169f1b", + "fundingId": null, + "userId": "2HM9WnVvr9aDYbckjCo4cIDjncY2", + "commonId": "c45d25f6-d40e-4336-93ac-2274a3f51b1e", + "commonMemberId": "1a874900-8d20-4d7a-bab8-695be56964ba", + "importedFrom": "{\"updatedAt\":{\"_seconds\":1615454400,\"_nanoseconds\":909000000},\"votesAgainst\":0,\"commonId\":\"c45d25f6-d40e-4336-93ac-2274a3f51b1e\",\"type\":\"join\",\"votes\":[],\"state\":\"failed\",\"description\":{\"links\":[],\"description\":\"Ggg\"},\"proposerId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\",\"countdownPeriod\":57600,\"quietEndingPeriod\":3600,\"createdAt\":{\"_seconds\":1615396610,\"_nanoseconds\":803000000},\"votesFor\":0,\"id\":\"a8b88ea8-8e7e-4e2f-945a-db1c0b169f1b\",\"join\":{\"payments\":[],\"fundingType\":\"monthly\",\"funding\":500,\"ip\":\"178.120.66.122\",\"cardId\":\"c3b6c07f-3a2d-49ca-9b5b-408fbf0b8760\"}}" + }, + { + "id": "a9ab7d88-3f5f-42f8-bab3-4657aa0930be", + "createdAt": "2021-05-18T08:40:20.019Z", + "updatedAt": "2021-05-18T08:40:20.020Z", + "expiresAt": "2021-03-26T00:39:41.774Z", + "title": null, + "description": "55", + "links": [], + "files": [], + "images": [], + "ipAddress": "178.120.64.230", + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 2, + "joinId": "a9ab7d88-3f5f-42f8-bab3-4657aa0930be", + "fundingId": null, + "userId": "5Bi1KZGIYzW5UIljHgBlO98NXaI2", + "commonId": "6f88e880-1ed8-4946-8326-d285239d293b", + "commonMemberId": null, + "importedFrom": "{\"commonId\":\"6f88e880-1ed8-4946-8326-d285239d293b\",\"state\":\"failed\",\"updatedAt\":{\"_seconds\":1616663997,\"_nanoseconds\":456000000},\"votes\":[{\"voteOutcome\":\"rejected\",\"voteId\":\"487bf157-e8fa-4e66-8064-be505593b8a6\",\"voterId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\"},{\"voterId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"voteOutcome\":\"rejected\",\"voteId\":\"ad47b0bc-593d-43ec-927c-4cbeda4b9fc2\"}],\"description\":{\"links\":[],\"description\":\"55\"},\"votesAgainst\":2,\"proposerId\":\"5Bi1KZGIYzW5UIljHgBlO98NXaI2\",\"quietEndingPeriod\":3600,\"countdownPeriod\":57600,\"createdAt\":{\"_seconds\":1616661581,\"_nanoseconds\":774000000},\"join\":{\"fundingType\":\"one-time\",\"funding\":2000,\"payments\":[],\"ip\":\"178.120.64.230\",\"cardId\":\"fd6bbb0c-cf95-4fef-95eb-1fa8ed93eb36\"},\"id\":\"a9ab7d88-3f5f-42f8-bab3-4657aa0930be\",\"votesFor\":0,\"type\":\"join\"}" + }, + { + "id": "abe4ceaa-3e2d-47bb-9ee2-e26c3f1f041c", + "createdAt": "2021-05-18T08:40:20.024Z", + "updatedAt": "2021-05-18T08:40:20.024Z", + "expiresAt": "2021-03-23T09:43:54.877Z", + "title": null, + "description": "With link ", + "links": [ + { + "url": "https://www.allrecipes.com/recipe/10032/allisons-supreme-chocolate-chip-cookies/", + "title": "Cookies" + } + ], + "files": [], + "images": [], + "ipAddress": "2a02:ed0:5395:ef00:90e3:172e:f64b:4fc2", + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "abe4ceaa-3e2d-47bb-9ee2-e26c3f1f041c", + "fundingId": null, + "userId": "y2wLlb4FV6PehGGAmj9akMnwkzl2", + "commonId": "10fd7df7-eae9-4995-9c85-90e691c439e1", + "commonMemberId": null, + "importedFrom": "{\"proposerId\":\"y2wLlb4FV6PehGGAmj9akMnwkzl2\",\"id\":\"abe4ceaa-3e2d-47bb-9ee2-e26c3f1f041c\",\"countdownPeriod\":57600,\"quietEndingPeriod\":3600,\"votesAgainst\":0,\"votes\":[],\"type\":\"join\",\"votesFor\":0,\"join\":{\"ip\":\"2a02:ed0:5395:ef00:90e3:172e:f64b:4fc2\",\"payments\":[],\"cardId\":\"80dc9bfe-387e-4aaf-a9dc-f738813a5ece\",\"funding\":500},\"description\":{\"description\":\"With link \",\"links\":[{\"value\":\"https://www.allrecipes.com/recipe/10032/allisons-supreme-chocolate-chip-cookies/\",\"title\":\"Cookies\"}]},\"commonId\":\"10fd7df7-eae9-4995-9c85-90e691c439e1\",\"updatedAt\":{\"_seconds\":1616492701,\"_nanoseconds\":106000000},\"state\":\"failed\",\"createdAt\":{\"_seconds\":1616435034,\"_nanoseconds\":877000000}}" + }, + { + "id": "ac7bb4e8-69ca-4ff4-bd76-3b30ceee21a7", + "createdAt": "2021-05-18T08:40:20.025Z", + "updatedAt": "2021-05-18T08:40:20.026Z", + "expiresAt": "2021-01-15T03:49:48.828Z", + "title": null, + "description": "This is intro", + "links": [ + { + "url": "https://healthy.walla.co.il/item/3169487", + "title": "Link title" + } + ], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "ac7bb4e8-69ca-4ff4-bd76-3b30ceee21a7", + "fundingId": null, + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "207b484d-a0cd-4b8d-bd0c-08bb1167f15b", + "commonMemberId": null, + "importedFrom": "{\"votesAgainst\":0,\"description\":{\"links\":[{\"title\":\"Link title\",\"value\":\"https://healthy.walla.co.il/item/3169487\"}],\"description\":\"This is intro\"},\"commonId\":\"207b484d-a0cd-4b8d-bd0c-08bb1167f15b\",\"id\":\"ac7bb4e8-69ca-4ff4-bd76-3b30ceee21a7\",\"join\":{\"fundingType\":\"monthly\",\"cardId\":\"cb1bd98f-337f-439c-9665-70f22ad55ae5\",\"funding\":125000,\"payments\":[]},\"votesFor\":0,\"createdAt\":{\"_seconds\":1610624988,\"_nanoseconds\":828000000},\"type\":\"join\",\"updatedAt\":{\"_seconds\":1610682600,\"_nanoseconds\":449000000},\"proposerId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"state\":\"failed\",\"countdownPeriod\":57600,\"votes\":[],\"quietEndingPeriod\":3600}" + }, + { + "id": "ad3e4f13-97d9-4183-9289-35dedf21cc1a", + "createdAt": "2021-05-18T08:40:20.027Z", + "updatedAt": "2021-05-18T08:40:20.028Z", + "expiresAt": "2021-05-12T02:42:34.197Z", + "title": null, + "description": "Testing", + "links": [], + "files": [], + "images": [], + "ipAddress": "2a02:ed0:5fa6:7f00:4420:e57a:5635:6dc9", + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 1, + "votesAgainst": 0, + "joinId": "ad3e4f13-97d9-4183-9289-35dedf21cc1a", + "fundingId": null, + "userId": "Sxv19oCvKAZq2vntJdYCTYSpWWN2", + "commonId": "31c22ac8-4a35-4763-9e77-51d50155cc26", + "commonMemberId": "3b0ad030-c8a6-4503-9318-dcce019af74c", + "importedFrom": "{\"paymentState\":\"confirmed\",\"votes\":[{\"voteOutcome\":\"approved\",\"voteId\":\"b8bba859-aa02-438d-9703-329cdde1eba7\",\"voterId\":\"11j4NvvZ4kMRf4BFBUHdbRiXKMp1\"}],\"description\":{\"description\":\"Testing\",\"links\":[]},\"state\":\"passed\",\"updatedAt\":{\"_seconds\":1620729773,\"_nanoseconds\":648000000},\"countdownPeriod\":57600,\"commonId\":\"31c22ac8-4a35-4763-9e77-51d50155cc26\",\"createdAt\":{\"_seconds\":1620729754,\"_nanoseconds\":197000000},\"id\":\"ad3e4f13-97d9-4183-9289-35dedf21cc1a\",\"proposerId\":\"Sxv19oCvKAZq2vntJdYCTYSpWWN2\",\"type\":\"join\",\"join\":{\"cardId\":\"fd9b2f1f-411c-4a22-9e6d-70e86749fc80\",\"funding\":500,\"fundingType\":\"monthly\",\"ip\":\"2a02:ed0:5fa6:7f00:4420:e57a:5635:6dc9\",\"payments\":[]},\"votesAgainst\":0,\"votesFor\":1,\"quietEndingPeriod\":3600}" + }, + { + "id": "aeab0ee0-4556-4fb2-84d2-a65d57ad280f", + "createdAt": "2021-05-18T08:40:20.029Z", + "updatedAt": "2021-05-18T08:40:20.030Z", + "expiresAt": "2021-01-31T08:47:59.271Z", + "title": null, + "description": "Dhdh rhrh", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "aeab0ee0-4556-4fb2-84d2-a65d57ad280f", + "fundingId": null, + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "120b0708-dc65-42d2-95e6-cb2efa89bbf5", + "commonMemberId": null, + "importedFrom": "{\"quietEndingPeriod\":3600,\"description\":{\"description\":\"Dhdh rhrh\",\"links\":[]},\"votes\":[],\"state\":\"failed\",\"id\":\"aeab0ee0-4556-4fb2-84d2-a65d57ad280f\",\"createdAt\":{\"_seconds\":1612025279,\"_nanoseconds\":271000000},\"commonId\":\"120b0708-dc65-42d2-95e6-cb2efa89bbf5\",\"join\":{\"cardId\":\"ca514300-eb86-45e2-b373-bb9f111a4ea3\",\"fundingType\":\"one-time\",\"payments\":[],\"funding\":500},\"countdownPeriod\":57600,\"votesAgainst\":0,\"votesFor\":0,\"updatedAt\":{\"_seconds\":1612083000,\"_nanoseconds\":991000000},\"proposerId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"type\":\"join\"}" + }, + { + "id": "af09b4fd-823f-44c2-a91b-34bbcc2ac35a", + "createdAt": "2021-05-18T08:40:20.031Z", + "updatedAt": "2021-05-18T08:40:20.032Z", + "expiresAt": "2021-03-15T08:41:56.731Z", + "title": null, + "description": "יעני", + "links": [], + "files": [], + "images": [], + "ipAddress": "147.161.15.249", + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 2, + "votesAgainst": 0, + "joinId": "af09b4fd-823f-44c2-a91b-34bbcc2ac35a", + "fundingId": null, + "userId": "P21SZrJ6z5YjyF8WFaHv5eRsoFo1", + "commonId": "08e9568e-377d-4c6e-aa77-45fd84922948", + "commonMemberId": null, + "importedFrom": "{\"updatedAt\":{\"_seconds\":1615740301,\"_nanoseconds\":583000000},\"paymentState\":\"confirmed\",\"proposerId\":\"P21SZrJ6z5YjyF8WFaHv5eRsoFo1\",\"join\":{\"fundingType\":\"monthly\",\"cardId\":\"b9761076-d54f-453c-85b4-311839ac2e88\",\"ip\":\"147.161.15.249\",\"funding\":50000,\"payments\":[]},\"countdownPeriod\":57600,\"votes\":[{\"voterId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"voteId\":\"5d941b38-d858-4a12-8418-e99de9862214\",\"voteOutcome\":\"approved\"},{\"voteOutcome\":\"approved\",\"voterId\":\"Xh4xoIGHhgOhxz1S5AJkaXCBT8K2\",\"voteId\":\"a3ffcde0-0bb9-4060-a27b-ec2a29a71442\"}],\"description\":{\"links\":[],\"description\":\"יעני\"},\"quietEndingPeriod\":3600,\"votesAgainst\":0,\"type\":\"join\",\"commonId\":\"08e9568e-377d-4c6e-aa77-45fd84922948\",\"votesFor\":2,\"createdAt\":{\"_seconds\":1615740116,\"_nanoseconds\":731000000},\"id\":\"af09b4fd-823f-44c2-a91b-34bbcc2ac35a\",\"state\":\"passed\"}" + }, + { + "id": "afcd4290-3fdf-4010-b3a9-f421432ca14a", + "createdAt": "2021-05-18T08:40:20.035Z", + "updatedAt": "2021-05-18T08:40:20.036Z", + "expiresAt": "2021-03-16T07:21:04.537Z", + "title": null, + "description": "Dsfsdfs staff sdf ", + "links": [], + "files": [], + "images": [], + "ipAddress": "46.53.242.163", + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 2, + "votesAgainst": 0, + "joinId": "afcd4290-3fdf-4010-b3a9-f421432ca14a", + "fundingId": null, + "userId": "WMzKDGJSlWM2Rjx9JVp9StB2Bni2", + "commonId": "15c15871-d513-4a06-9e24-7d2c92cbd571", + "commonMemberId": "92984cbd-f4d0-408c-bb30-2aa3c91d3412", + "importedFrom": "{\"join\":{\"ip\":\"46.53.242.163\",\"cardId\":\"58b29c63-5981-4482-9c3f-766ac7d030af\",\"payments\":[\"bde75d54-5e37-48f8-9791-ba84bebb3296\"],\"funding\":700,\"fundingType\":\"one-time\"},\"votes\":[{\"voteId\":\"5d4c531c-d4a2-4fa2-bbb1-0bb97e32f2a1\",\"voterId\":\"Xlun3Ux94Zfc73axkiuVdkktOWf1\",\"voteOutcome\":\"approved\"},{\"voteId\":\"aceb00ce-8b80-4ef4-8313-507740954446\",\"voteOutcome\":\"approved\",\"voterId\":\"0jL6u33k2rMoEY8wUmnIvkJM48O2\"}],\"countdownPeriod\":57600,\"quietEndingPeriod\":3600,\"votesAgainst\":0,\"description\":{\"description\":\"Dsfsdfs staff sdf \",\"links\":[]},\"proposerId\":\"WMzKDGJSlWM2Rjx9JVp9StB2Bni2\",\"id\":\"afcd4290-3fdf-4010-b3a9-f421432ca14a\",\"updatedAt\":{\"_seconds\":1615821728,\"_nanoseconds\":244000000},\"state\":\"passed\",\"votesFor\":2,\"type\":\"join\",\"paymentState\":\"confirmed\",\"commonId\":\"15c15871-d513-4a06-9e24-7d2c92cbd571\",\"createdAt\":{\"_seconds\":1615821664,\"_nanoseconds\":537000000}}" + }, + { + "id": "b20b4c4f-df6d-4a69-8b6e-b8960683c3fe", + "createdAt": "2021-05-18T08:40:20.037Z", + "updatedAt": "2021-05-18T08:40:20.038Z", + "expiresAt": "2021-01-18T08:17:25.242Z", + "title": null, + "description": "Dh", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "b20b4c4f-df6d-4a69-8b6e-b8960683c3fe", + "fundingId": null, + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "120b0708-dc65-42d2-95e6-cb2efa89bbf5", + "commonMemberId": null, + "importedFrom": "{\"id\":\"b20b4c4f-df6d-4a69-8b6e-b8960683c3fe\",\"proposerId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"votesAgainst\":0,\"createdAt\":{\"_seconds\":1610900245,\"_nanoseconds\":242000000},\"quietEndingPeriod\":3600,\"join\":{\"funding\":500,\"payments\":[],\"cardId\":\"29225a20-fc52-4877-a391-a5eb7104c21a\",\"fundingType\":\"one-time\"},\"commonId\":\"120b0708-dc65-42d2-95e6-cb2efa89bbf5\",\"state\":\"failed\",\"type\":\"join\",\"votesFor\":0,\"countdownPeriod\":57600,\"updatedAt\":{\"_seconds\":1610958000,\"_nanoseconds\":634000000},\"description\":{\"description\":\"Dh\",\"links\":[]},\"votes\":[]}" + }, + { + "id": "b4d937bf-a8bc-4b92-87c6-2331cd2b257b", + "createdAt": "2021-05-18T08:40:20.040Z", + "updatedAt": "2021-05-18T08:40:20.041Z", + "expiresAt": "2021-03-19T00:33:00.795Z", + "title": null, + "description": "123", + "links": [], + "files": [], + "images": [], + "ipAddress": "178.120.61.209", + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "b4d937bf-a8bc-4b92-87c6-2331cd2b257b", + "fundingId": null, + "userId": "Wz0ZgOvKnafrjLDeAeWqx182uBq2", + "commonId": "20c97f59-d176-41a5-9cfa-1b31b017718f", + "commonMemberId": null, + "importedFrom": "{\"id\":\"b4d937bf-a8bc-4b92-87c6-2331cd2b257b\",\"votes\":[],\"join\":{\"funding\":500,\"ip\":\"178.120.61.209\",\"payments\":[],\"cardId\":\"159109ab-5bb3-495f-8a3e-d7661a835503\",\"fundingType\":\"monthly\"},\"createdAt\":{\"_seconds\":1616056380,\"_nanoseconds\":795000000},\"quietEndingPeriod\":3600,\"updatedAt\":{\"_seconds\":1616114100,\"_nanoseconds\":507000000},\"votesFor\":0,\"commonId\":\"20c97f59-d176-41a5-9cfa-1b31b017718f\",\"countdownPeriod\":57600,\"proposerId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"description\":{\"links\":[],\"description\":\"123\"},\"votesAgainst\":0,\"state\":\"failed\",\"type\":\"join\"}" + }, + { + "id": "b65c0419-5b7e-4024-9093-c8afd0248481", + "createdAt": "2021-05-18T08:40:20.042Z", + "updatedAt": "2021-05-18T08:40:20.043Z", + "expiresAt": "2021-03-05T08:25:38.320Z", + "title": null, + "description": "Go ", + "links": [], + "files": [], + "images": [], + "ipAddress": "77.127.45.147", + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "b65c0419-5b7e-4024-9093-c8afd0248481", + "fundingId": null, + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "15c15871-d513-4a06-9e24-7d2c92cbd571", + "commonMemberId": null, + "importedFrom": "{\"createdAt\":{\"_seconds\":1614875138,\"_nanoseconds\":320000000},\"proposerId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"state\":\"failed\",\"description\":{\"links\":[],\"description\":\"Go \"},\"countdownPeriod\":57600,\"votesFor\":0,\"join\":{\"funding\":700,\"cardId\":\"aa97c7c0-f474-418e-b829-06b4b8089e34\",\"payments\":[],\"fundingType\":\"one-time\",\"ip\":\"77.127.45.147\"},\"votes\":[],\"id\":\"b65c0419-5b7e-4024-9093-c8afd0248481\",\"type\":\"join\",\"commonId\":\"15c15871-d513-4a06-9e24-7d2c92cbd571\",\"quietEndingPeriod\":3600,\"votesAgainst\":0,\"updatedAt\":{\"_seconds\":1614933000,\"_nanoseconds\":547000000}}" + }, + { + "id": "b900c3e9-cdf5-48a9-b4fd-f2c4f3cc82c7", + "createdAt": "2021-05-18T08:40:20.046Z", + "updatedAt": "2021-05-18T08:40:20.047Z", + "expiresAt": "2021-02-02T06:59:09.109Z", + "title": null, + "description": "Hi", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "b900c3e9-cdf5-48a9-b4fd-f2c4f3cc82c7", + "fundingId": null, + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "259f9b2d-c3c9-4014-ad51-22d591955afc", + "commonMemberId": null, + "importedFrom": "{\"description\":{\"links\":[],\"description\":\"Hi\"},\"updatedAt\":{\"_seconds\":1612249200,\"_nanoseconds\":856000000},\"proposerId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"votesAgainst\":0,\"votesFor\":0,\"commonId\":\"259f9b2d-c3c9-4014-ad51-22d591955afc\",\"type\":\"join\",\"createdAt\":{\"_seconds\":1612191549,\"_nanoseconds\":109000000},\"state\":\"failed\",\"countdownPeriod\":57600,\"join\":{\"cardId\":\"fbb1312b-0020-419e-b72d-136455543008\",\"payments\":[],\"funding\":240000,\"fundingType\":\"one-time\"},\"votes\":[],\"quietEndingPeriod\":3600,\"id\":\"b900c3e9-cdf5-48a9-b4fd-f2c4f3cc82c7\"}" + }, + { + "id": "ba365a30-9f32-492a-bde5-27871330a52b", + "createdAt": "2021-05-18T08:40:20.048Z", + "updatedAt": "2021-05-18T08:40:20.049Z", + "expiresAt": "2020-12-18T17:55:13.518Z", + "title": null, + "description": "Jdjdbx", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 1, + "votesAgainst": 0, + "joinId": "ba365a30-9f32-492a-bde5-27871330a52b", + "fundingId": null, + "userId": "DAawzIgIIifv6GfzdDJRJ1kZl7J2", + "commonId": "0313e3e2-b34b-4192-9381-13fc4516a923", + "commonMemberId": "ac787c87-9bc0-4c2d-8a64-dcc521de1c89", + "importedFrom": "{\"type\":\"join\",\"commonId\":\"0313e3e2-b34b-4192-9381-13fc4516a923\",\"id\":\"ba365a30-9f32-492a-bde5-27871330a52b\",\"proposerId\":\"DAawzIgIIifv6GfzdDJRJ1kZl7J2\",\"votesAgainst\":0,\"description\":{\"description\":\"Jdjdbx\",\"links\":[]},\"votesFor\":1,\"state\":\"passed\",\"votes\":[{\"voterId\":\"BONVnugkzuhlKnhSTvQSlYGZMEy1\",\"voteOutcome\":\"approved\",\"voteId\":\"784da491-4438-48be-9baf-d9f6d73e5085\"}],\"updatedAt\":{\"_seconds\":1608307001,\"_nanoseconds\":423000000},\"join\":{\"fundingType\":\"monthly\",\"funding\":500,\"cardId\":\"bd5d1f06-d4bd-497e-948d-658baabbbec1\",\"payments\":[]},\"quietEndingPeriod\":3600,\"createdAt\":{\"_seconds\":1608306913,\"_nanoseconds\":518000000},\"countdownPeriod\":7200,\"paymentState\":\"confirmed\"}" + }, + { + "id": "bb5e87fa-9efc-4644-91cc-65ff93fb8310", + "createdAt": "2021-05-18T08:40:20.049Z", + "updatedAt": "2021-05-18T08:40:20.050Z", + "expiresAt": "2021-03-24T02:25:09.814Z", + "title": null, + "description": "Вика айфон", + "links": [], + "files": [], + "images": [], + "ipAddress": "134.17.176.64", + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 1, + "votesAgainst": 0, + "joinId": "bb5e87fa-9efc-4644-91cc-65ff93fb8310", + "fundingId": null, + "userId": "WKODFO6A3VMqWLYE2rrmrSGRrKF2", + "commonId": "162374ec-7e92-47fa-b0a5-21f342fbc023", + "commonMemberId": "8f488967-5630-4042-8c96-879bc3f48e53", + "importedFrom": "{\"id\":\"bb5e87fa-9efc-4644-91cc-65ff93fb8310\",\"quietEndingPeriod\":3600,\"votesFor\":1,\"votes\":[{\"voterId\":\"RN4V4T2Z4gf2ld9QhwanrQbSnP23\",\"voteId\":\"5c3675de-7625-4e8e-be31-212b3752a973\",\"voteOutcome\":\"approved\"}],\"type\":\"join\",\"votesAgainst\":0,\"createdAt\":{\"_seconds\":1616495109,\"_nanoseconds\":814000000},\"paymentState\":\"confirmed\",\"join\":{\"fundingType\":\"one-time\",\"ip\":\"134.17.176.64\",\"payments\":[\"77ce74ae-6006-49f4-9926-d03a9ce6a3e3\"],\"funding\":1500,\"cardId\":\"1b2280a9-a9cc-4e5d-87d0-a80f101d77ba\"},\"state\":\"passed\",\"proposerId\":\"WKODFO6A3VMqWLYE2rrmrSGRrKF2\",\"description\":{\"links\":[],\"description\":\"Вика айфон\"},\"countdownPeriod\":57600,\"commonId\":\"162374ec-7e92-47fa-b0a5-21f342fbc023\",\"updatedAt\":{\"_seconds\":1616500153,\"_nanoseconds\":675000000}}" + }, + { + "id": "bc898b6c-9eaa-448e-b732-3f75ee92eec5", + "createdAt": "2021-05-18T08:40:20.051Z", + "updatedAt": "2021-05-18T08:40:20.052Z", + "expiresAt": "2021-03-25T06:07:35.693Z", + "title": null, + "description": "1", + "links": [], + "files": [], + "images": [], + "ipAddress": "178.120.64.230", + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 1, + "votesAgainst": 0, + "joinId": "bc898b6c-9eaa-448e-b732-3f75ee92eec5", + "fundingId": null, + "userId": "Wz0ZgOvKnafrjLDeAeWqx182uBq2", + "commonId": "6f88e880-1ed8-4946-8326-d285239d293b", + "commonMemberId": "0a6c5ec9-afa8-4386-82b5-dc2673dcc96e", + "importedFrom": "{\"quietEndingPeriod\":3600,\"countdownPeriod\":57600,\"join\":{\"fundingType\":\"one-time\",\"ip\":\"178.120.64.230\",\"cardId\":\"bae23947-2b37-4572-aaea-0c998b2a2ea8\",\"payments\":[\"3521641a-7bea-49f6-85cc-9771f2465858\"],\"funding\":1000},\"proposerId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"votes\":[{\"voteId\":\"179be917-33b7-4b06-b122-41f752afedd7\",\"voteOutcome\":\"approved\",\"voterId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\"}],\"commonId\":\"6f88e880-1ed8-4946-8326-d285239d293b\",\"state\":\"passed\",\"type\":\"join\",\"createdAt\":{\"_seconds\":1616594855,\"_nanoseconds\":693000000},\"id\":\"bc898b6c-9eaa-448e-b732-3f75ee92eec5\",\"votesFor\":1,\"paymentState\":\"confirmed\",\"votesAgainst\":0,\"description\":{\"links\":[],\"description\":\"1\"},\"updatedAt\":{\"_seconds\":1616594891,\"_nanoseconds\":886000000}}" + }, + { + "id": "bcaf65dd-1c03-4688-83ef-a13dd90cafa4", + "createdAt": "2021-05-18T08:40:20.052Z", + "updatedAt": "2021-05-18T08:40:20.054Z", + "expiresAt": "2021-03-02T01:49:34.196Z", + "title": null, + "description": "Hi", + "links": [], + "files": [], + "images": [], + "ipAddress": "178.120.63.174", + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 1, + "votesAgainst": 0, + "joinId": "bcaf65dd-1c03-4688-83ef-a13dd90cafa4", + "fundingId": null, + "userId": "2HM9WnVvr9aDYbckjCo4cIDjncY2", + "commonId": "0c233ec1-c0a4-4776-8730-79777239a997", + "commonMemberId": "a5b554bd-ae82-4406-b4a6-149007a657dd", + "importedFrom": "{\"votes\":[{\"voterId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"voteOutcome\":\"approved\",\"voteId\":\"919be925-3eb0-442c-a36a-7830ae3a43c7\"}],\"updatedAt\":{\"_seconds\":1614592426,\"_nanoseconds\":927000000},\"join\":{\"ip\":\"178.120.63.174\",\"funding\":500,\"cardId\":\"5c283616-7442-44c9-ab83-ac22e9f79430\",\"payments\":[\"c89f6b22-0990-4065-9fb4-9a876dfc66c5\"],\"fundingType\":\"one-time\"},\"proposerId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\",\"countdownPeriod\":57600,\"votesFor\":1,\"id\":\"bcaf65dd-1c03-4688-83ef-a13dd90cafa4\",\"state\":\"passed\",\"votesAgainst\":0,\"createdAt\":{\"_seconds\":1614592174,\"_nanoseconds\":196000000},\"commonId\":\"0c233ec1-c0a4-4776-8730-79777239a997\",\"paymentState\":\"confirmed\",\"type\":\"join\",\"quietEndingPeriod\":3600,\"description\":{\"links\":[],\"description\":\"Hi\"}}" + }, + { + "id": "c248a9c1-f142-473a-a256-33818ae7ecac", + "createdAt": "2021-05-18T08:40:20.055Z", + "updatedAt": "2021-05-18T08:40:20.056Z", + "expiresAt": "2021-03-23T22:42:17.985Z", + "title": null, + "description": "Yo", + "links": [], + "files": [], + "images": [], + "ipAddress": "178.120.64.230", + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 1, + "votesAgainst": 0, + "joinId": "c248a9c1-f142-473a-a256-33818ae7ecac", + "fundingId": null, + "userId": "2HM9WnVvr9aDYbckjCo4cIDjncY2", + "commonId": "c683baee-aacf-4672-a017-b6f3af836b98", + "commonMemberId": "e0f34d77-1a46-4ba3-9319-d716d0be3b6b", + "importedFrom": "{\"votes\":[{\"voteId\":\"ba2782f6-e392-4504-85b4-77bebbb3d697\",\"voteOutcome\":\"approved\",\"voterId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\"}],\"votesFor\":1,\"description\":{\"description\":\"Yo\",\"links\":[]},\"join\":{\"ip\":\"178.120.64.230\",\"cardId\":\"9f83bcb7-39ac-4fda-afe4-4270b90af88d\",\"funding\":1000,\"fundingType\":\"one-time\",\"payments\":[\"e2d2882f-b16e-4923-9c29-c4138d7e4b7d\"]},\"countdownPeriod\":57600,\"createdAt\":{\"_seconds\":1616481737,\"_nanoseconds\":985000000},\"votesAgainst\":0,\"commonId\":\"c683baee-aacf-4672-a017-b6f3af836b98\",\"type\":\"join\",\"proposerId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\",\"quietEndingPeriod\":3600,\"paymentState\":\"confirmed\",\"id\":\"c248a9c1-f142-473a-a256-33818ae7ecac\",\"updatedAt\":{\"_seconds\":1616482468,\"_nanoseconds\":221000000},\"state\":\"passed\"}" + }, + { + "id": "c32110b6-c647-4250-9148-c0fc69cf7ff2", + "createdAt": "2021-05-18T08:40:20.056Z", + "updatedAt": "2021-05-18T08:40:20.057Z", + "expiresAt": "2021-03-27T01:28:08.799Z", + "title": null, + "description": "Reject", + "links": [], + "files": [], + "images": [], + "ipAddress": "46.56.204.91", + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 2, + "joinId": "c32110b6-c647-4250-9148-c0fc69cf7ff2", + "fundingId": null, + "userId": "5Bi1KZGIYzW5UIljHgBlO98NXaI2", + "commonId": "6f88e880-1ed8-4946-8326-d285239d293b", + "commonMemberId": null, + "importedFrom": "{\"join\":{\"cardId\":\"6befc5a5-67c6-4649-bd48-397e198e5a6f\",\"fundingType\":\"one-time\",\"payments\":[],\"ip\":\"46.56.204.91\",\"funding\":32100},\"countdownPeriod\":57600,\"votesAgainst\":2,\"quietEndingPeriod\":3600,\"id\":\"c32110b6-c647-4250-9148-c0fc69cf7ff2\",\"type\":\"join\",\"votes\":[{\"voteId\":\"38f64e03-f2b1-4482-8bbe-2d3a3a10fdc1\",\"voterId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"voteOutcome\":\"rejected\"},{\"voteId\":\"f48fa545-c60e-4873-b54d-c119d7a5d216\",\"voterId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\",\"voteOutcome\":\"rejected\"}],\"description\":{\"description\":\"Reject\",\"links\":[]},\"createdAt\":{\"_seconds\":1616750888,\"_nanoseconds\":799000000},\"updatedAt\":{\"_seconds\":1616754144,\"_nanoseconds\":907000000},\"proposerId\":\"5Bi1KZGIYzW5UIljHgBlO98NXaI2\",\"state\":\"failed\",\"commonId\":\"6f88e880-1ed8-4946-8326-d285239d293b\",\"votesFor\":0}" + }, + { + "id": "c38cd9d6-c2f6-4f0a-9ac9-d355a1157605", + "createdAt": "2021-05-18T08:40:20.058Z", + "updatedAt": "2021-05-18T08:40:20.059Z", + "expiresAt": "2021-04-02T08:27:36.384Z", + "title": null, + "description": "צח", + "links": [], + "files": [], + "images": [], + "ipAddress": "147.161.13.30", + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 1, + "votesAgainst": 0, + "joinId": "c38cd9d6-c2f6-4f0a-9ac9-d355a1157605", + "fundingId": null, + "userId": "P21SZrJ6z5YjyF8WFaHv5eRsoFo1", + "commonId": "4393b5fb-a365-4618-be40-eef6b38ae18e", + "commonMemberId": "b0cea656-fdf5-43c3-b044-f157ca4785ec", + "importedFrom": "{\"updatedAt\":{\"_seconds\":1617294494,\"_nanoseconds\":354000000},\"state\":\"passed\",\"type\":\"join\",\"votesAgainst\":0,\"proposerId\":\"P21SZrJ6z5YjyF8WFaHv5eRsoFo1\",\"quietEndingPeriod\":3600,\"countdownPeriod\":57600,\"createdAt\":{\"_seconds\":1617294456,\"_nanoseconds\":384000000},\"join\":{\"cardId\":\"52d2c563-b305-4d29-97f1-d7cea96d9ac1\",\"fundingType\":\"monthly\",\"payments\":[],\"ip\":\"147.161.13.30\",\"funding\":7000},\"id\":\"c38cd9d6-c2f6-4f0a-9ac9-d355a1157605\",\"description\":{\"description\":\"צח\",\"links\":[]},\"votesFor\":1,\"votes\":[{\"voteId\":\"5907b8a1-85fd-40b4-8290-abbb3baea6a6\",\"voteOutcome\":\"approved\",\"voterId\":\"mQrMFNLotDcxftkFL7cCxk3cCL92\"}],\"paymentState\":\"confirmed\",\"commonId\":\"4393b5fb-a365-4618-be40-eef6b38ae18e\"}" + }, + { + "id": "c55036a1-e474-46dd-a110-47911712429c", + "createdAt": "2021-05-18T08:40:20.059Z", + "updatedAt": "2021-05-18T08:40:20.060Z", + "expiresAt": "2021-03-12T01:06:12.952Z", + "title": null, + "description": "Hi", + "links": [], + "files": [], + "images": [], + "ipAddress": "87.71.10.6", + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "c55036a1-e474-46dd-a110-47911712429c", + "fundingId": null, + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "commonId": "2aa8ec05-e951-4097-94c8-a8dc30f00c78", + "commonMemberId": null, + "importedFrom": "{\"createdAt\":{\"_seconds\":1615453572,\"_nanoseconds\":952000000},\"votesFor\":0,\"commonId\":\"2aa8ec05-e951-4097-94c8-a8dc30f00c78\",\"type\":\"join\",\"quietEndingPeriod\":3600,\"state\":\"failed\",\"countdownPeriod\":57600,\"updatedAt\":{\"_seconds\":1615511401,\"_nanoseconds\":409000000},\"join\":{\"payments\":[],\"ip\":\"87.71.10.6\",\"fundingType\":\"monthly\",\"funding\":5000,\"cardId\":\"d2d5d482-285a-4fd0-b511-479cf13e5fd5\"},\"votes\":[],\"description\":{\"links\":[],\"description\":\"Hi\"},\"proposerId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"id\":\"c55036a1-e474-46dd-a110-47911712429c\",\"votesAgainst\":0}" + }, + { + "id": "c55a1489-2e4e-4c16-b361-853f69b0db40", + "createdAt": "2021-05-18T08:40:20.061Z", + "updatedAt": "2021-05-18T08:40:20.062Z", + "expiresAt": "2021-03-17T04:12:55.407Z", + "title": null, + "description": "Good", + "links": [], + "files": [], + "images": [], + "ipAddress": "178.120.59.188", + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 2, + "votesAgainst": 0, + "joinId": "c55a1489-2e4e-4c16-b361-853f69b0db40", + "fundingId": null, + "userId": "2HM9WnVvr9aDYbckjCo4cIDjncY2", + "commonId": "d30cb234-01ac-483c-b137-47961ed0cfec", + "commonMemberId": "b3f717be-04af-4e60-9761-2dc3aa3f2347", + "importedFrom": "{\"paymentState\":\"confirmed\",\"join\":{\"ip\":\"178.120.59.188\",\"payments\":[],\"cardId\":\"7795d36c-8fa0-4a3f-97a9-233ae9aa7a37\",\"funding\":700,\"fundingType\":\"monthly\"},\"commonId\":\"d30cb234-01ac-483c-b137-47961ed0cfec\",\"id\":\"c55a1489-2e4e-4c16-b361-853f69b0db40\",\"votesFor\":2,\"updatedAt\":{\"_seconds\":1615896897,\"_nanoseconds\":897000000},\"quietEndingPeriod\":3600,\"countdownPeriod\":57600,\"state\":\"passed\",\"proposerId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\",\"votes\":[{\"voteOutcome\":\"approved\",\"voterId\":\"5Bi1KZGIYzW5UIljHgBlO98NXaI2\",\"voteId\":\"1bf09035-ab53-4878-9d6e-47564df534e9\"},{\"voteId\":\"11192f6e-15e5-407b-8a70-d46b34a3ec6d\",\"voteOutcome\":\"approved\",\"voterId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\"}],\"description\":{\"description\":\"Good\",\"links\":[]},\"type\":\"join\",\"votesAgainst\":0,\"createdAt\":{\"_seconds\":1615896775,\"_nanoseconds\":407000000}}" + }, + { + "id": "c6917693-8e29-476e-8be8-212dd832f23d", + "createdAt": "2021-05-18T08:40:20.063Z", + "updatedAt": "2021-05-18T08:40:20.064Z", + "expiresAt": "2021-04-22T01:38:58.259Z", + "title": null, + "description": "Bdjd", + "links": [], + "files": [], + "images": [], + "ipAddress": "178.120.3.148", + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 1, + "joinId": "c6917693-8e29-476e-8be8-212dd832f23d", + "fundingId": null, + "userId": "Wz0ZgOvKnafrjLDeAeWqx182uBq2", + "commonId": "c34e6352-dedd-4159-b75e-b4b032ba6644", + "commonMemberId": null, + "importedFrom": "{\"state\":\"failed\",\"votesFor\":0,\"votesAgainst\":1,\"type\":\"join\",\"id\":\"c6917693-8e29-476e-8be8-212dd832f23d\",\"join\":{\"cardId\":\"71fccffd-14f1-409a-97bb-09765f8a0b98\",\"ip\":\"178.120.3.148\",\"fundingType\":\"monthly\",\"payments\":[],\"funding\":12300},\"updatedAt\":{\"_seconds\":1618999183,\"_nanoseconds\":292999000},\"createdAt\":{\"_seconds\":1618997938,\"_nanoseconds\":259000000},\"description\":{\"description\":\"Bdjd\",\"links\":[]},\"proposerId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"countdownPeriod\":57600,\"quietEndingPeriod\":3600,\"commonId\":\"c34e6352-dedd-4159-b75e-b4b032ba6644\",\"votes\":[{\"voterId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\",\"voteId\":\"ab95e033-658a-46f7-91a8-0068f07814d4\",\"voteOutcome\":\"rejected\"}]}" + }, + { + "id": "c6c21f6c-6399-4cc8-8058-df19e8fcc9ae", + "createdAt": "2021-05-18T08:40:20.065Z", + "updatedAt": "2021-05-18T08:40:20.066Z", + "expiresAt": "2021-04-01T12:16:50.211Z", + "title": null, + "description": "Hi!", + "links": [], + "files": [], + "images": [], + "ipAddress": "46.56.203.253", + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 2, + "votesAgainst": 0, + "joinId": "c6c21f6c-6399-4cc8-8058-df19e8fcc9ae", + "fundingId": null, + "userId": "5Bi1KZGIYzW5UIljHgBlO98NXaI2", + "commonId": "3fc54c58-f31c-43dd-94d7-c3409c109570", + "commonMemberId": "e2015d2c-52ce-4196-bdb0-742c1c37dd70", + "importedFrom": "{\"updatedAt\":{\"_seconds\":1617221872,\"_nanoseconds\":670000000},\"votesAgainst\":0,\"description\":{\"description\":\"Hi!\",\"links\":[]},\"id\":\"c6c21f6c-6399-4cc8-8058-df19e8fcc9ae\",\"votesFor\":2,\"quietEndingPeriod\":3600,\"commonId\":\"3fc54c58-f31c-43dd-94d7-c3409c109570\",\"type\":\"join\",\"state\":\"passed\",\"proposerId\":\"5Bi1KZGIYzW5UIljHgBlO98NXaI2\",\"paymentState\":\"confirmed\",\"join\":{\"payments\":[],\"ip\":\"46.56.203.253\",\"cardId\":\"2d5f22e5-8404-4c69-9617-cf2a0a4a7a45\",\"fundingType\":\"monthly\",\"funding\":3500},\"votes\":[{\"voteOutcome\":\"approved\",\"voterId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"voteId\":\"01403ac2-eb27-40f2-a9ab-346bd7d0e3b1\"},{\"voterId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\",\"voteOutcome\":\"approved\",\"voteId\":\"ac8284d1-2c6d-4edf-a23f-03864c36cb2e\"}],\"createdAt\":{\"_seconds\":1617221810,\"_nanoseconds\":211000000},\"countdownPeriod\":57600}" + }, + { + "id": "c7f32814-2d8f-4e6a-9cbf-54cd04d80a34", + "createdAt": "2021-05-18T08:40:20.066Z", + "updatedAt": "2021-05-18T08:40:20.068Z", + "expiresAt": "2021-03-12T05:46:39.400Z", + "title": null, + "description": "098", + "links": [], + "files": [], + "images": [], + "ipAddress": "178.120.66.122", + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 1, + "joinId": "c7f32814-2d8f-4e6a-9cbf-54cd04d80a34", + "fundingId": null, + "userId": "5Bi1KZGIYzW5UIljHgBlO98NXaI2", + "commonId": "cf8601aa-ab7a-4c69-be1b-136e13fe08e5", + "commonMemberId": "922bef9f-334b-4b08-a6c7-21d6b63bf75b", + "importedFrom": "{\"quietEndingPeriod\":3600,\"countdownPeriod\":57600,\"proposerId\":\"5Bi1KZGIYzW5UIljHgBlO98NXaI2\",\"commonId\":\"cf8601aa-ab7a-4c69-be1b-136e13fe08e5\",\"votesAgainst\":1,\"state\":\"failed\",\"votes\":[{\"voteOutcome\":\"rejected\",\"voterId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\",\"voteId\":\"34f94f81-ac88-41c2-af18-1334834e2178\"}],\"type\":\"join\",\"id\":\"c7f32814-2d8f-4e6a-9cbf-54cd04d80a34\",\"join\":{\"cardId\":\"d9a8837c-8a6b-4bc1-96e7-cadf24ca45d5\",\"fundingType\":\"one-time\",\"payments\":[],\"ip\":\"178.120.66.122\",\"funding\":500},\"createdAt\":{\"_seconds\":1615470399,\"_nanoseconds\":400000000},\"votesFor\":0,\"updatedAt\":{\"_seconds\":1615470523,\"_nanoseconds\":490000000},\"description\":{\"description\":\"098\",\"links\":[]}}" + }, + { + "id": "c9b8424e-c0d0-49b8-84f8-fc1cf39dd6e8", + "createdAt": "2021-05-18T08:40:20.070Z", + "updatedAt": "2021-05-18T08:40:20.071Z", + "expiresAt": "2020-12-19T22:12:33.200Z", + "title": null, + "description": "Dd", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 1, + "votesAgainst": 0, + "joinId": "c9b8424e-c0d0-49b8-84f8-fc1cf39dd6e8", + "fundingId": null, + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "commonId": "77c00df3-7afa-4be2-88c8-c1db81cb535c", + "commonMemberId": "a13eb8f6-0658-4a7c-b796-1ef3a1e0af93", + "importedFrom": "{\"commonId\":\"77c00df3-7afa-4be2-88c8-c1db81cb535c\",\"proposerId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"votesAgainst\":0,\"votes\":[{\"voteOutcome\":\"approved\",\"voterId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"voteId\":\"ba71109b-5f71-47b7-bcb6-bc2d0136fafa\"}],\"join\":{\"cardId\":\"435acc7d-a615-4b8d-a793-420902e5f759\",\"fundingType\":\"one-time\",\"funding\":250000,\"payments\":[]},\"paymentState\":\"confirmed\",\"type\":\"join\",\"quietEndingPeriod\":3600,\"createdAt\":{\"_seconds\":1608408753,\"_nanoseconds\":200000000},\"countdownPeriod\":7200,\"state\":\"passed\",\"description\":{\"links\":[],\"description\":\"Dd\"},\"updatedAt\":{\"_seconds\":1608408794,\"_nanoseconds\":95000000},\"id\":\"c9b8424e-c0d0-49b8-84f8-fc1cf39dd6e8\",\"votesFor\":1}" + }, + { + "id": "ccce2d10-9cc7-478c-b3f0-801f3f292dc4", + "createdAt": "2021-05-18T08:40:20.074Z", + "updatedAt": "2021-05-18T08:40:20.075Z", + "expiresAt": "2021-03-12T07:58:01.346Z", + "title": null, + "description": "Ry", + "links": [ + { + "url": "www.test.com", + "title": "1" + }, + { + "url": "https://test.com", + "title": "2" + }, + { + "url": "http://www.test.com", + "title": "3" + }, + { + "url": "https://www.volvocars.com/il?site=google&lp=volvo.brand&utm_source=google&utm_campaign=volvo_brand&AgId=%5Badgroup%5D&utm_term=volvo&AdPos=&utm_content=gs_434894081167&device=m&GeoLoc=1008002&utm_medium=cpc&ToolName=gs&gclid=EAIaIQobChMIz7C_m6D_6wIVZbR3Ch2POwFPEAAYASAAEgKyxvD_BwE&gclsrc=aw.ds", + "title": "4" + } + ], + "files": [], + "images": [], + "ipAddress": "87.71.10.6", + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "ccce2d10-9cc7-478c-b3f0-801f3f292dc4", + "fundingId": null, + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "commonId": "4061e937-7ee4-4f4e-b896-6f3af113f511", + "commonMemberId": null, + "importedFrom": "{\"id\":\"ccce2d10-9cc7-478c-b3f0-801f3f292dc4\",\"commonId\":\"4061e937-7ee4-4f4e-b896-6f3af113f511\",\"votes\":[],\"state\":\"failed\",\"updatedAt\":{\"_seconds\":1615536000,\"_nanoseconds\":796000000},\"quietEndingPeriod\":3600,\"votesAgainst\":0,\"createdAt\":{\"_seconds\":1615478281,\"_nanoseconds\":346000000},\"description\":{\"description\":\"Ry\",\"links\":[{\"title\":\"1\",\"value\":\"www.test.com\"},{\"title\":\"2\",\"value\":\"https://test.com\"},{\"value\":\"http://www.test.com\",\"title\":\"3\"},{\"value\":\"https://www.volvocars.com/il?site=google&lp=volvo.brand&utm_source=google&utm_campaign=volvo_brand&AgId=%5Badgroup%5D&utm_term=volvo&AdPos=&utm_content=gs_434894081167&device=m&GeoLoc=1008002&utm_medium=cpc&ToolName=gs&gclid=EAIaIQobChMIz7C_m6D_6wIVZbR3Ch2POwFPEAAYASAAEgKyxvD_BwE&gclsrc=aw.ds\",\"title\":\"4\"}]},\"type\":\"join\",\"votesFor\":0,\"join\":{\"cardId\":\"be9524d6-5cbf-4d95-b3cd-9aaa0355d660\",\"fundingType\":\"one-time\",\"funding\":500,\"ip\":\"87.71.10.6\",\"payments\":[]},\"proposerId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"countdownPeriod\":57600}" + }, + { + "id": "d0b330c4-14c4-401e-9202-ab110406d22c", + "createdAt": "2021-05-18T08:40:20.077Z", + "updatedAt": "2021-05-18T08:40:20.078Z", + "expiresAt": "2021-01-19T04:58:22.850Z", + "title": null, + "description": "Good ", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 1, + "joinId": "d0b330c4-14c4-401e-9202-ab110406d22c", + "fundingId": null, + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "8d1d4dd3-ccf4-48f8-90f2-01f8a9448534", + "commonMemberId": "510f655e-9b40-459a-98ea-a58d66989d1b", + "importedFrom": "{\"createdAt\":{\"_seconds\":1610974702,\"_nanoseconds\":850000000},\"updatedAt\":{\"_seconds\":1610974830,\"_nanoseconds\":8000000},\"votesAgainst\":1,\"quietEndingPeriod\":3600,\"join\":{\"funding\":500,\"payments\":[],\"fundingType\":\"one-time\",\"cardId\":\"485ed61f-c58c-40ff-8cae-4d2f6f17be52\"},\"state\":\"failed\",\"type\":\"join\",\"proposerId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"countdownPeriod\":57600,\"votes\":[{\"voteId\":\"eb838a56-e22d-4ef2-858f-8dd9e8baf4e9\",\"voterId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"voteOutcome\":\"rejected\"}],\"description\":{\"links\":[],\"description\":\"Good \"},\"id\":\"d0b330c4-14c4-401e-9202-ab110406d22c\",\"votesFor\":0,\"commonId\":\"8d1d4dd3-ccf4-48f8-90f2-01f8a9448534\"}" + }, + { + "id": "d290f340-8208-4c81-a0a2-7db1f1e6b76b", + "createdAt": "2021-05-18T08:40:20.083Z", + "updatedAt": "2021-05-18T08:40:20.084Z", + "expiresAt": "2021-02-09T03:19:57.306Z", + "title": null, + "description": "Intro", + "links": [ + { + "url": "https://www.volvocars.com/il/cars/lp?site=google&lp=volvo.brand&utm_source=google&utm_campaign=volvo_brand&AgId=%5Badgroup%5D&utm_term=volvo&AdPos=&utm_content=gs_434894081167&device=m&GeoLoc=1008002&utm_medium=cpc&ToolName=gs&gclid=EAIaIQobChMIz7C_m6D_6wIVZbR3Ch2POwFPEAAYASAAEgKyxvD_BwE&gclsrc=aw.ds", + "title": "Volvo broken link" + } + ], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "d290f340-8208-4c81-a0a2-7db1f1e6b76b", + "fundingId": null, + "userId": "b0Kxsd0x4OMLeOlDnheysBz5THo1", + "commonId": "20c97f59-d176-41a5-9cfa-1b31b017718f", + "commonMemberId": null, + "importedFrom": "{\"updatedAt\":{\"_seconds\":1612840801,\"_nanoseconds\":105000000},\"votes\":[],\"join\":{\"payments\":[],\"funding\":500,\"cardId\":\"329d73e0-041b-4139-9163-cb0e56919032\",\"fundingType\":\"monthly\"},\"state\":\"failed\",\"createdAt\":{\"_seconds\":1612783197,\"_nanoseconds\":306000000},\"description\":{\"links\":[{\"title\":\"Volvo broken link\",\"value\":\"https://www.volvocars.com/il/cars/lp?site=google&lp=volvo.brand&utm_source=google&utm_campaign=volvo_brand&AgId=%5Badgroup%5D&utm_term=volvo&AdPos=&utm_content=gs_434894081167&device=m&GeoLoc=1008002&utm_medium=cpc&ToolName=gs&gclid=EAIaIQobChMIz7C_m6D_6wIVZbR3Ch2POwFPEAAYASAAEgKyxvD_BwE&gclsrc=aw.ds\"}],\"description\":\"Intro\"},\"commonId\":\"20c97f59-d176-41a5-9cfa-1b31b017718f\",\"votesFor\":0,\"type\":\"join\",\"id\":\"d290f340-8208-4c81-a0a2-7db1f1e6b76b\",\"votesAgainst\":0,\"countdownPeriod\":57600,\"quietEndingPeriod\":3600,\"proposerId\":\"b0Kxsd0x4OMLeOlDnheysBz5THo1\"}" + }, + { + "id": "d3432b4d-4fed-4ecc-8439-8045f4d0d47d", + "createdAt": "2021-05-18T08:40:20.085Z", + "updatedAt": "2021-05-18T08:40:20.086Z", + "expiresAt": "2021-03-18T07:45:38.365Z", + "title": null, + "description": "Bop", + "links": [], + "files": [], + "images": [], + "ipAddress": "87.71.10.6", + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 1, + "votesAgainst": 0, + "joinId": "d3432b4d-4fed-4ecc-8439-8045f4d0d47d", + "fundingId": null, + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "commonId": "e09d83a7-8298-423d-87df-e598bc45916b", + "commonMemberId": "5e79c0f6-7593-43e1-8775-bceee1578855", + "importedFrom": "{\"votes\":[{\"voteOutcome\":\"approved\",\"voterId\":\"P21SZrJ6z5YjyF8WFaHv5eRsoFo1\",\"voteId\":\"5562d497-4f43-484e-b2e3-c2acf5f48fbd\"}],\"join\":{\"cardId\":\"101726dc-b799-4287-a0f9-0f75455b874b\",\"ip\":\"87.71.10.6\",\"payments\":[\"cb93cb45-a246-4835-96e3-bcc91b05734a\"],\"fundingType\":\"one-time\",\"funding\":3000},\"proposerId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"description\":{\"description\":\"Bop\",\"links\":[]},\"updatedAt\":{\"_seconds\":1615995980,\"_nanoseconds\":58000000},\"type\":\"join\",\"state\":\"passed\",\"createdAt\":{\"_seconds\":1615995938,\"_nanoseconds\":365000000},\"votesAgainst\":0,\"votesFor\":1,\"countdownPeriod\":57600,\"paymentState\":\"confirmed\",\"commonId\":\"e09d83a7-8298-423d-87df-e598bc45916b\",\"id\":\"d3432b4d-4fed-4ecc-8439-8045f4d0d47d\",\"quietEndingPeriod\":3600}" + }, + { + "id": "d5d4690c-5f3d-45e5-82c3-a6b8d7d79d07", + "createdAt": "2021-05-18T08:40:20.088Z", + "updatedAt": "2021-05-18T08:40:20.090Z", + "expiresAt": "2021-01-07T11:27:33.228Z", + "title": null, + "description": "Ali express", + "links": [ + { + "url": "https://variety.com/2021/politics/news/stacey-abrams-georgia-senate-election-1234879568/", + "title": "Animanimal" + } + ], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 1, + "votesAgainst": 0, + "joinId": "d5d4690c-5f3d-45e5-82c3-a6b8d7d79d07", + "fundingId": null, + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "commonId": "f9060df0-957c-4d60-9547-7c4d5c62dace", + "commonMemberId": "17ef2113-702c-4b4e-9503-bc4cbbe15185", + "importedFrom": "{\"commonId\":\"f9060df0-957c-4d60-9547-7c4d5c62dace\",\"quietEndingPeriod\":3600,\"updatedAt\":{\"_seconds\":1610011709,\"_nanoseconds\":158000000},\"createdAt\":{\"_seconds\":1610011653,\"_nanoseconds\":228000000},\"state\":\"passed\",\"join\":{\"cardId\":\"806ccc56-1bab-4abf-8dc0-cd4a189042c8\",\"fundingType\":\"one-time\",\"funding\":45000,\"payments\":[]},\"type\":\"join\",\"id\":\"d5d4690c-5f3d-45e5-82c3-a6b8d7d79d07\",\"description\":{\"links\":[{\"value\":\"https://variety.com/2021/politics/news/stacey-abrams-georgia-senate-election-1234879568/\",\"title\":\"Animanimal\"}],\"description\":\"Ali express\"},\"votesAgainst\":0,\"paymentState\":\"confirmed\",\"votesFor\":1,\"countdownPeriod\":7200,\"votes\":[{\"voteId\":\"d135f2db-1e87-43b8-836c-6e95420e0d6d\",\"voteOutcome\":\"approved\",\"voterId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\"}],\"proposerId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\"}" + }, + { + "id": "d61690ab-a899-43d0-9a4c-3373fa9f9c4f", + "createdAt": "2021-05-18T08:40:20.090Z", + "updatedAt": "2021-05-18T08:40:20.091Z", + "expiresAt": "2021-04-07T22:51:54.144Z", + "title": null, + "description": "Hi ☺️☺️", + "links": [ + { + "url": "http://www.talyaron.com", + "title": "Go to" + } + ], + "files": [], + "images": [], + "ipAddress": "147.161.15.181", + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "d61690ab-a899-43d0-9a4c-3373fa9f9c4f", + "fundingId": null, + "userId": "P21SZrJ6z5YjyF8WFaHv5eRsoFo1", + "commonId": "05e4c4a2-6957-42ea-bc49-073a307313d8", + "commonMemberId": null, + "importedFrom": "{\"countdownPeriod\":57600,\"createdAt\":{\"_seconds\":1617778314,\"_nanoseconds\":144000000},\"id\":\"d61690ab-a899-43d0-9a4c-3373fa9f9c4f\",\"quietEndingPeriod\":3600,\"votesFor\":0,\"type\":\"join\",\"join\":{\"ip\":\"147.161.15.181\",\"funding\":500,\"fundingType\":\"one-time\",\"payments\":[],\"cardId\":\"9e38e55a-a450-4b30-baeb-56b78117ef7f\"},\"votesAgainst\":0,\"state\":\"failed\",\"proposerId\":\"P21SZrJ6z5YjyF8WFaHv5eRsoFo1\",\"commonId\":\"05e4c4a2-6957-42ea-bc49-073a307313d8\",\"votes\":[],\"updatedAt\":{\"_seconds\":1617836100,\"_nanoseconds\":862000000},\"description\":{\"description\":\"Hi ☺️☺️\",\"links\":[{\"value\":\"http://www.talyaron.com\",\"title\":\"Go to\"}]}}" + }, + { + "id": "d658d794-5962-4d65-9b82-9d5193e671e1", + "createdAt": "2021-05-18T08:40:20.092Z", + "updatedAt": "2021-05-18T08:40:20.093Z", + "expiresAt": "2020-12-25T02:40:29.494Z", + "title": null, + "description": "See circle error", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "d658d794-5962-4d65-9b82-9d5193e671e1", + "fundingId": null, + "userId": "Sxv19oCvKAZq2vntJdYCTYSpWWN2", + "commonId": "05e4c4a2-6957-42ea-bc49-073a307313d8", + "commonMemberId": null, + "importedFrom": "{\"countdownPeriod\":57600,\"join\":{\"fundingType\":\"one-time\",\"payments\":[],\"funding\":500,\"cardId\":\"39bcdf0f-57d0-45dc-b64e-bcda06a7d1cc\"},\"votesAgainst\":0,\"votesFor\":0,\"commonId\":\"05e4c4a2-6957-42ea-bc49-073a307313d8\",\"updatedAt\":{\"_seconds\":1608864300,\"_nanoseconds\":544000000},\"state\":\"failed\",\"description\":{\"description\":\"See circle error\",\"links\":[]},\"quietEndingPeriod\":3600,\"createdAt\":{\"_seconds\":1608806429,\"_nanoseconds\":494000000},\"proposerId\":\"Sxv19oCvKAZq2vntJdYCTYSpWWN2\",\"votes\":[],\"id\":\"d658d794-5962-4d65-9b82-9d5193e671e1\",\"type\":\"join\"}" + }, + { + "id": "d681affe-1df1-48eb-a832-6a88f4b29c20", + "createdAt": "2021-05-18T08:40:20.095Z", + "updatedAt": "2021-05-18T08:40:20.096Z", + "expiresAt": "2020-12-27T22:46:04.150Z", + "title": null, + "description": "Hp", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 1, + "votesAgainst": 0, + "joinId": "d681affe-1df1-48eb-a832-6a88f4b29c20", + "fundingId": null, + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "commonId": "6d778a9d-6ebb-46ab-969a-02d4c4567145", + "commonMemberId": "4553d6a2-f768-4e57-8736-7e9ba2de9a49", + "importedFrom": "{\"state\":\"passed\",\"votes\":[{\"voterId\":\"Xh4xoIGHhgOhxz1S5AJkaXCBT8K2\",\"voteId\":\"103bef59-de16-419b-a589-c210ed4c5efc\",\"voteOutcome\":\"approved\"}],\"countdownPeriod\":57600,\"votesFor\":1,\"updatedAt\":{\"_seconds\":1609051683,\"_nanoseconds\":13000000},\"createdAt\":{\"_seconds\":1609051564,\"_nanoseconds\":150000000},\"id\":\"d681affe-1df1-48eb-a832-6a88f4b29c20\",\"description\":{\"links\":[],\"description\":\"Hp\"},\"type\":\"join\",\"votesAgainst\":0,\"commonId\":\"6d778a9d-6ebb-46ab-969a-02d4c4567145\",\"proposerId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"paymentState\":\"failed\",\"quietEndingPeriod\":3600,\"join\":{\"fundingType\":\"one-time\",\"payments\":[],\"funding\":501,\"cardId\":\"f6ec1e38-3512-433e-996d-8afbee76c3cc\"}}" + }, + { + "id": "d6939cd1-d4d6-4a15-941d-466e2a9986e3", + "createdAt": "2021-05-18T08:40:20.096Z", + "updatedAt": "2021-05-18T08:40:20.097Z", + "expiresAt": "2021-04-21T06:44:51.241Z", + "title": null, + "description": "Nee", + "links": [], + "files": [], + "images": [], + "ipAddress": "87.70.24.133", + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 1, + "votesAgainst": 0, + "joinId": "d6939cd1-d4d6-4a15-941d-466e2a9986e3", + "fundingId": null, + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "commonId": "9861e6b0-4a8e-4f4e-8783-a5afebd6e4fa", + "commonMemberId": "95dea118-e7de-43f5-b817-0922a91261cb", + "importedFrom": "{\"votesFor\":1,\"paymentState\":\"confirmed\",\"quietEndingPeriod\":3600,\"updatedAt\":{\"_seconds\":1618929915,\"_nanoseconds\":750000000},\"countdownPeriod\":57600,\"votesAgainst\":0,\"type\":\"join\",\"join\":{\"funding\":50000,\"fundingType\":\"monthly\",\"ip\":\"87.70.24.133\",\"payments\":[],\"cardId\":\"716a66ed-cd92-4e53-812a-46e21b0f5b90\"},\"description\":{\"links\":[],\"description\":\"Nee\"},\"proposerId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"createdAt\":{\"_seconds\":1618929891,\"_nanoseconds\":240999000},\"id\":\"d6939cd1-d4d6-4a15-941d-466e2a9986e3\",\"commonId\":\"9861e6b0-4a8e-4f4e-8783-a5afebd6e4fa\",\"votes\":[{\"voteOutcome\":\"approved\",\"voterId\":\"Xh4xoIGHhgOhxz1S5AJkaXCBT8K2\",\"voteId\":\"ff7854ca-d3b9-44fd-9c2d-697751182bea\"}],\"state\":\"passed\"}" + }, + { + "id": "d85d5804-8dde-490e-839e-09d6cd5b48d5", + "createdAt": "2021-05-18T08:40:20.098Z", + "updatedAt": "2021-05-18T08:40:20.099Z", + "expiresAt": "2021-03-13T05:08:07.816Z", + "title": null, + "description": "Test", + "links": [], + "files": [], + "images": [], + "ipAddress": "93.123.70.236", + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 2, + "joinId": "d85d5804-8dde-490e-839e-09d6cd5b48d5", + "fundingId": null, + "userId": "kDtKMg9SJ5R5zoit1h3vLNcVYsR2", + "commonId": "15c15871-d513-4a06-9e24-7d2c92cbd571", + "commonMemberId": null, + "importedFrom": "{\"updatedAt\":{\"_seconds\":1615554807,\"_nanoseconds\":987000000},\"id\":\"d85d5804-8dde-490e-839e-09d6cd5b48d5\",\"createdAt\":{\"_seconds\":1615554487,\"_nanoseconds\":816000000},\"votes\":[{\"voteId\":\"78581e26-700c-4110-aff3-feb29a1748d7\",\"voteOutcome\":\"rejected\",\"voterId\":\"skBkfQh8E1f4eOGBSVLaiuJ097v1\"},{\"voteOutcome\":\"rejected\",\"voterId\":\"Xlun3Ux94Zfc73axkiuVdkktOWf1\",\"voteId\":\"22dad814-cbcd-47e2-b05a-ef99beb81469\"}],\"votesFor\":0,\"proposerId\":\"kDtKMg9SJ5R5zoit1h3vLNcVYsR2\",\"description\":{\"links\":[],\"description\":\"Test\"},\"commonId\":\"15c15871-d513-4a06-9e24-7d2c92cbd571\",\"type\":\"join\",\"quietEndingPeriod\":3600,\"countdownPeriod\":57600,\"state\":\"failed\",\"join\":{\"ip\":\"93.123.70.236\",\"funding\":700,\"cardId\":\"30078ef5-5d51-481c-96dd-8ba858fee10c\",\"fundingType\":\"one-time\",\"payments\":[]},\"votesAgainst\":2}" + }, + { + "id": "d86abc8c-c4e4-4c71-8490-1a6003982fa9", + "createdAt": "2021-05-18T08:40:20.100Z", + "updatedAt": "2021-05-18T08:40:20.101Z", + "expiresAt": "2021-03-10T03:01:35.690Z", + "title": null, + "description": "Test", + "links": [ + { + "url": "http://www.test.com", + "title": "Test.com" + } + ], + "files": [], + "images": [], + "ipAddress": "178.120.66.122", + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "d86abc8c-c4e4-4c71-8490-1a6003982fa9", + "fundingId": null, + "userId": "Wz0ZgOvKnafrjLDeAeWqx182uBq2", + "commonId": "15c15871-d513-4a06-9e24-7d2c92cbd571", + "commonMemberId": null, + "importedFrom": "{\"join\":{\"payments\":[],\"ip\":\"178.120.66.122\",\"fundingType\":\"one-time\",\"cardId\":\"b44edd3a-9ad9-487d-b8b2-f983009871dc\",\"funding\":700},\"state\":\"failed\",\"description\":{\"description\":\"Test\",\"links\":[{\"value\":\"http://www.test.com\",\"title\":\"Test.com\"}]},\"proposerId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"votes\":[],\"createdAt\":{\"_seconds\":1615287695,\"_nanoseconds\":690000000},\"updatedAt\":{\"_seconds\":1615345500,\"_nanoseconds\":448000000},\"quietEndingPeriod\":3600,\"type\":\"join\",\"votesAgainst\":0,\"commonId\":\"15c15871-d513-4a06-9e24-7d2c92cbd571\",\"id\":\"d86abc8c-c4e4-4c71-8490-1a6003982fa9\",\"countdownPeriod\":57600,\"votesFor\":0}" + }, + { + "id": "daa29485-f8c4-4410-ae7b-5214027dda74", + "createdAt": "2021-05-18T08:40:20.103Z", + "updatedAt": "2021-05-18T08:40:20.104Z", + "expiresAt": "2021-03-04T01:19:28.019Z", + "title": null, + "description": "Yu", + "links": [], + "files": [], + "images": [], + "ipAddress": "147.161.9.186", + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "daa29485-f8c4-4410-ae7b-5214027dda74", + "fundingId": null, + "userId": "P21SZrJ6z5YjyF8WFaHv5eRsoFo1", + "commonId": "05e4c4a2-6957-42ea-bc49-073a307313d8", + "commonMemberId": null, + "importedFrom": "{\"createdAt\":{\"_seconds\":1614763168,\"_nanoseconds\":19000000},\"state\":\"failed\",\"countdownPeriod\":57600,\"id\":\"daa29485-f8c4-4410-ae7b-5214027dda74\",\"quietEndingPeriod\":3600,\"proposerId\":\"P21SZrJ6z5YjyF8WFaHv5eRsoFo1\",\"description\":{\"description\":\"Yu\",\"links\":[]},\"votes\":[],\"join\":{\"funding\":1250,\"fundingType\":\"one-time\",\"payments\":[],\"ip\":\"147.161.9.186\",\"cardId\":\"c317cfbb-32a0-434b-921b-ac2a557ba728\"},\"type\":\"join\",\"moderation\":{\"flag\":\"hidden\",\"reporter\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"reasons\":[\"Nudity\",\"Violence\",\"Harassment\",\"False News\",\"Spam\",\"Hate speech\",\"Something Else\"],\"moderator\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"moderatorNote\":\"\",\"updatedAt\":{\"_seconds\":1614764955,\"_nanoseconds\":943000000}},\"commonId\":\"05e4c4a2-6957-42ea-bc49-073a307313d8\",\"votesFor\":0,\"updatedAt\":{\"_seconds\":1614820800,\"_nanoseconds\":220000000},\"votesAgainst\":0}" + }, + { + "id": "daf50160-ccb1-4f6f-b3fd-21d96c653bdf", + "createdAt": "2021-05-18T08:40:20.105Z", + "updatedAt": "2021-05-18T08:40:20.106Z", + "expiresAt": "2021-04-21T06:38:18.741Z", + "title": null, + "description": "Ляля", + "links": [], + "files": [], + "images": [], + "ipAddress": "178.120.3.148", + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "daf50160-ccb1-4f6f-b3fd-21d96c653bdf", + "fundingId": null, + "userId": "2HM9WnVvr9aDYbckjCo4cIDjncY2", + "commonId": "44858c0c-f261-4637-b1cc-e049593a1c0c", + "commonMemberId": null, + "importedFrom": "{\"updatedAt\":{\"_seconds\":1618987200,\"_nanoseconds\":161999000},\"countdownPeriod\":57600,\"id\":\"daf50160-ccb1-4f6f-b3fd-21d96c653bdf\",\"quietEndingPeriod\":3600,\"proposerId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\",\"commonId\":\"44858c0c-f261-4637-b1cc-e049593a1c0c\",\"state\":\"failed\",\"createdAt\":{\"_seconds\":1618929498,\"_nanoseconds\":740999000},\"join\":{\"funding\":12900,\"cardId\":\"6462a6cf-b565-4d53-8d39-7075347707a8\",\"fundingType\":\"one-time\",\"payments\":[],\"ip\":\"178.120.3.148\"},\"votesAgainst\":0,\"type\":\"join\",\"votes\":[],\"description\":{\"description\":\"Ляля\",\"links\":[]},\"votesFor\":0}" + }, + { + "id": "db50929c-26bf-46a1-aae3-8c227b50c536", + "createdAt": "2021-05-18T08:40:20.106Z", + "updatedAt": "2021-05-18T08:40:20.107Z", + "expiresAt": "2021-04-01T01:10:50.535Z", + "title": null, + "description": "🙃", + "links": [], + "files": [], + "images": [], + "ipAddress": "178.120.55.200", + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 2, + "joinId": "db50929c-26bf-46a1-aae3-8c227b50c536", + "fundingId": null, + "userId": "5Bi1KZGIYzW5UIljHgBlO98NXaI2", + "commonId": "6f88e880-1ed8-4946-8326-d285239d293b", + "commonMemberId": null, + "importedFrom": "{\"createdAt\":{\"_seconds\":1617181850,\"_nanoseconds\":535000000},\"commonId\":\"6f88e880-1ed8-4946-8326-d285239d293b\",\"votes\":[{\"voteId\":\"9d091e14-4590-40b4-bd44-ff34245a718e\",\"voterId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"voteOutcome\":\"rejected\"},{\"voterId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\",\"voteOutcome\":\"rejected\",\"voteId\":\"0ef5dc67-9943-4387-b9f8-c289f018366d\"}],\"description\":{\"links\":[],\"description\":\"🙃\"},\"quietEndingPeriod\":3600,\"proposerId\":\"5Bi1KZGIYzW5UIljHgBlO98NXaI2\",\"countdownPeriod\":57600,\"id\":\"db50929c-26bf-46a1-aae3-8c227b50c536\",\"join\":{\"cardId\":\"d79e0a9b-5221-4cd3-a6cc-b4dcb278ffe4\",\"fundingType\":\"one-time\",\"ip\":\"178.120.55.200\",\"funding\":1000,\"payments\":[]},\"moderation\":{\"flag\":\"reported\",\"updatedAt\":{\"_seconds\":1617182708,\"_nanoseconds\":112000000},\"moderator\":\"\",\"moderatorNote\":\"\",\"reasons\":[\"Violence\"],\"reporter\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\"},\"updatedAt\":{\"_seconds\":1617196659,\"_nanoseconds\":393000000},\"votesFor\":0,\"votesAgainst\":2,\"state\":\"failed\",\"type\":\"join\"}" + }, + { + "id": "dbaf120d-3f7f-401c-8a10-67cbeeddfbae", + "createdAt": "2021-05-18T08:40:20.108Z", + "updatedAt": "2021-05-18T08:40:20.109Z", + "expiresAt": "2020-12-30T05:46:56.414Z", + "title": null, + "description": "Hello", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 2, + "votesAgainst": 0, + "joinId": "dbaf120d-3f7f-401c-8a10-67cbeeddfbae", + "fundingId": null, + "userId": "0gzqlV9O9vWWe6i2wagAZHMMDDD2", + "commonId": "0313e3e2-b34b-4192-9381-13fc4516a923", + "commonMemberId": "e0b8c3d2-03ca-4755-b3c1-2cd2a5b445bd", + "importedFrom": "{\"votesAgainst\":0,\"state\":\"passed\",\"createdAt\":{\"_seconds\":1609249616,\"_nanoseconds\":414000000},\"votes\":[{\"voterId\":\"BONVnugkzuhlKnhSTvQSlYGZMEy1\",\"voteId\":\"7f757f56-d74d-43c0-9903-1f55bcf114fe\",\"voteOutcome\":\"approved\"},{\"voteId\":\"fa7eee8d-50a6-43e1-8e76-422f5bfc7126\",\"voterId\":\"DAawzIgIIifv6GfzdDJRJ1kZl7J2\",\"voteOutcome\":\"approved\"}],\"description\":{\"links\":[],\"description\":\"Hello\"},\"paymentState\":\"confirmed\",\"join\":{\"cardId\":\"3b73cf25-661e-46e4-81b2-ae2e8d0561fc\",\"payments\":[],\"fundingType\":\"monthly\",\"funding\":500},\"updatedAt\":{\"_seconds\":1609249744,\"_nanoseconds\":883000000},\"votesFor\":2,\"commonId\":\"0313e3e2-b34b-4192-9381-13fc4516a923\",\"type\":\"join\",\"quietEndingPeriod\":3600,\"proposerId\":\"0gzqlV9O9vWWe6i2wagAZHMMDDD2\",\"countdownPeriod\":57600,\"id\":\"dbaf120d-3f7f-401c-8a10-67cbeeddfbae\"}" + }, + { + "id": "dded124a-37fe-4fff-9fde-a99946931c61", + "createdAt": "2021-05-18T08:40:20.109Z", + "updatedAt": "2021-05-18T08:40:20.110Z", + "expiresAt": "2020-12-16T18:03:29.130Z", + "title": null, + "description": "Bb", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 1, + "votesAgainst": 0, + "joinId": "dded124a-37fe-4fff-9fde-a99946931c61", + "fundingId": null, + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "commonId": "e8eb5e55-4648-4d89-b80f-87e645df60da", + "commonMemberId": null, + "importedFrom": "{\"updatedAt\":{\"_seconds\":1608134705,\"_nanoseconds\":269000000},\"proposerId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"votesAgainst\":0,\"commonId\":\"e8eb5e55-4648-4d89-b80f-87e645df60da\",\"state\":\"passed\",\"join\":{\"payments\":[\"41abd3d9-7c9c-4ef2-889e-6fba886ef993\"],\"fundingType\":\"one-time\",\"funding\":501,\"cardId\":\"f693b44c-2b93-4a37-8486-1407a05d9e67\"},\"votesFor\":1,\"quietEndingPeriod\":3600,\"votes\":[{\"voterId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"voteId\":\"f56adae3-8663-41e3-a151-bb9e6ab6da02\",\"voteOutcome\":\"approved\"}],\"description\":{\"links\":[],\"description\":\"Bb\"},\"countdownPeriod\":7200,\"createdAt\":{\"_seconds\":1608134609,\"_nanoseconds\":130000000},\"type\":\"join\",\"id\":\"dded124a-37fe-4fff-9fde-a99946931c61\"}" + }, + { + "id": "e0506e3f-cb99-4476-a41b-97dd8627d768", + "createdAt": "2021-05-18T08:40:20.111Z", + "updatedAt": "2021-05-18T08:40:20.112Z", + "expiresAt": "2021-04-22T01:41:11.865Z", + "title": null, + "description": "Yes g", + "links": [], + "files": [], + "images": [], + "ipAddress": "178.120.3.148", + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 1, + "joinId": "e0506e3f-cb99-4476-a41b-97dd8627d768", + "fundingId": null, + "userId": "2HM9WnVvr9aDYbckjCo4cIDjncY2", + "commonId": "c7db9d37-813e-42a2-8e63-8e8c9260c534", + "commonMemberId": null, + "importedFrom": "{\"votesAgainst\":1,\"join\":{\"fundingType\":\"one-time\",\"cardId\":\"9fda336b-15fa-4b52-9d35-3134006220a4\",\"ip\":\"178.120.3.148\",\"payments\":[],\"funding\":560},\"createdAt\":{\"_seconds\":1618998071,\"_nanoseconds\":864999000},\"state\":\"failed\",\"votesFor\":0,\"id\":\"e0506e3f-cb99-4476-a41b-97dd8627d768\",\"commonId\":\"c7db9d37-813e-42a2-8e63-8e8c9260c534\",\"updatedAt\":{\"_seconds\":1618999263,\"_nanoseconds\":217999000},\"votes\":[{\"voterId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"voteOutcome\":\"rejected\",\"voteId\":\"2b1fbc9c-d078-404a-b1d2-b009436752dd\"}],\"countdownPeriod\":57600,\"description\":{\"links\":[],\"description\":\"Yes g\"},\"type\":\"join\",\"quietEndingPeriod\":3600,\"proposerId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\"}" + }, + { + "id": "e430861f-dca8-4c22-a9bd-cace9bfaf96c", + "createdAt": "2021-05-18T08:40:20.113Z", + "updatedAt": "2021-05-18T08:40:20.114Z", + "expiresAt": "2021-03-26T01:57:05.698Z", + "title": null, + "description": "H", + "links": [], + "files": [], + "images": [], + "ipAddress": "2a01:6502:a97:3f27:b063:febb:ce23:b8", + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 2, + "joinId": "e430861f-dca8-4c22-a9bd-cace9bfaf96c", + "fundingId": null, + "userId": "b0Kxsd0x4OMLeOlDnheysBz5THo1", + "commonId": "10fd7df7-eae9-4995-9c85-90e691c439e1", + "commonMemberId": null, + "importedFrom": "{\"votes\":[{\"voteId\":\"cd5ad857-2fff-4c6c-9c13-181f667741cf\",\"voterId\":\"11j4NvvZ4kMRf4BFBUHdbRiXKMp1\",\"voteOutcome\":\"rejected\"},{\"voterId\":\"Sxv19oCvKAZq2vntJdYCTYSpWWN2\",\"voteOutcome\":\"rejected\",\"voteId\":\"20ee35df-15ea-44b7-a028-e0e3208013e9\"}],\"updatedAt\":{\"_seconds\":1616666559,\"_nanoseconds\":571000000},\"quietEndingPeriod\":3600,\"state\":\"failed\",\"join\":{\"payments\":[],\"cardId\":\"4b3fe9b6-51d6-4012-a13f-9a0cc0c3b038\",\"funding\":500,\"ip\":\"2a01:6502:a97:3f27:b063:febb:ce23:b8\"},\"description\":{\"description\":\"H\",\"links\":[]},\"id\":\"e430861f-dca8-4c22-a9bd-cace9bfaf96c\",\"commonId\":\"10fd7df7-eae9-4995-9c85-90e691c439e1\",\"votesAgainst\":2,\"votesFor\":0,\"createdAt\":{\"_seconds\":1616666225,\"_nanoseconds\":698000000},\"type\":\"join\",\"proposerId\":\"b0Kxsd0x4OMLeOlDnheysBz5THo1\",\"countdownPeriod\":57600}" + }, + { + "id": "e4810379-6e58-4823-96b0-5d2b46d483fe", + "createdAt": "2021-05-18T08:40:20.115Z", + "updatedAt": "2021-05-18T08:40:20.116Z", + "expiresAt": "2021-03-10T00:12:40.710Z", + "title": null, + "description": "יש לי", + "links": [], + "files": [], + "images": [], + "ipAddress": "147.161.8.149", + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 2, + "votesAgainst": 0, + "joinId": "e4810379-6e58-4823-96b0-5d2b46d483fe", + "fundingId": null, + "userId": "P21SZrJ6z5YjyF8WFaHv5eRsoFo1", + "commonId": "0f932979-eb1f-47d2-a6ac-7ba63a60019a", + "commonMemberId": "c536320d-fe45-43ae-b4d9-860a68c3e19d", + "importedFrom": "{\"id\":\"e4810379-6e58-4823-96b0-5d2b46d483fe\",\"join\":{\"cardId\":\"939f88dd-6a1b-4fc0-aeff-f87367998301\",\"ip\":\"147.161.8.149\",\"funding\":2500,\"fundingType\":\"one-time\",\"payments\":[\"8a4fa9c3-c043-4820-8973-2b67e463ea17\"]},\"type\":\"join\",\"updatedAt\":{\"_seconds\":1615277731,\"_nanoseconds\":8000000},\"proposerId\":\"P21SZrJ6z5YjyF8WFaHv5eRsoFo1\",\"state\":\"passed\",\"commonId\":\"0f932979-eb1f-47d2-a6ac-7ba63a60019a\",\"votesFor\":2,\"quietEndingPeriod\":3600,\"countdownPeriod\":57600,\"paymentState\":\"confirmed\",\"votes\":[{\"voterId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"voteId\":\"382f048e-9d40-42bd-8161-547ae410f6c1\",\"voteOutcome\":\"approved\"},{\"voteId\":\"a7dd05ba-e5f1-43e1-af96-a42c1a8527df\",\"voterId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"voteOutcome\":\"approved\"}],\"description\":{\"description\":\"יש לי\",\"links\":[]},\"votesAgainst\":0,\"createdAt\":{\"_seconds\":1615277560,\"_nanoseconds\":710000000}}" + }, + { + "id": "e7dc10fa-ecc0-4d2a-aeab-1ea8553e975b", + "createdAt": "2021-05-18T08:40:20.116Z", + "updatedAt": "2021-05-18T08:40:20.117Z", + "expiresAt": "2021-04-21T06:43:44.032Z", + "title": null, + "description": "Ycy", + "links": [], + "files": [], + "images": [], + "ipAddress": "46.56.246.124", + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "e7dc10fa-ecc0-4d2a-aeab-1ea8553e975b", + "fundingId": null, + "userId": "Wz0ZgOvKnafrjLDeAeWqx182uBq2", + "commonId": "c34e6352-dedd-4159-b75e-b4b032ba6644", + "commonMemberId": null, + "importedFrom": "{\"proposerId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"votesFor\":0,\"quietEndingPeriod\":3600,\"id\":\"e7dc10fa-ecc0-4d2a-aeab-1ea8553e975b\",\"updatedAt\":{\"_seconds\":1618987500,\"_nanoseconds\":256999000},\"state\":\"failed\",\"commonId\":\"c34e6352-dedd-4159-b75e-b4b032ba6644\",\"createdAt\":{\"_seconds\":1618929824,\"_nanoseconds\":32000000},\"description\":{\"links\":[],\"description\":\"Ycy\"},\"countdownPeriod\":57600,\"type\":\"join\",\"votes\":[],\"votesAgainst\":0,\"join\":{\"payments\":[],\"fundingType\":\"monthly\",\"cardId\":\"51cdb580-2e60-436e-8c1c-9cae3d52c336\",\"ip\":\"46.56.246.124\",\"funding\":12300}}" + }, + { + "id": "e8163ba7-f66f-403f-b49d-30c528627159", + "createdAt": "2021-05-18T08:40:20.118Z", + "updatedAt": "2021-05-18T08:40:20.119Z", + "expiresAt": "2020-12-21T09:51:56.435Z", + "title": null, + "description": "Hop to see al u adh dhdhd dbdh rbdb", + "links": [ + { + "url": "https://www.golf-il.co.il/?gclid=Cj0KCQiAifz-BRDjARIsAEElyGLnkSYjbGlqdnRVGzb0hN91rRA3ZkBg5SVC3O0LaLr41mKh1FB5cQ4aApvLEALw_wcB", + "title": "Hoo fhfhr fbrhrh tbrhrh rhrhhr" + } + ], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 1, + "votesAgainst": 0, + "joinId": "e8163ba7-f66f-403f-b49d-30c528627159", + "fundingId": null, + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "commonId": "37c974a2-fb15-46e3-a7ba-0be50d026971", + "commonMemberId": "5b518be8-3025-49a1-9f66-0ce609f350e2", + "importedFrom": "{\"proposerId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"votesFor\":1,\"votes\":[{\"voteOutcome\":\"approved\",\"voterId\":\"Xh4xoIGHhgOhxz1S5AJkaXCBT8K2\",\"voteId\":\"6a5df172-a1cb-4cad-b4d6-73444ea5322e\"}],\"createdAt\":{\"_seconds\":1608537116,\"_nanoseconds\":435000000},\"votesAgainst\":0,\"paymentState\":\"confirmed\",\"commonId\":\"37c974a2-fb15-46e3-a7ba-0be50d026971\",\"updatedAt\":{\"_seconds\":1608537639,\"_nanoseconds\":331000000},\"type\":\"join\",\"description\":{\"links\":[{\"value\":\"https://www.golf-il.co.il/?gclid=Cj0KCQiAifz-BRDjARIsAEElyGLnkSYjbGlqdnRVGzb0hN91rRA3ZkBg5SVC3O0LaLr41mKh1FB5cQ4aApvLEALw_wcB\",\"title\":\"Hoo fhfhr fbrhrh tbrhrh rhrhhr\"}],\"description\":\"Hop to see al u adh dhdhd dbdh rbdb\"},\"state\":\"passed\",\"quietEndingPeriod\":3600,\"countdownPeriod\":7200,\"id\":\"e8163ba7-f66f-403f-b49d-30c528627159\",\"join\":{\"payments\":[],\"cardId\":\"c14a1243-8a15-47b9-90e8-a4549026495e\",\"fundingType\":\"one-time\",\"funding\":76250}}" + }, + { + "id": "ea0bb1ec-3ded-4248-8473-59e424acfe44", + "createdAt": "2021-05-18T08:40:20.120Z", + "updatedAt": "2021-05-18T08:40:20.121Z", + "expiresAt": "2021-03-19T00:25:51.157Z", + "title": null, + "description": "Good", + "links": [], + "files": [], + "images": [], + "ipAddress": "178.120.61.209", + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "ea0bb1ec-3ded-4248-8473-59e424acfe44", + "fundingId": null, + "userId": "Wz0ZgOvKnafrjLDeAeWqx182uBq2", + "commonId": "120b0708-dc65-42d2-95e6-cb2efa89bbf5", + "commonMemberId": null, + "importedFrom": "{\"description\":{\"links\":[],\"description\":\"Good\"},\"state\":\"failed\",\"commonId\":\"120b0708-dc65-42d2-95e6-cb2efa89bbf5\",\"votesFor\":0,\"updatedAt\":{\"_seconds\":1616113800,\"_nanoseconds\":304000000},\"type\":\"join\",\"join\":{\"funding\":500,\"payments\":[],\"ip\":\"178.120.61.209\",\"cardId\":\"82be3cf8-e0d7-42c1-85f6-5862dd555937\",\"fundingType\":\"one-time\"},\"countdownPeriod\":57600,\"id\":\"ea0bb1ec-3ded-4248-8473-59e424acfe44\",\"proposerId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"votesAgainst\":0,\"createdAt\":{\"_seconds\":1616055951,\"_nanoseconds\":157000000},\"votes\":[],\"quietEndingPeriod\":3600}" + }, + { + "id": "eb19df17-92da-44a2-ae26-c1dd72fc0ec3", + "createdAt": "2021-05-18T08:40:20.122Z", + "updatedAt": "2021-05-18T08:40:20.123Z", + "expiresAt": "2021-03-17T05:23:00.904Z", + "title": null, + "description": "Test", + "links": [], + "files": [], + "images": [], + "ipAddress": "213.240.217.185", + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 1, + "votesAgainst": 0, + "joinId": "eb19df17-92da-44a2-ae26-c1dd72fc0ec3", + "fundingId": null, + "userId": "skBkfQh8E1f4eOGBSVLaiuJ097v1", + "commonId": "d30cb234-01ac-483c-b137-47961ed0cfec", + "commonMemberId": "8b54f385-9f03-4f4f-bd9d-b619301a5356", + "importedFrom": "{\"commonId\":\"d30cb234-01ac-483c-b137-47961ed0cfec\",\"quietEndingPeriod\":3600,\"votesFor\":1,\"votes\":[{\"voterId\":\"5Bi1KZGIYzW5UIljHgBlO98NXaI2\",\"voteId\":\"384ebcaa-ec49-4e65-83e9-c004d317e161\",\"voteOutcome\":\"approved\"}],\"id\":\"eb19df17-92da-44a2-ae26-c1dd72fc0ec3\",\"join\":{\"ip\":\"213.240.217.185\",\"funding\":700,\"cardId\":\"f3ed9074-797c-4f43-bc91-4ae4c56a1325\",\"fundingType\":\"monthly\",\"payments\":[]},\"state\":\"passed\",\"votesAgainst\":0,\"updatedAt\":{\"_seconds\":1615958707,\"_nanoseconds\":554000000},\"type\":\"join\",\"description\":{\"links\":[],\"description\":\"Test\"},\"createdAt\":{\"_seconds\":1615900980,\"_nanoseconds\":904000000},\"proposerId\":\"skBkfQh8E1f4eOGBSVLaiuJ097v1\",\"countdownPeriod\":57600,\"paymentState\":\"confirmed\"}" + }, + { + "id": "eb55d4c0-dd95-4729-a20a-ad18bfc52f24", + "createdAt": "2021-05-18T08:40:20.124Z", + "updatedAt": "2021-05-18T08:40:20.125Z", + "expiresAt": "2021-03-10T06:26:38.614Z", + "title": null, + "description": "Какой чудесный день", + "links": [], + "files": [], + "images": [], + "ipAddress": "134.17.176.64", + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 1, + "votesAgainst": 0, + "joinId": "eb55d4c0-dd95-4729-a20a-ad18bfc52f24", + "fundingId": null, + "userId": "RN4V4T2Z4gf2ld9QhwanrQbSnP23", + "commonId": "02314122-6b05-4563-a8ce-4a10e97b72da", + "commonMemberId": "61e9655e-ab33-4c9c-a0cc-36601be74af7", + "importedFrom": "{\"votes\":[{\"voteId\":\"ffb74594-9ba3-474f-84c7-7a5edaddc9e5\",\"voteOutcome\":\"approved\",\"voterId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\"}],\"description\":{\"links\":[],\"description\":\"Какой чудесный день\"},\"paymentState\":\"confirmed\",\"state\":\"passed\",\"join\":{\"payments\":[\"d44eaf0f-3ad2-4d2f-8a22-9caef7f2d28b\"],\"funding\":3200,\"cardId\":\"2ef4e4b7-3739-4f48-a590-e908a0af8419\",\"fundingType\":\"one-time\",\"ip\":\"134.17.176.64\"},\"id\":\"eb55d4c0-dd95-4729-a20a-ad18bfc52f24\",\"proposerId\":\"RN4V4T2Z4gf2ld9QhwanrQbSnP23\",\"createdAt\":{\"_seconds\":1615299998,\"_nanoseconds\":614000000},\"countdownPeriod\":57600,\"updatedAt\":{\"_seconds\":1615357804,\"_nanoseconds\":760000000},\"votesAgainst\":0,\"type\":\"join\",\"votesFor\":1,\"quietEndingPeriod\":3600,\"commonId\":\"02314122-6b05-4563-a8ce-4a10e97b72da\"}" + }, + { + "id": "eb5cacef-03d0-4bce-a2df-bc925a7df4be", + "createdAt": "2021-05-18T08:40:20.126Z", + "updatedAt": "2021-05-18T08:40:20.127Z", + "expiresAt": "2021-03-05T23:49:55.356Z", + "title": null, + "description": "If cud", + "links": [], + "files": [], + "images": [], + "ipAddress": "178.120.56.0", + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 1, + "votesAgainst": 0, + "joinId": "eb5cacef-03d0-4bce-a2df-bc925a7df4be", + "fundingId": null, + "userId": "2HM9WnVvr9aDYbckjCo4cIDjncY2", + "commonId": "39d28344-d7aa-4ed4-9b5b-3969984c8247", + "commonMemberId": "b7908830-97ef-4ce1-99e3-27020aa07483", + "importedFrom": "{\"type\":\"join\",\"join\":{\"fundingType\":\"one-time\",\"payments\":[\"c78f8b90-bdcb-4fd3-911c-0376288c7f02\"],\"cardId\":\"66f3b178-dd82-4a06-bdb3-fac12c9c2e00\",\"funding\":100,\"ip\":\"178.120.56.0\"},\"id\":\"eb5cacef-03d0-4bce-a2df-bc925a7df4be\",\"votesFor\":1,\"countdownPeriod\":57600,\"commonId\":\"39d28344-d7aa-4ed4-9b5b-3969984c8247\",\"quietEndingPeriod\":3600,\"votes\":[{\"voteOutcome\":\"approved\",\"voterId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"voteId\":\"e8ff47cc-12ec-42e5-b191-40c241b6a02c\"}],\"votesAgainst\":0,\"paymentState\":\"confirmed\",\"state\":\"passed\",\"createdAt\":{\"_seconds\":1614930595,\"_nanoseconds\":356000000},\"updatedAt\":{\"_seconds\":1614930666,\"_nanoseconds\":862000000},\"description\":{\"description\":\"If cud\",\"links\":[]},\"proposerId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\"}" + }, + { + "id": "eb7aebe5-dc17-4e51-83a2-6820818f0eef", + "createdAt": "2021-05-18T08:40:20.128Z", + "updatedAt": "2021-05-18T08:40:20.129Z", + "expiresAt": "2021-03-15T09:21:37.120Z", + "title": null, + "description": "Rh", + "links": [], + "files": [], + "images": [], + "ipAddress": "87.71.10.6", + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 1, + "joinId": "eb7aebe5-dc17-4e51-83a2-6820818f0eef", + "fundingId": null, + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "commonId": "2383dd8c-f468-4bf1-b74a-06e8da55a22f", + "commonMemberId": null, + "importedFrom": "{\"votesAgainst\":1,\"commonId\":\"2383dd8c-f468-4bf1-b74a-06e8da55a22f\",\"quietEndingPeriod\":3600,\"state\":\"failed\",\"votesFor\":0,\"type\":\"join\",\"join\":{\"fundingType\":\"one-time\",\"ip\":\"87.71.10.6\",\"funding\":50000,\"payments\":[],\"cardId\":\"0ec88fb4-3c8c-4265-971a-4aa8f02ed8cd\"},\"proposerId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"updatedAt\":{\"_seconds\":1615742564,\"_nanoseconds\":243000000},\"votes\":[{\"voteId\":\"26c331e0-4884-4ec8-b446-cade5a8dfe32\",\"voterId\":\"P21SZrJ6z5YjyF8WFaHv5eRsoFo1\",\"voteOutcome\":\"rejected\"}],\"id\":\"eb7aebe5-dc17-4e51-83a2-6820818f0eef\",\"countdownPeriod\":57600,\"description\":{\"description\":\"Rh\",\"links\":[]},\"createdAt\":{\"_seconds\":1615742497,\"_nanoseconds\":120000000}}" + }, + { + "id": "ef9da434-44ac-40e5-9310-1291c65678c0", + "createdAt": "2021-05-18T08:40:20.132Z", + "updatedAt": "2021-05-18T08:40:20.133Z", + "expiresAt": "2021-03-31T08:17:08.974Z", + "title": null, + "description": "Hello", + "links": [], + "files": [], + "images": [], + "ipAddress": "178.120.55.200", + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 2, + "joinId": "ef9da434-44ac-40e5-9310-1291c65678c0", + "fundingId": null, + "userId": "5Bi1KZGIYzW5UIljHgBlO98NXaI2", + "commonId": "6f88e880-1ed8-4946-8326-d285239d293b", + "commonMemberId": null, + "importedFrom": "{\"join\":{\"funding\":2000,\"fundingType\":\"one-time\",\"cardId\":\"2805976b-5fec-4626-b48e-67df1b354b71\",\"ip\":\"178.120.55.200\",\"payments\":[]},\"commonId\":\"6f88e880-1ed8-4946-8326-d285239d293b\",\"votesAgainst\":2,\"createdAt\":{\"_seconds\":1617121028,\"_nanoseconds\":974000000},\"votesFor\":0,\"state\":\"failed\",\"description\":{\"links\":[],\"description\":\"Hello\"},\"votes\":[{\"voteId\":\"dde77a73-c104-4f73-b30d-b7db8d47dec6\",\"voterId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"voteOutcome\":\"rejected\"},{\"voteOutcome\":\"rejected\",\"voterId\":\"2HM9WnVvr9aDYbckjCo4cIDjncY2\",\"voteId\":\"9099b2e5-010c-40df-b65a-de23d9a96072\"}],\"quietEndingPeriod\":3600,\"proposerId\":\"5Bi1KZGIYzW5UIljHgBlO98NXaI2\",\"id\":\"ef9da434-44ac-40e5-9310-1291c65678c0\",\"moderation\":{\"reasons\":[\"Hate speech\"],\"updatedAt\":{\"_seconds\":1617122423,\"_nanoseconds\":138000000},\"reporter\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"moderatorNote\":\"\",\"flag\":\"reported\",\"moderator\":\"\"},\"type\":\"join\",\"updatedAt\":{\"_seconds\":1617123193,\"_nanoseconds\":117000000},\"countdownPeriod\":57600}" + }, + { + "id": "f326988c-faa1-4bf5-a3e7-9a5787ae42e3", + "createdAt": "2021-05-18T08:40:20.137Z", + "updatedAt": "2021-05-18T08:40:20.138Z", + "expiresAt": "2021-03-15T09:16:13.761Z", + "title": null, + "description": "How", + "links": [], + "files": [], + "images": [], + "ipAddress": "147.161.15.249", + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 2, + "votesAgainst": 0, + "joinId": "f326988c-faa1-4bf5-a3e7-9a5787ae42e3", + "fundingId": null, + "userId": "P21SZrJ6z5YjyF8WFaHv5eRsoFo1", + "commonId": "21bed599-c9cc-41e1-9c58-255eae958848", + "commonMemberId": "9671d133-4b17-4acb-99b6-f9886ea1ba7f", + "importedFrom": "{\"proposerId\":\"P21SZrJ6z5YjyF8WFaHv5eRsoFo1\",\"id\":\"f326988c-faa1-4bf5-a3e7-9a5787ae42e3\",\"type\":\"join\",\"votes\":[{\"voteOutcome\":\"approved\",\"voterId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"voteId\":\"d8be28a2-37c1-4d4a-934c-1bba851b5776\"},{\"voteOutcome\":\"approved\",\"voterId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"voteId\":\"e1387f84-6c0b-4982-8fee-9108405f1473\"}],\"description\":{\"description\":\"How\",\"links\":[]},\"join\":{\"payments\":[\"761a3ff0-7216-437d-9038-33ee803a0bd5\"],\"ip\":\"147.161.15.249\",\"fundingType\":\"one-time\",\"funding\":15000,\"cardId\":\"3d7302fa-be10-4c8d-9b6e-4a2bb28bdd75\"},\"commonId\":\"21bed599-c9cc-41e1-9c58-255eae958848\",\"countdownPeriod\":57600,\"votesFor\":2,\"votesAgainst\":0,\"createdAt\":{\"_seconds\":1615742173,\"_nanoseconds\":761000000},\"quietEndingPeriod\":3600,\"paymentState\":\"confirmed\",\"state\":\"passed\",\"updatedAt\":{\"_seconds\":1615742278,\"_nanoseconds\":915000000}}" + }, + { + "id": "f5976c23-360b-4c1e-9f0c-65d9bacfe0d7", + "createdAt": "2021-05-18T08:40:20.140Z", + "updatedAt": "2021-05-18T08:40:20.141Z", + "expiresAt": "2021-02-08T03:13:26.295Z", + "title": null, + "description": "123", + "links": [ + { + "url": "https://www.volvocars.com/il/cars/lp?site=google&lp=volvo.brand&utm_source=google&utm_campaign=volvo_brand&AgId%5Bwe%5D", + "title": "12" + } + ], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "f5976c23-360b-4c1e-9f0c-65d9bacfe0d7", + "fundingId": null, + "userId": "b0Kxsd0x4OMLeOlDnheysBz5THo1", + "commonId": "02314122-6b05-4563-a8ce-4a10e97b72da", + "commonMemberId": null, + "importedFrom": "{\"commonId\":\"02314122-6b05-4563-a8ce-4a10e97b72da\",\"type\":\"join\",\"join\":{\"payments\":[],\"cardId\":\"79ce8aad-73d0-4e6d-b039-b57bf810ea37\",\"fundingType\":\"one-time\",\"funding\":2400},\"votes\":[],\"state\":\"failed\",\"createdAt\":{\"_seconds\":1612696406,\"_nanoseconds\":295000000},\"description\":{\"description\":\"123\",\"links\":[{\"title\":\"12\",\"value\":\"https://www.volvocars.com/il/cars/lp?site=google&lp=volvo.brand&utm_source=google&utm_campaign=volvo_brand&AgId%5Bwe%5D\"}]},\"quietEndingPeriod\":3600,\"id\":\"f5976c23-360b-4c1e-9f0c-65d9bacfe0d7\",\"proposerId\":\"b0Kxsd0x4OMLeOlDnheysBz5THo1\",\"votesAgainst\":0,\"countdownPeriod\":57600,\"votesFor\":0,\"updatedAt\":{\"_seconds\":1612754100,\"_nanoseconds\":602000000}}" + }, + { + "id": "f5cd6389-ff2a-4c47-b6f8-626610761939", + "createdAt": "2021-05-18T08:40:20.141Z", + "updatedAt": "2021-05-18T08:40:20.142Z", + "expiresAt": "2021-02-06T05:43:20.724Z", + "title": null, + "description": "Sdssdsdsdsd", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "f5cd6389-ff2a-4c47-b6f8-626610761939", + "fundingId": null, + "userId": "h59V0do13qhpeH9xDyoLaCZucTm1", + "commonId": "0313e3e2-b34b-4192-9381-13fc4516a923", + "commonMemberId": null, + "importedFrom": "{\"commonId\":\"0313e3e2-b34b-4192-9381-13fc4516a923\",\"description\":{\"links\":[],\"description\":\"Sdssdsdsdsd\"},\"join\":{\"cardId\":\"55a1b873-d694-44fa-b4d4-ced44a16553d\",\"payments\":[],\"funding\":500,\"fundingType\":\"monthly\"},\"quietEndingPeriod\":3600,\"id\":\"f5cd6389-ff2a-4c47-b6f8-626610761939\",\"votesFor\":0,\"state\":\"failed\",\"votesAgainst\":0,\"createdAt\":{\"_seconds\":1612532600,\"_nanoseconds\":724000000},\"updatedAt\":{\"_seconds\":1612590301,\"_nanoseconds\":50000000},\"votes\":[],\"proposerId\":\"h59V0do13qhpeH9xDyoLaCZucTm1\",\"type\":\"join\",\"countdownPeriod\":57600}" + }, + { + "id": "f93b183e-c4e3-43c6-a8bd-e9acf112f210", + "createdAt": "2021-05-18T08:40:20.144Z", + "updatedAt": "2021-05-18T08:40:20.145Z", + "expiresAt": "2021-01-30T01:13:37.854Z", + "title": null, + "description": "Sddsdsasdsdsddfsdsfdfsdsffd", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "f93b183e-c4e3-43c6-a8bd-e9acf112f210", + "fundingId": null, + "userId": "h59V0do13qhpeH9xDyoLaCZucTm1", + "commonId": "20c97f59-d176-41a5-9cfa-1b31b017718f", + "commonMemberId": null, + "importedFrom": "{\"countdownPeriod\":57600,\"createdAt\":{\"_seconds\":1611911617,\"_nanoseconds\":854000000},\"id\":\"f93b183e-c4e3-43c6-a8bd-e9acf112f210\",\"commonId\":\"20c97f59-d176-41a5-9cfa-1b31b017718f\",\"votes\":[],\"quietEndingPeriod\":3600,\"proposerId\":\"h59V0do13qhpeH9xDyoLaCZucTm1\",\"votesFor\":0,\"state\":\"failed\",\"description\":{\"links\":[],\"description\":\"Sddsdsasdsdsddfsdsfdfsdsffd\"},\"votesAgainst\":0,\"type\":\"join\",\"updatedAt\":{\"_seconds\":1611969300,\"_nanoseconds\":692000000},\"join\":{\"fundingType\":\"monthly\",\"funding\":500,\"payments\":[],\"cardId\":\"db69fcb6-cc65-49f3-a753-2068750394ab\"}}" + }, + { + "id": "f9ce8a16-29a9-4eca-8f62-6008a1e9e25b", + "createdAt": "2021-05-18T08:40:20.146Z", + "updatedAt": "2021-05-18T08:40:20.147Z", + "expiresAt": "2021-03-12T07:40:56.817Z", + "title": null, + "description": "Vika android", + "links": [], + "files": [], + "images": [], + "ipAddress": "134.17.176.64", + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 1, + "votesAgainst": 0, + "joinId": "f9ce8a16-29a9-4eca-8f62-6008a1e9e25b", + "fundingId": null, + "userId": "RN4V4T2Z4gf2ld9QhwanrQbSnP23", + "commonId": "c45d25f6-d40e-4336-93ac-2274a3f51b1e", + "commonMemberId": "62f2e475-5e56-4903-895f-048a34b9e05f", + "importedFrom": "{\"paymentState\":\"confirmed\",\"votesAgainst\":0,\"quietEndingPeriod\":3600,\"state\":\"passed\",\"votesFor\":1,\"type\":\"join\",\"join\":{\"ip\":\"134.17.176.64\",\"payments\":[],\"funding\":2500,\"cardId\":\"17068acf-2691-44a5-a309-cf907b4d29fd\",\"fundingType\":\"monthly\"},\"votes\":[{\"voteId\":\"3e0da608-b731-4d78-8cd3-6beb614af59d\",\"voterId\":\"Wz0ZgOvKnafrjLDeAeWqx182uBq2\",\"voteOutcome\":\"approved\"}],\"countdownPeriod\":57600,\"description\":{\"description\":\"Vika android\",\"links\":[]},\"updatedAt\":{\"_seconds\":1615477347,\"_nanoseconds\":77000000},\"createdAt\":{\"_seconds\":1615477256,\"_nanoseconds\":817000000},\"proposerId\":\"RN4V4T2Z4gf2ld9QhwanrQbSnP23\",\"commonId\":\"c45d25f6-d40e-4336-93ac-2274a3f51b1e\",\"id\":\"f9ce8a16-29a9-4eca-8f62-6008a1e9e25b\"}" + }, + { + "id": "f9e4a1cf-4991-4de0-89f7-100b64b683aa", + "createdAt": "2021-05-18T08:40:20.148Z", + "updatedAt": "2021-05-18T08:40:20.149Z", + "expiresAt": "2021-01-29T04:53:56.891Z", + "title": null, + "description": "אור", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 2, + "joinId": "f9e4a1cf-4991-4de0-89f7-100b64b683aa", + "fundingId": null, + "userId": "P21SZrJ6z5YjyF8WFaHv5eRsoFo1", + "commonId": "bcb0e449-7ce0-439b-bf0c-d1976072c7fb", + "commonMemberId": null, + "importedFrom": "{\"updatedAt\":{\"_seconds\":1611838542,\"_nanoseconds\":65000000},\"createdAt\":{\"_seconds\":1611838436,\"_nanoseconds\":891000000},\"proposerId\":\"P21SZrJ6z5YjyF8WFaHv5eRsoFo1\",\"votesFor\":0,\"quietEndingPeriod\":3600,\"type\":\"join\",\"countdownPeriod\":57600,\"votes\":[{\"voterId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"voteId\":\"7725d778-7508-4506-b38f-009e35b4c04f\",\"voteOutcome\":\"rejected\"},{\"voterId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"voteOutcome\":\"rejected\",\"voteId\":\"dbe5322d-9b51-4edd-b8ae-aafe2d6c0df5\"}],\"description\":{\"description\":\"אור\",\"links\":[]},\"commonId\":\"bcb0e449-7ce0-439b-bf0c-d1976072c7fb\",\"state\":\"failed\",\"join\":{\"cardId\":\"77190ee7-652b-4e3e-95ea-e8570a52b649\",\"fundingType\":\"monthly\",\"funding\":64500,\"payments\":[]},\"id\":\"f9e4a1cf-4991-4de0-89f7-100b64b683aa\",\"votesAgainst\":2}" + }, + { + "id": "fbc3d2ce-667c-4458-8b2f-c7d31fd31e49", + "createdAt": "2021-05-18T08:40:20.149Z", + "updatedAt": "2021-05-18T08:40:20.150Z", + "expiresAt": "2021-05-11T09:12:24.746Z", + "title": null, + "description": "יח", + "links": [], + "files": [], + "images": [], + "ipAddress": "147.161.8.94", + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "fbc3d2ce-667c-4458-8b2f-c7d31fd31e49", + "fundingId": null, + "userId": "P21SZrJ6z5YjyF8WFaHv5eRsoFo1", + "commonId": "05e4c4a2-6957-42ea-bc49-073a307313d8", + "commonMemberId": null, + "importedFrom": "{\"moderation\":{\"updatedAt\":{\"_seconds\":1620670984,\"_nanoseconds\":603000000},\"flag\":\"visible\",\"moderatorNote\":\"Pose\",\"reasons\":[\"False News\",\"Spam\",\"Hate speech\"],\"moderator\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"countdownPeriod\":53369,\"quietEnding\":null,\"reporter\":\"97d5y9WXk1fEZv767j1ejKuHevi1\"},\"votesFor\":0,\"description\":{\"description\":\"יח\",\"links\":[]},\"commonId\":\"05e4c4a2-6957-42ea-bc49-073a307313d8\",\"type\":\"join\",\"id\":\"fbc3d2ce-667c-4458-8b2f-c7d31fd31e49\",\"proposerId\":\"P21SZrJ6z5YjyF8WFaHv5eRsoFo1\",\"state\":\"failed\",\"updatedAt\":{\"_seconds\":1620728700,\"_nanoseconds\":767000000},\"votes\":[],\"quietEndingPeriod\":3600,\"countdownPeriod\":57600,\"votesAgainst\":0,\"join\":{\"ip\":\"147.161.8.94\",\"fundingType\":\"one-time\",\"cardId\":\"dac8b43c-c120-4a27-a9e5-cfa3e0300409\",\"payments\":[],\"funding\":500},\"createdAt\":{\"_seconds\":1620666744,\"_nanoseconds\":746000000}}" + }, + { + "id": "fea1807c-4b0e-493c-a392-f8e1d0d2c658", + "createdAt": "2021-05-18T08:40:20.151Z", + "updatedAt": "2021-05-18T08:40:20.152Z", + "expiresAt": "2021-03-05T08:23:35.746Z", + "title": null, + "description": "Yu", + "links": [], + "files": [], + "images": [], + "ipAddress": "77.127.45.147", + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "fea1807c-4b0e-493c-a392-f8e1d0d2c658", + "fundingId": null, + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "commonId": "1d85812f-5a59-49bf-bb0d-c6579597bb0d", + "commonMemberId": null, + "importedFrom": "{\"commonId\":\"1d85812f-5a59-49bf-bb0d-c6579597bb0d\",\"countdownPeriod\":57600,\"proposerId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"votesAgainst\":0,\"description\":{\"links\":[],\"description\":\"Yu\"},\"createdAt\":{\"_seconds\":1614875015,\"_nanoseconds\":746000000},\"votes\":[],\"quietEndingPeriod\":3600,\"join\":{\"funding\":7500,\"payments\":[],\"fundingType\":\"one-time\",\"cardId\":\"bc2af06f-7272-40eb-b962-01b47f892a77\",\"ip\":\"77.127.45.147\"},\"votesFor\":0,\"type\":\"join\",\"id\":\"fea1807c-4b0e-493c-a392-f8e1d0d2c658\",\"updatedAt\":{\"_seconds\":1614932700,\"_nanoseconds\":459000000},\"state\":\"failed\"}" + }, + { + "id": "ff766620-44a6-4227-8287-375571f793ac", + "createdAt": "2021-05-18T08:40:20.152Z", + "updatedAt": "2021-05-18T08:40:20.153Z", + "expiresAt": "2021-02-09T01:32:27.461Z", + "title": null, + "description": "Hi", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Accepted", + "votesFor": 2, + "votesAgainst": 0, + "joinId": "ff766620-44a6-4227-8287-375571f793ac", + "fundingId": null, + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "commonId": "5a9e159d-f462-4adc-87d6-72de03d86e3e", + "commonMemberId": "9394d9a0-b8d8-4d20-bd0d-9365dd3a2983", + "importedFrom": "{\"id\":\"ff766620-44a6-4227-8287-375571f793ac\",\"votes\":[{\"voterId\":\"97d5y9WXk1fEZv767j1ejKuHevi1\",\"voteId\":\"b2b1bbf3-93da-4e10-84a6-d827f2099f33\",\"voteOutcome\":\"approved\"},{\"voteId\":\"71cf6069-7e33-46d3-8372-228db934cc5a\",\"voteOutcome\":\"approved\",\"voterId\":\"P21SZrJ6z5YjyF8WFaHv5eRsoFo1\"}],\"quietEndingPeriod\":3600,\"votesFor\":2,\"commonId\":\"5a9e159d-f462-4adc-87d6-72de03d86e3e\",\"updatedAt\":{\"_seconds\":1612776920,\"_nanoseconds\":928000000},\"description\":{\"description\":\"Hi\",\"links\":[]},\"proposerId\":\"2Ti3LkP23KUJVp2AZY3wVHYWRxm2\",\"countdownPeriod\":57600,\"type\":\"join\",\"paymentState\":\"confirmed\",\"votesAgainst\":0,\"state\":\"passed\",\"createdAt\":{\"_seconds\":1612776747,\"_nanoseconds\":461000000},\"join\":{\"fundingType\":\"one-time\",\"payments\":[\"940419a8-10fa-4cc9-9c29-8e885a6c6434\"],\"funding\":3600,\"cardId\":\"15e1e8e0-bf1c-4193-b5fa-ffea9d38cd0d\"}}" + }, + { + "id": "fffa08d6-80b5-4fc5-a20b-5539846e3849", + "createdAt": "2021-05-18T08:40:20.154Z", + "updatedAt": "2021-05-18T08:40:20.155Z", + "expiresAt": "2020-12-21T17:55:22.166Z", + "title": null, + "description": "Trying to join without name in payment details screen", + "links": [], + "files": [], + "images": [], + "ipAddress": null, + "type": "JoinRequest", + "state": "Rejected", + "votesFor": 0, + "votesAgainst": 0, + "joinId": "fffa08d6-80b5-4fc5-a20b-5539846e3849", + "fundingId": null, + "userId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1", + "commonId": "0313e3e2-b34b-4192-9381-13fc4516a923", + "commonMemberId": null, + "importedFrom": "{\"votesFor\":0,\"join\":{\"cardId\":\"d0bda0d5-bc79-438a-a12d-41b7ccc8f2e8\",\"funding\":500,\"fundingType\":\"monthly\",\"payments\":[]},\"countdownPeriod\":7200,\"votes\":[],\"votesAgainst\":0,\"quietEndingPeriod\":3600,\"proposerId\":\"11j4NvvZ4kMRf4BFBUHdbRiXKMp1\",\"description\":{\"description\":\"Trying to join without name in payment details screen\",\"links\":[]},\"commonId\":\"0313e3e2-b34b-4192-9381-13fc4516a923\",\"createdAt\":{\"_seconds\":1608566122,\"_nanoseconds\":166000000},\"type\":\"join\",\"state\":\"failed\",\"id\":\"fffa08d6-80b5-4fc5-a20b-5539846e3849\",\"updatedAt\":{\"_seconds\":1608573600,\"_nanoseconds\":838000000}}" + } +] \ No newline at end of file diff --git a/packages/core/prisma/result/1621327212154/paymentImports-errors.json b/packages/core/prisma/result/1621327212154/paymentImports-errors.json new file mode 100644 index 000000000..3d3cd6df7 --- /dev/null +++ b/packages/core/prisma/result/1621327212154/paymentImports-errors.json @@ -0,0 +1,868 @@ +[ + { + "reason": "No user ID", + "payment": { + "refunds": [], + "updateDate": "2020-12-09T20:12:33.369Z", + "source": { + "type": "card", + "id": "daa181fc-5581-4d2a-bd0a-0b49894310ea" + }, + "createDate": "2020-12-09T20:12:33.369Z", + "status": "pending", + "id": "a8c567a2-3819-44d1-b636-96df60e66cbe", + "subscriptionId": "ec051bc0-0adc-4983-89da-bb411dfc2289", + "amount": { + "currency": "USD", + "amount": "12500.00" + }, + "type": "SubscriptionPayment" + } + }, + { + "reason": "No user ID", + "payment": { + "amount": { + "amount": "50000.00", + "currency": "USD" + }, + "type": "SubscriptionPayment", + "refunds": [], + "status": "pending", + "createDate": "2020-12-10T07:55:55.881Z", + "id": "e9997bb7-0d3e-443b-8cc4-047dd2e8b3bc", + "updateDate": "2020-12-10T07:55:55.881Z", + "subscriptionId": "3c2dd6b4-8ea0-4ec1-b3c0-8c8a67cfd32f", + "source": { + "type": "card", + "id": "03ec81b7-d29e-410c-a0d6-ce516a9a4cc7" + } + } + }, + { + "reason": "No user ID", + "payment": { + "refunds": [], + "id": "f9f767e7-4516-49bc-8257-32c6c2af42b6", + "type": "SubscriptionPayment", + "createDate": "2020-12-10T07:55:55.850Z", + "subscriptionId": "f498688c-1835-466b-a7e2-3c2a0e8a595e", + "status": "pending", + "amount": { + "currency": "USD", + "amount": "50000.00" + }, + "source": { + "type": "card", + "id": "03ec81b7-d29e-410c-a0d6-ce516a9a4cc7" + }, + "updateDate": "2020-12-10T07:55:55.850Z" + } + }, + { + "payment": { + "refunds": [], + "updateDate": "2020-12-09T20:12:33.369Z", + "source": { + "type": "card", + "id": "daa181fc-5581-4d2a-bd0a-0b49894310ea" + }, + "createDate": "2020-12-09T20:12:33.369Z", + "status": "pending", + "id": "a8c567a2-3819-44d1-b636-96df60e66cbe", + "subscriptionId": "ec051bc0-0adc-4983-89da-bb411dfc2289", + "amount": { + "currency": "USD", + "amount": "12500.00" + }, + "type": "SubscriptionPayment" + }, + "error": { + "message": "\nInvalid `prisma.payment.create()` invocation:\n\n{\n data: {\n id: 'a8c567a2-3819-44d1-b636-96df60e66cbe',\n type: 'ImportedPayment',\n status: 'Pending',\n amount: 12500,\n circlePaymentStatus: 'pending',\n circlePaymentId: undefined,\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutPaymentsInput | UserUncheckedCreateWithoutPaymentsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutPaymentsInput | UserUncheckedCreateWithoutPaymentsInput\n? }\n },\n card: {\n connect: {\n id: 'daa181fc-5581-4d2a-bd0a-0b49894310ea'\n }\n }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\n\nNote: Lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.payment.create()` invocation:\n\n{\n data: {\n id: 'a8c567a2-3819-44d1-b636-96df60e66cbe',\n type: 'ImportedPayment',\n status: 'Pending',\n amount: 12500,\n circlePaymentStatus: 'pending',\n circlePaymentId: undefined,\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutPaymentsInput | UserUncheckedCreateWithoutPaymentsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutPaymentsInput | UserUncheckedCreateWithoutPaymentsInput\n? }\n },\n card: {\n connect: {\n id: 'daa181fc-5581-4d2a-bd0a-0b49894310ea'\n }\n }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\n\nNote: Lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "payment": { + "amount": { + "amount": "50000.00", + "currency": "USD" + }, + "type": "SubscriptionPayment", + "refunds": [], + "status": "pending", + "createDate": "2020-12-10T07:55:55.881Z", + "id": "e9997bb7-0d3e-443b-8cc4-047dd2e8b3bc", + "updateDate": "2020-12-10T07:55:55.881Z", + "subscriptionId": "3c2dd6b4-8ea0-4ec1-b3c0-8c8a67cfd32f", + "source": { + "type": "card", + "id": "03ec81b7-d29e-410c-a0d6-ce516a9a4cc7" + } + }, + "error": { + "message": "\nInvalid `prisma.payment.create()` invocation:\n\n{\n data: {\n id: 'e9997bb7-0d3e-443b-8cc4-047dd2e8b3bc',\n type: 'ImportedPayment',\n status: 'Pending',\n amount: 50000,\n circlePaymentStatus: 'pending',\n circlePaymentId: undefined,\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutPaymentsInput | UserUncheckedCreateWithoutPaymentsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutPaymentsInput | UserUncheckedCreateWithoutPaymentsInput\n? }\n },\n card: {\n connect: {\n id: '03ec81b7-d29e-410c-a0d6-ce516a9a4cc7'\n }\n }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\n\nNote: Lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.payment.create()` invocation:\n\n{\n data: {\n id: 'e9997bb7-0d3e-443b-8cc4-047dd2e8b3bc',\n type: 'ImportedPayment',\n status: 'Pending',\n amount: 50000,\n circlePaymentStatus: 'pending',\n circlePaymentId: undefined,\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutPaymentsInput | UserUncheckedCreateWithoutPaymentsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutPaymentsInput | UserUncheckedCreateWithoutPaymentsInput\n? }\n },\n card: {\n connect: {\n id: '03ec81b7-d29e-410c-a0d6-ce516a9a4cc7'\n }\n }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\n\nNote: Lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "payment": { + "refunds": [], + "id": "f9f767e7-4516-49bc-8257-32c6c2af42b6", + "type": "SubscriptionPayment", + "createDate": "2020-12-10T07:55:55.850Z", + "subscriptionId": "f498688c-1835-466b-a7e2-3c2a0e8a595e", + "status": "pending", + "amount": { + "currency": "USD", + "amount": "50000.00" + }, + "source": { + "type": "card", + "id": "03ec81b7-d29e-410c-a0d6-ce516a9a4cc7" + }, + "updateDate": "2020-12-10T07:55:55.850Z" + }, + "error": { + "message": "\nInvalid `prisma.payment.create()` invocation:\n\n{\n data: {\n id: 'f9f767e7-4516-49bc-8257-32c6c2af42b6',\n type: 'ImportedPayment',\n status: 'Pending',\n amount: 50000,\n circlePaymentStatus: 'pending',\n circlePaymentId: undefined,\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutPaymentsInput | UserUncheckedCreateWithoutPaymentsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutPaymentsInput | UserUncheckedCreateWithoutPaymentsInput\n? }\n },\n card: {\n connect: {\n id: '03ec81b7-d29e-410c-a0d6-ce516a9a4cc7'\n }\n }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\n\nNote: Lines with ? are optional.\n", + "stack": "Error: \nInvalid `prisma.payment.create()` invocation:\n\n{\n data: {\n id: 'f9f767e7-4516-49bc-8257-32c6c2af42b6',\n type: 'ImportedPayment',\n status: 'Pending',\n amount: 50000,\n circlePaymentStatus: 'pending',\n circlePaymentId: undefined,\n user: {\n connect: {\n? id?: String,\n? email?: String\n },\n? create?: UserCreateWithoutPaymentsInput | UserUncheckedCreateWithoutPaymentsInput,\n? connectOrCreate?: {\n? where: UserWhereUniqueInput,\n? create: UserCreateWithoutPaymentsInput | UserUncheckedCreateWithoutPaymentsInput\n? }\n },\n card: {\n connect: {\n id: '03ec81b7-d29e-410c-a0d6-ce516a9a4cc7'\n }\n }\n }\n}\n\nArgument data.user.connect of type UserWhereUniqueInput needs at least one argument. Available args are listed in green.\n\nNote: Lines with ? are optional.\n\n at Document.validate (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:32780:19)\n at NewPrismaClient._executeRequest (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34717:17)\n at /Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:52\n at AsyncResource.runInAsyncScope (async_hooks.js:197:9)\n at NewPrismaClient._request (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34652:25)\n at Object.then (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:34772:39)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "payment": { + "circlePaymentId": "c639397a-949b-4c3a-8f71-5fba2e01b078", + "userId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "source": { + "type": "card", + "id": "fc0112f9-653f-42c4-83af-3b4caff2ed86" + }, + "trackIds": [ + "e1124322-cf28-43ad-b869-5c91471c5624", + "a893ea3e-d5b4-4863-bc1f-0df32fff4623" + ], + "status": "paid", + "createdAt": { + "_seconds": 1609423644, + "_nanoseconds": 690000000 + }, + "fees": { + "currency": "USD", + "amount": 51 + }, + "id": "1e4deece-422f-4e8c-8c6f-d7a92d814358", + "amount": { + "currency": "USD", + "amount": 500 + }, + "type": "one-time", + "updatedAt": { + "_seconds": 1609942813, + "_nanoseconds": 94000000 + }, + "proposalId": "7954d1ca-70e1-4f5e-9819-979264b6a310" + }, + "error": { + "message": "\nInvalid `prisma.payment.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Payment' record(s)) was found for a nested connect on one-to-many relation 'PaymentToUser'.", + "stack": "Error: \nInvalid `prisma.payment.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Payment' record(s)) was found for a nested connect on one-to-many relation 'PaymentToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "payment": { + "type": "one-time", + "userId": "Xlun3Ux94Zfc73axkiuVdkktOWf1", + "amount": { + "currency": "USD", + "amount": 500 + }, + "updatedAt": { + "_seconds": 1614692356, + "_nanoseconds": 56000000 + }, + "createdAt": { + "_seconds": 1614692355, + "_nanoseconds": 136000000 + }, + "circlePaymentId": "632214b7-9367-4a7d-8931-853bad17270a", + "id": "2c9313de-d933-4571-ae1b-6a694d2a5e76", + "status": "confirmed", + "source": { + "type": "card", + "id": "93eb4c4d-9652-4a85-b951-79590276c3f2" + }, + "fees": { + "currency": "USD", + "amount": 51 + }, + "proposalId": "638206be-e759-41d2-a5a6-2de3c955112d" + }, + "error": { + "message": "\nInvalid `prisma.payment.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Payment' record(s)) was found for a nested connect on one-to-many relation 'PaymentToUser'.", + "stack": "Error: \nInvalid `prisma.payment.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Payment' record(s)) was found for a nested connect on one-to-many relation 'PaymentToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "payment": { + "subscriptionId": "Payment for deleted subscription", + "userId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "createdAt": { + "_seconds": 1607860105, + "_nanoseconds": 845000000 + }, + "updatedAt": { + "_seconds": 1609942813, + "_nanoseconds": 449000000 + }, + "type": "subscription", + "status": "paid", + "source": { + "id": "58545097-65aa-4510-9a4a-21bdd9b2802f", + "type": "card" + }, + "trackIds": [ + "e1124322-cf28-43ad-b869-5c91471c5624", + "a893ea3e-d5b4-4863-bc1f-0df32fff4623" + ], + "circlePaymentId": "15ebaca8-7e45-46d6-bf95-34c3a18219a0", + "proposalId": "Payment for deleted subscription", + "id": "62e89b21-f406-4a3b-9157-60494f22d92b", + "amount": { + "amount": 250000, + "currency": "USD" + }, + "fees": { + "currency": "USD", + "amount": 10655 + } + }, + "error": { + "message": "\nInvalid `prisma.payment.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Payment' record(s)) was found for a nested connect on one-to-many relation 'PaymentToUser'.", + "stack": "Error: \nInvalid `prisma.payment.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Payment' record(s)) was found for a nested connect on one-to-many relation 'PaymentToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "payment": { + "fees": { + "currency": "USD", + "amount": 83 + }, + "source": { + "id": "f1180d0a-f5c5-4ba1-b021-228e7481f42b", + "type": "card" + }, + "trackIds": [ + "e1124322-cf28-43ad-b869-5c91471c5624", + "a893ea3e-d5b4-4863-bc1f-0df32fff4623" + ], + "userId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "amount": { + "currency": "USD", + "amount": 1250 + }, + "createdAt": { + "_seconds": 1609423983, + "_nanoseconds": 268000000 + }, + "status": "paid", + "subscriptionId": "c3710950-1ba7-4b07-8de1-6e4f15002043", + "circlePaymentId": "8b4736d5-5151-4013-8400-a1018f9461f5", + "id": "7d24b7bf-2ec8-4c05-96dc-ffae32e0e5ed", + "type": "subscription", + "proposalId": "232a7fb7-c16c-46a1-a5db-d48698cef2a7", + "updatedAt": { + "_seconds": 1609942813, + "_nanoseconds": 355000000 + } + }, + "error": { + "message": "\nInvalid `prisma.payment.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Payment' record(s)) was found for a nested connect on one-to-many relation 'PaymentToUser'.", + "stack": "Error: \nInvalid `prisma.payment.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Payment' record(s)) was found for a nested connect on one-to-many relation 'PaymentToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "payment": { + "proposalId": "3b006f72-5ba3-4ff6-b429-7384af40bc65", + "commonId": "15c15871-d513-4a06-9e24-7d2c92cbd571", + "source": { + "type": "card", + "id": "8a9fef18-f80e-4883-8c39-db3cd1dc9e90" + }, + "id": "91985cf3-7fea-4dae-85e6-49244f6f69df", + "createdAt": { + "_seconds": 1617233105, + "_nanoseconds": 882000000 + }, + "updatedAt": { + "_seconds": 1617233106, + "_nanoseconds": 531000000 + }, + "userId": "RoUaatJIeccpYxcDD7v1fqJrHZx2", + "status": "confirmed", + "circlePaymentId": "7e942628-d3dc-4d85-9499-15f47e85e67f", + "amount": { + "currency": "USD", + "amount": 700 + }, + "type": "one-time", + "fees": { + "currency": "USD", + "amount": 60 + } + }, + "error": { + "message": "\nInvalid `prisma.payment.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Payment' record(s)) was found for a nested connect on one-to-many relation 'PaymentToUser'.", + "stack": "Error: \nInvalid `prisma.payment.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Payment' record(s)) was found for a nested connect on one-to-many relation 'PaymentToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "payment": { + "status": "confirmed", + "source": { + "id": "e5ff0c5f-f33a-4f89-9846-8a59347ab115", + "type": "card" + }, + "userId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "updatedAt": { + "_seconds": 1612425346, + "_nanoseconds": 406000000 + }, + "circlePaymentId": "e5e3fd8e-3041-436b-b708-6510299c3725", + "id": "a291e365-0196-461e-9847-7999b2df7435", + "amount": { + "currency": "USD", + "amount": 60000 + }, + "createdAt": { + "_seconds": 1612425346, + "_nanoseconds": 6000000 + }, + "fees": { + "amount": 0, + "currency": "USD" + }, + "proposalId": "88766208-c258-48c7-9b01-f0a3f665982e", + "type": "subscription", + "subscriptionId": "b4eee44c-8ddc-4f13-a76c-6cd7961d82a9" + }, + "error": { + "message": "\nInvalid `prisma.payment.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Payment' record(s)) was found for a nested connect on one-to-many relation 'PaymentToUser'.", + "stack": "Error: \nInvalid `prisma.payment.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Payment' record(s)) was found for a nested connect on one-to-many relation 'PaymentToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "payment": { + "circlePaymentId": "2b667821-5123-4533-8dbc-927af009ec7b", + "source": { + "id": "bca3559c-2f4b-4f89-853c-4e0425f88f6f", + "type": "card" + }, + "failure": { + "errorCode": "payment_failed", + "errorDescription": "Payment failed due to unspecified error" + }, + "createdAt": { + "_seconds": 1608193179, + "_nanoseconds": 311000000 + }, + "amount": { + "currency": "USD", + "amount": 501 + }, + "proposalId": "65cd97e2-13cb-4639-a349-a8a23e1ea016", + "trackIds": [ + "e1124322-cf28-43ad-b869-5c91471c5624", + "a893ea3e-d5b4-4863-bc1f-0df32fff4623" + ], + "type": "one-time", + "id": "a50e2db6-e24f-4b5e-99e3-f86e6f60a43e", + "updatedAt": { + "_seconds": 1609942813, + "_nanoseconds": 156000000 + }, + "userId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "status": "failed" + }, + "error": { + "message": "\nInvalid `prisma.payment.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Payment' record(s)) was found for a nested connect on one-to-many relation 'PaymentToUser'.", + "stack": "Error: \nInvalid `prisma.payment.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Payment' record(s)) was found for a nested connect on one-to-many relation 'PaymentToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "payment": { + "circlePaymentId": "4897b725-0c48-488a-bc12-550f37af2582", + "status": "confirmed", + "userId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "proposalId": "1e24babc-b09d-4a76-a71f-d99d0b6a61d8", + "createdAt": { + "_seconds": 1611839484, + "_nanoseconds": 981000000 + }, + "type": "subscription", + "amount": { + "amount": 30000, + "currency": "USD" + }, + "fees": { + "currency": "USD", + "amount": 0 + }, + "updatedAt": { + "_seconds": 1611839485, + "_nanoseconds": 381000000 + }, + "source": { + "id": "2723c4ad-8f5f-4e08-923a-adc26bad8ad5", + "type": "card" + }, + "id": "43d1aeb1-24e5-4f38-b888-ba4fc67d2f6e", + "subscriptionId": "5731b2ca-3704-4da3-b796-352943b39656" + }, + "error": { + "message": "\nInvalid `prisma.payment.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Payment' record(s)) was found for a nested connect on one-to-many relation 'PaymentToUser'.", + "stack": "Error: \nInvalid `prisma.payment.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Payment' record(s)) was found for a nested connect on one-to-many relation 'PaymentToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "payment": { + "circlePaymentId": "dc1a04d0-cf63-46a1-ad6b-5594b99a8b69", + "proposalId": "7cf90135-7b98-410c-a1a2-731cf42996e6", + "amount": { + "currency": "USD", + "amount": 1250 + }, + "type": "one-time", + "id": "65aba813-b00a-4156-9036-6bb65c9dfa48", + "status": "paid", + "userId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "updatedAt": { + "_seconds": 1609942813, + "_nanoseconds": 251000000 + }, + "source": { + "id": "949b3114-f29f-4ae5-84bd-5fce9bb38888", + "type": "card" + }, + "trackIds": [ + "e1124322-cf28-43ad-b869-5c91471c5624", + "a893ea3e-d5b4-4863-bc1f-0df32fff4623" + ], + "fees": { + "currency": "USD", + "amount": 83 + }, + "createdAt": { + "_seconds": 1608456381, + "_nanoseconds": 694000000 + } + }, + "error": { + "message": "\nInvalid `prisma.payment.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Payment' record(s)) was found for a nested connect on one-to-many relation 'PaymentToUser'.", + "stack": "Error: \nInvalid `prisma.payment.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Payment' record(s)) was found for a nested connect on one-to-many relation 'PaymentToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "payment": { + "updatedAt": { + "_seconds": 1612858935, + "_nanoseconds": 545000000 + }, + "fees": { + "currency": "USD", + "amount": 1305 + }, + "subscriptionId": "60632fae-50b5-4845-a04a-a5be88dae60c", + "userId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "createdAt": { + "_seconds": 1612858934, + "_nanoseconds": 719000000 + }, + "status": "confirmed", + "id": "747ea196-13a0-4d24-925e-ff13d16e8a3f", + "proposalId": "2fc72a59-5015-4cd3-a89a-d6ec30712cd9", + "type": "subscription", + "amount": { + "currency": "USD", + "amount": 30000 + }, + "circlePaymentId": "76472a62-0b3c-4a05-bb75-8496b14a4b35", + "source": { + "id": "d83e3944-985e-46cb-85fa-2ac249a51ab0", + "type": "card" + } + }, + "error": { + "message": "\nInvalid `prisma.payment.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Payment' record(s)) was found for a nested connect on one-to-many relation 'PaymentToUser'.", + "stack": "Error: \nInvalid `prisma.payment.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Payment' record(s)) was found for a nested connect on one-to-many relation 'PaymentToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "payment": { + "proposalId": "2ae71d1e-1006-4160-a313-b76dbebd07bd", + "type": "subscription", + "createdAt": { + "_seconds": 1610269613, + "_nanoseconds": 809000000 + }, + "id": "8b1813ba-01a2-477c-8922-bc34e8e968ca", + "circlePaymentId": "e6f348ef-effc-480a-94ea-c9ae42dab6a8", + "amount": { + "currency": "USD", + "amount": 200000 + }, + "userId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "subscriptionId": "e3cbb228-efc6-4622-9c17-07f8999a3dc5", + "updatedAt": { + "_seconds": 1610269614, + "_nanoseconds": 323000000 + }, + "status": "confirmed", + "source": { + "id": "a37a64f1-e7be-4a71-90d7-59936423b864", + "type": "card" + }, + "fees": { + "currency": "USD", + "amount": 0 + } + }, + "error": { + "message": "\nInvalid `prisma.payment.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Payment' record(s)) was found for a nested connect on one-to-many relation 'PaymentToUser'.", + "stack": "Error: \nInvalid `prisma.payment.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Payment' record(s)) was found for a nested connect on one-to-many relation 'PaymentToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "payment": { + "amount": { + "currency": "USD", + "amount": 1500 + }, + "proposalId": "77995a37-ff4b-4438-ac79-822a37f4fc8b", + "updatedAt": { + "_seconds": 1618371006, + "_nanoseconds": 873999000 + }, + "commonId": "162374ec-7e92-47fa-b0a5-21f342fbc023", + "userId": "RoUaatJIeccpYxcDD7v1fqJrHZx2", + "fees": { + "amount": 94, + "currency": "USD" + }, + "status": "confirmed", + "circlePaymentId": "3889e8e7-1f56-413e-824d-2c93d43b1d2a", + "source": { + "type": "card", + "id": "5faed414-e41f-4f4d-b5b3-143b8fb8a983" + }, + "type": "one-time", + "createdAt": { + "_seconds": 1618371006, + "_nanoseconds": 195000000 + }, + "id": "984f5989-2eff-40e3-ac1a-7f14e630147c" + }, + "error": { + "message": "\nInvalid `prisma.payment.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Payment' record(s)) was found for a nested connect on one-to-many relation 'PaymentToUser'.", + "stack": "Error: \nInvalid `prisma.payment.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Payment' record(s)) was found for a nested connect on one-to-many relation 'PaymentToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "payment": { + "userId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "amount": { + "amount": 25600, + "currency": "USD" + }, + "circlePaymentId": "5e0c14fa-16d1-498d-bc5d-28ae2b020938", + "updatedAt": { + "_seconds": 1609942813, + "_nanoseconds": 151000000 + }, + "id": "a4567dda-0d32-45dc-ba8c-df6e4a9060f0", + "type": "subscription", + "subscriptionId": "395abd6a-6a83-4488-9d1a-68d49919a939", + "status": "confirmed", + "trackIds": [ + "e1124322-cf28-43ad-b869-5c91471c5624", + "a893ea3e-d5b4-4863-bc1f-0df32fff4623" + ], + "source": { + "type": "card", + "id": "627a517e-4b23-487b-aef2-79ea3385e987" + }, + "proposalId": "e8ec8925-3275-4b0c-ad50-c0705fb192c7", + "fees": { + "currency": "USD", + "amount": 1118 + }, + "createdAt": { + "_seconds": 1608127342, + "_nanoseconds": 434000000 + } + }, + "error": { + "message": "\nInvalid `prisma.payment.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Payment' record(s)) was found for a nested connect on one-to-many relation 'PaymentToUser'.", + "stack": "Error: \nInvalid `prisma.payment.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Payment' record(s)) was found for a nested connect on one-to-many relation 'PaymentToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "payment": { + "failure": { + "errorDescription": "Payment failed due to unspecified error", + "errorCode": "payment_failed" + }, + "status": "failed", + "createdAt": { + "_seconds": 1608132307, + "_nanoseconds": 161000000 + }, + "trackIds": [ + "e1124322-cf28-43ad-b869-5c91471c5624", + "a893ea3e-d5b4-4863-bc1f-0df32fff4623" + ], + "circlePaymentId": "5dae3db7-2902-4608-a32b-782b905148c7", + "type": "one-time", + "amount": { + "amount": 501, + "currency": "USD" + }, + "source": { + "type": "card", + "id": "97d16bcf-df1b-4814-865b-041be22e4d18" + }, + "id": "9d606897-2874-4c47-82cb-07debf1941da", + "updatedAt": { + "_seconds": 1609942812, + "_nanoseconds": 562000000 + }, + "proposalId": "5800be22-1ad6-4aa5-ad7d-eaf60faeee49", + "userId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2" + }, + "error": { + "message": "\nInvalid `prisma.payment.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Payment' record(s)) was found for a nested connect on one-to-many relation 'PaymentToUser'.", + "stack": "Error: \nInvalid `prisma.payment.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Payment' record(s)) was found for a nested connect on one-to-many relation 'PaymentToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "payment": { + "status": "confirmed", + "circlePaymentId": "fbebf640-7bf6-4d72-ad0a-901231b86425", + "fees": { + "amount": 5343, + "currency": "USD" + }, + "source": { + "type": "card", + "id": "434966d9-4e13-4c7b-998f-d7e447cadfbb" + }, + "id": "c5cd56fa-ea02-49ed-bfd8-936c3dcedaf0", + "type": "one-time", + "userId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "updatedAt": { + "_seconds": 1610442276, + "_nanoseconds": 348000000 + }, + "createdAt": { + "_seconds": 1610442275, + "_nanoseconds": 848000000 + }, + "proposalId": "0b186271-376c-46f7-9df2-4da887653863", + "amount": { + "amount": 125000, + "currency": "USD" + } + }, + "error": { + "message": "\nInvalid `prisma.payment.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Payment' record(s)) was found for a nested connect on one-to-many relation 'PaymentToUser'.", + "stack": "Error: \nInvalid `prisma.payment.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Payment' record(s)) was found for a nested connect on one-to-many relation 'PaymentToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "payment": { + "amount": { + "currency": "USD", + "amount": 1250 + }, + "source": { + "id": "7ec73788-1c33-4e60-86be-e524d495610c", + "type": "card" + }, + "type": "one-time", + "updatedAt": { + "_seconds": 1610990066, + "_nanoseconds": 967000000 + }, + "userId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "circlePaymentId": "32edffa3-9691-4f6a-9773-2af184ce865d", + "fees": { + "amount": 0, + "currency": "USD" + }, + "id": "c85b045e-1e31-43bc-aa8c-fc80c4e60218", + "createdAt": { + "_seconds": 1610990066, + "_nanoseconds": 280000000 + }, + "status": "confirmed", + "proposalId": "4548189d-c519-4eb6-96c5-a909c73aaeb4" + }, + "error": { + "message": "\nInvalid `prisma.payment.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Payment' record(s)) was found for a nested connect on one-to-many relation 'PaymentToUser'.", + "stack": "Error: \nInvalid `prisma.payment.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Payment' record(s)) was found for a nested connect on one-to-many relation 'PaymentToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "payment": { + "userId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "subscriptionId": "e796747f-339e-44d2-b5c6-9784411178d1", + "id": "dce6af32-89d8-43df-af1b-4a39225ed474", + "circlePaymentId": "57bd4735-5d31-42aa-bc38-52c0b900715d", + "updatedAt": { + "_seconds": 1609942812, + "_nanoseconds": 570000000 + }, + "source": { + "type": "card", + "id": "f8fdaba3-878c-498a-a97a-ab7a08d5b5c0" + }, + "type": "subscription", + "fees": { + "amount": 252.99999999999997, + "currency": "USD" + }, + "proposalId": "5b0fe9c9-c271-40a3-bd97-86324ee2561b", + "amount": { + "currency": "USD", + "amount": 5250 + }, + "createdAt": { + "_seconds": 1608557950, + "_nanoseconds": 371000000 + }, + "status": "paid", + "trackIds": [ + "e1124322-cf28-43ad-b869-5c91471c5624", + "a893ea3e-d5b4-4863-bc1f-0df32fff4623" + ] + }, + "error": { + "message": "\nInvalid `prisma.payment.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Payment' record(s)) was found for a nested connect on one-to-many relation 'PaymentToUser'.", + "stack": "Error: \nInvalid `prisma.payment.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Payment' record(s)) was found for a nested connect on one-to-many relation 'PaymentToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "payment": { + "proposalId": "0dcaddac-3908-47b5-8e88-06c5afbf254c", + "type": "subscription", + "subscriptionId": "6b52e166-665b-44af-9fc5-bf097d58e254", + "fees": { + "currency": "USD", + "amount": 1623.9999999999998 + }, + "userId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "status": "paid", + "amount": { + "currency": "USD", + "amount": 37500 + }, + "id": "d675d42a-55f1-4964-88ce-0d66e663f159", + "trackIds": [ + "e1124322-cf28-43ad-b869-5c91471c5624", + "a893ea3e-d5b4-4863-bc1f-0df32fff4623" + ], + "source": { + "id": "9ade2732-2d2f-41d8-9267-2f80337bc304", + "type": "card" + }, + "createdAt": { + "_seconds": 1609411035, + "_nanoseconds": 422000000 + }, + "updatedAt": { + "_seconds": 1609942813, + "_nanoseconds": 149000000 + }, + "circlePaymentId": "1abcc1c0-4388-4b3f-845c-9df166e100f5" + }, + "error": { + "message": "\nInvalid `prisma.payment.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Payment' record(s)) was found for a nested connect on one-to-many relation 'PaymentToUser'.", + "stack": "Error: \nInvalid `prisma.payment.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Payment' record(s)) was found for a nested connect on one-to-many relation 'PaymentToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "payment": { + "userId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "subscriptionId": "Payment for deleted subscription", + "createdAt": { + "_seconds": 1607873503, + "_nanoseconds": 882000000 + }, + "source": { + "type": "card", + "id": "c1780060-74f1-4a7c-b32c-d421580cd176" + }, + "id": "f2363bd5-9a52-411f-a20c-6ce665b2d6e6", + "status": "failed", + "updatedAt": { + "_seconds": 1609942812, + "_nanoseconds": 463000000 + }, + "trackIds": [ + "e1124322-cf28-43ad-b869-5c91471c5624", + "a893ea3e-d5b4-4863-bc1f-0df32fff4623" + ], + "circlePaymentId": "0e9e6b7d-b3e5-4906-a472-15d664bb3ecb", + "type": "subscription", + "failure": { + "errorDescription": "Contact card issuer to query why payment failed", + "errorCode": "card_not_honored" + }, + "proposalId": "Payment for deleted subscription", + "amount": { + "amount": 504, + "currency": "USD" + } + }, + "error": { + "message": "\nInvalid `prisma.payment.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Payment' record(s)) was found for a nested connect on one-to-many relation 'PaymentToUser'.", + "stack": "Error: \nInvalid `prisma.payment.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Payment' record(s)) was found for a nested connect on one-to-many relation 'PaymentToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + }, + { + "payment": { + "createdAt": { + "_seconds": 1609147777, + "_nanoseconds": 556000000 + }, + "subscriptionId": "76bf64d2-40b5-453b-919e-b7b6f0340797", + "proposalId": "8b60d46d-31c2-4a6f-8946-504242577815", + "userId": "Xh4xoIGHhgOhxz1S5AJkaXCBT8K2", + "type": "subscription", + "fees": { + "amount": 2155, + "currency": "USD" + }, + "source": { + "id": "0eff7b34-fea4-497b-85b8-868c51b6eb9f", + "type": "card" + }, + "status": "paid", + "id": "9ed156f5-2ccd-4393-b31e-5e4d2823fd66", + "circlePaymentId": "b3e508de-cf31-44ce-8048-4a2c82e183fb", + "updatedAt": { + "_seconds": 1609942812, + "_nanoseconds": 361000000 + }, + "amount": { + "currency": "USD", + "amount": 50000 + }, + "trackIds": [ + "e1124322-cf28-43ad-b869-5c91471c5624", + "a893ea3e-d5b4-4863-bc1f-0df32fff4623" + ] + }, + "error": { + "message": "\nInvalid `prisma.payment.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Payment' record(s)) was found for a nested connect on one-to-many relation 'PaymentToUser'.", + "stack": "Error: \nInvalid `prisma.payment.create()` invocation:\n\n\n An operation failed because it depends on one or more records that were required but not found. No 'User' record(s) (needed to inline the relation on 'Payment' record(s)) was found for a nested connect on one-to-many relation 'PaymentToUser'.\n at cb (/Users/alexa/Projects/Common/node_modules/@prisma/client/runtime/index.js:35098:17)\n at runMicrotasks ()\n at processTicksAndRejections (internal/process/task_queues.js:93:5)" + } + } +] \ No newline at end of file diff --git a/packages/core/prisma/result/1621327212154/paymentImports-results.json b/packages/core/prisma/result/1621327212154/paymentImports-results.json new file mode 100644 index 000000000..cbc5998b1 --- /dev/null +++ b/packages/core/prisma/result/1621327212154/paymentImports-results.json @@ -0,0 +1,1974 @@ +[ + { + "id": "0ba99148-25e6-42c7-8e67-b901dc4805da", + "createdAt": "2021-05-18T08:40:22.201Z", + "updatedAt": "2021-05-18T08:40:22.202Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "810c006a-6a6b-414e-a2ab-4f0c02104e5f", + "amount": 500, + "subscriptionId": null, + "joinId": "60f88d67-2ad9-4c05-8571-714094c0a981", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "commonId": "858836dc-776d-4b5d-a999-4cc154f81e11", + "cardId": "57d34321-2abc-4982-a86a-a60719133c09" + }, + { + "id": "133439ba-815d-4aa6-93ee-c9c3c06b1c36", + "createdAt": "2021-05-18T08:40:22.202Z", + "updatedAt": "2021-05-18T08:40:22.203Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Unsuccessful", + "circlePaymentStatus": "failed", + "circlePaymentId": "9036e624-f110-4203-9a07-30688c3dec21", + "amount": 501, + "subscriptionId": null, + "joinId": "946200c6-bc12-42a5-ad82-0fad4b0befec", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "commonId": "ba73039b-8f74-4a6e-90a5-d93df70930a9", + "cardId": "25533db6-4fd5-4606-b477-90e885f1a7e5" + }, + { + "id": "15fe3681-6097-4f30-9762-979cc54bcaa8", + "createdAt": "2021-05-18T08:40:22.203Z", + "updatedAt": "2021-05-18T08:40:22.204Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "paid", + "circlePaymentId": "ea6e0365-c43c-4041-9c8f-e366d84444a6", + "amount": 76250, + "subscriptionId": null, + "joinId": "e8163ba7-f66f-403f-b49d-30c528627159", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "commonId": "37c974a2-fb15-46e3-a7ba-0be50d026971", + "cardId": "c14a1243-8a15-47b9-90e8-a4549026495e" + }, + { + "id": "18b1f935-2531-43a4-94f8-b17f707f8845", + "createdAt": "2021-05-18T08:40:22.204Z", + "updatedAt": "2021-05-18T08:40:22.205Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "paid", + "circlePaymentId": "97d4aa3f-6a47-4dcf-89fc-37f7456a1ce3", + "amount": 500, + "subscriptionId": null, + "joinId": "dbaf120d-3f7f-401c-8a10-67cbeeddfbae", + "userId": "0gzqlV9O9vWWe6i2wagAZHMMDDD2", + "commonId": "0313e3e2-b34b-4192-9381-13fc4516a923", + "cardId": "3b73cf25-661e-46e4-81b2-ae2e8d0561fc" + }, + { + "id": "1afdef03-fee5-4ee5-ad92-50b16e5fdf0c", + "createdAt": "2021-05-18T08:40:22.204Z", + "updatedAt": "2021-05-18T08:40:22.206Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "paid", + "circlePaymentId": "5f0ea316-7f17-42d0-a95d-780da3b01d12", + "amount": 500, + "subscriptionId": null, + "joinId": "ba365a30-9f32-492a-bde5-27871330a52b", + "userId": "DAawzIgIIifv6GfzdDJRJ1kZl7J2", + "commonId": "0313e3e2-b34b-4192-9381-13fc4516a923", + "cardId": "bd5d1f06-d4bd-497e-948d-658baabbbec1" + }, + { + "id": "1ccf4804-5f2e-4f28-8ea7-46485211909c", + "createdAt": "2021-05-18T08:40:22.206Z", + "updatedAt": "2021-05-18T08:40:22.208Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "paid", + "circlePaymentId": "7eddd9a4-048e-47dd-9538-bedb0b08bf64", + "amount": 50000, + "subscriptionId": null, + "joinId": "8ce7c4ba-6cca-47bb-9914-f4ac46c6d4f6", + "userId": "H5ZkcKBX5eXXNyBiPaph8EHCiax2", + "commonId": "21fc3489-5a80-44c5-bb59-cd8bea165b3d", + "cardId": "c07730b5-b029-4678-a886-118058cee81b" + }, + { + "id": "31a97943-9e05-418c-bd29-806de0ad77bd", + "createdAt": "2021-05-18T08:40:22.218Z", + "updatedAt": "2021-05-18T08:40:22.219Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "bf84eb35-6111-415d-aca3-8561d405bfbd", + "amount": 50000, + "subscriptionId": null, + "joinId": "00ceb166-a473-4ac3-b0c1-8a161588f7a3", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "08e9568e-377d-4c6e-aa77-45fd84922948", + "cardId": "63ea9f37-0866-4576-baad-74b09da55a8a" + }, + { + "id": "261565fb-868c-4854-aae7-2169a3ccb228", + "createdAt": "2021-05-18T08:40:22.209Z", + "updatedAt": "2021-05-18T08:40:22.211Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "e9328719-99fd-4ee8-8493-af42099bcc3e", + "amount": 20000, + "subscriptionId": null, + "joinId": "a58c7340-604c-49ef-ac49-79caba954f10", + "userId": "P21SZrJ6z5YjyF8WFaHv5eRsoFo1", + "commonId": "f419ad93-d978-45b6-8ed0-70645cdeb62a", + "cardId": "09410e41-8fe9-491b-b928-163a57e3dea6" + }, + { + "id": "3521641a-7bea-49f6-85cc-9771f2465858", + "createdAt": "2021-05-18T08:40:22.220Z", + "updatedAt": "2021-05-18T08:40:22.221Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "f9b15937-fb7f-416a-8689-65a9bc550739", + "amount": 1000, + "subscriptionId": null, + "joinId": "bc898b6c-9eaa-448e-b732-3f75ee92eec5", + "userId": "Wz0ZgOvKnafrjLDeAeWqx182uBq2", + "commonId": "6f88e880-1ed8-4946-8326-d285239d293b", + "cardId": "bae23947-2b37-4572-aaea-0c998b2a2ea8" + }, + { + "id": "3899e254-35ea-4740-9b45-3d68cb6ecc2b", + "createdAt": "2021-05-18T08:40:22.221Z", + "updatedAt": "2021-05-18T08:40:22.223Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "87136103-37aa-4cbb-82d8-beadb57cb465", + "amount": 20000, + "subscriptionId": null, + "joinId": "8d78fc29-f2ef-4612-8be9-221ce87114d7", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "commonId": "46749aca-ec3a-49f3-82e2-c3d0c977bc05", + "cardId": "4aee0d17-a330-40e6-9ecb-f34c9554b4b5" + }, + { + "id": "3f1ca417-b284-47ad-8fcb-ca6bbd10776e", + "createdAt": "2021-05-18T08:40:22.222Z", + "updatedAt": "2021-05-18T08:40:22.223Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "4009f3c6-b2bb-49d5-8c12-d2474830f880", + "amount": 6250, + "subscriptionId": null, + "joinId": "2d0be6bb-73fa-4c81-9c13-94922adaf8df", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "commonId": "2a5bfc7d-9f50-4ff8-8c00-835e4b5f7b67", + "cardId": "430d2926-591e-481a-b351-f9481165608b" + }, + { + "id": "27b56ef0-a9da-419f-a5c6-ff9a28c7bd3b", + "createdAt": "2021-05-18T08:40:22.213Z", + "updatedAt": "2021-05-18T08:40:22.214Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "75498dfb-1683-4034-b6da-cf7f2813efe0", + "amount": 2300, + "subscriptionId": null, + "joinId": "910204c6-1ecd-4852-8b6f-7b2aa6d4a827", + "userId": "RN4V4T2Z4gf2ld9QhwanrQbSnP23", + "commonId": "04c837a8-1f63-4e37-9d22-5d8236a45880", + "cardId": "96accb3a-cac1-4e05-81e9-7175c1b0f3e5" + }, + { + "id": "40421697-fb92-40c2-91b6-25599ba53198", + "createdAt": "2021-05-18T08:40:22.223Z", + "updatedAt": "2021-05-18T08:40:22.224Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "b47a6076-20d8-4788-b1b6-beb4e3aa81d4", + "amount": 500, + "subscriptionId": null, + "joinId": "4fba5156-1356-45e5-a645-668812405b2f", + "userId": "2HM9WnVvr9aDYbckjCo4cIDjncY2", + "commonId": "c45d25f6-d40e-4336-93ac-2274a3f51b1e", + "cardId": "2d0603bb-ca88-4a4c-b5e6-74a63426032b" + }, + { + "id": "4324c344-5c35-4373-9020-195800ad4875", + "createdAt": "2021-05-18T08:40:22.225Z", + "updatedAt": "2021-05-18T08:40:22.226Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "d7bc0119-a28a-4bdc-af7a-c19212456893", + "amount": 2400, + "subscriptionId": null, + "joinId": "629bf4b2-7a49-4dd7-bb4a-d25a7a7c456c", + "userId": "2HM9WnVvr9aDYbckjCo4cIDjncY2", + "commonId": "02314122-6b05-4563-a8ce-4a10e97b72da", + "cardId": "c5678569-d2ba-49d5-bb47-e41da3650589" + }, + { + "id": "49e85e26-fb51-47b1-922d-2a0999ab7829", + "createdAt": "2021-05-18T08:40:22.227Z", + "updatedAt": "2021-05-18T08:40:22.228Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "paid", + "circlePaymentId": "ec4c2283-d4c0-4dfa-8439-342a881c2a6c", + "amount": 506, + "subscriptionId": null, + "joinId": null, + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "commonId": null, + "cardId": "dd6a5275-3d66-4e43-8e24-21b928fbb5f4" + }, + { + "id": "4537d2bd-6b6e-4f14-a178-41a9ae0ca155", + "createdAt": "2021-05-18T08:40:22.226Z", + "updatedAt": "2021-05-18T08:40:22.227Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Unsuccessful", + "circlePaymentStatus": "failed", + "circlePaymentId": "5b947dd3-cbf4-49e2-a448-1f71471ed6c7", + "amount": 501, + "subscriptionId": null, + "joinId": "a0329146-e32c-46fb-83b5-25673b2ce543", + "userId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1", + "commonId": "120b0708-dc65-42d2-95e6-cb2efa89bbf5", + "cardId": "04c64b65-a59e-4c6a-8df1-ff9cd28114ef" + }, + { + "id": "4d0c2a50-99ff-47a4-91fa-f3c49c65b7b1", + "createdAt": "2021-05-18T08:40:22.227Z", + "updatedAt": "2021-05-18T08:40:22.229Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Unsuccessful", + "circlePaymentStatus": "failed", + "circlePaymentId": "2d6ff18c-5fe2-454e-a842-95b88aee2b35", + "amount": 501, + "subscriptionId": null, + "joinId": "6eb40783-64a4-42dc-b516-2bb2373077a8", + "userId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1", + "commonId": "e07c6cd7-3f45-4d4e-8a4f-3139e28b5c00", + "cardId": "eb0b0cdd-f1f7-4c5f-85c0-7824ff7c015a" + }, + { + "id": "5c91b494-6589-46b8-ab45-ab695c7db825", + "createdAt": "2021-05-18T08:40:22.231Z", + "updatedAt": "2021-05-18T08:40:22.232Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Unsuccessful", + "circlePaymentStatus": "failed", + "circlePaymentId": "eb0eb46b-da58-4c24-af16-b52ceffdf78f", + "amount": 501, + "subscriptionId": null, + "joinId": null, + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "commonId": null, + "cardId": "2a888024-7c50-4324-a1f7-7b0b6ee47c18" + }, + { + "id": "510fe955-f8ce-49da-afed-3bf49b7a7f29", + "createdAt": "2021-05-18T08:40:22.229Z", + "updatedAt": "2021-05-18T08:40:22.230Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "2e6712d5-c6df-4a81-a107-da80a6d039b3", + "amount": 3000, + "subscriptionId": null, + "joinId": "14cc3bf0-a427-4e48-9b56-c85da6ed2bee", + "userId": "P21SZrJ6z5YjyF8WFaHv5eRsoFo1", + "commonId": "5a9e159d-f462-4adc-87d6-72de03d86e3e", + "cardId": "2185ca88-2775-4a6a-a75a-397e6ed9f309" + }, + { + "id": "52b066bc-091e-4c9e-950c-ea19ec9f76bf", + "createdAt": "2021-05-18T08:40:22.231Z", + "updatedAt": "2021-05-18T08:40:22.232Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "1f90e3a3-bcb4-4694-a917-9568fa5f04c3", + "amount": 45000, + "subscriptionId": null, + "joinId": "d5d4690c-5f3d-45e5-82c3-a6b8d7d79d07", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "commonId": "f9060df0-957c-4d60-9547-7c4d5c62dace", + "cardId": "806ccc56-1bab-4abf-8dc0-cd4a189042c8" + }, + { + "id": "60a26830-5a8d-40cb-9bae-8a6249840195", + "createdAt": "2021-05-18T08:40:22.234Z", + "updatedAt": "2021-05-18T08:40:22.235Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Unsuccessful", + "circlePaymentStatus": "failed", + "circlePaymentId": "57a0550d-c22e-44b0-8167-0bdc366b91ec", + "amount": 501, + "subscriptionId": null, + "joinId": "48061d4c-36f7-493e-ad27-a68e062da124", + "userId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1", + "commonId": "e07c6cd7-3f45-4d4e-8a4f-3139e28b5c00", + "cardId": "db2b8f95-4b8d-42c9-be03-fe0eb29f604e" + }, + { + "id": "5f6c2e61-ac2a-4ba7-9678-05d1d880501c", + "createdAt": "2021-05-18T08:40:22.233Z", + "updatedAt": "2021-05-18T08:40:22.234Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "4b5e5e29-c370-40ee-adda-2c23151a5002", + "amount": 700, + "subscriptionId": null, + "joinId": "94ae8447-bb6a-4ef8-963a-ad59d29aa7e0", + "userId": "skBkfQh8E1f4eOGBSVLaiuJ097v1", + "commonId": "15c15871-d513-4a06-9e24-7d2c92cbd571", + "cardId": "12a07ec9-f9aa-4715-bf67-b27564eab32a" + }, + { + "id": "644db296-794e-4e01-90f0-4f51f30c0c1c", + "createdAt": "2021-05-18T08:40:22.235Z", + "updatedAt": "2021-05-18T08:40:22.236Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "f1117c5e-c2a6-4d7b-a770-00ae2dc5faf0", + "amount": 6000, + "subscriptionId": null, + "joinId": "179068b1-2e45-4be3-823c-f4041713690e", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "commonId": "f3432e09-f044-426e-92b6-d39388c17002", + "cardId": "3bc9e7a6-4524-44dc-b4a6-89434e840a40" + }, + { + "id": "6fddd70b-350e-4a48-8dad-5f12401191e7", + "createdAt": "2021-05-18T08:40:22.238Z", + "updatedAt": "2021-05-18T08:40:22.239Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "8673b415-9b28-4004-9f98-be428e01f3c4", + "amount": 26000, + "subscriptionId": null, + "joinId": "1641caf8-f1f6-4637-967a-5992f43d8550", + "userId": "P21SZrJ6z5YjyF8WFaHv5eRsoFo1", + "commonId": "60026234-b1ff-4596-baa2-0d7be186f561", + "cardId": "a18672f4-1902-4259-8652-4ba994aea1c0" + }, + { + "id": "691f76db-6d4d-4982-b27c-d2041cc10bad", + "createdAt": "2021-05-18T08:40:22.237Z", + "updatedAt": "2021-05-18T08:40:22.239Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "639cd819-d71a-4d09-aca4-3f05b10481b2", + "amount": 2300, + "subscriptionId": null, + "joinId": "89fb1aa7-2ac9-4b8e-89d6-959dc716f5e9", + "userId": "P21SZrJ6z5YjyF8WFaHv5eRsoFo1", + "commonId": "04c837a8-1f63-4e37-9d22-5d8236a45880", + "cardId": "4825d0cc-cbe4-46e0-8a19-b527d6b02515" + }, + { + "id": "68463709-6959-418b-bafb-bb922a9ac23d", + "createdAt": "2021-05-18T08:40:22.236Z", + "updatedAt": "2021-05-18T08:40:22.237Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "5d68b72b-ff78-4a38-a132-baa882f089fa", + "amount": 500, + "subscriptionId": null, + "joinId": "1f5bc259-cb74-423a-bac5-40cdab6e8b7f", + "userId": "WKODFO6A3VMqWLYE2rrmrSGRrKF2", + "commonId": "c45d25f6-d40e-4336-93ac-2274a3f51b1e", + "cardId": "739a102c-0bc2-4335-bcbf-97a5657770a0" + }, + { + "id": "6a4e029a-f054-406f-aef1-269acadb1f66", + "createdAt": "2021-05-18T08:40:22.238Z", + "updatedAt": "2021-05-18T08:40:22.239Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Unsuccessful", + "circlePaymentStatus": "failed", + "circlePaymentId": "c27332d3-1a0e-4be3-9c40-b3e69dc11dd2", + "amount": 501, + "subscriptionId": null, + "joinId": "d681affe-1df1-48eb-a832-6a88f4b29c20", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "commonId": "6d778a9d-6ebb-46ab-969a-02d4c4567145", + "cardId": "f6ec1e38-3512-433e-996d-8afbee76c3cc" + }, + { + "id": "73baffaf-ec00-4148-879f-fc6b14dd9f08", + "createdAt": "2021-05-18T08:40:22.239Z", + "updatedAt": "2021-05-18T08:40:22.240Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "aa5c04e4-dc24-4da4-9152-1ab371b80189", + "amount": 2500, + "subscriptionId": null, + "joinId": "14f2ad77-f337-4a20-b2c7-0e3330cde583", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "commonId": "845aadc4-4f62-49f1-9743-c08482ce861e", + "cardId": "bbe77e8e-0ce7-45ac-92d8-76640579e0d3" + }, + { + "id": "761a3ff0-7216-437d-9038-33ee803a0bd5", + "createdAt": "2021-05-18T08:40:22.239Z", + "updatedAt": "2021-05-18T08:40:22.240Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "b45e8ac2-5c20-4af3-8e28-7aeb1d9b8acc", + "amount": 15000, + "subscriptionId": null, + "joinId": "f326988c-faa1-4bf5-a3e7-9a5787ae42e3", + "userId": "P21SZrJ6z5YjyF8WFaHv5eRsoFo1", + "commonId": "21bed599-c9cc-41e1-9c58-255eae958848", + "cardId": "3d7302fa-be10-4c8d-9b6e-4a2bb28bdd75" + }, + { + "id": "78f179ba-c265-4737-acd3-fa1382c97706", + "createdAt": "2021-05-18T08:40:22.242Z", + "updatedAt": "2021-05-18T08:40:22.243Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "86c76cae-2e24-4691-a474-e886fa228317", + "amount": 25000, + "subscriptionId": null, + "joinId": "240e085e-90b5-40e3-95fe-e64ff566ce60", + "userId": "P21SZrJ6z5YjyF8WFaHv5eRsoFo1", + "commonId": "23f0f859-6277-414b-b66a-1de673f1792b", + "cardId": "925ad53b-5229-4c01-bc36-6e629d611a62" + }, + { + "id": "77ce74ae-6006-49f4-9926-d03a9ce6a3e3", + "createdAt": "2021-05-18T08:40:22.242Z", + "updatedAt": "2021-05-18T08:40:22.243Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "e198241a-4a7c-4fea-bce8-676e39885916", + "amount": 1500, + "subscriptionId": null, + "joinId": "bb5e87fa-9efc-4644-91cc-65ff93fb8310", + "userId": "WKODFO6A3VMqWLYE2rrmrSGRrKF2", + "commonId": "162374ec-7e92-47fa-b0a5-21f342fbc023", + "cardId": "1b2280a9-a9cc-4e5d-87d0-a80f101d77ba" + }, + { + "id": "7f7d493a-13b8-42b0-bfb5-603e7f753713", + "createdAt": "2021-05-18T08:40:22.245Z", + "updatedAt": "2021-05-18T08:40:22.247Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "6dcc888c-bfa6-42f0-ac73-0316ca4b8caf", + "amount": 600, + "subscriptionId": null, + "joinId": "9ffcd43c-9476-4dc2-9ecd-3437d9f7b4e4", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "5b0de0ee-2823-4500-90d3-95adbe0e86af", + "cardId": "3f05676f-863b-48f9-80b1-d45b9e77d51c" + }, + { + "id": "8b98d3f1-f56e-4b6a-bec5-9c4bc310f8b6", + "createdAt": "2021-05-18T08:40:22.246Z", + "updatedAt": "2021-05-18T08:40:22.248Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "f8d15027-e370-4a9a-8ab0-ff062de15070", + "amount": 36000, + "subscriptionId": null, + "joinId": "6ea94275-d1f9-4d2b-89f1-4333c372dfba", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "60026234-b1ff-4596-baa2-0d7be186f561", + "cardId": "67a07784-215f-44d5-8c70-f8942d615cf2" + }, + { + "id": "8a4fa9c3-c043-4820-8973-2b67e463ea17", + "createdAt": "2021-05-18T08:40:22.246Z", + "updatedAt": "2021-05-18T08:40:22.247Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "f7e9e942-432a-43ad-8843-cc61aa8f3903", + "amount": 2500, + "subscriptionId": null, + "joinId": "e4810379-6e58-4823-96b0-5d2b46d483fe", + "userId": "P21SZrJ6z5YjyF8WFaHv5eRsoFo1", + "commonId": "0f932979-eb1f-47d2-a6ac-7ba63a60019a", + "cardId": "939f88dd-6a1b-4fc0-aeff-f87367998301" + }, + { + "id": "87685c1f-65f6-4976-bb9b-3b995c5dc7aa", + "createdAt": "2021-05-18T08:40:22.246Z", + "updatedAt": "2021-05-18T08:40:22.247Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "8bc6bf8f-645d-4ce2-95d8-a5ee7ea4d31c", + "amount": 3000, + "subscriptionId": null, + "joinId": "8f85cdd6-2e34-4e7a-9452-0ca2dabb8b39", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "b4a470a5-1f7c-48b8-aec2-eee997632829", + "cardId": "6a32b85e-6d01-4d74-9400-6e44fe83b5b0" + }, + { + "id": "940419a8-10fa-4cc9-9c29-8e885a6c6434", + "createdAt": "2021-05-18T08:40:22.247Z", + "updatedAt": "2021-05-18T08:40:22.248Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "ee9713e3-d5e9-4cb2-bf65-b2c82ed2fa18", + "amount": 3600, + "subscriptionId": null, + "joinId": "ff766620-44a6-4227-8287-375571f793ac", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "commonId": "5a9e159d-f462-4adc-87d6-72de03d86e3e", + "cardId": "15e1e8e0-bf1c-4193-b5fa-ffea9d38cd0d" + }, + { + "id": "957c1090-05fe-459d-84e9-231bfaa86d2f", + "createdAt": "2021-05-18T08:40:22.248Z", + "updatedAt": "2021-05-18T08:40:22.249Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Unsuccessful", + "circlePaymentStatus": "failed", + "circlePaymentId": "a902800b-e082-4fbc-922a-ae36618c1268", + "amount": 519, + "subscriptionId": null, + "joinId": "9a26e43b-e84a-4993-9537-a9472cfd9948", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "6d778a9d-6ebb-46ab-969a-02d4c4567145", + "cardId": "0d3651da-faac-4135-8e4c-46c41a30b678" + }, + { + "id": "a09473c3-43dd-4b17-9bc6-6088a45a35a5", + "createdAt": "2021-05-18T08:40:22.251Z", + "updatedAt": "2021-05-18T08:40:22.253Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "c89bbf0a-53f0-41b5-b821-a394bd4c8da3", + "amount": 700, + "subscriptionId": null, + "joinId": "a493f825-2609-4891-8d1d-b5bff9c4fcf3", + "userId": "5Bi1KZGIYzW5UIljHgBlO98NXaI2", + "commonId": "15c15871-d513-4a06-9e24-7d2c92cbd571", + "cardId": "38004bd6-fa1b-4ae7-b845-cb764beb3915" + }, + { + "id": "9b47cd7b-cdbd-4def-a9d7-2347fcae38de", + "createdAt": "2021-05-18T08:40:22.250Z", + "updatedAt": "2021-05-18T08:40:22.251Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "afebc28c-41af-4556-afa1-c1aeecbb5985", + "amount": 500, + "subscriptionId": null, + "joinId": "a6759027-906c-4af0-bea4-84d5cb2f1648", + "userId": "Wz0ZgOvKnafrjLDeAeWqx182uBq2", + "commonId": "e87ef1d5-7802-4f64-aa71-d605ddde17cb", + "cardId": "e37d423e-4e10-4483-9ec6-a90e7b7abe7b" + }, + { + "id": "9dc93f31-6c67-481f-988c-2449b8f2c18a", + "createdAt": "2021-05-18T08:40:22.251Z", + "updatedAt": "2021-05-18T08:40:22.252Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "2fb44d95-e836-4a12-969a-138e6f7f0ea0", + "amount": 700, + "subscriptionId": null, + "joinId": "eb19df17-92da-44a2-ae26-c1dd72fc0ec3", + "userId": "skBkfQh8E1f4eOGBSVLaiuJ097v1", + "commonId": "d30cb234-01ac-483c-b137-47961ed0cfec", + "cardId": "f3ed9074-797c-4f43-bc91-4ae4c56a1325" + }, + { + "id": "042e4198-083b-4fe8-9aea-50938503f2c9", + "createdAt": "2021-05-18T08:40:22.200Z", + "updatedAt": "2021-05-18T08:40:22.201Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "5fd123e5-4dfc-496c-af87-f8e5fa76bc9b", + "amount": 30000, + "subscriptionId": null, + "joinId": "a73bfe11-0c08-4fea-83d7-d9fbba9e8be2", + "userId": "P21SZrJ6z5YjyF8WFaHv5eRsoFo1", + "commonId": "0970bc3f-beca-4b6e-acb1-42f1b4bba931", + "cardId": "351b8c5e-5c97-418d-a986-4b1fe7fca81a" + }, + { + "id": "20d858c1-21ad-4b71-94ce-b721fce35e75", + "createdAt": "2021-05-18T08:40:22.275Z", + "updatedAt": "2021-05-18T08:40:22.276Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "032d52c9-26ec-484c-99cd-daedcb019110", + "amount": 500, + "subscriptionId": null, + "joinId": "51f46a01-3d8b-4c4a-a298-023f02b99ddb", + "userId": "P21SZrJ6z5YjyF8WFaHv5eRsoFo1", + "commonId": "26f7df46-8956-4c68-b58f-7190368042a8", + "cardId": "ba78840a-2dd1-4883-bee4-3530e1e0fa2c" + }, + { + "id": "0ef989c3-d096-42c1-b525-66a3719e413a", + "createdAt": "2021-05-18T08:40:22.276Z", + "updatedAt": "2021-05-18T08:40:22.277Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "paid", + "circlePaymentId": "b3025713-7988-45e5-8af8-cca8d624ce28", + "amount": 36900, + "subscriptionId": null, + "joinId": "706da88a-a417-464d-8d36-3d68fb2b954c", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "commonId": "e3492bce-fda8-4e42-b427-d0da03206f85", + "cardId": "62e367b3-6e16-44d8-9407-d5f9486924f4" + }, + { + "id": "15ad4383-05ba-47a9-bf04-8d7e915ecf72", + "createdAt": "2021-05-18T08:40:22.280Z", + "updatedAt": "2021-05-18T08:40:22.281Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "a0c23386-68cd-4c13-8ad9-203c3a41ebac", + "amount": 2500, + "subscriptionId": null, + "joinId": "32086f77-9889-4156-93e6-e423104761e9", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "0f932979-eb1f-47d2-a6ac-7ba63a60019a", + "cardId": "d807dd9d-10de-46e4-9020-846e2bdcc623" + }, + { + "id": "2dbb31a5-ee6a-47ba-b368-a903741f3172", + "createdAt": "2021-05-18T08:40:22.282Z", + "updatedAt": "2021-05-18T08:40:22.283Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "1a1ace08-f0e8-430b-8dd7-423068a34630", + "amount": 2700, + "subscriptionId": null, + "joinId": "9f544836-cc63-4a51-a9c1-d85960a4165d", + "userId": "Wz0ZgOvKnafrjLDeAeWqx182uBq2", + "commonId": "9b5c3b34-22f9-4f0f-9f98-9e6eb686ee2e", + "cardId": "6882c14f-1a0e-4327-bab0-059d9288eca0" + }, + { + "id": "16c82b2b-dfc9-4631-8801-0f1f9945f05b", + "createdAt": "2021-05-18T08:40:22.287Z", + "updatedAt": "2021-05-18T08:40:22.288Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "1ba1011b-486e-4289-809f-8b949a41a224", + "amount": 500, + "subscriptionId": null, + "joinId": "9e48109f-b46f-43cc-b657-e456e3dbe97f", + "userId": "5Bi1KZGIYzW5UIljHgBlO98NXaI2", + "commonId": "e87ef1d5-7802-4f64-aa71-d605ddde17cb", + "cardId": "91d6f450-537b-4117-b552-c6510d55afcb" + }, + { + "id": "194ec79e-d990-4e3c-ba48-df346706db9b", + "createdAt": "2021-05-18T08:40:22.289Z", + "updatedAt": "2021-05-18T08:40:22.290Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "367f627d-87e8-4f85-9378-52937e7015b4", + "amount": 500, + "subscriptionId": null, + "joinId": "1e8284fe-d436-42c1-9f94-d26178e3263d", + "userId": "Sxv19oCvKAZq2vntJdYCTYSpWWN2", + "commonId": "03a934ef-a152-42db-aba1-605fa4e4a4b0", + "cardId": "6a3236c1-b4e1-407d-bf62-ea7947feefe8" + }, + { + "id": "1c811d6d-44cb-4531-9e13-2584844c2c68", + "createdAt": "2021-05-18T08:40:22.292Z", + "updatedAt": "2021-05-18T08:40:22.294Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "ddc5657d-0a6d-496f-a909-89601e2f6907", + "amount": 64500, + "subscriptionId": null, + "joinId": "708db731-9b36-487b-b268-56815a951d31", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "bcb0e449-7ce0-439b-bf0c-d1976072c7fb", + "cardId": "ea427191-98b7-458b-b42b-92dc54021a74" + }, + { + "id": "1dc10aad-b62e-4593-8d4d-a7314c82bc45", + "createdAt": "2021-05-18T08:40:22.296Z", + "updatedAt": "2021-05-18T08:40:22.297Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "paid", + "circlePaymentId": "eee09267-5668-4b8d-a90b-0d14e78bb9a6", + "amount": 125000, + "subscriptionId": null, + "joinId": null, + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": null, + "cardId": "290e2649-8ae7-4e66-b4ba-044817358361" + }, + { + "id": "31c15955-6d2b-4051-96c5-eb8fa8234de2", + "createdAt": "2021-05-18T08:40:22.298Z", + "updatedAt": "2021-05-18T08:40:22.299Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "paid", + "circlePaymentId": "c750ed7d-f4f4-40e9-aa13-41653b29f8e7", + "amount": 1250, + "subscriptionId": null, + "joinId": "4dbf0f0f-e2e3-48ce-ae5e-81e783876617", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "20c97f59-d176-41a5-9cfa-1b31b017718f", + "cardId": "e8a2c186-b1b2-44dd-b36d-2af457125347" + }, + { + "id": "26b4ba78-989a-4b5f-954d-ca9488e78035", + "createdAt": "2021-05-18T08:40:22.300Z", + "updatedAt": "2021-05-18T08:40:22.301Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "5558376f-a7b9-41b4-addd-87009e917afd", + "amount": 11500, + "subscriptionId": null, + "joinId": "0c8e9440-79dc-4757-bf20-724007445529", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "commonId": "04c837a8-1f63-4e37-9d22-5d8236a45880", + "cardId": "2bfd94b1-3c30-454c-8d47-647d1d3f461c" + }, + { + "id": "35ed3be8-9a2a-43e1-b6e3-fda36c43fa41", + "createdAt": "2021-05-18T08:40:22.303Z", + "updatedAt": "2021-05-18T08:40:22.304Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "ca28e18d-22e4-4aed-9ca2-0b49c28d3614", + "amount": 50000, + "subscriptionId": null, + "joinId": "af09b4fd-823f-44c2-a91b-34bbcc2ac35a", + "userId": "P21SZrJ6z5YjyF8WFaHv5eRsoFo1", + "commonId": "08e9568e-377d-4c6e-aa77-45fd84922948", + "cardId": "b9761076-d54f-453c-85b4-311839ac2e88" + }, + { + "id": "3eb68ba1-2a2a-419d-af96-072a4daed21f", + "createdAt": "2021-05-18T08:40:22.306Z", + "updatedAt": "2021-05-18T08:40:22.306Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "b6839382-b180-403b-93a0-b2164f3a6570", + "amount": 3000, + "subscriptionId": null, + "joinId": "481da29e-1ada-4d68-8290-18f084f67d83", + "userId": "y2wLlb4FV6PehGGAmj9akMnwkzl2", + "commonId": "1d85812f-5a59-49bf-bb0d-c6579597bb0d", + "cardId": "3d6ee220-2b7f-4acd-93cd-4638f79119f6" + }, + { + "id": "402a5d1a-11cb-4b64-b50d-1a91e6490978", + "createdAt": "2021-05-18T08:40:22.308Z", + "updatedAt": "2021-05-18T08:40:22.308Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Unsuccessful", + "circlePaymentStatus": "failed", + "circlePaymentId": "cb8b3d82-bc95-453a-ae0d-fe4376e1d0bd", + "amount": 507, + "subscriptionId": null, + "joinId": "142ccb1d-4722-47ea-800b-17d8ff9d8173", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "6d778a9d-6ebb-46ab-969a-02d4c4567145", + "cardId": "72bbd9dc-3d01-4f2e-af4c-95adcb33f326" + }, + { + "id": "290d5f1f-e905-4dc6-805d-726b010002a0", + "createdAt": "2021-05-18T08:40:22.309Z", + "updatedAt": "2021-05-18T08:40:22.310Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "0f9d1666-30cc-4ef8-b2d3-3697732d6793", + "amount": 700, + "subscriptionId": null, + "joinId": "77184611-5eb0-4f11-95c7-da683962530e", + "userId": "Wz0ZgOvKnafrjLDeAeWqx182uBq2", + "commonId": "d30cb234-01ac-483c-b137-47961ed0cfec", + "cardId": "2faeaa61-8998-4eff-b03f-b4588f564ac4" + }, + { + "id": "41abd3d9-7c9c-4ef2-889e-6fba886ef993", + "createdAt": "2021-05-18T08:40:22.311Z", + "updatedAt": "2021-05-18T08:40:22.312Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Unsuccessful", + "circlePaymentStatus": "failed", + "circlePaymentId": "b0f1f4a8-50ca-409f-a776-ab6dec55f84f", + "amount": 501, + "subscriptionId": null, + "joinId": "dded124a-37fe-4fff-9fde-a99946931c61", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "commonId": "e8eb5e55-4648-4d89-b80f-87e645df60da", + "cardId": "f693b44c-2b93-4a37-8486-1407a05d9e67" + }, + { + "id": "4c8fa8ef-485a-4864-9d4a-ad3df315053b", + "createdAt": "2021-05-18T08:40:22.315Z", + "updatedAt": "2021-05-18T08:40:22.316Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "9233a76d-a083-4104-ad34-25fd5e324966", + "amount": 75000, + "subscriptionId": null, + "joinId": "4d554310-712c-4592-9845-9dc63b021f99", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "244884c6-6682-4a21-90af-bc8025f42eff", + "cardId": "55fbeba4-880f-4a3c-a63c-858eaba6ffc0" + }, + { + "id": "469e840d-868a-4395-b9f2-4d87399430ba", + "createdAt": "2021-05-18T08:40:22.317Z", + "updatedAt": "2021-05-18T08:40:22.318Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "6cafc866-22e0-49f0-867a-943f1db60285", + "amount": 56600, + "subscriptionId": null, + "joinId": "56fbd5da-e406-43a8-a57f-ddfbc3c6a23c", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "commonId": "5c065a47-00f1-4279-acd1-4d3dac8638ef", + "cardId": "1a3e7e34-01c5-4c1a-bf00-7cdba3b49f3e" + }, + { + "id": "509e91b1-2177-43a3-8076-b3318de712b1", + "createdAt": "2021-05-18T08:40:22.319Z", + "updatedAt": "2021-05-18T08:40:22.320Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "7c4463a0-42c0-4cf2-a4a7-7600724128c3", + "amount": 25100, + "subscriptionId": null, + "joinId": "1fe3d513-24c6-44a3-a6cd-342d577374cb", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "23f0f859-6277-414b-b66a-1de673f1792b", + "cardId": "2314d4f2-faae-40fa-aa00-4a57f34a0d0f" + }, + { + "id": "5e5d85ed-8950-471a-866b-4de841867d6b", + "createdAt": "2021-05-18T08:40:22.321Z", + "updatedAt": "2021-05-18T08:40:22.322Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "paid", + "circlePaymentId": "495506f7-40c4-412b-8b8f-9e5e13ce99c9", + "amount": 6250, + "subscriptionId": null, + "joinId": "9ae11cef-1bd8-400c-814d-afeeb4f13ffa", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "3f7ea48d-594f-4a2c-88d7-d28012573964", + "cardId": "1d036016-3431-4205-95ea-360c890e1dbf" + }, + { + "id": "51124803-6143-4bd1-b460-b99d177e7834", + "createdAt": "2021-05-18T08:40:22.323Z", + "updatedAt": "2021-05-18T08:40:22.323Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "b331b8d4-b3b2-4156-9ef1-edbb49bfae55", + "amount": 53600, + "subscriptionId": null, + "joinId": "411b66ad-0d34-45a1-be9e-f7f5d739290f", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "0970bc3f-beca-4b6e-acb1-42f1b4bba931", + "cardId": "471fbee2-e22a-422f-9b5e-e7afd632209a" + }, + { + "id": "62ff377f-04bf-4eda-9a90-83ab42c48e3c", + "createdAt": "2021-05-18T08:40:22.324Z", + "updatedAt": "2021-05-18T08:40:22.325Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "004be3a9-fc39-4403-b294-25254d580de4", + "amount": 2500, + "subscriptionId": null, + "joinId": "4bbfb6df-5559-4e27-b326-4187c60f7d62", + "userId": "P21SZrJ6z5YjyF8WFaHv5eRsoFo1", + "commonId": "85d5ce2d-4f32-47cb-973f-dc99dd6ac202", + "cardId": "a1180192-e4e8-436a-a9b0-e3c15951689e" + }, + { + "id": "577bd453-07f0-4243-8474-6cd458272be8", + "createdAt": "2021-05-18T08:40:22.328Z", + "updatedAt": "2021-05-18T08:40:22.329Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "7a00fb11-1268-4697-9415-80c5b0339338", + "amount": 2400, + "subscriptionId": null, + "joinId": "2bb3add4-dd16-4e4f-9441-ec86fde50cec", + "userId": "P21SZrJ6z5YjyF8WFaHv5eRsoFo1", + "commonId": "02314122-6b05-4563-a8ce-4a10e97b72da", + "cardId": "9dccfee9-0815-46c2-8d8e-ed22b0c1519f" + }, + { + "id": "60b684a0-9255-412b-b114-0761ba204cb1", + "createdAt": "2021-05-18T08:40:22.330Z", + "updatedAt": "2021-05-18T08:40:22.331Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "e001d17a-0696-4ffe-9d76-ae365acb7b4c", + "amount": 134000, + "subscriptionId": null, + "joinId": "4605a459-7e0e-4021-9b93-91ae42e9bd6a", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "commonId": "672dd9af-0736-4949-b79b-8086559f69f6", + "cardId": "540c01df-40b0-4ae1-8d42-e7231176ce86" + }, + { + "id": "60184543-1f43-4a70-bda2-e66cb26bfa9a", + "createdAt": "2021-05-18T08:40:22.332Z", + "updatedAt": "2021-05-18T08:40:22.332Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "7cc0e28d-163f-47df-8a42-91cba2910739", + "amount": 7000, + "subscriptionId": null, + "joinId": "c38cd9d6-c2f6-4f0a-9ac9-d355a1157605", + "userId": "P21SZrJ6z5YjyF8WFaHv5eRsoFo1", + "commonId": "4393b5fb-a365-4618-be40-eef6b38ae18e", + "cardId": "52d2c563-b305-4d29-97f1-d7cea96d9ac1" + }, + { + "id": "718013b7-3d25-4aa7-b5b9-be659c10b155", + "createdAt": "2021-05-18T08:40:22.336Z", + "updatedAt": "2021-05-18T08:40:22.336Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Unsuccessful", + "circlePaymentStatus": "failed", + "circlePaymentId": "8e63bd52-e0fa-4e9c-99d3-780d52f9bc29", + "amount": 504, + "subscriptionId": null, + "joinId": "37e32cff-e494-433f-8527-a41d1480341a", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "commonId": "6d778a9d-6ebb-46ab-969a-02d4c4567145", + "cardId": "ec1279be-0082-41ee-95fd-8b7c02f763d9" + }, + { + "id": "692c2b00-3de4-4755-b225-45c5359b5863", + "createdAt": "2021-05-18T08:40:22.337Z", + "updatedAt": "2021-05-18T08:40:22.338Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "paid", + "circlePaymentId": "d0b490a2-566a-4efe-9980-e181d3790dfc", + "amount": 6250, + "subscriptionId": null, + "joinId": "6726e432-c4de-4276-940b-0b8eba9185f1", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "commonId": "3f7ea48d-594f-4a2c-88d7-d28012573964", + "cardId": "402c805b-95c7-4674-920a-ef932dff425a" + }, + { + "id": "68624fce-9a24-4b3b-8476-94a74e4a6162", + "createdAt": "2021-05-18T08:40:22.341Z", + "updatedAt": "2021-05-18T08:40:22.342Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "56bb7c22-a6fa-470b-9fba-6d869d5d975f", + "amount": 500, + "subscriptionId": null, + "joinId": "9eda9ee1-2352-47ef-8b3a-14735ae42433", + "userId": "P21SZrJ6z5YjyF8WFaHv5eRsoFo1", + "commonId": "20c97f59-d176-41a5-9cfa-1b31b017718f", + "cardId": "479bd585-1216-4fe6-a6e6-795169cd5cbe" + }, + { + "id": "6bf95d8c-3f76-48c9-94dd-dadb37edf0b9", + "createdAt": "2021-05-18T08:40:22.345Z", + "updatedAt": "2021-05-18T08:40:22.346Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "74c49605-f013-40c4-ab12-1ccfa34d01b7", + "amount": 25000, + "subscriptionId": null, + "joinId": "7e9e5e58-6b5d-491d-9e19-89664d6a45c7", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "959cb7c0-afb4-4872-a9a9-9b10d6c59a60", + "cardId": "4a7a25ba-5861-4822-a6d1-55a7e4612c89" + }, + { + "id": "7f08b11a-aad4-4ebf-8159-d19fd4e4972b", + "createdAt": "2021-05-18T08:40:22.347Z", + "updatedAt": "2021-05-18T08:40:22.348Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "d23b1183-2f32-495e-a46a-7bd1f20569da", + "amount": 500, + "subscriptionId": null, + "joinId": "4d80208d-277c-43f7-820c-4bfb5ac411fb", + "userId": "y2wLlb4FV6PehGGAmj9akMnwkzl2", + "commonId": "03a934ef-a152-42db-aba1-605fa4e4a4b0", + "cardId": "1e99d969-888c-470a-90c0-d49b56879aed" + }, + { + "id": "763ec95d-6232-4ae7-b961-02b1700c0f79", + "createdAt": "2021-05-18T08:40:22.353Z", + "updatedAt": "2021-05-18T08:40:22.354Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Unsuccessful", + "circlePaymentStatus": "failed", + "circlePaymentId": "4c023cf5-b813-4e36-bbf3-e483bcf641a2", + "amount": 519, + "subscriptionId": null, + "joinId": "0c947aa4-99ff-4108-a24f-a1349ee758af", + "userId": "Sxv19oCvKAZq2vntJdYCTYSpWWN2", + "commonId": "c98eb8aa-2ab4-4113-9e40-3cd18d2ead3c", + "cardId": "91584f4e-e4a8-489e-92c2-b7b08b5e51a2" + }, + { + "id": "9218c796-de70-49ea-ab12-c9fbc9ca565e", + "createdAt": "2021-05-18T08:40:22.355Z", + "updatedAt": "2021-05-18T08:40:22.356Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "paid", + "circlePaymentId": "5f3485b3-7d39-40f5-8722-94fdb90faded", + "amount": 250000, + "subscriptionId": null, + "joinId": "c9b8424e-c0d0-49b8-84f8-fc1cf39dd6e8", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "commonId": "77c00df3-7afa-4be2-88c8-c1db81cb535c", + "cardId": "435acc7d-a615-4b8d-a793-420902e5f759" + }, + { + "id": "7a8db433-a6b3-494b-8172-237871b841aa", + "createdAt": "2021-05-18T08:40:22.359Z", + "updatedAt": "2021-05-18T08:40:22.360Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "9eaa176c-43f4-4a09-9e49-bec03b300b18", + "amount": 210000, + "subscriptionId": null, + "joinId": "6e094cf3-c709-471d-8a4b-3a94f0cc50c8", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "commonId": "4d0805e3-d4ae-406d-bc89-66025e7087e2", + "cardId": "0857a600-f970-4729-ba7c-93a19b8402dd" + }, + { + "id": "77ec51d7-014e-4df3-ac8e-965c7ad1c1db", + "createdAt": "2021-05-18T08:40:22.363Z", + "updatedAt": "2021-05-18T08:40:22.364Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "0408cea6-6c51-49f1-bea5-fa26de0f0d2e", + "amount": 3000, + "subscriptionId": null, + "joinId": "967b44da-a0bf-42aa-a7ee-563d676a7bac", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "commonId": "50615c2f-1754-4ca0-b05b-8a3bbe026d43", + "cardId": "6e3aeca4-ddb0-4031-a7e1-b1c11893d58c" + }, + { + "id": "82f69193-5729-4232-a408-8fd568f3a5bb", + "createdAt": "2021-05-18T08:40:22.366Z", + "updatedAt": "2021-05-18T08:40:22.367Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "9bf0c17e-1bf5-49af-9d70-91e7df72be72", + "amount": 18000, + "subscriptionId": null, + "joinId": "301c8d27-4c1f-40ea-a6c9-3b663b18f188", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "commonId": "644786f5-f057-4553-a961-51d8c0daf04f", + "cardId": "7b284f88-d6ca-424f-8e7e-6ccaac3a1b98" + }, + { + "id": "8c4a5afd-eb7d-4ce1-abec-296b11ee84e6", + "createdAt": "2021-05-18T08:40:22.368Z", + "updatedAt": "2021-05-18T08:40:22.369Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "18699c90-6d19-4c3e-a88f-be618e1ddd93", + "amount": 50000, + "subscriptionId": null, + "joinId": "d6939cd1-d4d6-4a15-941d-466e2a9986e3", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "commonId": "9861e6b0-4a8e-4f4e-8783-a5afebd6e4fa", + "cardId": "716a66ed-cd92-4e53-812a-46e21b0f5b90" + }, + { + "id": "883b7d96-45a2-4cdc-a38d-0caf08b4a59a", + "createdAt": "2021-05-18T08:40:22.375Z", + "updatedAt": "2021-05-18T08:40:22.376Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "1090a32a-3ccb-4249-89db-986a9349ffb2", + "amount": 500, + "subscriptionId": null, + "joinId": "2683f751-64c4-4827-bb56-56397a9b7fe3", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "8d1d4dd3-ccf4-48f8-90f2-01f8a9448534", + "cardId": "c2952c4c-6762-4718-957c-271f5e6e6820" + }, + { + "id": "94493696-9411-4aca-ae7d-7b5feeca0022", + "createdAt": "2021-05-18T08:40:22.377Z", + "updatedAt": "2021-05-18T08:40:22.378Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "paid", + "circlePaymentId": "7435b774-af0c-42bb-9fc5-fc57df3ad519", + "amount": 12500, + "subscriptionId": null, + "joinId": "5d82246f-7140-4ec8-b55b-9e8b76fa9685", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "845aadc4-4f62-49f1-9743-c08482ce861e", + "cardId": "e0832154-659e-4582-b6da-918a904610c7" + }, + { + "id": "ac6a8d60-579c-4cda-b9c4-070fb77a5123", + "createdAt": "2021-05-18T08:40:22.383Z", + "updatedAt": "2021-05-18T08:40:22.384Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "paid", + "circlePaymentId": "9cdb70fd-63e4-4367-988d-3370cf1c314d", + "amount": 3000, + "subscriptionId": null, + "joinId": "5ef45913-429b-4af9-8d04-4fea6c950d52", + "userId": "Sxv19oCvKAZq2vntJdYCTYSpWWN2", + "commonId": "1d85812f-5a59-49bf-bb0d-c6579597bb0d", + "cardId": "707e4ba4-7520-498d-b077-b2db650200b9" + }, + { + "id": "a1339d03-6819-45b0-bec0-9a6ad71443a1", + "createdAt": "2021-05-18T08:40:22.388Z", + "updatedAt": "2021-05-18T08:40:22.389Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "ae2faa07-a1b6-4b3d-b00c-9f77a7165ec2", + "amount": 500, + "subscriptionId": null, + "joinId": "641af90c-a0aa-469a-af01-761fcf5efc0f", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "commonId": "120b0708-dc65-42d2-95e6-cb2efa89bbf5", + "cardId": "b4f0c75b-9e9e-427d-bfa5-76b1db785cc7" + }, + { + "id": "bba36b68-acee-4d08-8fd6-6cc082b8af57", + "createdAt": "2021-05-18T08:40:22.255Z", + "updatedAt": "2021-05-18T08:40:22.256Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "14562974-0250-40f6-a278-8239cc348ff4", + "amount": 15000, + "subscriptionId": null, + "joinId": "450b5d74-ddc7-43a2-9305-9d7eff570ed9", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "commonId": "21bed599-c9cc-41e1-9c58-255eae958848", + "cardId": "7f942e2f-cbf7-4b14-aae2-853eaa9bb532" + }, + { + "id": "ad27b21c-4994-44de-9612-d8baa6601b2e", + "createdAt": "2021-05-18T08:40:22.255Z", + "updatedAt": "2021-05-18T08:40:22.256Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "a55dbea8-b58f-4f0e-8ee6-6b669e1fb277", + "amount": 3500, + "subscriptionId": null, + "joinId": "c6c21f6c-6399-4cc8-8058-df19e8fcc9ae", + "userId": "5Bi1KZGIYzW5UIljHgBlO98NXaI2", + "commonId": "3fc54c58-f31c-43dd-94d7-c3409c109570", + "cardId": "2d5f22e5-8404-4c69-9617-cf2a0a4a7a45" + }, + { + "id": "c1cffff5-de36-4dbf-8151-6e34f6c38f9c", + "createdAt": "2021-05-18T08:40:22.256Z", + "updatedAt": "2021-05-18T08:40:22.257Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "f34ebd64-01b3-4f4f-a6ef-d7ee54cbb4f0", + "amount": 500, + "subscriptionId": null, + "joinId": "1511ba8c-9574-4550-96ea-08d798dbcd0f", + "userId": "2HM9WnVvr9aDYbckjCo4cIDjncY2", + "commonId": "c634475b-76a3-4620-b79d-853528e0ec2e", + "cardId": "4e00f0e5-58f8-4c19-8b9a-b2826aaeafea" + }, + { + "id": "c6d76490-cb39-4cb1-a86e-58844d88f573", + "createdAt": "2021-05-18T08:40:22.256Z", + "updatedAt": "2021-05-18T08:40:22.257Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "c9581e56-f904-47d1-8ee6-2c4b70de6dfe", + "amount": 10000, + "subscriptionId": null, + "joinId": "7c08b12c-252f-417f-8eda-59cc7cd2b3d3", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "f419ad93-d978-45b6-8ed0-70645cdeb62a", + "cardId": "27747ea6-98ce-494c-8b06-8f3720897e67" + }, + { + "id": "c7e9cab7-1b79-4760-a49c-78ed52e64127", + "createdAt": "2021-05-18T08:40:22.258Z", + "updatedAt": "2021-05-18T08:40:22.259Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "1d176bf8-448c-4a52-9bb9-1acf989a6700", + "amount": 700, + "subscriptionId": null, + "joinId": "9f98c78f-8600-4505-972e-c3eaee467356", + "userId": "0jL6u33k2rMoEY8wUmnIvkJM48O2", + "commonId": "15c15871-d513-4a06-9e24-7d2c92cbd571", + "cardId": "eaca84ce-8d6a-46ef-972a-4dbb6f476738" + }, + { + "id": "c89f6b22-0990-4065-9fb4-9a876dfc66c5", + "createdAt": "2021-05-18T08:40:22.259Z", + "updatedAt": "2021-05-18T08:40:22.260Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "4145198a-2b57-406b-b213-e5eb3aa80e96", + "amount": 500, + "subscriptionId": null, + "joinId": "bcaf65dd-1c03-4688-83ef-a13dd90cafa4", + "userId": "2HM9WnVvr9aDYbckjCo4cIDjncY2", + "commonId": "0c233ec1-c0a4-4776-8730-79777239a997", + "cardId": "5c283616-7442-44c9-ab83-ac22e9f79430" + }, + { + "id": "cfd1b30e-128a-4127-a319-14ca701a247b", + "createdAt": "2021-05-18T08:40:22.260Z", + "updatedAt": "2021-05-18T08:40:22.261Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "1c9efcbf-f0fc-4922-b835-fba88dc21d36", + "amount": 250000, + "subscriptionId": null, + "joinId": "2d22214f-2f7c-472e-a6e9-f29f9d8d1eab", + "userId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1", + "commonId": "2eb88e3e-d5bb-4772-b5ab-490f1da05876", + "cardId": "972e852a-b33f-43bf-993c-27be0d24ae5d" + }, + { + "id": "cb93cb45-a246-4835-96e3-bcc91b05734a", + "createdAt": "2021-05-18T08:40:22.260Z", + "updatedAt": "2021-05-18T08:40:22.261Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "16dfca15-3aaa-454a-a124-c1064bed845a", + "amount": 3000, + "subscriptionId": null, + "joinId": "d3432b4d-4fed-4ecc-8439-8045f4d0d47d", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "commonId": "e09d83a7-8298-423d-87df-e598bc45916b", + "cardId": "101726dc-b799-4287-a0f9-0f75455b874b" + }, + { + "id": "cf6eadff-e3d2-4e20-a0fb-0de599bff83c", + "createdAt": "2021-05-18T08:40:22.260Z", + "updatedAt": "2021-05-18T08:40:22.261Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "ff896a34-3b7b-4ef2-9239-c964a2f42952", + "amount": 2500, + "subscriptionId": null, + "joinId": "f9ce8a16-29a9-4eca-8f62-6008a1e9e25b", + "userId": "RN4V4T2Z4gf2ld9QhwanrQbSnP23", + "commonId": "c45d25f6-d40e-4336-93ac-2274a3f51b1e", + "cardId": "17068acf-2691-44a5-a309-cf907b4d29fd" + }, + { + "id": "da96e667-29a9-4a78-b468-8c94b3f794f7", + "createdAt": "2021-05-18T08:40:22.263Z", + "updatedAt": "2021-05-18T08:40:22.264Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "324493a3-e296-4c3d-8b7a-e64e53c630f4", + "amount": 25000, + "subscriptionId": null, + "joinId": "49b208b6-14bb-4821-9840-14288c78beba", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "b78beeff-4213-4599-a6cb-01547a2c7fd1", + "cardId": "99838f31-d607-41c2-99e9-2ef6a62d4d74" + }, + { + "id": "d44eaf0f-3ad2-4d2f-8a22-9caef7f2d28b", + "createdAt": "2021-05-18T08:40:22.263Z", + "updatedAt": "2021-05-18T08:40:22.264Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "aca91ace-0870-4c99-8066-4e862b8bac25", + "amount": 3200, + "subscriptionId": null, + "joinId": "eb55d4c0-dd95-4729-a20a-ad18bfc52f24", + "userId": "RN4V4T2Z4gf2ld9QhwanrQbSnP23", + "commonId": "02314122-6b05-4563-a8ce-4a10e97b72da", + "cardId": "2ef4e4b7-3739-4f48-a590-e908a0af8419" + }, + { + "id": "dd09b196-74f3-43c1-be6b-b25dc3b5a03f", + "createdAt": "2021-05-18T08:40:22.264Z", + "updatedAt": "2021-05-18T08:40:22.265Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "7ccc1ab5-87c4-4c69-9d61-ff7a8428546d", + "amount": 5000, + "subscriptionId": null, + "joinId": "8d8824d9-c095-4689-851f-8ffe72bf61e7", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "2e5d4cab-a1a1-40b4-88e5-0a69ee2d9347", + "cardId": "a2cf1b42-5558-4e26-8067-a1dd000264fd" + }, + { + "id": "e04ff23d-ecd3-43b0-8d48-23d993777046", + "createdAt": "2021-05-18T08:40:22.264Z", + "updatedAt": "2021-05-18T08:40:22.266Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "paid", + "circlePaymentId": "7df6858a-495d-4404-9b0a-9c4bbce67c8a", + "amount": 80000, + "subscriptionId": null, + "joinId": "085aeb27-48ea-430c-baee-4063dc9c9a6d", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "commonId": "548ca0ab-e29c-44bb-ba2c-684c4d86d591", + "cardId": "5c2c3de6-8a24-4bb5-ae5e-089eefa12e45" + }, + { + "id": "e2d2882f-b16e-4923-9c29-c4138d7e4b7d", + "createdAt": "2021-05-18T08:40:22.267Z", + "updatedAt": "2021-05-18T08:40:22.268Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "61b9c3a0-ae47-44ae-93cd-23dc524cca03", + "amount": 1000, + "subscriptionId": null, + "joinId": "c248a9c1-f142-473a-a256-33818ae7ecac", + "userId": "2HM9WnVvr9aDYbckjCo4cIDjncY2", + "commonId": "c683baee-aacf-4672-a017-b6f3af836b98", + "cardId": "9f83bcb7-39ac-4fda-afe4-4270b90af88d" + }, + { + "id": "ea0042c1-f3ae-4e3f-9347-10231202c132", + "createdAt": "2021-05-18T08:40:22.268Z", + "updatedAt": "2021-05-18T08:40:22.269Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "paid", + "circlePaymentId": "9b02780b-fd9f-4310-9f14-c902a684371c", + "amount": 30500, + "subscriptionId": null, + "joinId": "0ff7738d-8e0f-4472-a8b5-17a58729334c", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "37c974a2-fb15-46e3-a7ba-0be50d026971", + "cardId": "e7ded3ee-230d-480f-a496-20e016babd00" + }, + { + "id": "e3fd4b78-77dc-4ee7-a969-66e903789c00", + "createdAt": "2021-05-18T08:40:22.267Z", + "updatedAt": "2021-05-18T08:40:22.268Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "9d1f2162-7f44-4f74-a997-5d8a199b8bcb", + "amount": 25000, + "subscriptionId": null, + "joinId": "0276456b-c827-4744-b714-7e654254ad9d", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "commonId": "ccf9e609-463e-4cd3-92ed-ff5d518cd94b", + "cardId": "0fb1b45d-0cc5-4005-81b1-4c8462e14a65" + }, + { + "id": "f01a55f7-8951-45f7-b486-a1156da534b0", + "createdAt": "2021-05-18T08:40:22.269Z", + "updatedAt": "2021-05-18T08:40:22.270Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "987b9c98-8829-42c0-a183-7cc869ba96ca", + "amount": 700, + "subscriptionId": null, + "joinId": "345a8396-f9f9-44fc-8d01-650da619b96c", + "userId": "2HM9WnVvr9aDYbckjCo4cIDjncY2", + "commonId": "3fc54c58-f31c-43dd-94d7-c3409c109570", + "cardId": "9a162409-5f54-41f9-b98d-8da738136c8f" + }, + { + "id": "e7aaa06e-6ec9-422e-b448-1a1e81c730a8", + "createdAt": "2021-05-18T08:40:22.268Z", + "updatedAt": "2021-05-18T08:40:22.269Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Unsuccessful", + "circlePaymentStatus": "failed", + "circlePaymentId": "2f385801-7da3-4208-8997-581600e8353e", + "amount": 501, + "subscriptionId": null, + "joinId": "445d577f-7188-43b6-81ec-2826d9784abf", + "userId": "11j4NvvZ4kMRf4BFBUHdbRiXKMp1", + "commonId": "0970bc3f-beca-4b6e-acb1-42f1b4bba931", + "cardId": "e5c6a948-dcb8-401f-b043-b89f82a0dfb8" + }, + { + "id": "fd8c720f-bfab-41dd-a337-e3748dc8c35c", + "createdAt": "2021-05-18T08:40:22.272Z", + "updatedAt": "2021-05-18T08:40:22.273Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "paid", + "circlePaymentId": "eab28578-ea8e-468d-9f91-1bd8db515117", + "amount": 1250, + "subscriptionId": null, + "joinId": "23abbf68-95e2-4ab1-8ae0-77861e2a7c54", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "8cd28a3c-13b9-45e8-913c-adf26c6544b8", + "cardId": "08b65514-cb2e-45ba-ba34-ed9ee235f0a9" + }, + { + "id": "f4f4f46e-40a5-42c9-b199-cd45f423fed7", + "createdAt": "2021-05-18T08:40:22.272Z", + "updatedAt": "2021-05-18T08:40:22.273Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "4f00d85a-b0bf-497e-9173-5cc92234037a", + "amount": 20000, + "subscriptionId": null, + "joinId": "81b9105a-c83e-4ad7-9cb2-5850a9987b93", + "userId": "WKODFO6A3VMqWLYE2rrmrSGRrKF2", + "commonId": "9aafbea4-fccb-40ea-a791-cfb013703d92", + "cardId": "05fdcbd7-e16c-47c9-bcff-27dcda711141" + }, + { + "id": "098e3b96-4e1a-4553-ad53-51a6cee40406", + "createdAt": "2021-05-18T08:40:22.395Z", + "updatedAt": "2021-05-18T08:40:22.396Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "1b443c65-3b34-4db4-8a05-c82fc61cb038", + "amount": 500, + "subscriptionId": null, + "joinId": "252f1745-063e-427f-a0b6-6fa39fdecdb8", + "userId": "2HM9WnVvr9aDYbckjCo4cIDjncY2", + "commonId": "1e3d7621-92ba-4b10-a1e8-8245fed4ca88", + "cardId": "93792c31-877c-4671-b8c1-3066165f0063" + }, + { + "id": "bde75d54-5e37-48f8-9791-ba84bebb3296", + "createdAt": "2021-05-18T08:40:22.472Z", + "updatedAt": "2021-05-18T08:40:22.473Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "149ff63e-940d-4def-b0cf-74e27c4444e1", + "amount": 700, + "subscriptionId": null, + "joinId": "afcd4290-3fdf-4010-b3a9-f421432ca14a", + "userId": "WMzKDGJSlWM2Rjx9JVp9StB2Bni2", + "commonId": "15c15871-d513-4a06-9e24-7d2c92cbd571", + "cardId": "58b29c63-5981-4482-9c3f-766ac7d030af" + }, + { + "id": "ae789e32-235f-428d-b4f1-b338cb4afa4d", + "createdAt": "2021-05-18T08:40:22.475Z", + "updatedAt": "2021-05-18T08:40:22.476Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "7936f8fc-411e-4a92-8d0e-61581350aec8", + "amount": 3000, + "subscriptionId": null, + "joinId": null, + "userId": "d3jPxOeMtnVqHTjJ5ILfuOHQQPQ2", + "commonId": null, + "cardId": "ebc19a40-2e32-401e-b7d5-d0027c6d8bd2" + }, + { + "id": "c78f8b90-bdcb-4fd3-911c-0376288c7f02", + "createdAt": "2021-05-18T08:40:22.479Z", + "updatedAt": "2021-05-18T08:40:22.479Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "32686eca-0575-448f-9c29-3cb2b4ff0f25", + "amount": 100, + "subscriptionId": null, + "joinId": "eb5cacef-03d0-4bce-a2df-bc925a7df4be", + "userId": "2HM9WnVvr9aDYbckjCo4cIDjncY2", + "commonId": "39d28344-d7aa-4ed4-9b5b-3969984c8247", + "cardId": "66f3b178-dd82-4a06-bdb3-fac12c9c2e00" + }, + { + "id": "c9d665c8-361f-4645-9f4f-46ffef28429f", + "createdAt": "2021-05-18T08:40:22.481Z", + "updatedAt": "2021-05-18T08:40:22.482Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "e8df54bc-05d9-4f7a-a10c-11a91d876c82", + "amount": 2400, + "subscriptionId": null, + "joinId": "34cbd8ac-45ba-4254-aa87-f91a2e567623", + "userId": "5Bi1KZGIYzW5UIljHgBlO98NXaI2", + "commonId": "02314122-6b05-4563-a8ce-4a10e97b72da", + "cardId": "9e21b3c3-6da6-4198-af36-28507b2a98e0" + }, + { + "id": "d0dc0b92-c22b-4d27-9162-f6beb96220c4", + "createdAt": "2021-05-18T08:40:22.483Z", + "updatedAt": "2021-05-18T08:40:22.484Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "43fd0ce2-0ed8-4dba-8722-2e92db4d147e", + "amount": 50000, + "subscriptionId": null, + "joinId": "3b192921-3756-452d-ab9c-5710d1a663a4", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "bc2fd521-d8f6-47a0-8ad9-da1ad65d1ec0", + "cardId": "2c4c6485-30eb-4d06-a5f7-ddd4f8306174" + }, + { + "id": "cde0056c-b457-49cc-a222-b0684d80b215", + "createdAt": "2021-05-18T08:40:22.484Z", + "updatedAt": "2021-05-18T08:40:22.485Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "8964038e-e391-4505-be71-c4ba2a53a0ba", + "amount": 500, + "subscriptionId": null, + "joinId": "98304dd8-e94f-48ab-a801-503078ba3888", + "userId": "Sxv19oCvKAZq2vntJdYCTYSpWWN2", + "commonId": "31254d89-71fd-4337-9a6b-84f640f77f78", + "cardId": "5108dfec-a7b1-4d88-998a-828ac991acd5" + }, + { + "id": "cf892de9-6f04-4b25-a941-966794e7c14c", + "createdAt": "2021-05-18T08:40:22.488Z", + "updatedAt": "2021-05-18T08:40:22.489Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "paid", + "circlePaymentId": "b0010c97-90ee-4431-b4b6-dfb7f1226670", + "amount": 500, + "subscriptionId": null, + "joinId": "2aa481a3-a080-441b-acc8-e244d2b4c38c", + "userId": "7a3rK55ZsdShvRd27sntddN2v7H2", + "commonId": "8e7b0468-4c9e-4447-96da-b455a5b8c190", + "cardId": "faf2e66f-fa2a-46ef-a924-77a3c08f8291" + }, + { + "id": "df82746e-0049-49d1-9069-04959f4d76a1", + "createdAt": "2021-05-18T08:40:22.496Z", + "updatedAt": "2021-05-18T08:40:22.497Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Unsuccessful", + "circlePaymentStatus": "failed", + "circlePaymentId": "e06e3a67-fd29-4713-82ae-e8b1c9048550", + "amount": 505, + "subscriptionId": null, + "joinId": "3864e1c7-7a18-4d73-8c86-0fc8bf9559c9", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "commonId": "6d778a9d-6ebb-46ab-969a-02d4c4567145", + "cardId": "199e6e76-bfed-435f-81d5-96754618c7ff" + }, + { + "id": "e0a1d3c4-55a5-4373-98e1-c234fd57850f", + "createdAt": "2021-05-18T08:40:22.498Z", + "updatedAt": "2021-05-18T08:40:22.499Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "fcfec125-0eb8-4473-8211-884accbc7a1a", + "amount": 3000, + "subscriptionId": null, + "joinId": "3aa690b6-4d8e-4a2a-aa6f-9180e7cc7f2c", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "e09d83a7-8298-423d-87df-e598bc45916b", + "cardId": "970cbfb0-783a-4010-bc7d-db88c8e3db59" + }, + { + "id": "e35787e8-3ce1-4b88-95bc-76293f264b0e", + "createdAt": "2021-05-18T08:40:22.499Z", + "updatedAt": "2021-05-18T08:40:22.500Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "413ffeda-8c14-4fa6-9661-5a1b64f3ca6e", + "amount": 55500, + "subscriptionId": null, + "joinId": "30d0d16e-5983-4ca7-8caa-7ef4320732a9", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "5563ca24-ef7d-4593-96a6-a448db33cf6b", + "cardId": "871ae21c-88c6-4553-bc29-568a2d343721" + }, + { + "id": "efa24e7f-08d0-41d2-bc35-c64296fb55b1", + "createdAt": "2021-05-18T08:40:22.501Z", + "updatedAt": "2021-05-18T08:40:22.501Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "832fb83e-738f-45b6-b011-3177123f754c", + "amount": 500, + "subscriptionId": null, + "joinId": "ad3e4f13-97d9-4183-9289-35dedf21cc1a", + "userId": "Sxv19oCvKAZq2vntJdYCTYSpWWN2", + "commonId": "31c22ac8-4a35-4763-9e77-51d50155cc26", + "cardId": "fd9b2f1f-411c-4a22-9e6d-70e86749fc80" + }, + { + "id": "e74aac05-b8f0-462f-a52e-30fa19c1f573", + "createdAt": "2021-05-18T08:40:22.502Z", + "updatedAt": "2021-05-18T08:40:22.503Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "05163819-5e11-458c-8112-573a440df9c5", + "amount": 500, + "subscriptionId": null, + "joinId": "51a81f19-1817-4c42-aa42-7f183130fadd", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "d6a4263c-d315-4112-87ae-0071cdaf2187", + "cardId": "4da6f08e-8c8b-4be6-b02e-386abfd20c1b" + }, + { + "id": "e9055440-3e98-4599-a243-f161c658ba7d", + "createdAt": "2021-05-18T08:40:22.506Z", + "updatedAt": "2021-05-18T08:40:22.507Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "c1e3aaf7-5045-4bdf-9cb5-3180ad337326", + "amount": 27000, + "subscriptionId": null, + "joinId": "41454b71-aa2f-44f4-a6d4-353a97b8e487", + "userId": "2Ti3LkP23KUJVp2AZY3wVHYWRxm2", + "commonId": "60026234-b1ff-4596-baa2-0d7be186f561", + "cardId": "cebed72d-b875-4682-91f3-f917f3adfcf2" + }, + { + "id": "fdc72346-7f17-4737-89b2-cddfd3305a95", + "createdAt": "2021-05-18T08:40:22.508Z", + "updatedAt": "2021-05-18T08:40:22.509Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "0a89e242-521b-453f-9653-0e10c0988d83", + "amount": 700, + "subscriptionId": null, + "joinId": "c55a1489-2e4e-4c16-b361-853f69b0db40", + "userId": "2HM9WnVvr9aDYbckjCo4cIDjncY2", + "commonId": "d30cb234-01ac-483c-b137-47961ed0cfec", + "cardId": "7795d36c-8fa0-4a3f-97a9-233ae9aa7a37" + }, + { + "id": "f94c6942-eade-42c4-aab2-9a80990c1144", + "createdAt": "2021-05-18T08:40:22.510Z", + "updatedAt": "2021-05-18T08:40:22.511Z", + "processed": false, + "processedError": false, + "type": "ImportedPayment", + "status": "Successful", + "circlePaymentStatus": "confirmed", + "circlePaymentId": "c59e45bb-9690-4821-9836-5f325dd21af7", + "amount": 20000, + "subscriptionId": null, + "joinId": "5e7f1dfb-9582-453b-a5c5-a167bcf6ea8e", + "userId": "97d5y9WXk1fEZv767j1ejKuHevi1", + "commonId": "46749aca-ec3a-49f3-82e2-c3d0c977bc05", + "cardId": "ddfbfe2e-5519-48c2-ad41-53d9c5f9da41" + } +] \ No newline at end of file diff --git a/packages/core/prisma/schema.prisma b/packages/core/prisma/schema.prisma index 8738cda27..8e4ab0e27 100644 --- a/packages/core/prisma/schema.prisma +++ b/packages/core/prisma/schema.prisma @@ -275,17 +275,17 @@ model Payment { card Card @relation(fields: [cardId], references: [id]) - user User @relation(fields: [userId], references: [id]) - common Common @relation(fields: [commonId], references: [id]) + user User @relation(fields: [userId], references: [id]) + common Common? @relation(fields: [commonId], references: [id]) - join JoinProposal @relation(fields: [joinId], references: [id]) + join JoinProposal? @relation(fields: [joinId], references: [id]) subscription Subscription? @relation(fields: [subscriptionId], references: [id]) subscriptionId String? - joinId String + joinId String? userId String - commonId String + commonId String? cardId String } @@ -295,6 +295,8 @@ enum PaymentType { SubscriptionInitialPayment SubscriptionSequentialPayment + + ImportedPayment } enum PaymentCircleStatus { @@ -325,7 +327,6 @@ model Card { cvvCheck String avsCheck String - user User @relation(fields: [userId], references: [id]) payments Payment[] @@ -742,8 +743,10 @@ model Proposal { userId String commonId String commonMemberId String? - Event Event[] - Notification Notification[] + + importedFrom Json? + Event Event[] + Notification Notification[] } model JoinProposal { diff --git a/packages/core/prisma/seed.ts b/packages/core/prisma/seed.ts index df2e06043..bc42fc2b3 100644 --- a/packages/core/prisma/seed.ts +++ b/packages/core/prisma/seed.ts @@ -1,36 +1,48 @@ +// @ts-ignore +import fs from 'fs'; +// @ts-ignore +import path from 'path'; + import { PrismaClient, StatisticType } from '@prisma/client'; -import { allPermissions } from '../src/domain/validation/permissions'; + import { seedNotificationSystemSetting } from './seed/notificationSystemSettings'; +import { seedNotificationTemplated } from './seed/notificationTemplates'; +import { importUsers } from './firestore/importers/importUsers'; +import { importCommons } from './firestore/importers/importCommons'; +import { importFundingProposals } from './firestore/importers/importFundingProposals'; +import { seedRoles } from './seed/roles'; +import { importJoinProposals } from './firestore/importers/importJoinProposals'; +import { importCards } from './firestore/importers/importCards'; +import { importPayments } from './firestore/importers/paymentImporter'; export const seeder = new PrismaClient(); async function main() { // Seed Notification Settings await seedNotificationSystemSetting(); - // await seedNotificationTemplated(); + await seedNotificationTemplated(); // Import firestore - // await importUsers(); - // await importCommons(); - // await importFundingProposals(); - - // See roles - await seeder.role.upsert({ - where: { - name: 'admin' - }, - - create: { - name: 'admin', - displayName: 'Admin', - description: 'The ultimate role with all permissions', - permissions: allPermissions - }, - - update: { - permissions: allPermissions - } - }); + await importUsers(); + await importCommons(); + await importFundingProposals(); + + const date = new Date(); + const dir = path.join(__dirname, `result/${+date}`); + + if (!fs.existsSync(dir)) { + fs.mkdirSync(dir); + } + + + await importCards(date); + await importJoinProposals(date); + + // Import payments + await importPayments(date); + + // Seed roles and permissions + await seedRoles(); // Create the global statistics await seeder.statistic.create({ @@ -50,13 +62,14 @@ async function main() { } main() - .then(() => { - console.log('🌱 Your database has been seeded.'); - }) .catch(e => { console.error(e); process.exit(1); }) .finally(async () => { + console.log('🌱 Your database has been seeded.'); + await seeder.$disconnect(); + + process.exit(0); }); diff --git a/packages/core/prisma/seed/roles.ts b/packages/core/prisma/seed/roles.ts new file mode 100644 index 000000000..bdf65df60 --- /dev/null +++ b/packages/core/prisma/seed/roles.ts @@ -0,0 +1,22 @@ +import { allPermissions } from '../../src/domain/validation/permissions'; +import { seeder } from '../seed'; + +export const seedRoles = async () => { + // See roles + await seeder.role.upsert({ + where: { + name: 'admin' + }, + + create: { + name: 'admin', + displayName: 'Admin', + description: 'The ultimate role with all permissions', + permissions: allPermissions + }, + + update: { + permissions: allPermissions + } + }); +}; \ No newline at end of file