@slates/proto 1.0.0-rc.14 → 1.0.0-rc.15
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.cjs +1 -0
- package/dist/index.d.cts +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.module.js +1 -0
- package/package.json +1 -1
- package/src/messages/action.ts +1 -0
package/dist/index.cjs
CHANGED
|
@@ -354,6 +354,7 @@ var slatesMessageActionInvokeResponse = import_zod6.default.object({
|
|
|
354
354
|
attachments: import_zod6.default.array(
|
|
355
355
|
import_zod6.default.object({
|
|
356
356
|
mimeType: import_zod6.default.string().optional(),
|
|
357
|
+
attachmentHash: import_zod6.default.string().optional(),
|
|
357
358
|
content: import_zod6.default.union([
|
|
358
359
|
import_zod6.default.object({
|
|
359
360
|
type: import_zod6.default.literal("url"),
|
package/dist/index.d.cts
CHANGED
|
@@ -260,6 +260,7 @@ declare let slatesMessageActionInvokeResponse: z.ZodObject<{
|
|
|
260
260
|
message: z.ZodOptional<z.ZodString>;
|
|
261
261
|
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
262
262
|
mimeType: z.ZodOptional<z.ZodString>;
|
|
263
|
+
attachmentHash: z.ZodOptional<z.ZodString>;
|
|
263
264
|
content: z.ZodUnion<readonly [z.ZodObject<{
|
|
264
265
|
type: z.ZodLiteral<"url">;
|
|
265
266
|
url: z.ZodString;
|
|
@@ -782,6 +783,7 @@ declare let slatesActionResponsesByMethod: {
|
|
|
782
783
|
message: z.ZodOptional<z.ZodString>;
|
|
783
784
|
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
784
785
|
mimeType: z.ZodOptional<z.ZodString>;
|
|
786
|
+
attachmentHash: z.ZodOptional<z.ZodString>;
|
|
785
787
|
content: z.ZodUnion<readonly [z.ZodObject<{
|
|
786
788
|
type: z.ZodLiteral<"url">;
|
|
787
789
|
url: z.ZodString;
|
|
@@ -3269,6 +3271,7 @@ declare let slatesResponsesByMethod: {
|
|
|
3269
3271
|
message: z$1.ZodOptional<z$1.ZodString>;
|
|
3270
3272
|
attachments: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
|
|
3271
3273
|
mimeType: z$1.ZodOptional<z$1.ZodString>;
|
|
3274
|
+
attachmentHash: z$1.ZodOptional<z$1.ZodString>;
|
|
3272
3275
|
content: z$1.ZodUnion<readonly [z$1.ZodObject<{
|
|
3273
3276
|
type: z$1.ZodLiteral<"url">;
|
|
3274
3277
|
url: z$1.ZodString;
|
package/dist/index.d.ts
CHANGED
|
@@ -260,6 +260,7 @@ declare let slatesMessageActionInvokeResponse: z.ZodObject<{
|
|
|
260
260
|
message: z.ZodOptional<z.ZodString>;
|
|
261
261
|
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
262
262
|
mimeType: z.ZodOptional<z.ZodString>;
|
|
263
|
+
attachmentHash: z.ZodOptional<z.ZodString>;
|
|
263
264
|
content: z.ZodUnion<readonly [z.ZodObject<{
|
|
264
265
|
type: z.ZodLiteral<"url">;
|
|
265
266
|
url: z.ZodString;
|
|
@@ -782,6 +783,7 @@ declare let slatesActionResponsesByMethod: {
|
|
|
782
783
|
message: z.ZodOptional<z.ZodString>;
|
|
783
784
|
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
784
785
|
mimeType: z.ZodOptional<z.ZodString>;
|
|
786
|
+
attachmentHash: z.ZodOptional<z.ZodString>;
|
|
785
787
|
content: z.ZodUnion<readonly [z.ZodObject<{
|
|
786
788
|
type: z.ZodLiteral<"url">;
|
|
787
789
|
url: z.ZodString;
|
|
@@ -3269,6 +3271,7 @@ declare let slatesResponsesByMethod: {
|
|
|
3269
3271
|
message: z$1.ZodOptional<z$1.ZodString>;
|
|
3270
3272
|
attachments: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
|
|
3271
3273
|
mimeType: z$1.ZodOptional<z$1.ZodString>;
|
|
3274
|
+
attachmentHash: z$1.ZodOptional<z$1.ZodString>;
|
|
3272
3275
|
content: z$1.ZodUnion<readonly [z$1.ZodObject<{
|
|
3273
3276
|
type: z$1.ZodLiteral<"url">;
|
|
3274
3277
|
url: z$1.ZodString;
|
package/dist/index.module.js
CHANGED
package/package.json
CHANGED
package/src/messages/action.ts
CHANGED