@supernova-studio/client 1.78.1 → 1.79.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/dist/index.d.mts +136 -3
- package/dist/index.d.ts +136 -3
- package/dist/index.js +10 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +9 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -3839,7 +3839,7 @@ import { z as z99 } from "zod";
|
|
|
3839
3839
|
var CollectionOrigin = z99.object({
|
|
3840
3840
|
id: z99.string(),
|
|
3841
3841
|
parentId: z99.string().optional(),
|
|
3842
|
-
|
|
3842
|
+
sourceIds: z99.string().array(),
|
|
3843
3843
|
collectionKeyMigrated: z99.boolean()
|
|
3844
3844
|
});
|
|
3845
3845
|
var Collection = z99.object({
|
|
@@ -8715,6 +8715,10 @@ var DTOAppBootstrapDataResponse = z270.object({
|
|
|
8715
8715
|
|
|
8716
8716
|
// src/api/dto/collections/token-collection.ts
|
|
8717
8717
|
import { z as z271 } from "zod";
|
|
8718
|
+
var DTOCollectionOrigin = CollectionOrigin.extend({
|
|
8719
|
+
/** @deprecated Use `sourceIds` instead. This field will be removed in the future. */
|
|
8720
|
+
sourceId: z271.string()
|
|
8721
|
+
});
|
|
8718
8722
|
var DTOTokenCollection = z271.object({
|
|
8719
8723
|
id: z271.string(),
|
|
8720
8724
|
persistentId: z271.string(),
|
|
@@ -8725,7 +8729,7 @@ var DTOTokenCollection = z271.object({
|
|
|
8725
8729
|
createdAt: z271.coerce.date(),
|
|
8726
8730
|
updatedAt: z271.coerce.date(),
|
|
8727
8731
|
parentPersistentId: z271.string().optional(),
|
|
8728
|
-
origin:
|
|
8732
|
+
origin: DTOCollectionOrigin.optional()
|
|
8729
8733
|
});
|
|
8730
8734
|
var DTOTokenCollectionsListReponse = z271.object({
|
|
8731
8735
|
collections: DTOTokenCollection.array()
|
|
@@ -10687,7 +10691,8 @@ var DTOThreadAgentResponseTracker = z321.object({
|
|
|
10687
10691
|
});
|
|
10688
10692
|
var DTOThreadMessageAttachmentsCreateInput = z321.object({
|
|
10689
10693
|
iterationId: Id.optional(),
|
|
10690
|
-
fileIds: z321.string().array().optional()
|
|
10694
|
+
fileIds: z321.string().array().optional(),
|
|
10695
|
+
templateId: z321.string().optional()
|
|
10691
10696
|
});
|
|
10692
10697
|
var DTOThreadMessageCreateInput = DTOThreadMessage.pick({
|
|
10693
10698
|
id: true,
|
|
@@ -20691,6 +20696,7 @@ export {
|
|
|
20691
20696
|
DTOCodeComponentResponse,
|
|
20692
20697
|
DTOCodeComponentUpsertResponse,
|
|
20693
20698
|
DTOCodeComponentsCreateInput,
|
|
20699
|
+
DTOCollectionOrigin,
|
|
20694
20700
|
DTOColorTokenInlineData,
|
|
20695
20701
|
DTOCreateDocumentationGroupInput,
|
|
20696
20702
|
DTOCreateDocumentationPageInputV2,
|