@fonoster/apiserver 0.8.9 → 0.8.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/generated/@prisma/client/edge.js +10 -2
- package/dist/generated/@prisma/client/index.js +18 -2
- package/dist/generated/@prisma/client/libquery_engine-linux-arm64-openssl-1.1.x.so.node +0 -0
- package/dist/generated/@prisma/client/libquery_engine-linux-arm64-openssl-3.0.x.so.node +0 -0
- package/dist/generated/@prisma/client/package.json +1 -1
- package/dist/generated/@prisma/client/schema.prisma +3 -2
- package/package.json +9 -9
|
@@ -208,6 +208,14 @@ const config = {
|
|
|
208
208
|
"fromEnvVar": null,
|
|
209
209
|
"value": "darwin-arm64",
|
|
210
210
|
"native": true
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
"fromEnvVar": null,
|
|
214
|
+
"value": "linux-arm64-openssl-1.1.x"
|
|
215
|
+
},
|
|
216
|
+
{
|
|
217
|
+
"fromEnvVar": null,
|
|
218
|
+
"value": "linux-arm64-openssl-3.0.x"
|
|
211
219
|
}
|
|
212
220
|
],
|
|
213
221
|
"previewFeatures": [],
|
|
@@ -234,8 +242,8 @@ const config = {
|
|
|
234
242
|
}
|
|
235
243
|
}
|
|
236
244
|
},
|
|
237
|
-
"inlineSchema": "generator client {\n provider
|
|
238
|
-
"inlineSchemaHash": "
|
|
245
|
+
"inlineSchema": "generator client {\n provider = \"prisma-client-js\"\n output = \"src/generated/@prisma/client\"\n binaryTargets = [\"native\", \"linux-arm64-openssl-1.1.x\", \"linux-arm64-openssl-3.0.x\"]\n}\n\ndatasource db {\n provider = \"postgresql\"\n url = env(\"DATABASE_URL\")\n}\n\nmodel Application {\n ref String @id @default(uuid())\n accessKeyId String @map(\"access_key_id\")\n name String @db.VarChar(255)\n type ApplicationType\n endpoint String @db.VarChar(255)\n createdAt DateTime @default(now()) @map(\"created_at\")\n updatedAt DateTime @default(now()) @map(\"updated_at\")\n\n // Relations\n textToSpeech TextToSpeech?\n speechToText SpeechToText?\n intelligence Intelligence?\n\n // Indexes and maps\n @@index([accessKeyId], type: Hash)\n @@map(\"applications\")\n}\n\nmodel TextToSpeech {\n ref String @id @default(uuid())\n config Json\n\n // Relations\n application Application @relation(fields: [applicationRef], references: [ref], onDelete: Cascade)\n applicationRef String @unique @map(\"application_ref\")\n product Product @relation(fields: [productRef], references: [ref], onDelete: Cascade)\n productRef String @map(\"product_ref\")\n\n // Indexes and maps\n @@index([applicationRef], type: Hash)\n @@index([productRef], type: Hash)\n @@map(\"tts_services\")\n}\n\nmodel SpeechToText {\n ref String @id @default(uuid())\n config Json\n\n // Relations\n application Application @relation(fields: [applicationRef], references: [ref], onDelete: Cascade)\n applicationRef String @unique @map(\"application_ref\")\n product Product @relation(fields: [productRef], references: [ref], onDelete: Cascade)\n productRef String @map(\"product_ref\")\n\n // Indexes and maps\n @@index([applicationRef], type: Hash)\n @@index([productRef], type: Hash)\n @@map(\"stt_services\")\n}\n\nmodel Intelligence {\n ref String @id @default(uuid())\n config Json\n credentials String @map(\"credentials_hash\") /// @encrypted\n\n // Relations\n application Application @relation(fields: [applicationRef], references: [ref], onDelete: Cascade)\n applicationRef String @unique @map(\"application_ref\")\n Product Product @relation(fields: [productRef], references: [ref], onDelete: Cascade)\n productRef String @map(\"product_ref\")\n\n // Indexes and maps\n @@index([applicationRef], type: Hash)\n @@index([productRef], type: Hash)\n @@map(\"intelligence_services\")\n}\n\nmodel Product {\n ref String @id\n name String\n vendor ProductVendor\n type ProductType\n\n // Relations\n speechToText SpeechToText[]\n sextToSpeech TextToSpeech[]\n intelligence Intelligence[]\n\n // Indexes and maps\n @@map(\"products\")\n}\n\nmodel Secret {\n ref String @id @default(uuid())\n accessKeyId String @map(\"access_key_id\")\n name String\n secret String @map(\"secret_hash\") /// @encrypted\n createdAt DateTime @default(now()) @map(\"created_at\")\n updatedAt DateTime @default(now()) @map(\"updated_at\")\n\n // Indexes and maps\n @@index([accessKeyId], type: Hash)\n @@index([name], type: Hash)\n @@map(\"secrets\")\n}\n\nenum ApplicationType {\n EXTERNAL\n\n // Maps\n @@map(\"application_types\")\n}\n\nenum ProductType {\n TTS\n STT\n ASSISTANT\n\n // Maps\n @@map(\"product_types\")\n}\n\nenum ProductVendor {\n GOOGLE\n MICROSOFT\n AMAZON\n DEEPGRAM\n IBM\n RASA\n OPENAI\n GROQ\n ELEVEN_LABS\n GENERIC\n\n // Maps\n @@map(\"product_vendors\")\n}\n",
|
|
246
|
+
"inlineSchemaHash": "e9602ec6b1e3be0c457fd27bef189dc5f55c0499940aacb75caa53067aeeabcf",
|
|
239
247
|
"copyEngine": true
|
|
240
248
|
}
|
|
241
249
|
config.dirname = '/'
|
|
@@ -209,6 +209,14 @@ const config = {
|
|
|
209
209
|
"fromEnvVar": null,
|
|
210
210
|
"value": "darwin-arm64",
|
|
211
211
|
"native": true
|
|
212
|
+
},
|
|
213
|
+
{
|
|
214
|
+
"fromEnvVar": null,
|
|
215
|
+
"value": "linux-arm64-openssl-1.1.x"
|
|
216
|
+
},
|
|
217
|
+
{
|
|
218
|
+
"fromEnvVar": null,
|
|
219
|
+
"value": "linux-arm64-openssl-3.0.x"
|
|
212
220
|
}
|
|
213
221
|
],
|
|
214
222
|
"previewFeatures": [],
|
|
@@ -235,8 +243,8 @@ const config = {
|
|
|
235
243
|
}
|
|
236
244
|
}
|
|
237
245
|
},
|
|
238
|
-
"inlineSchema": "generator client {\n provider
|
|
239
|
-
"inlineSchemaHash": "
|
|
246
|
+
"inlineSchema": "generator client {\n provider = \"prisma-client-js\"\n output = \"src/generated/@prisma/client\"\n binaryTargets = [\"native\", \"linux-arm64-openssl-1.1.x\", \"linux-arm64-openssl-3.0.x\"]\n}\n\ndatasource db {\n provider = \"postgresql\"\n url = env(\"DATABASE_URL\")\n}\n\nmodel Application {\n ref String @id @default(uuid())\n accessKeyId String @map(\"access_key_id\")\n name String @db.VarChar(255)\n type ApplicationType\n endpoint String @db.VarChar(255)\n createdAt DateTime @default(now()) @map(\"created_at\")\n updatedAt DateTime @default(now()) @map(\"updated_at\")\n\n // Relations\n textToSpeech TextToSpeech?\n speechToText SpeechToText?\n intelligence Intelligence?\n\n // Indexes and maps\n @@index([accessKeyId], type: Hash)\n @@map(\"applications\")\n}\n\nmodel TextToSpeech {\n ref String @id @default(uuid())\n config Json\n\n // Relations\n application Application @relation(fields: [applicationRef], references: [ref], onDelete: Cascade)\n applicationRef String @unique @map(\"application_ref\")\n product Product @relation(fields: [productRef], references: [ref], onDelete: Cascade)\n productRef String @map(\"product_ref\")\n\n // Indexes and maps\n @@index([applicationRef], type: Hash)\n @@index([productRef], type: Hash)\n @@map(\"tts_services\")\n}\n\nmodel SpeechToText {\n ref String @id @default(uuid())\n config Json\n\n // Relations\n application Application @relation(fields: [applicationRef], references: [ref], onDelete: Cascade)\n applicationRef String @unique @map(\"application_ref\")\n product Product @relation(fields: [productRef], references: [ref], onDelete: Cascade)\n productRef String @map(\"product_ref\")\n\n // Indexes and maps\n @@index([applicationRef], type: Hash)\n @@index([productRef], type: Hash)\n @@map(\"stt_services\")\n}\n\nmodel Intelligence {\n ref String @id @default(uuid())\n config Json\n credentials String @map(\"credentials_hash\") /// @encrypted\n\n // Relations\n application Application @relation(fields: [applicationRef], references: [ref], onDelete: Cascade)\n applicationRef String @unique @map(\"application_ref\")\n Product Product @relation(fields: [productRef], references: [ref], onDelete: Cascade)\n productRef String @map(\"product_ref\")\n\n // Indexes and maps\n @@index([applicationRef], type: Hash)\n @@index([productRef], type: Hash)\n @@map(\"intelligence_services\")\n}\n\nmodel Product {\n ref String @id\n name String\n vendor ProductVendor\n type ProductType\n\n // Relations\n speechToText SpeechToText[]\n sextToSpeech TextToSpeech[]\n intelligence Intelligence[]\n\n // Indexes and maps\n @@map(\"products\")\n}\n\nmodel Secret {\n ref String @id @default(uuid())\n accessKeyId String @map(\"access_key_id\")\n name String\n secret String @map(\"secret_hash\") /// @encrypted\n createdAt DateTime @default(now()) @map(\"created_at\")\n updatedAt DateTime @default(now()) @map(\"updated_at\")\n\n // Indexes and maps\n @@index([accessKeyId], type: Hash)\n @@index([name], type: Hash)\n @@map(\"secrets\")\n}\n\nenum ApplicationType {\n EXTERNAL\n\n // Maps\n @@map(\"application_types\")\n}\n\nenum ProductType {\n TTS\n STT\n ASSISTANT\n\n // Maps\n @@map(\"product_types\")\n}\n\nenum ProductVendor {\n GOOGLE\n MICROSOFT\n AMAZON\n DEEPGRAM\n IBM\n RASA\n OPENAI\n GROQ\n ELEVEN_LABS\n GENERIC\n\n // Maps\n @@map(\"product_vendors\")\n}\n",
|
|
247
|
+
"inlineSchemaHash": "e9602ec6b1e3be0c457fd27bef189dc5f55c0499940aacb75caa53067aeeabcf",
|
|
240
248
|
"copyEngine": true
|
|
241
249
|
}
|
|
242
250
|
|
|
@@ -276,6 +284,14 @@ Object.assign(exports, Prisma)
|
|
|
276
284
|
// file annotations for bundling tools to include these files
|
|
277
285
|
path.join(__dirname, "libquery_engine-darwin-arm64.dylib.node");
|
|
278
286
|
path.join(process.cwd(), "mods/apiserver/src/generated/@prisma/client/libquery_engine-darwin-arm64.dylib.node")
|
|
287
|
+
|
|
288
|
+
// file annotations for bundling tools to include these files
|
|
289
|
+
path.join(__dirname, "libquery_engine-linux-arm64-openssl-1.1.x.so.node");
|
|
290
|
+
path.join(process.cwd(), "mods/apiserver/src/generated/@prisma/client/libquery_engine-linux-arm64-openssl-1.1.x.so.node")
|
|
291
|
+
|
|
292
|
+
// file annotations for bundling tools to include these files
|
|
293
|
+
path.join(__dirname, "libquery_engine-linux-arm64-openssl-3.0.x.so.node");
|
|
294
|
+
path.join(process.cwd(), "mods/apiserver/src/generated/@prisma/client/libquery_engine-linux-arm64-openssl-3.0.x.so.node")
|
|
279
295
|
// file annotations for bundling tools to include these files
|
|
280
296
|
path.join(__dirname, "schema.prisma");
|
|
281
297
|
path.join(process.cwd(), "mods/apiserver/src/generated/@prisma/client/schema.prisma")
|
|
Binary file
|
|
Binary file
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
generator client {
|
|
2
|
-
provider
|
|
3
|
-
output
|
|
2
|
+
provider = "prisma-client-js"
|
|
3
|
+
output = "src/generated/@prisma/client"
|
|
4
|
+
binaryTargets = ["native", "linux-arm64-openssl-1.1.x", "linux-arm64-openssl-3.0.x"]
|
|
4
5
|
}
|
|
5
6
|
|
|
6
7
|
datasource db {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fonoster/apiserver",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.11",
|
|
4
4
|
"description": "APIServer for Fonoster",
|
|
5
5
|
"author": "Pedro Sanders <psanders@fonoster.com>",
|
|
6
6
|
"homepage": "https://github.com/fonoster/fonoster#readme",
|
|
@@ -21,13 +21,13 @@
|
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"@deepgram/sdk": "^3.5.1",
|
|
24
|
-
"@fonoster/authz": "^0.8.
|
|
25
|
-
"@fonoster/common": "^0.8.
|
|
26
|
-
"@fonoster/identity": "^0.8.
|
|
27
|
-
"@fonoster/logger": "^0.8.
|
|
28
|
-
"@fonoster/sipnet": "^0.8.
|
|
29
|
-
"@fonoster/streams": "^0.8.
|
|
30
|
-
"@fonoster/types": "^0.8.
|
|
24
|
+
"@fonoster/authz": "^0.8.11",
|
|
25
|
+
"@fonoster/common": "^0.8.11",
|
|
26
|
+
"@fonoster/identity": "^0.8.11",
|
|
27
|
+
"@fonoster/logger": "^0.8.11",
|
|
28
|
+
"@fonoster/sipnet": "^0.8.11",
|
|
29
|
+
"@fonoster/streams": "^0.8.11",
|
|
30
|
+
"@fonoster/types": "^0.8.11",
|
|
31
31
|
"@google-cloud/speech": "^6.6.0",
|
|
32
32
|
"@google-cloud/text-to-speech": "^5.3.0",
|
|
33
33
|
"@grpc/grpc-js": "~1.10.6",
|
|
@@ -73,5 +73,5 @@
|
|
|
73
73
|
"@types/uuid": "^10.0.0",
|
|
74
74
|
"@types/validator": "^13.12.0"
|
|
75
75
|
},
|
|
76
|
-
"gitHead": "
|
|
76
|
+
"gitHead": "f59e0e1568cbc40c885bc73d2a5214cac62ae83b"
|
|
77
77
|
}
|