@fonoster/apiserver 0.8.11 → 0.8.12

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.
@@ -209,10 +209,6 @@ const config = {
209
209
  "value": "darwin-arm64",
210
210
  "native": true
211
211
  },
212
- {
213
- "fromEnvVar": null,
214
- "value": "linux-arm64-openssl-1.1.x"
215
- },
216
212
  {
217
213
  "fromEnvVar": null,
218
214
  "value": "linux-arm64-openssl-3.0.x"
@@ -242,8 +238,8 @@ const config = {
242
238
  }
243
239
  }
244
240
  },
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",
241
+ "inlineSchema": "generator client {\n provider = \"prisma-client-js\"\n output = \"src/generated/@prisma/client\"\n binaryTargets = [\"native\", \"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",
242
+ "inlineSchemaHash": "690b9f502d1044e61212a3e0383a3c072349b9d21ae2a8d5ba3ebfc0aa3f48ae",
247
243
  "copyEngine": true
248
244
  }
249
245
  config.dirname = '/'
@@ -210,10 +210,6 @@ const config = {
210
210
  "value": "darwin-arm64",
211
211
  "native": true
212
212
  },
213
- {
214
- "fromEnvVar": null,
215
- "value": "linux-arm64-openssl-1.1.x"
216
- },
217
213
  {
218
214
  "fromEnvVar": null,
219
215
  "value": "linux-arm64-openssl-3.0.x"
@@ -243,8 +239,8 @@ const config = {
243
239
  }
244
240
  }
245
241
  },
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",
242
+ "inlineSchema": "generator client {\n provider = \"prisma-client-js\"\n output = \"src/generated/@prisma/client\"\n binaryTargets = [\"native\", \"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",
243
+ "inlineSchemaHash": "690b9f502d1044e61212a3e0383a3c072349b9d21ae2a8d5ba3ebfc0aa3f48ae",
248
244
  "copyEngine": true
249
245
  }
250
246
 
@@ -285,10 +281,6 @@ Object.assign(exports, Prisma)
285
281
  path.join(__dirname, "libquery_engine-darwin-arm64.dylib.node");
286
282
  path.join(process.cwd(), "mods/apiserver/src/generated/@prisma/client/libquery_engine-darwin-arm64.dylib.node")
287
283
 
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
284
  // file annotations for bundling tools to include these files
293
285
  path.join(__dirname, "libquery_engine-linux-arm64-openssl-3.0.x.so.node");
294
286
  path.join(process.cwd(), "mods/apiserver/src/generated/@prisma/client/libquery_engine-linux-arm64-openssl-3.0.x.so.node")
@@ -1,5 +1,5 @@
1
1
  {
2
- "name": "prisma-client-baf1191ce637f8f4625e1b83e959d91504e0a47dcff005770d65a4c732042996",
2
+ "name": "prisma-client-66c0b3ebbd1639dfb551608b47e9a7a67f0900e9a1e792a34a873106ab66a933",
3
3
  "main": "index.js",
4
4
  "types": "index.d.ts",
5
5
  "browser": "index-browser.js",
@@ -1,7 +1,7 @@
1
1
  generator client {
2
2
  provider = "prisma-client-js"
3
3
  output = "src/generated/@prisma/client"
4
- binaryTargets = ["native", "linux-arm64-openssl-1.1.x", "linux-arm64-openssl-3.0.x"]
4
+ binaryTargets = ["native", "linux-arm64-openssl-3.0.x"]
5
5
  }
6
6
 
7
7
  datasource db {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fonoster/apiserver",
3
- "version": "0.8.11",
3
+ "version": "0.8.12",
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.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",
24
+ "@fonoster/authz": "^0.8.12",
25
+ "@fonoster/common": "^0.8.12",
26
+ "@fonoster/identity": "^0.8.12",
27
+ "@fonoster/logger": "^0.8.12",
28
+ "@fonoster/sipnet": "^0.8.12",
29
+ "@fonoster/streams": "^0.8.12",
30
+ "@fonoster/types": "^0.8.12",
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": "f59e0e1568cbc40c885bc73d2a5214cac62ae83b"
76
+ "gitHead": "25e27f1b3acf2ae1a945248b79a7d32e12c9e83c"
77
77
  }