@swiss-ai-hub/web 0.315.1 → 0.316.0
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/package.json +1 -1
- package/sdk/client/index.ts +11 -0
- package/sdk/client/schemas.gen.ts +842 -3
- package/sdk/client/types.gen.ts +593 -2
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"license": "AGPL-3.0-or-later",
|
|
4
4
|
"author": "bbv Software Services AG (https://www.bbv.ch)",
|
|
5
5
|
"type": "module",
|
|
6
|
-
"version": "0.
|
|
6
|
+
"version": "0.316.0",
|
|
7
7
|
"description": "Swiss AI Hub - Admin & Management UI (Nuxt 3 layer)",
|
|
8
8
|
"main": "./nuxt.config.ts",
|
|
9
9
|
"repository": {
|
package/sdk/client/index.ts
CHANGED
|
@@ -375,6 +375,7 @@ export {
|
|
|
375
375
|
type DocumentUploadResponse,
|
|
376
376
|
type DocumentUploadValidationRequest,
|
|
377
377
|
type DocumentUploadValidationResponse,
|
|
378
|
+
type DraftedReplyRef,
|
|
378
379
|
type EdgeData,
|
|
379
380
|
type Embedding,
|
|
380
381
|
type EmbeddingEvent,
|
|
@@ -737,6 +738,13 @@ export {
|
|
|
737
738
|
type LocaleResponse,
|
|
738
739
|
type LocaleString,
|
|
739
740
|
type Logprob,
|
|
741
|
+
type MailAttachmentRef,
|
|
742
|
+
type MailBatchDraftedEvent,
|
|
743
|
+
type MailBatchDraftedEventWritable,
|
|
744
|
+
type MailFetchedEvent,
|
|
745
|
+
type MailFetchedEventWritable,
|
|
746
|
+
type MailMovedEvent,
|
|
747
|
+
type MailMovedEventWritable,
|
|
740
748
|
type MemoriesResponse,
|
|
741
749
|
type Memory,
|
|
742
750
|
type MemoryDto,
|
|
@@ -967,6 +975,9 @@ export {
|
|
|
967
975
|
type TranslateTextResponses,
|
|
968
976
|
type TranslationRequest,
|
|
969
977
|
type TranslationResponse,
|
|
978
|
+
type UnreadMailListedEvent,
|
|
979
|
+
type UnreadMailListedEventWritable,
|
|
980
|
+
type UnreadMailSummary,
|
|
970
981
|
type UpdateAgentInstanceData,
|
|
971
982
|
type UpdateAgentInstanceDto,
|
|
972
983
|
type UpdateAgentInstanceError,
|