@dbx-tools/shared-mastra 0.6.106 → 0.6.108
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/lib/src/wire.d.ts +10 -10
- package/package.json +4 -4
package/lib/src/wire.d.ts
CHANGED
|
@@ -565,11 +565,6 @@ export declare const GenieWriterEventSchema: z.ZodUnion<readonly [z.ZodDiscrimin
|
|
|
565
565
|
suggested_questions: z.ZodOptional<z.ZodObject<{
|
|
566
566
|
questions: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
567
567
|
}, z.core.$strip>>;
|
|
568
|
-
text: z.ZodOptional<z.ZodObject<{
|
|
569
|
-
content: z.ZodOptional<z.ZodString>;
|
|
570
|
-
id: z.ZodOptional<z.ZodString>;
|
|
571
|
-
purpose: z.ZodOptional<z.ZodLiteral<"FOLLOW_UP_QUESTION">>;
|
|
572
|
-
}, z.core.$strip>>;
|
|
573
568
|
query: z.ZodOptional<z.ZodObject<{
|
|
574
569
|
description: z.ZodOptional<z.ZodString>;
|
|
575
570
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -591,6 +586,11 @@ export declare const GenieWriterEventSchema: z.ZodUnion<readonly [z.ZodDiscrimin
|
|
|
591
586
|
content: z.ZodString;
|
|
592
587
|
}, z.core.$strip>>>;
|
|
593
588
|
}, z.core.$strip>>;
|
|
589
|
+
text: z.ZodOptional<z.ZodObject<{
|
|
590
|
+
content: z.ZodOptional<z.ZodString>;
|
|
591
|
+
id: z.ZodOptional<z.ZodString>;
|
|
592
|
+
purpose: z.ZodOptional<z.ZodCustom<genieModel.GenieTextAttachmentPurpose, genieModel.GenieTextAttachmentPurpose>>;
|
|
593
|
+
}, z.core.$strip>>;
|
|
594
594
|
attachment_type: z.ZodOptional<z.ZodCustom<genieModel.AttachmentType, genieModel.AttachmentType>>;
|
|
595
595
|
}, z.core.$strip>>>;
|
|
596
596
|
auto_regenerate_count: z.ZodOptional<z.ZodNumber>;
|
|
@@ -695,11 +695,6 @@ export declare const GenieWriterEventSchema: z.ZodUnion<readonly [z.ZodDiscrimin
|
|
|
695
695
|
suggested_questions: z.ZodOptional<z.ZodObject<{
|
|
696
696
|
questions: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
697
697
|
}, z.core.$strip>>;
|
|
698
|
-
text: z.ZodOptional<z.ZodObject<{
|
|
699
|
-
content: z.ZodOptional<z.ZodString>;
|
|
700
|
-
id: z.ZodOptional<z.ZodString>;
|
|
701
|
-
purpose: z.ZodOptional<z.ZodLiteral<"FOLLOW_UP_QUESTION">>;
|
|
702
|
-
}, z.core.$strip>>;
|
|
703
698
|
query: z.ZodOptional<z.ZodObject<{
|
|
704
699
|
description: z.ZodOptional<z.ZodString>;
|
|
705
700
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -721,6 +716,11 @@ export declare const GenieWriterEventSchema: z.ZodUnion<readonly [z.ZodDiscrimin
|
|
|
721
716
|
content: z.ZodString;
|
|
722
717
|
}, z.core.$strip>>>;
|
|
723
718
|
}, z.core.$strip>>;
|
|
719
|
+
text: z.ZodOptional<z.ZodObject<{
|
|
720
|
+
content: z.ZodOptional<z.ZodString>;
|
|
721
|
+
id: z.ZodOptional<z.ZodString>;
|
|
722
|
+
purpose: z.ZodOptional<z.ZodCustom<genieModel.GenieTextAttachmentPurpose, genieModel.GenieTextAttachmentPurpose>>;
|
|
723
|
+
}, z.core.$strip>>;
|
|
724
724
|
attachment_type: z.ZodOptional<z.ZodCustom<genieModel.AttachmentType, genieModel.AttachmentType>>;
|
|
725
725
|
}, z.core.$strip>>>;
|
|
726
726
|
auto_regenerate_count: z.ZodOptional<z.ZodNumber>;
|
package/package.json
CHANGED
|
@@ -23,9 +23,9 @@
|
|
|
23
23
|
"typescript": "^5.9.3"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@dbx-tools/shared-core": "0.6.
|
|
27
|
-
"@dbx-tools/shared-genie": "0.6.
|
|
28
|
-
"@dbx-tools/shared-model": "0.6.
|
|
26
|
+
"@dbx-tools/shared-core": "0.6.108",
|
|
27
|
+
"@dbx-tools/shared-genie": "0.6.108",
|
|
28
|
+
"@dbx-tools/shared-model": "0.6.108",
|
|
29
29
|
"zod": "4.3.6"
|
|
30
30
|
},
|
|
31
31
|
"main": "./lib/index.js",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"./package.json": "./package.json"
|
|
43
43
|
}
|
|
44
44
|
},
|
|
45
|
-
"version": "0.6.
|
|
45
|
+
"version": "0.6.108",
|
|
46
46
|
"types": "./lib/index.d.ts",
|
|
47
47
|
"type": "module",
|
|
48
48
|
"exports": {
|