@intentic/sandbox-contract 1.15.0 → 1.15.1
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/schemas.d.ts +9 -9
- package/package.json +2 -2
package/dist/schemas.d.ts
CHANGED
|
@@ -440,7 +440,7 @@ export declare const WorkspaceSearchQuerySchema: z.ZodObject<{
|
|
|
440
440
|
ask: "ask";
|
|
441
441
|
}>>;
|
|
442
442
|
includeIgnored: z.ZodOptional<z.ZodCodec<z.ZodString, z.ZodBoolean>>;
|
|
443
|
-
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
443
|
+
limit: z.ZodOptional<z.coerce.ZodCoercedNumber<unknown>>;
|
|
444
444
|
after: z.ZodOptional<z.ZodString>;
|
|
445
445
|
}, z.core.$strip>;
|
|
446
446
|
export declare const WorkspaceSearchTagSchema: z.ZodObject<{
|
|
@@ -834,7 +834,7 @@ export declare const EnrollHostInputSchema: z.ZodObject<{
|
|
|
834
834
|
name: z.ZodString;
|
|
835
835
|
user: z.ZodString;
|
|
836
836
|
address: z.ZodString;
|
|
837
|
-
port: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
837
|
+
port: z.ZodDefault<z.coerce.ZodCoercedNumber<unknown>>;
|
|
838
838
|
via: z.ZodDefault<z.ZodEnum<{
|
|
839
839
|
direct: "direct";
|
|
840
840
|
cloudflared: "cloudflared";
|
|
@@ -904,13 +904,13 @@ export declare const ExtensionConfigSchema: z.ZodObject<{
|
|
|
904
904
|
export declare const SshConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
905
905
|
auth: z.ZodLiteral<"key">;
|
|
906
906
|
host: z.ZodString;
|
|
907
|
-
port: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
907
|
+
port: z.ZodDefault<z.coerce.ZodCoercedNumber<unknown>>;
|
|
908
908
|
user: z.ZodString;
|
|
909
909
|
privateKey: z.ZodString;
|
|
910
910
|
}, z.core.$strip>, z.ZodObject<{
|
|
911
911
|
auth: z.ZodLiteral<"password">;
|
|
912
912
|
host: z.ZodString;
|
|
913
|
-
port: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
913
|
+
port: z.ZodDefault<z.coerce.ZodCoercedNumber<unknown>>;
|
|
914
914
|
user: z.ZodString;
|
|
915
915
|
password: z.ZodString;
|
|
916
916
|
}, z.core.$strip>], "auth">;
|
|
@@ -1017,13 +1017,13 @@ export declare const CapabilitySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1017
1017
|
config: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1018
1018
|
auth: z.ZodLiteral<"key">;
|
|
1019
1019
|
host: z.ZodString;
|
|
1020
|
-
port: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
1020
|
+
port: z.ZodDefault<z.coerce.ZodCoercedNumber<unknown>>;
|
|
1021
1021
|
user: z.ZodString;
|
|
1022
1022
|
privateKey: z.ZodString;
|
|
1023
1023
|
}, z.core.$strip>, z.ZodObject<{
|
|
1024
1024
|
auth: z.ZodLiteral<"password">;
|
|
1025
1025
|
host: z.ZodString;
|
|
1026
|
-
port: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
1026
|
+
port: z.ZodDefault<z.coerce.ZodCoercedNumber<unknown>>;
|
|
1027
1027
|
user: z.ZodString;
|
|
1028
1028
|
password: z.ZodString;
|
|
1029
1029
|
}, z.core.$strip>], "auth">;
|
|
@@ -1824,8 +1824,8 @@ export declare const ActivityEventSchema: z.ZodObject<{
|
|
|
1824
1824
|
export type ActivityEvent = z.infer<typeof ActivityEventSchema>;
|
|
1825
1825
|
export declare const ActivityQuerySchema: z.ZodObject<{
|
|
1826
1826
|
provider: z.ZodOptional<z.ZodString>;
|
|
1827
|
-
limit: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
1828
|
-
before: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
1827
|
+
limit: z.ZodDefault<z.coerce.ZodCoercedNumber<unknown>>;
|
|
1828
|
+
before: z.ZodOptional<z.coerce.ZodCoercedNumber<unknown>>;
|
|
1829
1829
|
}, z.core.$strip>;
|
|
1830
1830
|
export type ActivityQuery = z.infer<typeof ActivityQuerySchema>;
|
|
1831
1831
|
export declare const ActivityListSchema: z.ZodObject<{
|
|
@@ -1922,7 +1922,7 @@ export declare const LogsListSchema: z.ZodObject<{
|
|
|
1922
1922
|
}, z.core.$strip>;
|
|
1923
1923
|
export declare const LogReadQuerySchema: z.ZodObject<{
|
|
1924
1924
|
name: z.ZodString;
|
|
1925
|
-
bytes: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
1925
|
+
bytes: z.ZodDefault<z.coerce.ZodCoercedNumber<unknown>>;
|
|
1926
1926
|
}, z.core.$strip>;
|
|
1927
1927
|
export declare const LogReadSchema: z.ZodObject<{
|
|
1928
1928
|
name: z.ZodString;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@intentic/sandbox-contract",
|
|
3
|
-
"version": "1.15.
|
|
3
|
+
"version": "1.15.1",
|
|
4
4
|
"description": "oRPC wire contract for the intentic sandbox daemon — shared by the daemon and its browser client",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"@orpc/contract": "1.14.3",
|
|
45
45
|
"tslib": "2.8.1",
|
|
46
46
|
"zod": "4.4.3",
|
|
47
|
-
"@intentic/extension-api": "
|
|
47
|
+
"@intentic/extension-api": "1.15.1"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
50
|
"typescript": "5.9.3",
|