Skip to content

Commit 50813f5

Browse files
change in packages
1 parent d79e6ac commit 50813f5

21 files changed

+285
-241
lines changed

infra/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ module "ecs" {
162162

163163
# Container
164164
ecs_task_definition_name = "sidekick-container"
165-
ecs_task_definition_image = "${aws_ecr_repository.sidekick_test_ecr.repository_url}:latest"
165+
ecs_task_definition_image = "${aws_ecr_repository.sidekick_test_ecr.repository_url}:v2"
166166
ecs_task_definition_essential = true
167167
ecs_task_definition_portMappings_port = 7500
168168
ecs_task_definition_portMappings_host_port = 7500

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
"@fastify/swagger": "^9.4.2",
5151
"@fastify/swagger-ui": "^5.2.1",
5252
"@google-cloud/kms": "^4.5.0",
53-
"@prisma/client": "^6.3.1",
53+
"@prisma/client": "^6.12.0",
5454
"@sinclair/typebox": "^0.34.16",
5555
"@types/bull": "^4.10.4",
5656
"abitype": "^1.0.8",
@@ -61,7 +61,7 @@
6161
"fastify-plugin": "^5.0.1",
6262
"js-yaml": "^4.1.0",
6363
"pino": "^9.7.0",
64-
"prisma": "^6.3.1",
64+
"prisma": "^6.12.0",
6565
"prom-client": "^15.1.3",
6666
"typescript": "^5.3.3",
6767
"viem": "^2.22.23",

pnpm-lock.yaml

Lines changed: 39 additions & 39 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

prisma/schema.prisma

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
generator client {
22
provider = "prisma-client-js"
3-
binaryTargets = ["native", "linux-musl-arm64-openssl-3.0.x", "debian-openssl-3.0.x"]
3+
binaryTargets = ["native", "linux-musl-arm64-openssl-3.0.x", "debian-openssl-3.0.x", "linux-musl-openssl-3.0.x"]
44
output = "../src/lib/generated/prismaClient"
55
}
66

src/lib/generated/prismaClient/edge.js

Lines changed: 16 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,12 @@ exports.Prisma = Prisma
3535
exports.$Enums = {}
3636

3737
/**
38-
* Prisma Client JS version: 6.9.0
39-
* Query Engine version: 81e4af48011447c3cc503a190e86995b66d2a28e
38+
* Prisma Client JS version: 6.12.0
39+
* Query Engine version: 8047c96bbd92db98a2abc7c9323ce77c02c89dbc
4040
*/
4141
Prisma.prismaVersion = {
42-
client: "6.9.0",
43-
engine: "81e4af48011447c3cc503a190e86995b66d2a28e"
42+
client: "6.12.0",
43+
engine: "8047c96bbd92db98a2abc7c9323ce77c02c89dbc"
4444
}
4545

4646
Prisma.PrismaClientKnownRequestError = PrismaClientKnownRequestError;
@@ -160,7 +160,7 @@ const config = {
160160
"value": "prisma-client-js"
161161
},
162162
"output": {
163-
"value": "/Users/gabi/Documents/Work/Sequence/sidekick/src/lib/generated/prismaClient",
163+
"value": "/home/hz/Github/sidekick/src/lib/generated/prismaClient",
164164
"fromEnvVar": null
165165
},
166166
"config": {
@@ -169,7 +169,7 @@ const config = {
169169
"binaryTargets": [
170170
{
171171
"fromEnvVar": null,
172-
"value": "darwin-arm64",
172+
"value": "debian-openssl-3.0.x",
173173
"native": true
174174
},
175175
{
@@ -179,19 +179,22 @@ const config = {
179179
{
180180
"fromEnvVar": null,
181181
"value": "debian-openssl-3.0.x"
182+
},
183+
{
184+
"fromEnvVar": null,
185+
"value": "linux-musl-openssl-3.0.x"
182186
}
183187
],
184188
"previewFeatures": [],
185-
"sourceFilePath": "/Users/gabi/Documents/Work/Sequence/sidekick/prisma/schema.prisma",
189+
"sourceFilePath": "/home/hz/Github/sidekick/prisma/schema.prisma",
186190
"isCustomOutput": true
187191
},
188192
"relativeEnvPaths": {
189-
"rootEnvPath": "../../../../.env",
190-
"schemaEnvPath": "../../../../.env"
193+
"rootEnvPath": null
191194
},
192195
"relativePath": "../../../../prisma",
193-
"clientVersion": "6.9.0",
194-
"engineVersion": "81e4af48011447c3cc503a190e86995b66d2a28e",
196+
"clientVersion": "6.12.0",
197+
"engineVersion": "8047c96bbd92db98a2abc7c9323ce77c02c89dbc",
195198
"datasourceNames": [
196199
"db"
197200
],
@@ -205,8 +208,8 @@ const config = {
205208
}
206209
}
207210
},
208-
"inlineSchema": "generator client {\n provider = \"prisma-client-js\"\n binaryTargets = [\"native\", \"linux-musl-arm64-openssl-3.0.x\", \"debian-openssl-3.0.x\"]\n output = \"../src/lib/generated/prismaClient\"\n}\n\ndatasource db {\n provider = \"postgresql\"\n url = env(\"DATABASE_URL\")\n}\n\nmodel Transaction {\n id String @id @default(cuid())\n hash String?\n txUrl String?\n chainId Int\n status String // 'pending' | 'done' | 'failed'\n from String\n to String\n data String? // Made nullable for pending transactions\n functionName String?\n argsJson String? @default(\"[]\") // Store args as JSON string\n isDeployTx Boolean @default(false)\n createdAt DateTime @default(now())\n updatedAt DateTime @updatedAt\n}\n\nmodel Contract {\n id Int @id @default(autoincrement())\n builderId Int? @unique\n projectId Int?\n contractName String\n contractAddress String @unique\n contractType String?\n chainId Int\n source String?\n itemsContractAddress String?\n splitterContractAddresses String[] @default([])\n abi String?\n bytecode String\n bytecode_hash String?\n audienceId Int?\n symbol String?\n createdAt DateTime @default(now())\n updatedAt DateTime @updatedAt\n addedBy String @default(\"sidekick\")\n}\n",
209-
"inlineSchemaHash": "af289088be65d549952f826e45ca8fccf52b9e7099d95855115ac57c72d32b80",
211+
"inlineSchema": "generator client {\n provider = \"prisma-client-js\"\n binaryTargets = [\"native\", \"linux-musl-arm64-openssl-3.0.x\", \"debian-openssl-3.0.x\", \"linux-musl-openssl-3.0.x\"]\n output = \"../src/lib/generated/prismaClient\"\n}\n\ndatasource db {\n provider = \"postgresql\"\n url = env(\"DATABASE_URL\")\n}\n\nmodel Transaction {\n id String @id @default(cuid())\n hash String?\n txUrl String?\n chainId Int\n status String // 'pending' | 'done' | 'failed'\n from String\n to String\n data String? // Made nullable for pending transactions\n functionName String?\n argsJson String? @default(\"[]\") // Store args as JSON string\n isDeployTx Boolean @default(false)\n createdAt DateTime @default(now())\n updatedAt DateTime @updatedAt\n}\n\nmodel Contract {\n id Int @id @default(autoincrement())\n builderId Int? @unique\n projectId Int?\n contractName String\n contractAddress String @unique\n contractType String?\n chainId Int\n source String?\n itemsContractAddress String?\n splitterContractAddresses String[] @default([])\n abi String?\n bytecode String\n bytecode_hash String?\n audienceId Int?\n symbol String?\n createdAt DateTime @default(now())\n updatedAt DateTime @updatedAt\n addedBy String @default(\"sidekick\")\n}\n",
212+
"inlineSchemaHash": "7ec12cabfea681c61e493d87865903f8608692967dc2cfdef4f75faca1ee9597",
210213
"copyEngine": true
211214
}
212215
config.dirname = '/'

src/lib/generated/prismaClient/index-browser.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ exports.Prisma = Prisma
2020
exports.$Enums = {}
2121

2222
/**
23-
* Prisma Client JS version: 6.9.0
24-
* Query Engine version: 81e4af48011447c3cc503a190e86995b66d2a28e
23+
* Prisma Client JS version: 6.12.0
24+
* Query Engine version: 8047c96bbd92db98a2abc7c9323ce77c02c89dbc
2525
*/
2626
Prisma.prismaVersion = {
27-
client: "6.9.0",
28-
engine: "81e4af48011447c3cc503a190e86995b66d2a28e"
27+
client: "6.12.0",
28+
engine: "8047c96bbd92db98a2abc7c9323ce77c02c89dbc"
2929
}
3030

3131
Prisma.PrismaClientKnownRequestError = () => {

src/lib/generated/prismaClient/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -226,8 +226,8 @@ export namespace Prisma {
226226
export import Exact = $Public.Exact
227227

228228
/**
229-
* Prisma Client JS version: 6.9.0
230-
* Query Engine version: 81e4af48011447c3cc503a190e86995b66d2a28e
229+
* Prisma Client JS version: 6.12.0
230+
* Query Engine version: 8047c96bbd92db98a2abc7c9323ce77c02c89dbc
231231
*/
232232
export type PrismaVersion = {
233233
client: string

0 commit comments

Comments
 (0)