@getpaseo/protocol 0.1.97-beta.3 → 0.1.97

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.
@@ -8,22 +8,13 @@ export type FileTransferOpcode = (typeof FileTransferOpcode)[keyof typeof FileTr
8
8
  export declare const FileBeginMetadataSchema: z.ZodObject<{
9
9
  mime: z.ZodString;
10
10
  size: z.ZodNumber;
11
- encoding: z.ZodEnum<["utf-8", "binary"]>;
11
+ encoding: z.ZodEnum<{
12
+ binary: "binary";
13
+ "utf-8": "utf-8";
14
+ }>;
12
15
  modifiedAt: z.ZodString;
13
16
  fileName: z.ZodOptional<z.ZodString>;
14
- }, "strip", z.ZodTypeAny, {
15
- size: number;
16
- modifiedAt: string;
17
- encoding: "binary" | "utf-8";
18
- mime: string;
19
- fileName?: string | undefined;
20
- }, {
21
- size: number;
22
- modifiedAt: string;
23
- encoding: "binary" | "utf-8";
24
- mime: string;
25
- fileName?: string | undefined;
26
- }>;
17
+ }, z.core.$strip>;
27
18
  export interface FileBegin {
28
19
  opcode: typeof FileTransferOpcode.FileBegin;
29
20
  requestId: string;
@@ -3,13 +3,7 @@ import { TerminalStateSchema } from "../messages.js";
3
3
  export declare const TerminalStreamResizeSchema: z.ZodObject<{
4
4
  rows: z.ZodNumber;
5
5
  cols: z.ZodNumber;
6
- }, "strip", z.ZodTypeAny, {
7
- rows: number;
8
- cols: number;
9
- }, {
10
- rows: number;
11
- cols: number;
12
- }>;
6
+ }, z.core.$strip>;
13
7
  export declare const TerminalStreamOpcode: {
14
8
  readonly Output: 1;
15
9
  readonly Input: 2;