@fonoster/apiserver 0.8.10 → 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.
@@ -212,6 +212,10 @@ const config = {
212
212
  {
213
213
  "fromEnvVar": null,
214
214
  "value": "linux-arm64-openssl-1.1.x"
215
+ },
216
+ {
217
+ "fromEnvVar": null,
218
+ "value": "linux-arm64-openssl-3.0.x"
215
219
  }
216
220
  ],
217
221
  "previewFeatures": [],
@@ -238,8 +242,8 @@ const config = {
238
242
  }
239
243
  }
240
244
  },
241
- "inlineSchema": "generator client {\n provider = \"prisma-client-js\"\n output = \"src/generated/@prisma/client\"\n binaryTargets = [\"native\", \"linux-arm64-openssl-1.1.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": "aa906d1bec37a0c2be5bac3158d87313e95ba84cdd4ca585565a08600d6e43be",
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",
243
247
  "copyEngine": true
244
248
  }
245
249
  config.dirname = '/'
@@ -213,6 +213,10 @@ const config = {
213
213
  {
214
214
  "fromEnvVar": null,
215
215
  "value": "linux-arm64-openssl-1.1.x"
216
+ },
217
+ {
218
+ "fromEnvVar": null,
219
+ "value": "linux-arm64-openssl-3.0.x"
216
220
  }
217
221
  ],
218
222
  "previewFeatures": [],
@@ -239,8 +243,8 @@ const config = {
239
243
  }
240
244
  }
241
245
  },
242
- "inlineSchema": "generator client {\n provider = \"prisma-client-js\"\n output = \"src/generated/@prisma/client\"\n binaryTargets = [\"native\", \"linux-arm64-openssl-1.1.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": "aa906d1bec37a0c2be5bac3158d87313e95ba84cdd4ca585565a08600d6e43be",
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",
244
248
  "copyEngine": true
245
249
  }
246
250
 
@@ -284,6 +288,10 @@ path.join(process.cwd(), "mods/apiserver/src/generated/@prisma/client/libquery_e
284
288
  // file annotations for bundling tools to include these files
285
289
  path.join(__dirname, "libquery_engine-linux-arm64-openssl-1.1.x.so.node");
286
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")
287
295
  // file annotations for bundling tools to include these files
288
296
  path.join(__dirname, "schema.prisma");
289
297
  path.join(process.cwd(), "mods/apiserver/src/generated/@prisma/client/schema.prisma")
@@ -1,5 +1,5 @@
1
1
  {
2
- "name": "prisma-client-7d66c306003886503b94d23ba3c742e6c0a9795700c0ed7a1a3c236b53cc1a93",
2
+ "name": "prisma-client-baf1191ce637f8f4625e1b83e959d91504e0a47dcff005770d65a4c732042996",
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"]
4
+ binaryTargets = ["native", "linux-arm64-openssl-1.1.x", "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.10",
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.10",
25
- "@fonoster/common": "^0.8.9",
26
- "@fonoster/identity": "^0.8.10",
27
- "@fonoster/logger": "^0.8.9",
28
- "@fonoster/sipnet": "^0.8.10",
29
- "@fonoster/streams": "^0.8.9",
30
- "@fonoster/types": "^0.8.9",
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": "fd1c7a41b5b504bf458656074e65eb9d82ef79bf"
76
+ "gitHead": "f59e0e1568cbc40c885bc73d2a5214cac62ae83b"
77
77
  }