@intentic/sandbox-contract 0.0.0 → 1.0.2
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/contracts/activity.contract.d.ts +51 -0
- package/dist/contracts/activity.contract.d.ts.map +1 -0
- package/dist/contracts/activity.contract.js +7 -0
- package/dist/contracts/activity.contract.js.map +1 -0
- package/dist/contracts/agent.contract.d.ts +102 -0
- package/dist/contracts/agent.contract.d.ts.map +1 -1
- package/dist/contracts/automations.contract.d.ts +94 -0
- package/dist/contracts/automations.contract.d.ts.map +1 -0
- package/dist/contracts/automations.contract.js +11 -0
- package/dist/contracts/automations.contract.js.map +1 -0
- package/dist/contracts/capabilities.contract.d.ts +234 -0
- package/dist/contracts/capabilities.contract.d.ts.map +1 -0
- package/dist/contracts/capabilities.contract.js +12 -0
- package/dist/contracts/capabilities.contract.js.map +1 -0
- package/dist/contracts/claude.contract.js +3 -3
- package/dist/contracts/claude.contract.js.map +1 -1
- package/dist/contracts/codex.contract.d.ts +23 -0
- package/dist/contracts/codex.contract.d.ts.map +1 -0
- package/dist/contracts/codex.contract.js +9 -0
- package/dist/contracts/codex.contract.js.map +1 -0
- package/dist/contracts/drafts.contract.d.ts +51 -0
- package/dist/contracts/drafts.contract.d.ts.map +1 -0
- package/dist/contracts/drafts.contract.js +8 -0
- package/dist/contracts/drafts.contract.js.map +1 -0
- package/dist/contracts/grok.contract.d.ts +21 -0
- package/dist/contracts/grok.contract.d.ts.map +1 -0
- package/dist/contracts/grok.contract.js +9 -0
- package/dist/contracts/grok.contract.js.map +1 -0
- package/dist/contracts/history.contract.d.ts +52 -0
- package/dist/contracts/history.contract.d.ts.map +1 -0
- package/dist/contracts/history.contract.js +10 -0
- package/dist/contracts/history.contract.js.map +1 -0
- package/dist/contracts/intentic.contract.d.ts +3 -0
- package/dist/contracts/intentic.contract.d.ts.map +1 -1
- package/dist/contracts/intentic.contract.js +2 -1
- package/dist/contracts/intentic.contract.js.map +1 -1
- package/dist/contracts/inventory.contract.d.ts +48 -3
- package/dist/contracts/inventory.contract.d.ts.map +1 -1
- package/dist/contracts/inventory.contract.js +1 -2
- package/dist/contracts/inventory.contract.js.map +1 -1
- package/dist/contracts/logs.contract.d.ts +19 -0
- package/dist/contracts/logs.contract.d.ts.map +1 -0
- package/dist/contracts/logs.contract.js +7 -0
- package/dist/contracts/logs.contract.js.map +1 -0
- package/dist/contracts/panels.contract.d.ts +33 -0
- package/dist/contracts/panels.contract.d.ts.map +1 -0
- package/dist/contracts/panels.contract.js +8 -0
- package/dist/contracts/panels.contract.js.map +1 -0
- package/dist/contracts/secrets.contract.d.ts +48 -0
- package/dist/contracts/secrets.contract.d.ts.map +1 -0
- package/dist/contracts/secrets.contract.js +10 -0
- package/dist/contracts/secrets.contract.js.map +1 -0
- package/dist/contracts/sessions.contract.d.ts +18 -15
- package/dist/contracts/sessions.contract.d.ts.map +1 -1
- package/dist/contracts/sessions.contract.js +2 -1
- package/dist/contracts/sessions.contract.js.map +1 -1
- package/dist/contracts/settings.contract.d.ts +11 -0
- package/dist/contracts/settings.contract.d.ts.map +1 -0
- package/dist/contracts/settings.contract.js +7 -0
- package/dist/contracts/settings.contract.js.map +1 -0
- package/dist/contracts/system.contract.d.ts +79 -21
- package/dist/contracts/system.contract.d.ts.map +1 -1
- package/dist/contracts/system.contract.js +11 -5
- package/dist/contracts/system.contract.js.map +1 -1
- package/dist/contracts/workspace.contract.d.ts +110 -12
- package/dist/contracts/workspace.contract.d.ts.map +1 -1
- package/dist/contracts/workspace.contract.js +15 -5
- package/dist/contracts/workspace.contract.js.map +1 -1
- package/dist/events.d.ts +142 -0
- package/dist/events.d.ts.map +1 -1
- package/dist/events.js +54 -3
- package/dist/events.js.map +1 -1
- package/dist/index.d.ts +972 -28
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +33 -0
- package/dist/index.js.map +1 -1
- package/dist/schemas.d.ts +1247 -33
- package/dist/schemas.d.ts.map +1 -1
- package/dist/schemas.js +426 -16
- package/dist/schemas.js.map +1 -1
- package/dist/tunnel-ids.d.ts +2 -0
- package/dist/tunnel-ids.d.ts.map +1 -0
- package/dist/tunnel-ids.js +3 -0
- package/dist/tunnel-ids.js.map +1 -0
- package/package.json +13 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,17 +1,84 @@
|
|
|
1
|
+
export { activityContract } from "./contracts/activity.contract.js";
|
|
1
2
|
export { agentContract } from "./contracts/agent.contract.js";
|
|
3
|
+
export { automationsContract } from "./contracts/automations.contract.js";
|
|
4
|
+
export { capabilitiesContract } from "./contracts/capabilities.contract.js";
|
|
2
5
|
export { claudeContract } from "./contracts/claude.contract.js";
|
|
6
|
+
export { codexContract } from "./contracts/codex.contract.js";
|
|
7
|
+
export { draftsContract } from "./contracts/drafts.contract.js";
|
|
3
8
|
export { gitContract } from "./contracts/git.contract.js";
|
|
9
|
+
export { grokContract } from "./contracts/grok.contract.js";
|
|
10
|
+
export { historyContract } from "./contracts/history.contract.js";
|
|
4
11
|
export { intenticContract } from "./contracts/intentic.contract.js";
|
|
5
12
|
export { inventoryContract } from "./contracts/inventory.contract.js";
|
|
13
|
+
export { logsContract } from "./contracts/logs.contract.js";
|
|
14
|
+
export { panelsContract } from "./contracts/panels.contract.js";
|
|
15
|
+
export { secretsContract } from "./contracts/secrets.contract.js";
|
|
6
16
|
export { sessionsContract } from "./contracts/sessions.contract.js";
|
|
17
|
+
export { settingsContract } from "./contracts/settings.contract.js";
|
|
7
18
|
export { systemContract } from "./contracts/system.contract.js";
|
|
8
19
|
export { workspaceContract } from "./contracts/workspace.contract.js";
|
|
9
20
|
export * from "./events.js";
|
|
10
21
|
export * from "./schemas.js";
|
|
11
22
|
export declare const sandboxContract: {
|
|
23
|
+
activity: {
|
|
24
|
+
list: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
25
|
+
provider: import("zod").ZodOptional<import("zod").ZodString>;
|
|
26
|
+
limit: import("zod").ZodDefault<import("zod").ZodCoercedNumber<unknown>>;
|
|
27
|
+
before: import("zod").ZodOptional<import("zod").ZodCoercedNumber<unknown>>;
|
|
28
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
29
|
+
events: import("zod").ZodArray<import("zod").ZodObject<{
|
|
30
|
+
id: import("zod").ZodString;
|
|
31
|
+
at: import("zod").ZodNumber;
|
|
32
|
+
provider: import("zod").ZodOptional<import("zod").ZodString>;
|
|
33
|
+
direction: import("zod").ZodEnum<{
|
|
34
|
+
out: "out";
|
|
35
|
+
in: "in";
|
|
36
|
+
system: "system";
|
|
37
|
+
}>;
|
|
38
|
+
type: import("zod").ZodString;
|
|
39
|
+
channelId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
40
|
+
author: import("zod").ZodOptional<import("zod").ZodString>;
|
|
41
|
+
content: import("zod").ZodOptional<import("zod").ZodString>;
|
|
42
|
+
method: import("zod").ZodOptional<import("zod").ZodString>;
|
|
43
|
+
endpoint: import("zod").ZodOptional<import("zod").ZodString>;
|
|
44
|
+
sessionId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
45
|
+
automationIds: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
46
|
+
outcome: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
47
|
+
error: "error";
|
|
48
|
+
ok: "ok";
|
|
49
|
+
}>>;
|
|
50
|
+
error: import("zod").ZodOptional<import("zod").ZodString>;
|
|
51
|
+
extra: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
52
|
+
}, import("zod/v4/core").$strip>>;
|
|
53
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
54
|
+
status: import("@orpc/contract").ContractProcedureBuilderWithOutput<import("@orpc/contract").Schema<unknown, unknown>, import("zod").ZodObject<{
|
|
55
|
+
connections: import("zod").ZodArray<import("zod").ZodObject<{
|
|
56
|
+
capabilityId: import("zod").ZodString;
|
|
57
|
+
provider: import("zod").ZodString;
|
|
58
|
+
gateway: import("zod").ZodEnum<{
|
|
59
|
+
ready: "ready";
|
|
60
|
+
connecting: "connecting";
|
|
61
|
+
disconnected: "disconnected";
|
|
62
|
+
}>;
|
|
63
|
+
lastError: import("zod").ZodOptional<import("zod").ZodString>;
|
|
64
|
+
}, import("zod/v4/core").$strip>>;
|
|
65
|
+
voice: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
66
|
+
channelId: import("zod").ZodString;
|
|
67
|
+
channelName: import("zod").ZodString;
|
|
68
|
+
startedAt: import("zod").ZodNumber;
|
|
69
|
+
participants: import("zod").ZodArray<import("zod").ZodString>;
|
|
70
|
+
}, import("zod/v4/core").$strip>>;
|
|
71
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
72
|
+
};
|
|
12
73
|
agent: {
|
|
13
74
|
run: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
14
75
|
prompt: import("zod").ZodString;
|
|
76
|
+
attachments: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
77
|
+
agent: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
78
|
+
claude: "claude";
|
|
79
|
+
codex: "codex";
|
|
80
|
+
grok: "grok";
|
|
81
|
+
}>>;
|
|
15
82
|
sessionId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
16
83
|
model: import("zod").ZodOptional<import("zod").ZodString>;
|
|
17
84
|
plan: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
@@ -20,13 +87,60 @@ export declare const sandboxContract: {
|
|
|
20
87
|
}, import("zod/v4/core").$strip>, import("@orpc/contract").Schema<AsyncIteratorObject<{
|
|
21
88
|
kind: "session";
|
|
22
89
|
sessionId: string;
|
|
90
|
+
} | {
|
|
91
|
+
kind: "init";
|
|
92
|
+
model: string;
|
|
23
93
|
} | {
|
|
24
94
|
kind: "delta";
|
|
25
95
|
text: string;
|
|
96
|
+
parentToolUseId?: string | undefined;
|
|
97
|
+
} | {
|
|
98
|
+
kind: "thinking";
|
|
99
|
+
text: string;
|
|
100
|
+
parentToolUseId?: string | undefined;
|
|
26
101
|
} | {
|
|
27
102
|
kind: "tool";
|
|
28
103
|
name: string;
|
|
104
|
+
id?: string | undefined;
|
|
29
105
|
target?: string | undefined;
|
|
106
|
+
parentToolUseId?: string | undefined;
|
|
107
|
+
} | {
|
|
108
|
+
kind: "tool_result";
|
|
109
|
+
output: string;
|
|
110
|
+
id?: string | undefined;
|
|
111
|
+
isError?: boolean | undefined;
|
|
112
|
+
} | {
|
|
113
|
+
kind: "terminal";
|
|
114
|
+
session: string;
|
|
115
|
+
} | {
|
|
116
|
+
kind: "todos";
|
|
117
|
+
items: {
|
|
118
|
+
content: string;
|
|
119
|
+
status: "pending" | "in_progress" | "completed";
|
|
120
|
+
activeForm?: string | undefined;
|
|
121
|
+
}[];
|
|
122
|
+
} | {
|
|
123
|
+
kind: "usage";
|
|
124
|
+
costUsd?: number | undefined;
|
|
125
|
+
inputTokens?: number | undefined;
|
|
126
|
+
outputTokens?: number | undefined;
|
|
127
|
+
durationMs?: number | undefined;
|
|
128
|
+
numTurns?: number | undefined;
|
|
129
|
+
} | {
|
|
130
|
+
status: "allowed" | "allowed_warning" | "rejected";
|
|
131
|
+
kind: "rate_limit_info";
|
|
132
|
+
resetsAt?: number | undefined;
|
|
133
|
+
rateLimitType?: string | undefined;
|
|
134
|
+
utilization?: number | undefined;
|
|
135
|
+
} | {
|
|
136
|
+
tokens: number;
|
|
137
|
+
contextWindow: number;
|
|
138
|
+
kind: "context_usage";
|
|
139
|
+
} | {
|
|
140
|
+
kind: "compact";
|
|
141
|
+
trigger: string;
|
|
142
|
+
preTokens?: number | undefined;
|
|
143
|
+
postTokens?: number | undefined;
|
|
30
144
|
} | {
|
|
31
145
|
kind: "plan";
|
|
32
146
|
decisionId: string;
|
|
@@ -47,18 +161,66 @@ export declare const sandboxContract: {
|
|
|
47
161
|
} | {
|
|
48
162
|
kind: "error";
|
|
49
163
|
message: string;
|
|
164
|
+
code?: "session-not-found" | "rate_limit" | undefined;
|
|
50
165
|
} | {
|
|
51
166
|
kind: "done";
|
|
52
167
|
}, unknown, void>, import("@orpc/contract").AsyncIteratorClass<{
|
|
53
168
|
kind: "session";
|
|
54
169
|
sessionId: string;
|
|
170
|
+
} | {
|
|
171
|
+
kind: "init";
|
|
172
|
+
model: string;
|
|
55
173
|
} | {
|
|
56
174
|
kind: "delta";
|
|
57
175
|
text: string;
|
|
176
|
+
parentToolUseId?: string | undefined;
|
|
177
|
+
} | {
|
|
178
|
+
kind: "thinking";
|
|
179
|
+
text: string;
|
|
180
|
+
parentToolUseId?: string | undefined;
|
|
58
181
|
} | {
|
|
59
182
|
kind: "tool";
|
|
60
183
|
name: string;
|
|
184
|
+
id?: string | undefined;
|
|
61
185
|
target?: string | undefined;
|
|
186
|
+
parentToolUseId?: string | undefined;
|
|
187
|
+
} | {
|
|
188
|
+
kind: "tool_result";
|
|
189
|
+
output: string;
|
|
190
|
+
id?: string | undefined;
|
|
191
|
+
isError?: boolean | undefined;
|
|
192
|
+
} | {
|
|
193
|
+
kind: "terminal";
|
|
194
|
+
session: string;
|
|
195
|
+
} | {
|
|
196
|
+
kind: "todos";
|
|
197
|
+
items: {
|
|
198
|
+
content: string;
|
|
199
|
+
status: "pending" | "in_progress" | "completed";
|
|
200
|
+
activeForm?: string | undefined;
|
|
201
|
+
}[];
|
|
202
|
+
} | {
|
|
203
|
+
kind: "usage";
|
|
204
|
+
costUsd?: number | undefined;
|
|
205
|
+
inputTokens?: number | undefined;
|
|
206
|
+
outputTokens?: number | undefined;
|
|
207
|
+
durationMs?: number | undefined;
|
|
208
|
+
numTurns?: number | undefined;
|
|
209
|
+
} | {
|
|
210
|
+
status: "allowed" | "allowed_warning" | "rejected";
|
|
211
|
+
kind: "rate_limit_info";
|
|
212
|
+
resetsAt?: number | undefined;
|
|
213
|
+
rateLimitType?: string | undefined;
|
|
214
|
+
utilization?: number | undefined;
|
|
215
|
+
} | {
|
|
216
|
+
tokens: number;
|
|
217
|
+
contextWindow: number;
|
|
218
|
+
kind: "context_usage";
|
|
219
|
+
} | {
|
|
220
|
+
kind: "compact";
|
|
221
|
+
trigger: string;
|
|
222
|
+
preTokens?: number | undefined;
|
|
223
|
+
postTokens?: number | undefined;
|
|
62
224
|
} | {
|
|
63
225
|
kind: "plan";
|
|
64
226
|
decisionId: string;
|
|
@@ -79,6 +241,7 @@ export declare const sandboxContract: {
|
|
|
79
241
|
} | {
|
|
80
242
|
kind: "error";
|
|
81
243
|
message: string;
|
|
244
|
+
code?: "session-not-found" | "rate_limit" | undefined;
|
|
82
245
|
} | {
|
|
83
246
|
kind: "done";
|
|
84
247
|
}, unknown, void>>, Record<never, never>, Record<never, never>>;
|
|
@@ -97,6 +260,332 @@ export declare const sandboxContract: {
|
|
|
97
260
|
ok: import("zod").ZodLiteral<true>;
|
|
98
261
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
99
262
|
};
|
|
263
|
+
automations: {
|
|
264
|
+
list: import("@orpc/contract").ContractProcedureBuilderWithOutput<import("@orpc/contract").Schema<unknown, unknown>, import("zod").ZodObject<{
|
|
265
|
+
automations: import("zod").ZodArray<import("zod").ZodObject<{
|
|
266
|
+
id: import("zod").ZodString;
|
|
267
|
+
trigger: import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
268
|
+
kind: import("zod").ZodLiteral<"schedule">;
|
|
269
|
+
cron: import("zod").ZodString;
|
|
270
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
271
|
+
kind: import("zod").ZodLiteral<"event">;
|
|
272
|
+
token: import("zod").ZodOptional<import("zod").ZodString>;
|
|
273
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
274
|
+
kind: import("zod").ZodLiteral<"listener">;
|
|
275
|
+
provider: import("zod").ZodEnum<{
|
|
276
|
+
discord: "discord";
|
|
277
|
+
}>;
|
|
278
|
+
channelId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
279
|
+
eventType: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
280
|
+
message: "message";
|
|
281
|
+
voice_utterance: "voice_utterance";
|
|
282
|
+
voice_transcript: "voice_transcript";
|
|
283
|
+
}>>;
|
|
284
|
+
mentioned: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
285
|
+
}, import("zod/v4/core").$strip>], "kind">;
|
|
286
|
+
guard: import("zod").ZodOptional<import("zod").ZodString>;
|
|
287
|
+
prompt: import("zod").ZodString;
|
|
288
|
+
model: import("zod").ZodOptional<import("zod").ZodString>;
|
|
289
|
+
requireApproval: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
290
|
+
enabled: import("zod").ZodBoolean;
|
|
291
|
+
runs: import("zod").ZodArray<import("zod").ZodObject<{
|
|
292
|
+
at: import("zod").ZodNumber;
|
|
293
|
+
outcome: import("zod").ZodEnum<{
|
|
294
|
+
completed: "completed";
|
|
295
|
+
error: "error";
|
|
296
|
+
skipped: "skipped";
|
|
297
|
+
}>;
|
|
298
|
+
detail: import("zod").ZodOptional<import("zod").ZodString>;
|
|
299
|
+
}, import("zod/v4/core").$strip>>;
|
|
300
|
+
nextRun: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
301
|
+
}, import("zod/v4/core").$strip>>;
|
|
302
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
303
|
+
upsert: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
304
|
+
id: import("zod").ZodString;
|
|
305
|
+
trigger: import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
306
|
+
kind: import("zod").ZodLiteral<"schedule">;
|
|
307
|
+
cron: import("zod").ZodString;
|
|
308
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
309
|
+
kind: import("zod").ZodLiteral<"event">;
|
|
310
|
+
token: import("zod").ZodOptional<import("zod").ZodString>;
|
|
311
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
312
|
+
kind: import("zod").ZodLiteral<"listener">;
|
|
313
|
+
provider: import("zod").ZodEnum<{
|
|
314
|
+
discord: "discord";
|
|
315
|
+
}>;
|
|
316
|
+
channelId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
317
|
+
eventType: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
318
|
+
message: "message";
|
|
319
|
+
voice_utterance: "voice_utterance";
|
|
320
|
+
voice_transcript: "voice_transcript";
|
|
321
|
+
}>>;
|
|
322
|
+
mentioned: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
323
|
+
}, import("zod/v4/core").$strip>], "kind">;
|
|
324
|
+
guard: import("zod").ZodOptional<import("zod").ZodString>;
|
|
325
|
+
prompt: import("zod").ZodString;
|
|
326
|
+
model: import("zod").ZodOptional<import("zod").ZodString>;
|
|
327
|
+
requireApproval: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
328
|
+
enabled: import("zod").ZodBoolean;
|
|
329
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
330
|
+
ok: import("zod").ZodLiteral<true>;
|
|
331
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
332
|
+
remove: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
333
|
+
id: import("zod").ZodString;
|
|
334
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
335
|
+
ok: import("zod").ZodLiteral<true>;
|
|
336
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
337
|
+
pendingList: import("@orpc/contract").ContractProcedureBuilderWithOutput<import("@orpc/contract").Schema<unknown, unknown>, import("zod").ZodObject<{
|
|
338
|
+
approvals: import("zod").ZodArray<import("zod").ZodObject<{
|
|
339
|
+
id: import("zod").ZodString;
|
|
340
|
+
automationId: import("zod").ZodString;
|
|
341
|
+
payload: import("zod").ZodOptional<import("zod").ZodString>;
|
|
342
|
+
createdAt: import("zod").ZodNumber;
|
|
343
|
+
}, import("zod/v4/core").$strip>>;
|
|
344
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
345
|
+
approve: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
346
|
+
id: import("zod").ZodString;
|
|
347
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
348
|
+
ok: import("zod").ZodLiteral<true>;
|
|
349
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
350
|
+
reject: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
351
|
+
id: import("zod").ZodString;
|
|
352
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
353
|
+
ok: import("zod").ZodLiteral<true>;
|
|
354
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
355
|
+
};
|
|
356
|
+
capabilities: {
|
|
357
|
+
list: import("@orpc/contract").ContractProcedureBuilderWithOutput<import("@orpc/contract").Schema<unknown, unknown>, import("zod").ZodObject<{
|
|
358
|
+
capabilities: import("zod").ZodArray<import("zod").ZodObject<{
|
|
359
|
+
id: import("zod").ZodString;
|
|
360
|
+
kind: import("zod").ZodEnum<{
|
|
361
|
+
service: "service";
|
|
362
|
+
devops: "devops";
|
|
363
|
+
monorepo: "monorepo";
|
|
364
|
+
mcp: "mcp";
|
|
365
|
+
integration: "integration";
|
|
366
|
+
cli: "cli";
|
|
367
|
+
plugin: "plugin";
|
|
368
|
+
ssh: "ssh";
|
|
369
|
+
vpn: "vpn";
|
|
370
|
+
docker: "docker";
|
|
371
|
+
browser: "browser";
|
|
372
|
+
}>;
|
|
373
|
+
status: import("zod").ZodObject<{
|
|
374
|
+
state: import("zod").ZodEnum<{
|
|
375
|
+
pending: "pending";
|
|
376
|
+
error: "error";
|
|
377
|
+
active: "active";
|
|
378
|
+
inactive: "inactive";
|
|
379
|
+
}>;
|
|
380
|
+
detail: import("zod").ZodOptional<import("zod").ZodString>;
|
|
381
|
+
}, import("zod/v4/core").$strip>;
|
|
382
|
+
config: import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnion<readonly [import("zod").ZodString, import("zod").ZodNumber, import("zod").ZodBoolean]>>;
|
|
383
|
+
}, import("zod/v4/core").$strip>>;
|
|
384
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
385
|
+
add: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
386
|
+
id: import("zod").ZodString;
|
|
387
|
+
kind: import("zod").ZodLiteral<"devops">;
|
|
388
|
+
config: import("zod").ZodObject<{}, import("zod/v4/core").$strip>;
|
|
389
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
390
|
+
id: import("zod").ZodString;
|
|
391
|
+
kind: import("zod").ZodLiteral<"monorepo">;
|
|
392
|
+
config: import("zod").ZodObject<{}, import("zod/v4/core").$strip>;
|
|
393
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
394
|
+
id: import("zod").ZodString;
|
|
395
|
+
kind: import("zod").ZodLiteral<"mcp">;
|
|
396
|
+
config: import("zod").ZodObject<{
|
|
397
|
+
url: import("zod").ZodString;
|
|
398
|
+
token: import("zod").ZodOptional<import("zod").ZodString>;
|
|
399
|
+
}, import("zod/v4/core").$strip>;
|
|
400
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
401
|
+
id: import("zod").ZodString;
|
|
402
|
+
kind: import("zod").ZodLiteral<"service">;
|
|
403
|
+
config: import("zod").ZodObject<{
|
|
404
|
+
service: import("zod").ZodEnum<{
|
|
405
|
+
signoz: "signoz";
|
|
406
|
+
outline: "outline";
|
|
407
|
+
paperless: "paperless";
|
|
408
|
+
openproject: "openproject";
|
|
409
|
+
invoiceninja: "invoiceninja";
|
|
410
|
+
infisical: "infisical";
|
|
411
|
+
}>;
|
|
412
|
+
domain: import("zod").ZodString;
|
|
413
|
+
on: import("zod").ZodString;
|
|
414
|
+
expose: import("zod").ZodString;
|
|
415
|
+
}, import("zod/v4/core").$strip>;
|
|
416
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
417
|
+
id: import("zod").ZodString;
|
|
418
|
+
kind: import("zod").ZodLiteral<"integration">;
|
|
419
|
+
config: import("zod").ZodObject<{
|
|
420
|
+
provider: import("zod").ZodLiteral<"stripe">;
|
|
421
|
+
}, import("zod/v4/core").$strip>;
|
|
422
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
423
|
+
id: import("zod").ZodString;
|
|
424
|
+
kind: import("zod").ZodLiteral<"cli">;
|
|
425
|
+
config: import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
426
|
+
provider: import("zod").ZodLiteral<"discord">;
|
|
427
|
+
botToken: import("zod").ZodString;
|
|
428
|
+
voiceModel: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
429
|
+
small: "small";
|
|
430
|
+
base: "base";
|
|
431
|
+
tiny: "tiny";
|
|
432
|
+
medium: "medium";
|
|
433
|
+
"large-v3-turbo": "large-v3-turbo";
|
|
434
|
+
}>>;
|
|
435
|
+
voiceLanguage: import("zod").ZodOptional<import("zod").ZodString>;
|
|
436
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
437
|
+
provider: import("zod").ZodLiteral<"github">;
|
|
438
|
+
token: import("zod").ZodString;
|
|
439
|
+
git: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
440
|
+
on: "on";
|
|
441
|
+
off: "off";
|
|
442
|
+
}>>;
|
|
443
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
444
|
+
provider: import("zod").ZodLiteral<"gitlab">;
|
|
445
|
+
token: import("zod").ZodString;
|
|
446
|
+
url: import("zod").ZodString;
|
|
447
|
+
git: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
448
|
+
on: "on";
|
|
449
|
+
off: "off";
|
|
450
|
+
}>>;
|
|
451
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
452
|
+
provider: import("zod").ZodLiteral<"sentry">;
|
|
453
|
+
token: import("zod").ZodString;
|
|
454
|
+
url: import("zod").ZodString;
|
|
455
|
+
org: import("zod").ZodOptional<import("zod").ZodString>;
|
|
456
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
457
|
+
provider: import("zod").ZodLiteral<"redmine">;
|
|
458
|
+
url: import("zod").ZodString;
|
|
459
|
+
apiKey: import("zod").ZodString;
|
|
460
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
461
|
+
provider: import("zod").ZodLiteral<"outline">;
|
|
462
|
+
url: import("zod").ZodString;
|
|
463
|
+
apiKey: import("zod").ZodString;
|
|
464
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
465
|
+
provider: import("zod").ZodLiteral<"imap">;
|
|
466
|
+
host: import("zod").ZodString;
|
|
467
|
+
port: import("zod").ZodCoercedNumber<unknown>;
|
|
468
|
+
username: import("zod").ZodString;
|
|
469
|
+
password: import("zod").ZodString;
|
|
470
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
471
|
+
provider: import("zod").ZodLiteral<"signoz">;
|
|
472
|
+
url: import("zod").ZodString;
|
|
473
|
+
apiKey: import("zod").ZodString;
|
|
474
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
475
|
+
provider: import("zod").ZodLiteral<"postgres">;
|
|
476
|
+
host: import("zod").ZodString;
|
|
477
|
+
port: import("zod").ZodCoercedNumber<unknown>;
|
|
478
|
+
user: import("zod").ZodString;
|
|
479
|
+
password: import("zod").ZodString;
|
|
480
|
+
database: import("zod").ZodString;
|
|
481
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
482
|
+
provider: import("zod").ZodLiteral<"mysql">;
|
|
483
|
+
host: import("zod").ZodString;
|
|
484
|
+
port: import("zod").ZodCoercedNumber<unknown>;
|
|
485
|
+
user: import("zod").ZodString;
|
|
486
|
+
password: import("zod").ZodString;
|
|
487
|
+
database: import("zod").ZodString;
|
|
488
|
+
}, import("zod/v4/core").$strip>], "provider">;
|
|
489
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
490
|
+
id: import("zod").ZodString;
|
|
491
|
+
kind: import("zod").ZodLiteral<"plugin">;
|
|
492
|
+
config: import("zod").ZodObject<{
|
|
493
|
+
url: import("zod").ZodString;
|
|
494
|
+
ref: import("zod").ZodOptional<import("zod").ZodString>;
|
|
495
|
+
path: import("zod").ZodOptional<import("zod").ZodString>;
|
|
496
|
+
token: import("zod").ZodOptional<import("zod").ZodString>;
|
|
497
|
+
}, import("zod/v4/core").$strip>;
|
|
498
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
499
|
+
id: import("zod").ZodString;
|
|
500
|
+
kind: import("zod").ZodLiteral<"ssh">;
|
|
501
|
+
config: import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
502
|
+
auth: import("zod").ZodLiteral<"key">;
|
|
503
|
+
host: import("zod").ZodString;
|
|
504
|
+
port: import("zod").ZodDefault<import("zod").ZodCoercedNumber<unknown>>;
|
|
505
|
+
user: import("zod").ZodString;
|
|
506
|
+
privateKey: import("zod").ZodString;
|
|
507
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
508
|
+
auth: import("zod").ZodLiteral<"password">;
|
|
509
|
+
host: import("zod").ZodString;
|
|
510
|
+
port: import("zod").ZodDefault<import("zod").ZodCoercedNumber<unknown>>;
|
|
511
|
+
user: import("zod").ZodString;
|
|
512
|
+
password: import("zod").ZodString;
|
|
513
|
+
}, import("zod/v4/core").$strip>], "auth">;
|
|
514
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
515
|
+
id: import("zod").ZodString;
|
|
516
|
+
kind: import("zod").ZodLiteral<"vpn">;
|
|
517
|
+
config: import("zod").ZodObject<{
|
|
518
|
+
config: import("zod").ZodString;
|
|
519
|
+
enabled: import("zod").ZodDefault<import("zod").ZodEnum<{
|
|
520
|
+
on: "on";
|
|
521
|
+
off: "off";
|
|
522
|
+
}>>;
|
|
523
|
+
}, import("zod/v4/core").$strip>;
|
|
524
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
525
|
+
id: import("zod").ZodString;
|
|
526
|
+
kind: import("zod").ZodLiteral<"docker">;
|
|
527
|
+
config: import("zod").ZodObject<{
|
|
528
|
+
enabled: import("zod").ZodDefault<import("zod").ZodEnum<{
|
|
529
|
+
on: "on";
|
|
530
|
+
off: "off";
|
|
531
|
+
}>>;
|
|
532
|
+
}, import("zod/v4/core").$strip>;
|
|
533
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
534
|
+
id: import("zod").ZodString;
|
|
535
|
+
kind: import("zod").ZodLiteral<"browser">;
|
|
536
|
+
config: import("zod").ZodObject<{
|
|
537
|
+
platform: import("zod").ZodEnum<{
|
|
538
|
+
reddit: "reddit";
|
|
539
|
+
x: "x";
|
|
540
|
+
youtube: "youtube";
|
|
541
|
+
}>;
|
|
542
|
+
}, import("zod/v4/core").$strip>;
|
|
543
|
+
}, import("zod/v4/core").$strip>], "kind">, import("@orpc/contract").Schema<AsyncIteratorObject<{
|
|
544
|
+
[x: string]: unknown;
|
|
545
|
+
kind: string;
|
|
546
|
+
}, unknown, void>, import("@orpc/contract").AsyncIteratorClass<{
|
|
547
|
+
[x: string]: unknown;
|
|
548
|
+
kind: string;
|
|
549
|
+
}, unknown, void>>, Record<never, never>, Record<never, never>>;
|
|
550
|
+
remove: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
551
|
+
id: import("zod").ZodString;
|
|
552
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
553
|
+
ok: import("zod").ZodLiteral<true>;
|
|
554
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
555
|
+
setSecret: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
556
|
+
id: import("zod").ZodString;
|
|
557
|
+
value: import("zod").ZodString;
|
|
558
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
559
|
+
ok: import("zod").ZodLiteral<true>;
|
|
560
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
561
|
+
status: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
562
|
+
id: import("zod").ZodString;
|
|
563
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
564
|
+
state: import("zod").ZodEnum<{
|
|
565
|
+
pending: "pending";
|
|
566
|
+
error: "error";
|
|
567
|
+
active: "active";
|
|
568
|
+
inactive: "inactive";
|
|
569
|
+
}>;
|
|
570
|
+
detail: import("zod").ZodOptional<import("zod").ZodString>;
|
|
571
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
572
|
+
marketplace: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
573
|
+
url: import("zod").ZodString;
|
|
574
|
+
token: import("zod").ZodOptional<import("zod").ZodString>;
|
|
575
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
576
|
+
name: import("zod").ZodString;
|
|
577
|
+
plugins: import("zod").ZodArray<import("zod").ZodObject<{
|
|
578
|
+
name: import("zod").ZodString;
|
|
579
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
580
|
+
version: import("zod").ZodOptional<import("zod").ZodString>;
|
|
581
|
+
install: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
582
|
+
url: import("zod").ZodString;
|
|
583
|
+
ref: import("zod").ZodOptional<import("zod").ZodString>;
|
|
584
|
+
path: import("zod").ZodOptional<import("zod").ZodString>;
|
|
585
|
+
}, import("zod/v4/core").$strip>>;
|
|
586
|
+
}, import("zod/v4/core").$strip>>;
|
|
587
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
588
|
+
};
|
|
100
589
|
claude: {
|
|
101
590
|
start: import("@orpc/contract").ContractProcedureBuilderWithOutput<import("@orpc/contract").Schema<unknown, unknown>, import("zod").ZodObject<{
|
|
102
591
|
authorizeUrl: import("zod").ZodString;
|
|
@@ -119,8 +608,82 @@ export declare const sandboxContract: {
|
|
|
119
608
|
ok: import("zod").ZodLiteral<true>;
|
|
120
609
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
121
610
|
};
|
|
122
|
-
|
|
611
|
+
codex: {
|
|
612
|
+
start: import("@orpc/contract").ContractProcedureBuilderWithOutput<import("@orpc/contract").Schema<unknown, unknown>, import("zod").ZodObject<{
|
|
613
|
+
userCode: import("zod").ZodString;
|
|
614
|
+
deviceAuthId: import("zod").ZodString;
|
|
615
|
+
interval: import("zod").ZodNumber;
|
|
616
|
+
verificationUri: import("zod").ZodString;
|
|
617
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
618
|
+
poll: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
619
|
+
deviceAuthId: import("zod").ZodString;
|
|
620
|
+
userCode: import("zod").ZodString;
|
|
621
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
622
|
+
connected: import("zod").ZodBoolean;
|
|
623
|
+
scope: import("zod").ZodOptional<import("zod").ZodString>;
|
|
624
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
625
|
+
account: import("@orpc/contract").ContractProcedureBuilderWithOutput<import("@orpc/contract").Schema<unknown, unknown>, import("zod").ZodObject<{
|
|
626
|
+
connected: import("zod").ZodBoolean;
|
|
627
|
+
scope: import("zod").ZodOptional<import("zod").ZodString>;
|
|
628
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
629
|
+
disconnect: import("@orpc/contract").ContractProcedureBuilderWithOutput<import("@orpc/contract").Schema<unknown, unknown>, import("zod").ZodObject<{
|
|
630
|
+
ok: import("zod").ZodLiteral<true>;
|
|
631
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
632
|
+
};
|
|
633
|
+
drafts: {
|
|
123
634
|
list: import("@orpc/contract").ContractProcedureBuilderWithOutput<import("@orpc/contract").Schema<unknown, unknown>, import("zod").ZodObject<{
|
|
635
|
+
drafts: import("zod").ZodArray<import("zod").ZodObject<{
|
|
636
|
+
platform: import("zod").ZodString;
|
|
637
|
+
content: import("zod").ZodString;
|
|
638
|
+
title: import("zod").ZodOptional<import("zod").ZodString>;
|
|
639
|
+
target: import("zod").ZodOptional<import("zod").ZodString>;
|
|
640
|
+
media: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
641
|
+
scheduledAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
642
|
+
status: import("zod").ZodDefault<import("zod").ZodEnum<{
|
|
643
|
+
proposed: "proposed";
|
|
644
|
+
approved: "approved";
|
|
645
|
+
posting: "posting";
|
|
646
|
+
posted: "posted";
|
|
647
|
+
failed: "failed";
|
|
648
|
+
}>>;
|
|
649
|
+
createdAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
650
|
+
postedAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
651
|
+
error: import("zod").ZodOptional<import("zod").ZodString>;
|
|
652
|
+
id: import("zod").ZodString;
|
|
653
|
+
}, import("zod/v4/core").$strip>>;
|
|
654
|
+
invalid: import("zod").ZodArray<import("zod").ZodString>;
|
|
655
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
656
|
+
upsert: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
657
|
+
platform: import("zod").ZodString;
|
|
658
|
+
content: import("zod").ZodString;
|
|
659
|
+
title: import("zod").ZodOptional<import("zod").ZodString>;
|
|
660
|
+
target: import("zod").ZodOptional<import("zod").ZodString>;
|
|
661
|
+
media: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
662
|
+
scheduledAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
663
|
+
status: import("zod").ZodDefault<import("zod").ZodEnum<{
|
|
664
|
+
proposed: "proposed";
|
|
665
|
+
approved: "approved";
|
|
666
|
+
posting: "posting";
|
|
667
|
+
posted: "posted";
|
|
668
|
+
failed: "failed";
|
|
669
|
+
}>>;
|
|
670
|
+
createdAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
671
|
+
postedAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
672
|
+
error: import("zod").ZodOptional<import("zod").ZodString>;
|
|
673
|
+
id: import("zod").ZodString;
|
|
674
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
675
|
+
ok: import("zod").ZodLiteral<true>;
|
|
676
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
677
|
+
remove: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
678
|
+
id: import("zod").ZodString;
|
|
679
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
680
|
+
ok: import("zod").ZodLiteral<true>;
|
|
681
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
682
|
+
};
|
|
683
|
+
sessions: {
|
|
684
|
+
list: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
685
|
+
query: import("zod").ZodOptional<import("zod").ZodString>;
|
|
686
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
124
687
|
sessions: import("zod").ZodArray<import("zod").ZodObject<{
|
|
125
688
|
id: import("zod").ZodString;
|
|
126
689
|
title: import("zod").ZodString;
|
|
@@ -139,6 +702,16 @@ export declare const sandboxContract: {
|
|
|
139
702
|
}, import("zod/v4/core").$strip>>;
|
|
140
703
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
141
704
|
};
|
|
705
|
+
settings: {
|
|
706
|
+
get: import("@orpc/contract").ContractProcedureBuilderWithOutput<import("@orpc/contract").Schema<unknown, unknown>, import("zod").ZodObject<{
|
|
707
|
+
searchPastChats: import("zod").ZodBoolean;
|
|
708
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
709
|
+
set: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
710
|
+
searchPastChats: import("zod").ZodBoolean;
|
|
711
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
712
|
+
ok: import("zod").ZodLiteral<true>;
|
|
713
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
714
|
+
};
|
|
142
715
|
intentic: {
|
|
143
716
|
run: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
144
717
|
args: import("zod").ZodArray<import("zod").ZodString>;
|
|
@@ -149,6 +722,9 @@ export declare const sandboxContract: {
|
|
|
149
722
|
[x: string]: unknown;
|
|
150
723
|
kind: string;
|
|
151
724
|
}, unknown, void>>, Record<never, never>, Record<never, never>>;
|
|
725
|
+
apply: import("@orpc/contract").ContractProcedureBuilderWithOutput<import("@orpc/contract").Schema<unknown, unknown>, import("zod").ZodObject<{
|
|
726
|
+
ok: import("zod").ZodLiteral<true>;
|
|
727
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
152
728
|
};
|
|
153
729
|
git: {
|
|
154
730
|
status: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
@@ -190,8 +766,81 @@ export declare const sandboxContract: {
|
|
|
190
766
|
ok: import("zod").ZodLiteral<true>;
|
|
191
767
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
192
768
|
};
|
|
769
|
+
grok: {
|
|
770
|
+
start: import("@orpc/contract").ContractProcedureBuilderWithOutput<import("@orpc/contract").Schema<unknown, unknown>, import("zod").ZodObject<{
|
|
771
|
+
url: import("zod").ZodString;
|
|
772
|
+
instructions: import("zod").ZodString;
|
|
773
|
+
needsCode: import("zod").ZodBoolean;
|
|
774
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
775
|
+
exchange: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
776
|
+
code: import("zod").ZodString;
|
|
777
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
778
|
+
connected: import("zod").ZodBoolean;
|
|
779
|
+
scope: import("zod").ZodOptional<import("zod").ZodString>;
|
|
780
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
781
|
+
account: import("@orpc/contract").ContractProcedureBuilderWithOutput<import("@orpc/contract").Schema<unknown, unknown>, import("zod").ZodObject<{
|
|
782
|
+
connected: import("zod").ZodBoolean;
|
|
783
|
+
scope: import("zod").ZodOptional<import("zod").ZodString>;
|
|
784
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
785
|
+
disconnect: import("@orpc/contract").ContractProcedureBuilderWithOutput<import("@orpc/contract").Schema<unknown, unknown>, import("zod").ZodObject<{
|
|
786
|
+
ok: import("zod").ZodLiteral<true>;
|
|
787
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
788
|
+
};
|
|
789
|
+
history: {
|
|
790
|
+
list: import("@orpc/contract").ContractProcedureBuilderWithOutput<import("@orpc/contract").Schema<unknown, unknown>, import("zod").ZodObject<{
|
|
791
|
+
snapshots: import("zod").ZodArray<import("zod").ZodObject<{
|
|
792
|
+
id: import("zod").ZodString;
|
|
793
|
+
at: import("zod").ZodNumber;
|
|
794
|
+
trigger: import("zod").ZodEnum<{
|
|
795
|
+
interval: "interval";
|
|
796
|
+
user: "user";
|
|
797
|
+
turn: "turn";
|
|
798
|
+
manual: "manual";
|
|
799
|
+
"pre-restore": "pre-restore";
|
|
800
|
+
restore: "restore";
|
|
801
|
+
}>;
|
|
802
|
+
scopes: import("zod").ZodArray<import("zod").ZodString>;
|
|
803
|
+
}, import("zod/v4/core").$strip>>;
|
|
804
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
805
|
+
diff: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
806
|
+
id: import("zod").ZodString;
|
|
807
|
+
base: import("zod").ZodOptional<import("zod").ZodString>;
|
|
808
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
809
|
+
changes: import("zod").ZodArray<import("zod").ZodObject<{
|
|
810
|
+
scope: import("zod").ZodString;
|
|
811
|
+
path: import("zod").ZodString;
|
|
812
|
+
status: import("zod").ZodEnum<{
|
|
813
|
+
added: "added";
|
|
814
|
+
modified: "modified";
|
|
815
|
+
deleted: "deleted";
|
|
816
|
+
"type-changed": "type-changed";
|
|
817
|
+
}>;
|
|
818
|
+
}, import("zod/v4/core").$strip>>;
|
|
819
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
820
|
+
fileDiff: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
821
|
+
id: import("zod").ZodString;
|
|
822
|
+
scope: import("zod").ZodString;
|
|
823
|
+
path: import("zod").ZodString;
|
|
824
|
+
base: import("zod").ZodOptional<import("zod").ZodString>;
|
|
825
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
826
|
+
before: import("zod").ZodOptional<import("zod").ZodString>;
|
|
827
|
+
after: import("zod").ZodOptional<import("zod").ZodString>;
|
|
828
|
+
binary: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
829
|
+
truncated: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
830
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
831
|
+
snapshot: import("@orpc/contract").ContractProcedureBuilderWithOutput<import("@orpc/contract").Schema<unknown, unknown>, import("zod").ZodObject<{
|
|
832
|
+
id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
833
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
834
|
+
restore: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
835
|
+
id: import("zod").ZodString;
|
|
836
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
837
|
+
ok: import("zod").ZodLiteral<true>;
|
|
838
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
839
|
+
};
|
|
193
840
|
workspace: {
|
|
194
|
-
tree: import("@orpc/contract").
|
|
841
|
+
tree: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
842
|
+
includeIgnored: import("zod").ZodOptional<import("zod").ZodCodec<import("zod").ZodString, import("zod").ZodBoolean>>;
|
|
843
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
195
844
|
root: import("zod").ZodString;
|
|
196
845
|
tree: import("zod").ZodArray<import("zod").ZodObject<{
|
|
197
846
|
name: import("zod").ZodString;
|
|
@@ -201,6 +850,7 @@ export declare const sandboxContract: {
|
|
|
201
850
|
dir: "dir";
|
|
202
851
|
}>;
|
|
203
852
|
size: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
853
|
+
truncated: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
204
854
|
children: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<any, import("zod/v4/core").$strip>>>;
|
|
205
855
|
}, import("zod/v4/core").$strip>>;
|
|
206
856
|
truncated: import("zod").ZodBoolean;
|
|
@@ -211,6 +861,56 @@ export declare const sandboxContract: {
|
|
|
211
861
|
path: import("zod").ZodString;
|
|
212
862
|
content: import("zod").ZodString;
|
|
213
863
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
864
|
+
search: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
865
|
+
query: import("zod").ZodString;
|
|
866
|
+
includeIgnored: import("zod").ZodOptional<import("zod").ZodCodec<import("zod").ZodString, import("zod").ZodBoolean>>;
|
|
867
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
868
|
+
files: import("zod").ZodArray<import("zod").ZodObject<{
|
|
869
|
+
path: import("zod").ZodString;
|
|
870
|
+
matches: import("zod").ZodArray<import("zod").ZodObject<{
|
|
871
|
+
line: import("zod").ZodNumber;
|
|
872
|
+
text: import("zod").ZodString;
|
|
873
|
+
start: import("zod").ZodNumber;
|
|
874
|
+
end: import("zod").ZodNumber;
|
|
875
|
+
}, import("zod/v4/core").$strip>>;
|
|
876
|
+
}, import("zod/v4/core").$strip>>;
|
|
877
|
+
truncated: import("zod").ZodBoolean;
|
|
878
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
879
|
+
classify: import("@orpc/contract").ContractProcedureBuilderWithOutput<import("@orpc/contract").Schema<unknown, unknown>, import("zod").ZodObject<{
|
|
880
|
+
classifications: import("zod").ZodArray<import("zod").ZodObject<{
|
|
881
|
+
path: import("zod").ZodString;
|
|
882
|
+
bucket: import("zod").ZodEnum<{
|
|
883
|
+
repositories: "repositories";
|
|
884
|
+
documents: "documents";
|
|
885
|
+
media: "media";
|
|
886
|
+
archives: "archives";
|
|
887
|
+
other: "other";
|
|
888
|
+
}>;
|
|
889
|
+
reason: import("zod").ZodString;
|
|
890
|
+
}, import("zod/v4/core").$strip>>;
|
|
891
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
892
|
+
mkdir: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
893
|
+
path: import("zod").ZodString;
|
|
894
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
895
|
+
ok: import("zod").ZodLiteral<true>;
|
|
896
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
897
|
+
delete: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
898
|
+
path: import("zod").ZodString;
|
|
899
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
900
|
+
ok: import("zod").ZodLiteral<true>;
|
|
901
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
902
|
+
move: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
903
|
+
from: import("zod").ZodString;
|
|
904
|
+
to: import("zod").ZodString;
|
|
905
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
906
|
+
ok: import("zod").ZodLiteral<true>;
|
|
907
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
908
|
+
copy: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
909
|
+
from: import("zod").ZodString;
|
|
910
|
+
to: import("zod").ZodString;
|
|
911
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
912
|
+
ok: import("zod").ZodLiteral<true>;
|
|
913
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
214
914
|
repos: import("@orpc/contract").ContractProcedureBuilderWithOutput<import("@orpc/contract").Schema<unknown, unknown>, import("zod").ZodObject<{
|
|
215
915
|
repos: import("zod").ZodArray<import("zod").ZodString>;
|
|
216
916
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
@@ -222,22 +922,67 @@ export declare const sandboxContract: {
|
|
|
222
922
|
name: import("zod").ZodString;
|
|
223
923
|
path: import("zod").ZodString;
|
|
224
924
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
225
|
-
|
|
226
|
-
|
|
925
|
+
sync: import("@orpc/contract").ContractProcedureBuilderWithOutput<import("@orpc/contract").Schema<unknown, unknown>, import("zod").ZodObject<{
|
|
926
|
+
repos: import("zod").ZodArray<import("zod").ZodObject<{
|
|
927
|
+
repo: import("zod").ZodString;
|
|
928
|
+
status: import("zod").ZodEnum<{
|
|
929
|
+
error: "error";
|
|
930
|
+
dirty: "dirty";
|
|
931
|
+
updated: "updated";
|
|
932
|
+
current: "current";
|
|
933
|
+
diverged: "diverged";
|
|
934
|
+
"no-remote": "no-remote";
|
|
935
|
+
skipped: "skipped";
|
|
936
|
+
}>;
|
|
937
|
+
behind: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
938
|
+
ahead: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
939
|
+
head: import("zod").ZodOptional<import("zod").ZodString>;
|
|
940
|
+
message: import("zod").ZodOptional<import("zod").ZodString>;
|
|
941
|
+
}, import("zod/v4/core").$strip>>;
|
|
942
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
943
|
+
templates: import("@orpc/contract").ContractProcedureBuilderWithOutput<import("@orpc/contract").Schema<unknown, unknown>, import("zod").ZodObject<{
|
|
944
|
+
templates: import("zod").ZodArray<import("zod").ZodObject<{
|
|
945
|
+
key: import("zod").ZodString;
|
|
946
|
+
label: import("zod").ZodString;
|
|
947
|
+
description: import("zod").ZodString;
|
|
948
|
+
}, import("zod/v4/core").$strip>>;
|
|
949
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
950
|
+
addApps: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
951
|
+
repo: import("zod").ZodString;
|
|
952
|
+
apps: import("zod").ZodArray<import("zod").ZodObject<{
|
|
953
|
+
template: import("zod").ZodString;
|
|
227
954
|
name: import("zod").ZodString;
|
|
228
|
-
url: import("zod").ZodString;
|
|
229
|
-
hasToken: import("zod").ZodBoolean;
|
|
230
955
|
}, import("zod/v4/core").$strip>>;
|
|
956
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
957
|
+
ok: import("zod").ZodLiteral<true>;
|
|
231
958
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
url: import("zod").ZodString;
|
|
235
|
-
token: import("zod").ZodOptional<import("zod").ZodString>;
|
|
959
|
+
appsList: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
960
|
+
repo: import("zod").ZodString;
|
|
236
961
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
237
|
-
|
|
962
|
+
apps: import("zod").ZodArray<import("zod").ZodObject<{
|
|
963
|
+
app: import("zod").ZodString;
|
|
964
|
+
template: import("zod").ZodString;
|
|
965
|
+
previewUrl: import("zod").ZodOptional<import("zod").ZodString>;
|
|
966
|
+
running: import("zod").ZodBoolean;
|
|
967
|
+
healthy: import("zod").ZodBoolean;
|
|
968
|
+
}, import("zod/v4/core").$strip>>;
|
|
238
969
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
239
|
-
|
|
240
|
-
|
|
970
|
+
startApp: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
971
|
+
repo: import("zod").ZodString;
|
|
972
|
+
app: import("zod").ZodString;
|
|
973
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
974
|
+
ok: import("zod").ZodLiteral<true>;
|
|
975
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
976
|
+
stopApp: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
977
|
+
repo: import("zod").ZodString;
|
|
978
|
+
app: import("zod").ZodString;
|
|
979
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
980
|
+
ok: import("zod").ZodLiteral<true>;
|
|
981
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
982
|
+
runTests: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
983
|
+
repo: import("zod").ZodString;
|
|
984
|
+
session: import("zod").ZodString;
|
|
985
|
+
dirs: import("zod").ZodArray<import("zod").ZodString>;
|
|
241
986
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
242
987
|
ok: import("zod").ZodLiteral<true>;
|
|
243
988
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
@@ -250,6 +995,7 @@ export declare const sandboxContract: {
|
|
|
250
995
|
host: "host";
|
|
251
996
|
cloudflare: "cloudflare";
|
|
252
997
|
github: "github";
|
|
998
|
+
gitlab: "gitlab";
|
|
253
999
|
stripe: "stripe";
|
|
254
1000
|
}>;
|
|
255
1001
|
name: import("zod").ZodString;
|
|
@@ -258,11 +1004,22 @@ export declare const sandboxContract: {
|
|
|
258
1004
|
kind: import("zod").ZodLiteral<"service">;
|
|
259
1005
|
service: import("zod").ZodEnum<{
|
|
260
1006
|
signoz: "signoz";
|
|
1007
|
+
outline: "outline";
|
|
1008
|
+
paperless: "paperless";
|
|
1009
|
+
openproject: "openproject";
|
|
1010
|
+
invoiceninja: "invoiceninja";
|
|
1011
|
+
infisical: "infisical";
|
|
261
1012
|
}>;
|
|
262
1013
|
name: import("zod").ZodString;
|
|
263
1014
|
values: import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnion<readonly [import("zod").ZodString, import("zod").ZodNumber]>>;
|
|
264
1015
|
on: import("zod").ZodString;
|
|
265
1016
|
expose: import("zod").ZodString;
|
|
1017
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1018
|
+
kind: import("zod").ZodLiteral<"app">;
|
|
1019
|
+
name: import("zod").ZodString;
|
|
1020
|
+
values: import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnion<readonly [import("zod").ZodString, import("zod").ZodNumber]>>;
|
|
1021
|
+
on: import("zod").ZodString;
|
|
1022
|
+
expose: import("zod").ZodString;
|
|
266
1023
|
}, import("zod/v4/core").$strip>], "kind">>;
|
|
267
1024
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
268
1025
|
add: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
@@ -271,6 +1028,7 @@ export declare const sandboxContract: {
|
|
|
271
1028
|
host: "host";
|
|
272
1029
|
cloudflare: "cloudflare";
|
|
273
1030
|
github: "github";
|
|
1031
|
+
gitlab: "gitlab";
|
|
274
1032
|
stripe: "stripe";
|
|
275
1033
|
}>;
|
|
276
1034
|
values: import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnion<readonly [import("zod").ZodString, import("zod").ZodNumber]>>;
|
|
@@ -279,11 +1037,22 @@ export declare const sandboxContract: {
|
|
|
279
1037
|
kind: import("zod").ZodLiteral<"service">;
|
|
280
1038
|
service: import("zod").ZodEnum<{
|
|
281
1039
|
signoz: "signoz";
|
|
1040
|
+
outline: "outline";
|
|
1041
|
+
paperless: "paperless";
|
|
1042
|
+
openproject: "openproject";
|
|
1043
|
+
invoiceninja: "invoiceninja";
|
|
1044
|
+
infisical: "infisical";
|
|
282
1045
|
}>;
|
|
283
1046
|
values: import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnion<readonly [import("zod").ZodString, import("zod").ZodNumber]>>;
|
|
284
1047
|
on: import("zod").ZodString;
|
|
285
1048
|
expose: import("zod").ZodString;
|
|
286
1049
|
name: import("zod").ZodString;
|
|
1050
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1051
|
+
kind: import("zod").ZodLiteral<"app">;
|
|
1052
|
+
values: import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnion<readonly [import("zod").ZodString, import("zod").ZodNumber]>>;
|
|
1053
|
+
on: import("zod").ZodString;
|
|
1054
|
+
expose: import("zod").ZodString;
|
|
1055
|
+
name: import("zod").ZodString;
|
|
287
1056
|
}, import("zod/v4/core").$strip>], "kind">, import("zod").ZodObject<{
|
|
288
1057
|
entries: import("zod").ZodArray<import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
289
1058
|
kind: import("zod").ZodLiteral<"backend">;
|
|
@@ -291,6 +1060,7 @@ export declare const sandboxContract: {
|
|
|
291
1060
|
host: "host";
|
|
292
1061
|
cloudflare: "cloudflare";
|
|
293
1062
|
github: "github";
|
|
1063
|
+
gitlab: "gitlab";
|
|
294
1064
|
stripe: "stripe";
|
|
295
1065
|
}>;
|
|
296
1066
|
name: import("zod").ZodString;
|
|
@@ -299,11 +1069,22 @@ export declare const sandboxContract: {
|
|
|
299
1069
|
kind: import("zod").ZodLiteral<"service">;
|
|
300
1070
|
service: import("zod").ZodEnum<{
|
|
301
1071
|
signoz: "signoz";
|
|
1072
|
+
outline: "outline";
|
|
1073
|
+
paperless: "paperless";
|
|
1074
|
+
openproject: "openproject";
|
|
1075
|
+
invoiceninja: "invoiceninja";
|
|
1076
|
+
infisical: "infisical";
|
|
302
1077
|
}>;
|
|
303
1078
|
name: import("zod").ZodString;
|
|
304
1079
|
values: import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnion<readonly [import("zod").ZodString, import("zod").ZodNumber]>>;
|
|
305
1080
|
on: import("zod").ZodString;
|
|
306
1081
|
expose: import("zod").ZodString;
|
|
1082
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1083
|
+
kind: import("zod").ZodLiteral<"app">;
|
|
1084
|
+
name: import("zod").ZodString;
|
|
1085
|
+
values: import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnion<readonly [import("zod").ZodString, import("zod").ZodNumber]>>;
|
|
1086
|
+
on: import("zod").ZodString;
|
|
1087
|
+
expose: import("zod").ZodString;
|
|
307
1088
|
}, import("zod/v4/core").$strip>], "kind">>;
|
|
308
1089
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
309
1090
|
remove: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
@@ -315,6 +1096,7 @@ export declare const sandboxContract: {
|
|
|
315
1096
|
host: "host";
|
|
316
1097
|
cloudflare: "cloudflare";
|
|
317
1098
|
github: "github";
|
|
1099
|
+
gitlab: "gitlab";
|
|
318
1100
|
stripe: "stripe";
|
|
319
1101
|
}>;
|
|
320
1102
|
name: import("zod").ZodString;
|
|
@@ -323,43 +1105,205 @@ export declare const sandboxContract: {
|
|
|
323
1105
|
kind: import("zod").ZodLiteral<"service">;
|
|
324
1106
|
service: import("zod").ZodEnum<{
|
|
325
1107
|
signoz: "signoz";
|
|
1108
|
+
outline: "outline";
|
|
1109
|
+
paperless: "paperless";
|
|
1110
|
+
openproject: "openproject";
|
|
1111
|
+
invoiceninja: "invoiceninja";
|
|
1112
|
+
infisical: "infisical";
|
|
326
1113
|
}>;
|
|
327
1114
|
name: import("zod").ZodString;
|
|
328
1115
|
values: import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnion<readonly [import("zod").ZodString, import("zod").ZodNumber]>>;
|
|
329
1116
|
on: import("zod").ZodString;
|
|
330
1117
|
expose: import("zod").ZodString;
|
|
1118
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1119
|
+
kind: import("zod").ZodLiteral<"app">;
|
|
1120
|
+
name: import("zod").ZodString;
|
|
1121
|
+
values: import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnion<readonly [import("zod").ZodString, import("zod").ZodNumber]>>;
|
|
1122
|
+
on: import("zod").ZodString;
|
|
1123
|
+
expose: import("zod").ZodString;
|
|
331
1124
|
}, import("zod/v4/core").$strip>], "kind">>;
|
|
332
1125
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
333
|
-
|
|
1126
|
+
};
|
|
1127
|
+
logs: {
|
|
1128
|
+
list: import("@orpc/contract").ContractProcedureBuilderWithOutput<import("@orpc/contract").Schema<unknown, unknown>, import("zod").ZodObject<{
|
|
1129
|
+
files: import("zod").ZodArray<import("zod").ZodObject<{
|
|
1130
|
+
name: import("zod").ZodString;
|
|
1131
|
+
sizeBytes: import("zod").ZodNumber;
|
|
1132
|
+
modifiedAt: import("zod").ZodNumber;
|
|
1133
|
+
}, import("zod/v4/core").$strip>>;
|
|
1134
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
1135
|
+
read: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
1136
|
+
name: import("zod").ZodString;
|
|
1137
|
+
bytes: import("zod").ZodDefault<import("zod").ZodCoercedNumber<unknown>>;
|
|
1138
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1139
|
+
name: import("zod").ZodString;
|
|
1140
|
+
sizeBytes: import("zod").ZodNumber;
|
|
1141
|
+
text: import("zod").ZodString;
|
|
1142
|
+
truncated: import("zod").ZodBoolean;
|
|
1143
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
1144
|
+
};
|
|
1145
|
+
panels: {
|
|
1146
|
+
list: import("@orpc/contract").ContractProcedureBuilderWithOutput<import("@orpc/contract").Schema<unknown, unknown>, import("zod").ZodObject<{
|
|
1147
|
+
panels: import("zod").ZodArray<import("zod").ZodObject<{
|
|
1148
|
+
repo: import("zod").ZodString;
|
|
1149
|
+
hasPanel: import("zod").ZodBoolean;
|
|
1150
|
+
running: import("zod").ZodBoolean;
|
|
1151
|
+
healthy: import("zod").ZodBoolean;
|
|
1152
|
+
port: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1153
|
+
previewUrl: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1154
|
+
role: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
1155
|
+
app: "app";
|
|
1156
|
+
intent: "intent";
|
|
1157
|
+
"desired-state": "desired-state";
|
|
1158
|
+
}>>;
|
|
1159
|
+
deployConfig: import("zod").ZodBoolean;
|
|
1160
|
+
desiredState: import("zod").ZodBoolean;
|
|
1161
|
+
directoryUi: import("zod").ZodBoolean;
|
|
1162
|
+
monorepo: import("zod").ZodBoolean;
|
|
1163
|
+
vitest: import("zod").ZodBoolean;
|
|
1164
|
+
}, import("zod/v4/core").$strip>>;
|
|
1165
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
1166
|
+
start: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
1167
|
+
repo: import("zod").ZodString;
|
|
1168
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1169
|
+
ok: import("zod").ZodLiteral<true>;
|
|
1170
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
1171
|
+
stop: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
1172
|
+
repo: import("zod").ZodString;
|
|
1173
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
334
1174
|
ok: import("zod").ZodLiteral<true>;
|
|
335
1175
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
336
1176
|
};
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
1177
|
+
secrets: {
|
|
1178
|
+
set: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
1179
|
+
key: import("zod").ZodString;
|
|
1180
|
+
value: import("zod").ZodString;
|
|
1181
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1182
|
+
ok: import("zod").ZodLiteral<true>;
|
|
342
1183
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
1184
|
+
list: import("@orpc/contract").ContractProcedureBuilderWithOutput<import("@orpc/contract").Schema<unknown, unknown>, import("zod").ZodObject<{
|
|
1185
|
+
keys: import("zod").ZodArray<import("zod").ZodString>;
|
|
1186
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
1187
|
+
remove: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
1188
|
+
key: import("zod").ZodString;
|
|
1189
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1190
|
+
ok: import("zod").ZodLiteral<true>;
|
|
1191
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
1192
|
+
inventory: import("@orpc/contract").ContractProcedureBuilderWithOutput<import("@orpc/contract").Schema<unknown, unknown>, import("zod").ZodObject<{
|
|
1193
|
+
entries: import("zod").ZodArray<import("zod").ZodObject<{
|
|
1194
|
+
key: import("zod").ZodString;
|
|
1195
|
+
kind: import("zod").ZodEnum<{
|
|
1196
|
+
provider: "provider";
|
|
1197
|
+
env: "env";
|
|
1198
|
+
generated: "generated";
|
|
1199
|
+
capability: "capability";
|
|
351
1200
|
}>;
|
|
1201
|
+
status: import("zod").ZodEnum<{
|
|
1202
|
+
set: "set";
|
|
1203
|
+
connected: "connected";
|
|
1204
|
+
missing: "missing";
|
|
1205
|
+
}>;
|
|
1206
|
+
requiredBy: import("zod").ZodArray<import("zod").ZodObject<{
|
|
1207
|
+
resourceId: import("zod").ZodString;
|
|
1208
|
+
type: import("zod").ZodString;
|
|
1209
|
+
}, import("zod/v4/core").$strip>>;
|
|
1210
|
+
storedAt: import("zod").ZodString;
|
|
1211
|
+
revealable: import("zod").ZodBoolean;
|
|
1212
|
+
ci: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
1213
|
+
synced: import("zod").ZodBoolean;
|
|
1214
|
+
pushedAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1215
|
+
}, import("zod/v4/core").$strip>>;
|
|
352
1216
|
}, import("zod/v4/core").$strip>>;
|
|
353
1217
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
1218
|
+
reveal: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
1219
|
+
key: import("zod").ZodString;
|
|
1220
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1221
|
+
value: import("zod").ZodString;
|
|
1222
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
1223
|
+
};
|
|
1224
|
+
system: {
|
|
354
1225
|
info: import("@orpc/contract").ContractProcedureBuilderWithOutput<import("@orpc/contract").Schema<unknown, unknown>, import("zod").ZodObject<{
|
|
355
1226
|
name: import("zod").ZodOptional<import("zod").ZodString>;
|
|
356
1227
|
image: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1228
|
+
version: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1229
|
+
latest: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1230
|
+
updateAvailable: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
357
1231
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
358
|
-
events: import("@orpc/contract").
|
|
1232
|
+
events: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
1233
|
+
clientId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1234
|
+
}, import("zod/v4/core").$strip>, import("@orpc/contract").Schema<AsyncIteratorObject<{
|
|
1235
|
+
kind: "hello";
|
|
1236
|
+
workspaceId: string;
|
|
1237
|
+
} | {
|
|
359
1238
|
kind: "heartbeat";
|
|
1239
|
+
} | {
|
|
1240
|
+
kind: "workspaceChanged";
|
|
1241
|
+
paths: string[];
|
|
1242
|
+
} | {
|
|
1243
|
+
kind: "presence";
|
|
1244
|
+
users: {
|
|
1245
|
+
clientId: string;
|
|
1246
|
+
email: string;
|
|
1247
|
+
idle: boolean;
|
|
1248
|
+
name?: string | undefined;
|
|
1249
|
+
picture?: string | undefined;
|
|
1250
|
+
view?: string | undefined;
|
|
1251
|
+
sessionId?: string | undefined;
|
|
1252
|
+
path?: string | undefined;
|
|
1253
|
+
}[];
|
|
360
1254
|
}, unknown, void>, import("@orpc/contract").AsyncIteratorClass<{
|
|
361
1255
|
kind: "heartbeat";
|
|
1256
|
+
} | {
|
|
1257
|
+
kind: "hello";
|
|
1258
|
+
workspaceId: string;
|
|
1259
|
+
} | {
|
|
1260
|
+
kind: "workspaceChanged";
|
|
1261
|
+
paths: string[];
|
|
1262
|
+
} | {
|
|
1263
|
+
kind: "presence";
|
|
1264
|
+
users: {
|
|
1265
|
+
clientId: string;
|
|
1266
|
+
email: string;
|
|
1267
|
+
idle: boolean;
|
|
1268
|
+
name?: string | undefined;
|
|
1269
|
+
picture?: string | undefined;
|
|
1270
|
+
view?: string | undefined;
|
|
1271
|
+
sessionId?: string | undefined;
|
|
1272
|
+
path?: string | undefined;
|
|
1273
|
+
}[];
|
|
362
1274
|
}, unknown, void>>, Record<never, never>, Record<never, never>>;
|
|
1275
|
+
presence: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
1276
|
+
clientId: import("zod").ZodString;
|
|
1277
|
+
idle: import("zod").ZodBoolean;
|
|
1278
|
+
view: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1279
|
+
sessionId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1280
|
+
path: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1281
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1282
|
+
ok: import("zod").ZodLiteral<true>;
|
|
1283
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
1284
|
+
hostTunnel: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
1285
|
+
hostName: import("zod").ZodString;
|
|
1286
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1287
|
+
hostname: import("zod").ZodString;
|
|
1288
|
+
tunnelToken: import("zod").ZodString;
|
|
1289
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
1290
|
+
terminals: import("@orpc/contract").ContractProcedureBuilderWithOutput<import("@orpc/contract").Schema<unknown, unknown>, import("zod").ZodObject<{
|
|
1291
|
+
sessions: import("zod").ZodArray<import("zod").ZodObject<{
|
|
1292
|
+
name: import("zod").ZodString;
|
|
1293
|
+
label: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1294
|
+
kind: import("zod").ZodEnum<{
|
|
1295
|
+
agent: "agent";
|
|
1296
|
+
shell: "shell";
|
|
1297
|
+
panel: "panel";
|
|
1298
|
+
}>;
|
|
1299
|
+
running: import("zod").ZodBoolean;
|
|
1300
|
+
}, import("zod/v4/core").$strip>>;
|
|
1301
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
1302
|
+
killTerminal: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
1303
|
+
name: import("zod").ZodString;
|
|
1304
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1305
|
+
ok: import("zod").ZodLiteral<true>;
|
|
1306
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
363
1307
|
};
|
|
364
1308
|
};
|
|
365
1309
|
//# sourceMappingURL=index.d.ts.map
|