@microsoft/agents-activity 0.2.9-g361635b71c → 0.2.14
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/src/activity.d.ts
CHANGED
|
@@ -222,15 +222,15 @@ export declare const activityZodSchema: z.ZodObject<{
|
|
|
222
222
|
thumbnailUrl: z.ZodOptional<z.ZodString>;
|
|
223
223
|
}, "strip", z.ZodTypeAny, {
|
|
224
224
|
contentType: string;
|
|
225
|
+
name?: string | undefined;
|
|
225
226
|
contentUrl?: string | undefined;
|
|
226
227
|
content?: unknown;
|
|
227
|
-
name?: string | undefined;
|
|
228
228
|
thumbnailUrl?: string | undefined;
|
|
229
229
|
}, {
|
|
230
230
|
contentType: string;
|
|
231
|
+
name?: string | undefined;
|
|
231
232
|
contentUrl?: string | undefined;
|
|
232
233
|
content?: unknown;
|
|
233
|
-
name?: string | undefined;
|
|
234
234
|
thumbnailUrl?: string | undefined;
|
|
235
235
|
}>, "many">>;
|
|
236
236
|
entities: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -499,9 +499,9 @@ export declare const activityZodSchema: z.ZodObject<{
|
|
|
499
499
|
} | undefined;
|
|
500
500
|
attachments?: {
|
|
501
501
|
contentType: string;
|
|
502
|
+
name?: string | undefined;
|
|
502
503
|
contentUrl?: string | undefined;
|
|
503
504
|
content?: unknown;
|
|
504
|
-
name?: string | undefined;
|
|
505
505
|
thumbnailUrl?: string | undefined;
|
|
506
506
|
}[] | undefined;
|
|
507
507
|
action?: string | undefined;
|
|
@@ -637,9 +637,9 @@ export declare const activityZodSchema: z.ZodObject<{
|
|
|
637
637
|
} | undefined;
|
|
638
638
|
attachments?: {
|
|
639
639
|
contentType: string;
|
|
640
|
+
name?: string | undefined;
|
|
640
641
|
contentUrl?: string | undefined;
|
|
641
642
|
content?: unknown;
|
|
642
|
-
name?: string | undefined;
|
|
643
643
|
thumbnailUrl?: string | undefined;
|
|
644
644
|
}[] | undefined;
|
|
645
645
|
action?: string | undefined;
|
|
@@ -24,14 +24,14 @@ export declare const attachmentZodSchema: z.ZodObject<{
|
|
|
24
24
|
thumbnailUrl: z.ZodOptional<z.ZodString>;
|
|
25
25
|
}, "strip", z.ZodTypeAny, {
|
|
26
26
|
contentType: string;
|
|
27
|
+
name?: string | undefined;
|
|
27
28
|
contentUrl?: string | undefined;
|
|
28
29
|
content?: unknown;
|
|
29
|
-
name?: string | undefined;
|
|
30
30
|
thumbnailUrl?: string | undefined;
|
|
31
31
|
}, {
|
|
32
32
|
contentType: string;
|
|
33
|
+
name?: string | undefined;
|
|
33
34
|
contentUrl?: string | undefined;
|
|
34
35
|
content?: unknown;
|
|
35
|
-
name?: string | undefined;
|
|
36
36
|
thumbnailUrl?: string | undefined;
|
|
37
37
|
}>;
|
package/package.json
CHANGED