@rolepod/wplab 1.2.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/.claude-plugin/plugin.json +21 -0
- package/CHANGELOG.md +394 -0
- package/LICENSE +21 -0
- package/README.md +101 -0
- package/dist/bin/rolepod-wplab.d.ts +1 -0
- package/dist/bin/rolepod-wplab.js +66951 -0
- package/dist/bin/rolepod-wplab.js.map +1 -0
- package/dist/cpufeatures-FGCCZK75.node +0 -0
- package/dist/index.d.ts +3103 -0
- package/dist/index.js +66293 -0
- package/dist/index.js.map +1 -0
- package/dist/sshcrypto-GDFKS5G5.node +0 -0
- package/package.json +77 -0
- package/skills/wp-audit-security/SKILL.md +58 -0
- package/skills/wp-audit-woo/SKILL.md +44 -0
- package/skills/wp-edit-elementor/SKILL.md +44 -0
- package/skills/wp-execute-php/SKILL.md +59 -0
- package/skills/wp-health-check/SKILL.md +50 -0
- package/skills/wp-introspect/SKILL.md +48 -0
- package/skills/wp-migrate-dryrun/SKILL.md +48 -0
- package/skills/wp-pair-setup/SKILL.md +78 -0
- package/skills/wp-scaffold-block/SKILL.md +61 -0
- package/skills/wp-scaffold-plugin/SKILL.md +53 -0
- package/skills/wp-scaffold-theme/SKILL.md +43 -0
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,3103 @@
|
|
|
1
|
+
import { Server } from '@modelcontextprotocol/sdk/server/index.js';
|
|
2
|
+
import { z } from 'zod';
|
|
3
|
+
|
|
4
|
+
type TargetKind = "local" | "rest" | "ssh" | "docker";
|
|
5
|
+
type CompanionStatus = {
|
|
6
|
+
installed: boolean;
|
|
7
|
+
enabled: boolean;
|
|
8
|
+
version: string | null;
|
|
9
|
+
capabilities: readonly string[];
|
|
10
|
+
} | null;
|
|
11
|
+
interface WpCliOpts {
|
|
12
|
+
allowDestructive?: boolean;
|
|
13
|
+
timeoutMs?: number;
|
|
14
|
+
cwd?: string;
|
|
15
|
+
}
|
|
16
|
+
interface WpCliResult {
|
|
17
|
+
exitCode: number;
|
|
18
|
+
stdout: string;
|
|
19
|
+
stderr: string;
|
|
20
|
+
durationMs: number;
|
|
21
|
+
}
|
|
22
|
+
interface RestRequest {
|
|
23
|
+
method: "GET" | "POST" | "PUT" | "PATCH" | "DELETE";
|
|
24
|
+
path: string;
|
|
25
|
+
query?: Record<string, string | number | boolean>;
|
|
26
|
+
body?: unknown;
|
|
27
|
+
headers?: Record<string, string>;
|
|
28
|
+
}
|
|
29
|
+
interface RestResponse {
|
|
30
|
+
status: number;
|
|
31
|
+
body: unknown;
|
|
32
|
+
headers: Record<string, string>;
|
|
33
|
+
}
|
|
34
|
+
interface FileWriteOpts {
|
|
35
|
+
mode?: "overwrite" | "append";
|
|
36
|
+
backup?: boolean;
|
|
37
|
+
confirmUnsafePath?: boolean;
|
|
38
|
+
}
|
|
39
|
+
interface Target {
|
|
40
|
+
readonly id: string;
|
|
41
|
+
readonly kind: TargetKind;
|
|
42
|
+
readonly siteurl: string;
|
|
43
|
+
readonly wpVersion: string;
|
|
44
|
+
readonly phpVersion?: string;
|
|
45
|
+
readonly companion: CompanionStatus;
|
|
46
|
+
wpCli(args: readonly string[], opts?: WpCliOpts): Promise<WpCliResult>;
|
|
47
|
+
rest(req: RestRequest): Promise<RestResponse>;
|
|
48
|
+
fileRead(path: string): Promise<{
|
|
49
|
+
content: string;
|
|
50
|
+
bytes: number;
|
|
51
|
+
absolutePath: string;
|
|
52
|
+
}>;
|
|
53
|
+
fileWrite(path: string, content: string, opts?: FileWriteOpts): Promise<{
|
|
54
|
+
bytesWritten: number;
|
|
55
|
+
backupPath: string | null;
|
|
56
|
+
absolutePath: string;
|
|
57
|
+
}>;
|
|
58
|
+
fileExists(path: string): Promise<boolean>;
|
|
59
|
+
rootPath(): string;
|
|
60
|
+
executePhp?(payload: string, opts: {
|
|
61
|
+
timeoutMs?: number;
|
|
62
|
+
confirm: true;
|
|
63
|
+
}): Promise<unknown>;
|
|
64
|
+
introspect?(scope: string, opts?: {
|
|
65
|
+
includeValues?: boolean;
|
|
66
|
+
}): Promise<unknown>;
|
|
67
|
+
close(): Promise<void>;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
declare class TargetRegistry {
|
|
71
|
+
private readonly entries;
|
|
72
|
+
private readonly idleMs;
|
|
73
|
+
constructor(idleMs?: number);
|
|
74
|
+
register(target: Target): void;
|
|
75
|
+
get(id: string): Target;
|
|
76
|
+
list(): readonly Target[];
|
|
77
|
+
closeAll(): Promise<void>;
|
|
78
|
+
disconnect(id: string): Promise<void>;
|
|
79
|
+
private armTimer;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
interface CreateServerOptions {
|
|
83
|
+
/** Skip transport bind — useful for unit tests that just want a wired Server instance. */
|
|
84
|
+
withoutTransport?: boolean;
|
|
85
|
+
}
|
|
86
|
+
declare function createServer(opts?: CreateServerOptions): Promise<{
|
|
87
|
+
server: Server;
|
|
88
|
+
registry: TargetRegistry;
|
|
89
|
+
shutdown: () => Promise<void>;
|
|
90
|
+
}>;
|
|
91
|
+
|
|
92
|
+
declare const ProfileConfigSchema: z.ZodObject<{
|
|
93
|
+
profile: z.ZodDefault<z.ZodEnum<["strict", "personal", "power"]>>;
|
|
94
|
+
production_hosts: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
95
|
+
default_target_path: z.ZodOptional<z.ZodString>;
|
|
96
|
+
companion: z.ZodDefault<z.ZodObject<{
|
|
97
|
+
require_installed: z.ZodDefault<z.ZodBoolean>;
|
|
98
|
+
session_ttl_seconds: z.ZodDefault<z.ZodNumber>;
|
|
99
|
+
}, "strip", z.ZodTypeAny, {
|
|
100
|
+
require_installed: boolean;
|
|
101
|
+
session_ttl_seconds: number;
|
|
102
|
+
}, {
|
|
103
|
+
require_installed?: boolean | undefined;
|
|
104
|
+
session_ttl_seconds?: number | undefined;
|
|
105
|
+
}>>;
|
|
106
|
+
}, "strip", z.ZodTypeAny, {
|
|
107
|
+
profile: "strict" | "personal" | "power";
|
|
108
|
+
production_hosts: string[];
|
|
109
|
+
companion: {
|
|
110
|
+
require_installed: boolean;
|
|
111
|
+
session_ttl_seconds: number;
|
|
112
|
+
};
|
|
113
|
+
default_target_path?: string | undefined;
|
|
114
|
+
}, {
|
|
115
|
+
profile?: "strict" | "personal" | "power" | undefined;
|
|
116
|
+
production_hosts?: string[] | undefined;
|
|
117
|
+
default_target_path?: string | undefined;
|
|
118
|
+
companion?: {
|
|
119
|
+
require_installed?: boolean | undefined;
|
|
120
|
+
session_ttl_seconds?: number | undefined;
|
|
121
|
+
} | undefined;
|
|
122
|
+
}>;
|
|
123
|
+
type ProfileConfig = z.infer<typeof ProfileConfigSchema>;
|
|
124
|
+
declare function loadProfile(): ProfileConfig;
|
|
125
|
+
|
|
126
|
+
/**
|
|
127
|
+
* Production-host matcher. Patterns are glob-like with `*` wildcards.
|
|
128
|
+
*
|
|
129
|
+
* "mysite.com" → matches exactly mysite.com (any port)
|
|
130
|
+
* "*.mysite.com" → matches subdomains
|
|
131
|
+
* "client-*" → matches client-anything
|
|
132
|
+
*/
|
|
133
|
+
declare class ProdGuard {
|
|
134
|
+
private readonly patterns;
|
|
135
|
+
constructor(patterns: readonly string[]);
|
|
136
|
+
matches(siteurl: string): {
|
|
137
|
+
matched: false;
|
|
138
|
+
} | {
|
|
139
|
+
matched: true;
|
|
140
|
+
pattern: string;
|
|
141
|
+
};
|
|
142
|
+
enforce(siteurl: string): void;
|
|
143
|
+
static fromEnv(): ProdGuard;
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
interface SshTargetOptions {
|
|
147
|
+
host: string;
|
|
148
|
+
user: string;
|
|
149
|
+
port?: number;
|
|
150
|
+
privateKeyPath?: string;
|
|
151
|
+
password?: string;
|
|
152
|
+
wpPath: string;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
interface DockerTargetOptions {
|
|
156
|
+
containerName: string;
|
|
157
|
+
wpPath: string;
|
|
158
|
+
/** Override default docker socket / host. Useful for remote docker. */
|
|
159
|
+
dockerHost?: string;
|
|
160
|
+
dockerSocketPath?: string;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
interface Credential {
|
|
164
|
+
/** Canonical hostname, e.g. "walnutztudio.com" (lowercase, no scheme, no port). */
|
|
165
|
+
site: string;
|
|
166
|
+
/** WP user login (not email). */
|
|
167
|
+
username: string;
|
|
168
|
+
/** WP Application Password. Never logged. Never serialized to artifacts. */
|
|
169
|
+
appPassword: string;
|
|
170
|
+
/** ISO 8601. */
|
|
171
|
+
addedAt: string;
|
|
172
|
+
/** ISO 8601, optional — runtime updates via `touch`. */
|
|
173
|
+
lastUsedAt?: string;
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
type ConnectInput = {
|
|
177
|
+
kind: "local";
|
|
178
|
+
path: string;
|
|
179
|
+
} | {
|
|
180
|
+
kind: "rest";
|
|
181
|
+
url: string;
|
|
182
|
+
credential: Credential;
|
|
183
|
+
} | {
|
|
184
|
+
kind: "ssh";
|
|
185
|
+
options: SshTargetOptions;
|
|
186
|
+
} | {
|
|
187
|
+
kind: "docker";
|
|
188
|
+
options: DockerTargetOptions;
|
|
189
|
+
};
|
|
190
|
+
declare function openTarget(input: ConnectInput): Promise<Target>;
|
|
191
|
+
|
|
192
|
+
declare class WplabError extends Error {
|
|
193
|
+
readonly code: string;
|
|
194
|
+
readonly meta: Record<string, unknown>;
|
|
195
|
+
constructor(code: string, message: string, meta?: Record<string, unknown>);
|
|
196
|
+
toJSON(): {
|
|
197
|
+
code: string;
|
|
198
|
+
message: string;
|
|
199
|
+
meta: Record<string, unknown>;
|
|
200
|
+
};
|
|
201
|
+
}
|
|
202
|
+
declare class TargetNotFoundError extends WplabError {
|
|
203
|
+
constructor(targetId: string);
|
|
204
|
+
}
|
|
205
|
+
declare class WpCliNotFoundError extends WplabError {
|
|
206
|
+
constructor();
|
|
207
|
+
}
|
|
208
|
+
declare class WpCliBlockedError extends WplabError {
|
|
209
|
+
constructor(args: string[], reason: "not_in_allowlist" | "never_allowed");
|
|
210
|
+
}
|
|
211
|
+
declare class FsScopeError extends WplabError {
|
|
212
|
+
constructor(path: string, reason: string);
|
|
213
|
+
}
|
|
214
|
+
declare class ProductionBlockedError extends WplabError {
|
|
215
|
+
constructor(siteurl: string, matchedPattern: string);
|
|
216
|
+
}
|
|
217
|
+
declare class DbWriteBlockedError extends WplabError {
|
|
218
|
+
constructor(sql: string);
|
|
219
|
+
}
|
|
220
|
+
declare class CompanionUnavailableError extends WplabError {
|
|
221
|
+
constructor(targetId: string, detail: string);
|
|
222
|
+
}
|
|
223
|
+
declare class PowerProfileRequiredError extends WplabError {
|
|
224
|
+
constructor();
|
|
225
|
+
}
|
|
226
|
+
declare class AstRejectedError extends WplabError {
|
|
227
|
+
constructor(token: string, location: string);
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
type errors_AstRejectedError = AstRejectedError;
|
|
231
|
+
declare const errors_AstRejectedError: typeof AstRejectedError;
|
|
232
|
+
type errors_CompanionUnavailableError = CompanionUnavailableError;
|
|
233
|
+
declare const errors_CompanionUnavailableError: typeof CompanionUnavailableError;
|
|
234
|
+
type errors_DbWriteBlockedError = DbWriteBlockedError;
|
|
235
|
+
declare const errors_DbWriteBlockedError: typeof DbWriteBlockedError;
|
|
236
|
+
type errors_FsScopeError = FsScopeError;
|
|
237
|
+
declare const errors_FsScopeError: typeof FsScopeError;
|
|
238
|
+
type errors_PowerProfileRequiredError = PowerProfileRequiredError;
|
|
239
|
+
declare const errors_PowerProfileRequiredError: typeof PowerProfileRequiredError;
|
|
240
|
+
type errors_ProductionBlockedError = ProductionBlockedError;
|
|
241
|
+
declare const errors_ProductionBlockedError: typeof ProductionBlockedError;
|
|
242
|
+
type errors_TargetNotFoundError = TargetNotFoundError;
|
|
243
|
+
declare const errors_TargetNotFoundError: typeof TargetNotFoundError;
|
|
244
|
+
type errors_WpCliBlockedError = WpCliBlockedError;
|
|
245
|
+
declare const errors_WpCliBlockedError: typeof WpCliBlockedError;
|
|
246
|
+
type errors_WpCliNotFoundError = WpCliNotFoundError;
|
|
247
|
+
declare const errors_WpCliNotFoundError: typeof WpCliNotFoundError;
|
|
248
|
+
type errors_WplabError = WplabError;
|
|
249
|
+
declare const errors_WplabError: typeof WplabError;
|
|
250
|
+
declare namespace errors {
|
|
251
|
+
export { errors_AstRejectedError as AstRejectedError, errors_CompanionUnavailableError as CompanionUnavailableError, errors_DbWriteBlockedError as DbWriteBlockedError, errors_FsScopeError as FsScopeError, errors_PowerProfileRequiredError as PowerProfileRequiredError, errors_ProductionBlockedError as ProductionBlockedError, errors_TargetNotFoundError as TargetNotFoundError, errors_WpCliBlockedError as WpCliBlockedError, errors_WpCliNotFoundError as WpCliNotFoundError, errors_WplabError as WplabError };
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
declare const TargetIdSchema: z.ZodString;
|
|
255
|
+
declare const RunIdSchema: z.ZodString;
|
|
256
|
+
declare const ConnectLocalInputSchema: z.ZodObject<{
|
|
257
|
+
path: z.ZodString;
|
|
258
|
+
}, "strip", z.ZodTypeAny, {
|
|
259
|
+
path: string;
|
|
260
|
+
}, {
|
|
261
|
+
path: string;
|
|
262
|
+
}>;
|
|
263
|
+
type ConnectLocalInput = z.infer<typeof ConnectLocalInputSchema>;
|
|
264
|
+
declare const ConnectLocalOutputSchema: z.ZodObject<{
|
|
265
|
+
target_id: z.ZodString;
|
|
266
|
+
siteurl: z.ZodString;
|
|
267
|
+
wp_version: z.ZodString;
|
|
268
|
+
php_version: z.ZodOptional<z.ZodString>;
|
|
269
|
+
companion: z.ZodNullable<z.ZodObject<{
|
|
270
|
+
installed: z.ZodBoolean;
|
|
271
|
+
version: z.ZodNullable<z.ZodString>;
|
|
272
|
+
capabilities: z.ZodArray<z.ZodString, "many">;
|
|
273
|
+
}, "strip", z.ZodTypeAny, {
|
|
274
|
+
version: string | null;
|
|
275
|
+
installed: boolean;
|
|
276
|
+
capabilities: string[];
|
|
277
|
+
}, {
|
|
278
|
+
version: string | null;
|
|
279
|
+
installed: boolean;
|
|
280
|
+
capabilities: string[];
|
|
281
|
+
}>>;
|
|
282
|
+
}, "strip", z.ZodTypeAny, {
|
|
283
|
+
companion: {
|
|
284
|
+
version: string | null;
|
|
285
|
+
installed: boolean;
|
|
286
|
+
capabilities: string[];
|
|
287
|
+
} | null;
|
|
288
|
+
siteurl: string;
|
|
289
|
+
wp_version: string;
|
|
290
|
+
target_id: string;
|
|
291
|
+
php_version?: string | undefined;
|
|
292
|
+
}, {
|
|
293
|
+
companion: {
|
|
294
|
+
version: string | null;
|
|
295
|
+
installed: boolean;
|
|
296
|
+
capabilities: string[];
|
|
297
|
+
} | null;
|
|
298
|
+
siteurl: string;
|
|
299
|
+
wp_version: string;
|
|
300
|
+
target_id: string;
|
|
301
|
+
php_version?: string | undefined;
|
|
302
|
+
}>;
|
|
303
|
+
type ConnectLocalOutput = z.infer<typeof ConnectLocalOutputSchema>;
|
|
304
|
+
declare const ConnectRestInputSchema: z.ZodObject<{
|
|
305
|
+
url: z.ZodEffects<z.ZodString, string, string>;
|
|
306
|
+
credential_ref: z.ZodOptional<z.ZodString>;
|
|
307
|
+
require_companion: z.ZodDefault<z.ZodBoolean>;
|
|
308
|
+
}, "strip", z.ZodTypeAny, {
|
|
309
|
+
url: string;
|
|
310
|
+
require_companion: boolean;
|
|
311
|
+
credential_ref?: string | undefined;
|
|
312
|
+
}, {
|
|
313
|
+
url: string;
|
|
314
|
+
credential_ref?: string | undefined;
|
|
315
|
+
require_companion?: boolean | undefined;
|
|
316
|
+
}>;
|
|
317
|
+
type ConnectRestInput = z.infer<typeof ConnectRestInputSchema>;
|
|
318
|
+
declare const ConnectRestOutputSchema: z.ZodObject<{
|
|
319
|
+
target_id: z.ZodString;
|
|
320
|
+
siteurl: z.ZodString;
|
|
321
|
+
wp_version: z.ZodString;
|
|
322
|
+
php_version: z.ZodOptional<z.ZodString>;
|
|
323
|
+
companion: z.ZodNullable<z.ZodObject<{
|
|
324
|
+
installed: z.ZodBoolean;
|
|
325
|
+
enabled: z.ZodBoolean;
|
|
326
|
+
version: z.ZodNullable<z.ZodString>;
|
|
327
|
+
capabilities: z.ZodArray<z.ZodString, "many">;
|
|
328
|
+
}, "strip", z.ZodTypeAny, {
|
|
329
|
+
version: string | null;
|
|
330
|
+
installed: boolean;
|
|
331
|
+
enabled: boolean;
|
|
332
|
+
capabilities: string[];
|
|
333
|
+
}, {
|
|
334
|
+
version: string | null;
|
|
335
|
+
installed: boolean;
|
|
336
|
+
enabled: boolean;
|
|
337
|
+
capabilities: string[];
|
|
338
|
+
}>>;
|
|
339
|
+
memory_summary: z.ZodOptional<z.ZodString>;
|
|
340
|
+
}, "strip", z.ZodTypeAny, {
|
|
341
|
+
companion: {
|
|
342
|
+
version: string | null;
|
|
343
|
+
installed: boolean;
|
|
344
|
+
enabled: boolean;
|
|
345
|
+
capabilities: string[];
|
|
346
|
+
} | null;
|
|
347
|
+
siteurl: string;
|
|
348
|
+
wp_version: string;
|
|
349
|
+
target_id: string;
|
|
350
|
+
php_version?: string | undefined;
|
|
351
|
+
memory_summary?: string | undefined;
|
|
352
|
+
}, {
|
|
353
|
+
companion: {
|
|
354
|
+
version: string | null;
|
|
355
|
+
installed: boolean;
|
|
356
|
+
enabled: boolean;
|
|
357
|
+
capabilities: string[];
|
|
358
|
+
} | null;
|
|
359
|
+
siteurl: string;
|
|
360
|
+
wp_version: string;
|
|
361
|
+
target_id: string;
|
|
362
|
+
php_version?: string | undefined;
|
|
363
|
+
memory_summary?: string | undefined;
|
|
364
|
+
}>;
|
|
365
|
+
type ConnectRestOutput = z.infer<typeof ConnectRestOutputSchema>;
|
|
366
|
+
declare const ConnectSshInputSchema: z.ZodObject<{
|
|
367
|
+
host: z.ZodString;
|
|
368
|
+
user: z.ZodString;
|
|
369
|
+
wp_path: z.ZodString;
|
|
370
|
+
port: z.ZodDefault<z.ZodNumber>;
|
|
371
|
+
private_key_path: z.ZodOptional<z.ZodString>;
|
|
372
|
+
password: z.ZodOptional<z.ZodString>;
|
|
373
|
+
}, "strip", z.ZodTypeAny, {
|
|
374
|
+
host: string;
|
|
375
|
+
port: number;
|
|
376
|
+
user: string;
|
|
377
|
+
wp_path: string;
|
|
378
|
+
password?: string | undefined;
|
|
379
|
+
private_key_path?: string | undefined;
|
|
380
|
+
}, {
|
|
381
|
+
host: string;
|
|
382
|
+
user: string;
|
|
383
|
+
wp_path: string;
|
|
384
|
+
port?: number | undefined;
|
|
385
|
+
password?: string | undefined;
|
|
386
|
+
private_key_path?: string | undefined;
|
|
387
|
+
}>;
|
|
388
|
+
type ConnectSshInput = z.infer<typeof ConnectSshInputSchema>;
|
|
389
|
+
declare const ConnectSshOutputSchema: z.ZodObject<{
|
|
390
|
+
target_id: z.ZodString;
|
|
391
|
+
siteurl: z.ZodString;
|
|
392
|
+
wp_version: z.ZodString;
|
|
393
|
+
}, "strip", z.ZodTypeAny, {
|
|
394
|
+
siteurl: string;
|
|
395
|
+
wp_version: string;
|
|
396
|
+
target_id: string;
|
|
397
|
+
}, {
|
|
398
|
+
siteurl: string;
|
|
399
|
+
wp_version: string;
|
|
400
|
+
target_id: string;
|
|
401
|
+
}>;
|
|
402
|
+
type ConnectSshOutput = z.infer<typeof ConnectSshOutputSchema>;
|
|
403
|
+
declare const ConnectDockerInputSchema: z.ZodObject<{
|
|
404
|
+
container_name: z.ZodString;
|
|
405
|
+
wp_path: z.ZodDefault<z.ZodString>;
|
|
406
|
+
docker_host: z.ZodOptional<z.ZodString>;
|
|
407
|
+
docker_socket_path: z.ZodOptional<z.ZodString>;
|
|
408
|
+
}, "strip", z.ZodTypeAny, {
|
|
409
|
+
wp_path: string;
|
|
410
|
+
container_name: string;
|
|
411
|
+
docker_host?: string | undefined;
|
|
412
|
+
docker_socket_path?: string | undefined;
|
|
413
|
+
}, {
|
|
414
|
+
container_name: string;
|
|
415
|
+
wp_path?: string | undefined;
|
|
416
|
+
docker_host?: string | undefined;
|
|
417
|
+
docker_socket_path?: string | undefined;
|
|
418
|
+
}>;
|
|
419
|
+
type ConnectDockerInput = z.infer<typeof ConnectDockerInputSchema>;
|
|
420
|
+
declare const ConnectDockerOutputSchema: z.ZodObject<{
|
|
421
|
+
target_id: z.ZodString;
|
|
422
|
+
siteurl: z.ZodString;
|
|
423
|
+
wp_version: z.ZodString;
|
|
424
|
+
}, "strip", z.ZodTypeAny, {
|
|
425
|
+
siteurl: string;
|
|
426
|
+
wp_version: string;
|
|
427
|
+
target_id: string;
|
|
428
|
+
}, {
|
|
429
|
+
siteurl: string;
|
|
430
|
+
wp_version: string;
|
|
431
|
+
target_id: string;
|
|
432
|
+
}>;
|
|
433
|
+
type ConnectDockerOutput = z.infer<typeof ConnectDockerOutputSchema>;
|
|
434
|
+
declare const DisconnectInputSchema: z.ZodObject<{
|
|
435
|
+
target_id: z.ZodString;
|
|
436
|
+
}, "strip", z.ZodTypeAny, {
|
|
437
|
+
target_id: string;
|
|
438
|
+
}, {
|
|
439
|
+
target_id: string;
|
|
440
|
+
}>;
|
|
441
|
+
type DisconnectInput = z.infer<typeof DisconnectInputSchema>;
|
|
442
|
+
declare const DisconnectOutputSchema: z.ZodObject<{
|
|
443
|
+
closed: z.ZodLiteral<true>;
|
|
444
|
+
}, "strip", z.ZodTypeAny, {
|
|
445
|
+
closed: true;
|
|
446
|
+
}, {
|
|
447
|
+
closed: true;
|
|
448
|
+
}>;
|
|
449
|
+
type DisconnectOutput = z.infer<typeof DisconnectOutputSchema>;
|
|
450
|
+
declare const WpCliRunInputSchema: z.ZodObject<{
|
|
451
|
+
target_id: z.ZodString;
|
|
452
|
+
args: z.ZodArray<z.ZodString, "many">;
|
|
453
|
+
allow_destructive: z.ZodDefault<z.ZodBoolean>;
|
|
454
|
+
timeout_ms: z.ZodDefault<z.ZodNumber>;
|
|
455
|
+
}, "strip", z.ZodTypeAny, {
|
|
456
|
+
args: string[];
|
|
457
|
+
target_id: string;
|
|
458
|
+
allow_destructive: boolean;
|
|
459
|
+
timeout_ms: number;
|
|
460
|
+
}, {
|
|
461
|
+
args: string[];
|
|
462
|
+
target_id: string;
|
|
463
|
+
allow_destructive?: boolean | undefined;
|
|
464
|
+
timeout_ms?: number | undefined;
|
|
465
|
+
}>;
|
|
466
|
+
type WpCliRunInput = z.infer<typeof WpCliRunInputSchema>;
|
|
467
|
+
declare const WpCliRunOutputSchema: z.ZodObject<{
|
|
468
|
+
exit_code: z.ZodNumber;
|
|
469
|
+
stdout: z.ZodString;
|
|
470
|
+
stderr: z.ZodString;
|
|
471
|
+
duration_ms: z.ZodNumber;
|
|
472
|
+
}, "strip", z.ZodTypeAny, {
|
|
473
|
+
stdout: string;
|
|
474
|
+
stderr: string;
|
|
475
|
+
exit_code: number;
|
|
476
|
+
duration_ms: number;
|
|
477
|
+
}, {
|
|
478
|
+
stdout: string;
|
|
479
|
+
stderr: string;
|
|
480
|
+
exit_code: number;
|
|
481
|
+
duration_ms: number;
|
|
482
|
+
}>;
|
|
483
|
+
type WpCliRunOutput = z.infer<typeof WpCliRunOutputSchema>;
|
|
484
|
+
declare const WpHealthCheckInputSchema: z.ZodObject<{
|
|
485
|
+
target_id: z.ZodString;
|
|
486
|
+
}, "strip", z.ZodTypeAny, {
|
|
487
|
+
target_id: string;
|
|
488
|
+
}, {
|
|
489
|
+
target_id: string;
|
|
490
|
+
}>;
|
|
491
|
+
type WpHealthCheckInput = z.infer<typeof WpHealthCheckInputSchema>;
|
|
492
|
+
declare const WpHealthCheckOutputSchema: z.ZodObject<{
|
|
493
|
+
wp_version: z.ZodString;
|
|
494
|
+
php_version: z.ZodOptional<z.ZodString>;
|
|
495
|
+
db_ok: z.ZodBoolean;
|
|
496
|
+
wp_cli_ok: z.ZodBoolean;
|
|
497
|
+
rest_ok: z.ZodBoolean;
|
|
498
|
+
companion_ok: z.ZodBoolean;
|
|
499
|
+
site_url: z.ZodString;
|
|
500
|
+
warnings: z.ZodArray<z.ZodString, "many">;
|
|
501
|
+
}, "strip", z.ZodTypeAny, {
|
|
502
|
+
wp_version: string;
|
|
503
|
+
db_ok: boolean;
|
|
504
|
+
wp_cli_ok: boolean;
|
|
505
|
+
rest_ok: boolean;
|
|
506
|
+
companion_ok: boolean;
|
|
507
|
+
site_url: string;
|
|
508
|
+
warnings: string[];
|
|
509
|
+
php_version?: string | undefined;
|
|
510
|
+
}, {
|
|
511
|
+
wp_version: string;
|
|
512
|
+
db_ok: boolean;
|
|
513
|
+
wp_cli_ok: boolean;
|
|
514
|
+
rest_ok: boolean;
|
|
515
|
+
companion_ok: boolean;
|
|
516
|
+
site_url: string;
|
|
517
|
+
warnings: string[];
|
|
518
|
+
php_version?: string | undefined;
|
|
519
|
+
}>;
|
|
520
|
+
type WpHealthCheckOutput = z.infer<typeof WpHealthCheckOutputSchema>;
|
|
521
|
+
declare const PostGetInputSchema: z.ZodObject<{
|
|
522
|
+
target_id: z.ZodString;
|
|
523
|
+
id: z.ZodNumber;
|
|
524
|
+
context: z.ZodDefault<z.ZodEnum<["view", "edit", "embed"]>>;
|
|
525
|
+
type: z.ZodDefault<z.ZodString>;
|
|
526
|
+
}, "strip", z.ZodTypeAny, {
|
|
527
|
+
type: string;
|
|
528
|
+
id: number;
|
|
529
|
+
target_id: string;
|
|
530
|
+
context: "view" | "edit" | "embed";
|
|
531
|
+
}, {
|
|
532
|
+
id: number;
|
|
533
|
+
target_id: string;
|
|
534
|
+
type?: string | undefined;
|
|
535
|
+
context?: "view" | "edit" | "embed" | undefined;
|
|
536
|
+
}>;
|
|
537
|
+
type PostGetInput = z.infer<typeof PostGetInputSchema>;
|
|
538
|
+
declare const PostGetOutputSchema: z.ZodObject<{
|
|
539
|
+
status: z.ZodNumber;
|
|
540
|
+
post: z.ZodUnknown;
|
|
541
|
+
}, "strip", z.ZodTypeAny, {
|
|
542
|
+
status: number;
|
|
543
|
+
post?: unknown;
|
|
544
|
+
}, {
|
|
545
|
+
status: number;
|
|
546
|
+
post?: unknown;
|
|
547
|
+
}>;
|
|
548
|
+
type PostGetOutput = z.infer<typeof PostGetOutputSchema>;
|
|
549
|
+
declare const PostListInputSchema: z.ZodObject<{
|
|
550
|
+
target_id: z.ZodString;
|
|
551
|
+
type: z.ZodDefault<z.ZodString>;
|
|
552
|
+
per_page: z.ZodDefault<z.ZodNumber>;
|
|
553
|
+
page: z.ZodDefault<z.ZodNumber>;
|
|
554
|
+
search: z.ZodOptional<z.ZodString>;
|
|
555
|
+
status: z.ZodOptional<z.ZodString>;
|
|
556
|
+
orderby: z.ZodOptional<z.ZodString>;
|
|
557
|
+
order: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
558
|
+
}, "strip", z.ZodTypeAny, {
|
|
559
|
+
type: string;
|
|
560
|
+
target_id: string;
|
|
561
|
+
per_page: number;
|
|
562
|
+
page: number;
|
|
563
|
+
status?: string | undefined;
|
|
564
|
+
search?: string | undefined;
|
|
565
|
+
orderby?: string | undefined;
|
|
566
|
+
order?: "asc" | "desc" | undefined;
|
|
567
|
+
}, {
|
|
568
|
+
target_id: string;
|
|
569
|
+
type?: string | undefined;
|
|
570
|
+
status?: string | undefined;
|
|
571
|
+
search?: string | undefined;
|
|
572
|
+
per_page?: number | undefined;
|
|
573
|
+
page?: number | undefined;
|
|
574
|
+
orderby?: string | undefined;
|
|
575
|
+
order?: "asc" | "desc" | undefined;
|
|
576
|
+
}>;
|
|
577
|
+
type PostListInput = z.infer<typeof PostListInputSchema>;
|
|
578
|
+
declare const PostListOutputSchema: z.ZodObject<{
|
|
579
|
+
status: z.ZodNumber;
|
|
580
|
+
items: z.ZodArray<z.ZodUnknown, "many">;
|
|
581
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
582
|
+
total_pages: z.ZodOptional<z.ZodNumber>;
|
|
583
|
+
}, "strip", z.ZodTypeAny, {
|
|
584
|
+
status: number;
|
|
585
|
+
items: unknown[];
|
|
586
|
+
total?: number | undefined;
|
|
587
|
+
total_pages?: number | undefined;
|
|
588
|
+
}, {
|
|
589
|
+
status: number;
|
|
590
|
+
items: unknown[];
|
|
591
|
+
total?: number | undefined;
|
|
592
|
+
total_pages?: number | undefined;
|
|
593
|
+
}>;
|
|
594
|
+
type PostListOutput = z.infer<typeof PostListOutputSchema>;
|
|
595
|
+
declare const PostCreateInputSchema: z.ZodObject<{
|
|
596
|
+
target_id: z.ZodString;
|
|
597
|
+
type: z.ZodDefault<z.ZodString>;
|
|
598
|
+
title: z.ZodString;
|
|
599
|
+
content: z.ZodString;
|
|
600
|
+
status: z.ZodDefault<z.ZodEnum<["publish", "future", "draft", "pending", "private"]>>;
|
|
601
|
+
excerpt: z.ZodOptional<z.ZodString>;
|
|
602
|
+
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
603
|
+
}, "strip", z.ZodTypeAny, {
|
|
604
|
+
type: string;
|
|
605
|
+
status: "publish" | "future" | "draft" | "pending" | "private";
|
|
606
|
+
content: string;
|
|
607
|
+
target_id: string;
|
|
608
|
+
title: string;
|
|
609
|
+
excerpt?: string | undefined;
|
|
610
|
+
meta?: Record<string, unknown> | undefined;
|
|
611
|
+
}, {
|
|
612
|
+
content: string;
|
|
613
|
+
target_id: string;
|
|
614
|
+
title: string;
|
|
615
|
+
type?: string | undefined;
|
|
616
|
+
status?: "publish" | "future" | "draft" | "pending" | "private" | undefined;
|
|
617
|
+
excerpt?: string | undefined;
|
|
618
|
+
meta?: Record<string, unknown> | undefined;
|
|
619
|
+
}>;
|
|
620
|
+
type PostCreateInput = z.infer<typeof PostCreateInputSchema>;
|
|
621
|
+
declare const PostCreateOutputSchema: z.ZodObject<{
|
|
622
|
+
status: z.ZodNumber;
|
|
623
|
+
id: z.ZodNumber;
|
|
624
|
+
link: z.ZodOptional<z.ZodString>;
|
|
625
|
+
}, "strip", z.ZodTypeAny, {
|
|
626
|
+
status: number;
|
|
627
|
+
id: number;
|
|
628
|
+
link?: string | undefined;
|
|
629
|
+
}, {
|
|
630
|
+
status: number;
|
|
631
|
+
id: number;
|
|
632
|
+
link?: string | undefined;
|
|
633
|
+
}>;
|
|
634
|
+
type PostCreateOutput = z.infer<typeof PostCreateOutputSchema>;
|
|
635
|
+
declare const PostUpdateInputSchema: z.ZodObject<{
|
|
636
|
+
target_id: z.ZodString;
|
|
637
|
+
type: z.ZodDefault<z.ZodString>;
|
|
638
|
+
id: z.ZodNumber;
|
|
639
|
+
title: z.ZodOptional<z.ZodString>;
|
|
640
|
+
content: z.ZodOptional<z.ZodString>;
|
|
641
|
+
status: z.ZodOptional<z.ZodEnum<["publish", "future", "draft", "pending", "private"]>>;
|
|
642
|
+
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
643
|
+
}, "strip", z.ZodTypeAny, {
|
|
644
|
+
type: string;
|
|
645
|
+
id: number;
|
|
646
|
+
target_id: string;
|
|
647
|
+
status?: "publish" | "future" | "draft" | "pending" | "private" | undefined;
|
|
648
|
+
content?: string | undefined;
|
|
649
|
+
title?: string | undefined;
|
|
650
|
+
meta?: Record<string, unknown> | undefined;
|
|
651
|
+
}, {
|
|
652
|
+
id: number;
|
|
653
|
+
target_id: string;
|
|
654
|
+
type?: string | undefined;
|
|
655
|
+
status?: "publish" | "future" | "draft" | "pending" | "private" | undefined;
|
|
656
|
+
content?: string | undefined;
|
|
657
|
+
title?: string | undefined;
|
|
658
|
+
meta?: Record<string, unknown> | undefined;
|
|
659
|
+
}>;
|
|
660
|
+
type PostUpdateInput = z.infer<typeof PostUpdateInputSchema>;
|
|
661
|
+
declare const PostUpdateOutputSchema: z.ZodObject<{
|
|
662
|
+
status: z.ZodNumber;
|
|
663
|
+
id: z.ZodNumber;
|
|
664
|
+
modified: z.ZodOptional<z.ZodString>;
|
|
665
|
+
}, "strip", z.ZodTypeAny, {
|
|
666
|
+
status: number;
|
|
667
|
+
id: number;
|
|
668
|
+
modified?: string | undefined;
|
|
669
|
+
}, {
|
|
670
|
+
status: number;
|
|
671
|
+
id: number;
|
|
672
|
+
modified?: string | undefined;
|
|
673
|
+
}>;
|
|
674
|
+
type PostUpdateOutput = z.infer<typeof PostUpdateOutputSchema>;
|
|
675
|
+
declare const OptionGetInputSchema: z.ZodObject<{
|
|
676
|
+
target_id: z.ZodString;
|
|
677
|
+
name: z.ZodString;
|
|
678
|
+
}, "strip", z.ZodTypeAny, {
|
|
679
|
+
name: string;
|
|
680
|
+
target_id: string;
|
|
681
|
+
}, {
|
|
682
|
+
name: string;
|
|
683
|
+
target_id: string;
|
|
684
|
+
}>;
|
|
685
|
+
type OptionGetInput = z.infer<typeof OptionGetInputSchema>;
|
|
686
|
+
declare const OptionGetOutputSchema: z.ZodObject<{
|
|
687
|
+
name: z.ZodString;
|
|
688
|
+
value: z.ZodUnknown;
|
|
689
|
+
source: z.ZodEnum<["wp_cli", "rest_settings"]>;
|
|
690
|
+
}, "strip", z.ZodTypeAny, {
|
|
691
|
+
name: string;
|
|
692
|
+
source: "wp_cli" | "rest_settings";
|
|
693
|
+
value?: unknown;
|
|
694
|
+
}, {
|
|
695
|
+
name: string;
|
|
696
|
+
source: "wp_cli" | "rest_settings";
|
|
697
|
+
value?: unknown;
|
|
698
|
+
}>;
|
|
699
|
+
type OptionGetOutput = z.infer<typeof OptionGetOutputSchema>;
|
|
700
|
+
declare const OptionSetInputSchema: z.ZodObject<{
|
|
701
|
+
target_id: z.ZodString;
|
|
702
|
+
name: z.ZodString;
|
|
703
|
+
value: z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodArray<z.ZodUnknown, "many">]>;
|
|
704
|
+
confirm: z.ZodDefault<z.ZodBoolean>;
|
|
705
|
+
}, "strip", z.ZodTypeAny, {
|
|
706
|
+
value: string | number | boolean | Record<string, unknown> | unknown[];
|
|
707
|
+
name: string;
|
|
708
|
+
target_id: string;
|
|
709
|
+
confirm: boolean;
|
|
710
|
+
}, {
|
|
711
|
+
value: string | number | boolean | Record<string, unknown> | unknown[];
|
|
712
|
+
name: string;
|
|
713
|
+
target_id: string;
|
|
714
|
+
confirm?: boolean | undefined;
|
|
715
|
+
}>;
|
|
716
|
+
type OptionSetInput = z.infer<typeof OptionSetInputSchema>;
|
|
717
|
+
declare const OptionSetOutputSchema: z.ZodObject<{
|
|
718
|
+
name: z.ZodString;
|
|
719
|
+
changed: z.ZodBoolean;
|
|
720
|
+
source: z.ZodEnum<["wp_cli", "rest_settings"]>;
|
|
721
|
+
}, "strip", z.ZodTypeAny, {
|
|
722
|
+
name: string;
|
|
723
|
+
source: "wp_cli" | "rest_settings";
|
|
724
|
+
changed: boolean;
|
|
725
|
+
}, {
|
|
726
|
+
name: string;
|
|
727
|
+
source: "wp_cli" | "rest_settings";
|
|
728
|
+
changed: boolean;
|
|
729
|
+
}>;
|
|
730
|
+
type OptionSetOutput = z.infer<typeof OptionSetOutputSchema>;
|
|
731
|
+
declare const UserListInputSchema: z.ZodObject<{
|
|
732
|
+
target_id: z.ZodString;
|
|
733
|
+
per_page: z.ZodDefault<z.ZodNumber>;
|
|
734
|
+
page: z.ZodDefault<z.ZodNumber>;
|
|
735
|
+
search: z.ZodOptional<z.ZodString>;
|
|
736
|
+
role: z.ZodOptional<z.ZodString>;
|
|
737
|
+
}, "strip", z.ZodTypeAny, {
|
|
738
|
+
target_id: string;
|
|
739
|
+
per_page: number;
|
|
740
|
+
page: number;
|
|
741
|
+
search?: string | undefined;
|
|
742
|
+
role?: string | undefined;
|
|
743
|
+
}, {
|
|
744
|
+
target_id: string;
|
|
745
|
+
search?: string | undefined;
|
|
746
|
+
per_page?: number | undefined;
|
|
747
|
+
page?: number | undefined;
|
|
748
|
+
role?: string | undefined;
|
|
749
|
+
}>;
|
|
750
|
+
type UserListInput = z.infer<typeof UserListInputSchema>;
|
|
751
|
+
declare const UserListOutputSchema: z.ZodObject<{
|
|
752
|
+
status: z.ZodNumber;
|
|
753
|
+
users: z.ZodArray<z.ZodUnknown, "many">;
|
|
754
|
+
}, "strip", z.ZodTypeAny, {
|
|
755
|
+
status: number;
|
|
756
|
+
users: unknown[];
|
|
757
|
+
}, {
|
|
758
|
+
status: number;
|
|
759
|
+
users: unknown[];
|
|
760
|
+
}>;
|
|
761
|
+
type UserListOutput = z.infer<typeof UserListOutputSchema>;
|
|
762
|
+
declare const DbQueryInputSchema: z.ZodObject<{
|
|
763
|
+
target_id: z.ZodString;
|
|
764
|
+
sql: z.ZodString;
|
|
765
|
+
allow_write: z.ZodDefault<z.ZodBoolean>;
|
|
766
|
+
confirm: z.ZodDefault<z.ZodBoolean>;
|
|
767
|
+
}, "strip", z.ZodTypeAny, {
|
|
768
|
+
target_id: string;
|
|
769
|
+
confirm: boolean;
|
|
770
|
+
sql: string;
|
|
771
|
+
allow_write: boolean;
|
|
772
|
+
}, {
|
|
773
|
+
target_id: string;
|
|
774
|
+
sql: string;
|
|
775
|
+
confirm?: boolean | undefined;
|
|
776
|
+
allow_write?: boolean | undefined;
|
|
777
|
+
}>;
|
|
778
|
+
type DbQueryInput = z.infer<typeof DbQueryInputSchema>;
|
|
779
|
+
declare const DbQueryOutputSchema: z.ZodObject<{
|
|
780
|
+
rows: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
|
|
781
|
+
stdout: z.ZodString;
|
|
782
|
+
stderr: z.ZodString;
|
|
783
|
+
exit_code: z.ZodNumber;
|
|
784
|
+
}, "strip", z.ZodTypeAny, {
|
|
785
|
+
stdout: string;
|
|
786
|
+
stderr: string;
|
|
787
|
+
exit_code: number;
|
|
788
|
+
rows?: Record<string, unknown>[] | undefined;
|
|
789
|
+
}, {
|
|
790
|
+
stdout: string;
|
|
791
|
+
stderr: string;
|
|
792
|
+
exit_code: number;
|
|
793
|
+
rows?: Record<string, unknown>[] | undefined;
|
|
794
|
+
}>;
|
|
795
|
+
type DbQueryOutput = z.infer<typeof DbQueryOutputSchema>;
|
|
796
|
+
declare const RestRequestInputSchema: z.ZodObject<{
|
|
797
|
+
target_id: z.ZodString;
|
|
798
|
+
method: z.ZodDefault<z.ZodEnum<["GET", "POST", "PUT", "PATCH", "DELETE"]>>;
|
|
799
|
+
path: z.ZodString;
|
|
800
|
+
query: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>>;
|
|
801
|
+
body: z.ZodOptional<z.ZodUnknown>;
|
|
802
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
803
|
+
}, "strip", z.ZodTypeAny, {
|
|
804
|
+
path: string;
|
|
805
|
+
target_id: string;
|
|
806
|
+
method: "GET" | "POST" | "PUT" | "PATCH" | "DELETE";
|
|
807
|
+
body?: unknown;
|
|
808
|
+
headers?: Record<string, string> | undefined;
|
|
809
|
+
query?: Record<string, string | number | boolean> | undefined;
|
|
810
|
+
}, {
|
|
811
|
+
path: string;
|
|
812
|
+
target_id: string;
|
|
813
|
+
body?: unknown;
|
|
814
|
+
headers?: Record<string, string> | undefined;
|
|
815
|
+
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
816
|
+
query?: Record<string, string | number | boolean> | undefined;
|
|
817
|
+
}>;
|
|
818
|
+
type RestRequestInput = z.infer<typeof RestRequestInputSchema>;
|
|
819
|
+
declare const RestRequestOutputSchema: z.ZodObject<{
|
|
820
|
+
status: z.ZodNumber;
|
|
821
|
+
body: z.ZodUnknown;
|
|
822
|
+
headers: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
823
|
+
}, "strip", z.ZodTypeAny, {
|
|
824
|
+
status: number;
|
|
825
|
+
headers: Record<string, string>;
|
|
826
|
+
body?: unknown;
|
|
827
|
+
}, {
|
|
828
|
+
status: number;
|
|
829
|
+
headers: Record<string, string>;
|
|
830
|
+
body?: unknown;
|
|
831
|
+
}>;
|
|
832
|
+
type RestRequestOutput = z.infer<typeof RestRequestOutputSchema>;
|
|
833
|
+
declare const ScaffoldBlockInputSchema: z.ZodObject<{
|
|
834
|
+
target_id: z.ZodString;
|
|
835
|
+
plugin_slug: z.ZodString;
|
|
836
|
+
block_slug: z.ZodString;
|
|
837
|
+
title: z.ZodString;
|
|
838
|
+
description: z.ZodOptional<z.ZodString>;
|
|
839
|
+
category: z.ZodDefault<z.ZodString>;
|
|
840
|
+
icon: z.ZodDefault<z.ZodString>;
|
|
841
|
+
render_strategy: z.ZodDefault<z.ZodEnum<["dynamic", "static"]>>;
|
|
842
|
+
allow_destructive: z.ZodLiteral<true>;
|
|
843
|
+
}, "strip", z.ZodTypeAny, {
|
|
844
|
+
target_id: string;
|
|
845
|
+
allow_destructive: true;
|
|
846
|
+
title: string;
|
|
847
|
+
plugin_slug: string;
|
|
848
|
+
block_slug: string;
|
|
849
|
+
category: string;
|
|
850
|
+
icon: string;
|
|
851
|
+
render_strategy: "dynamic" | "static";
|
|
852
|
+
description?: string | undefined;
|
|
853
|
+
}, {
|
|
854
|
+
target_id: string;
|
|
855
|
+
allow_destructive: true;
|
|
856
|
+
title: string;
|
|
857
|
+
plugin_slug: string;
|
|
858
|
+
block_slug: string;
|
|
859
|
+
description?: string | undefined;
|
|
860
|
+
category?: string | undefined;
|
|
861
|
+
icon?: string | undefined;
|
|
862
|
+
render_strategy?: "dynamic" | "static" | undefined;
|
|
863
|
+
}>;
|
|
864
|
+
type ScaffoldBlockInput = z.infer<typeof ScaffoldBlockInputSchema>;
|
|
865
|
+
declare const ScaffoldBlockOutputSchema: z.ZodObject<{
|
|
866
|
+
run_id: z.ZodString;
|
|
867
|
+
files_written: z.ZodArray<z.ZodString, "many">;
|
|
868
|
+
next_steps: z.ZodArray<z.ZodString, "many">;
|
|
869
|
+
}, "strip", z.ZodTypeAny, {
|
|
870
|
+
run_id: string;
|
|
871
|
+
files_written: string[];
|
|
872
|
+
next_steps: string[];
|
|
873
|
+
}, {
|
|
874
|
+
run_id: string;
|
|
875
|
+
files_written: string[];
|
|
876
|
+
next_steps: string[];
|
|
877
|
+
}>;
|
|
878
|
+
type ScaffoldBlockOutput = z.infer<typeof ScaffoldBlockOutputSchema>;
|
|
879
|
+
declare const ScaffoldPluginInputSchema: z.ZodObject<{
|
|
880
|
+
target_id: z.ZodString;
|
|
881
|
+
slug: z.ZodString;
|
|
882
|
+
name: z.ZodString;
|
|
883
|
+
description: z.ZodOptional<z.ZodString>;
|
|
884
|
+
author: z.ZodDefault<z.ZodString>;
|
|
885
|
+
features: z.ZodDefault<z.ZodArray<z.ZodEnum<["rest_endpoint", "admin_page", "gutenberg_block", "cli_command"]>, "many">>;
|
|
886
|
+
allow_destructive: z.ZodLiteral<true>;
|
|
887
|
+
}, "strip", z.ZodTypeAny, {
|
|
888
|
+
name: string;
|
|
889
|
+
target_id: string;
|
|
890
|
+
allow_destructive: true;
|
|
891
|
+
slug: string;
|
|
892
|
+
author: string;
|
|
893
|
+
features: ("rest_endpoint" | "admin_page" | "gutenberg_block" | "cli_command")[];
|
|
894
|
+
description?: string | undefined;
|
|
895
|
+
}, {
|
|
896
|
+
name: string;
|
|
897
|
+
target_id: string;
|
|
898
|
+
allow_destructive: true;
|
|
899
|
+
slug: string;
|
|
900
|
+
description?: string | undefined;
|
|
901
|
+
author?: string | undefined;
|
|
902
|
+
features?: ("rest_endpoint" | "admin_page" | "gutenberg_block" | "cli_command")[] | undefined;
|
|
903
|
+
}>;
|
|
904
|
+
type ScaffoldPluginInput = z.infer<typeof ScaffoldPluginInputSchema>;
|
|
905
|
+
declare const ScaffoldPluginOutputSchema: z.ZodObject<{
|
|
906
|
+
run_id: z.ZodString;
|
|
907
|
+
plugin_path: z.ZodString;
|
|
908
|
+
files_written: z.ZodArray<z.ZodString, "many">;
|
|
909
|
+
activate_command: z.ZodString;
|
|
910
|
+
}, "strip", z.ZodTypeAny, {
|
|
911
|
+
run_id: string;
|
|
912
|
+
files_written: string[];
|
|
913
|
+
plugin_path: string;
|
|
914
|
+
activate_command: string;
|
|
915
|
+
}, {
|
|
916
|
+
run_id: string;
|
|
917
|
+
files_written: string[];
|
|
918
|
+
plugin_path: string;
|
|
919
|
+
activate_command: string;
|
|
920
|
+
}>;
|
|
921
|
+
type ScaffoldPluginOutput = z.infer<typeof ScaffoldPluginOutputSchema>;
|
|
922
|
+
declare const ScaffoldThemeInputSchema: z.ZodObject<{
|
|
923
|
+
target_id: z.ZodString;
|
|
924
|
+
slug: z.ZodString;
|
|
925
|
+
name: z.ZodString;
|
|
926
|
+
description: z.ZodOptional<z.ZodString>;
|
|
927
|
+
author: z.ZodDefault<z.ZodString>;
|
|
928
|
+
allow_destructive: z.ZodLiteral<true>;
|
|
929
|
+
}, "strip", z.ZodTypeAny, {
|
|
930
|
+
name: string;
|
|
931
|
+
target_id: string;
|
|
932
|
+
allow_destructive: true;
|
|
933
|
+
slug: string;
|
|
934
|
+
author: string;
|
|
935
|
+
description?: string | undefined;
|
|
936
|
+
}, {
|
|
937
|
+
name: string;
|
|
938
|
+
target_id: string;
|
|
939
|
+
allow_destructive: true;
|
|
940
|
+
slug: string;
|
|
941
|
+
description?: string | undefined;
|
|
942
|
+
author?: string | undefined;
|
|
943
|
+
}>;
|
|
944
|
+
type ScaffoldThemeInput = z.infer<typeof ScaffoldThemeInputSchema>;
|
|
945
|
+
declare const ScaffoldThemeOutputSchema: z.ZodObject<{
|
|
946
|
+
run_id: z.ZodString;
|
|
947
|
+
theme_path: z.ZodString;
|
|
948
|
+
files_written: z.ZodArray<z.ZodString, "many">;
|
|
949
|
+
activate_command: z.ZodString;
|
|
950
|
+
}, "strip", z.ZodTypeAny, {
|
|
951
|
+
run_id: string;
|
|
952
|
+
files_written: string[];
|
|
953
|
+
activate_command: string;
|
|
954
|
+
theme_path: string;
|
|
955
|
+
}, {
|
|
956
|
+
run_id: string;
|
|
957
|
+
files_written: string[];
|
|
958
|
+
activate_command: string;
|
|
959
|
+
theme_path: string;
|
|
960
|
+
}>;
|
|
961
|
+
type ScaffoldThemeOutput = z.infer<typeof ScaffoldThemeOutputSchema>;
|
|
962
|
+
declare const AuditSecurityInputSchema: z.ZodObject<{
|
|
963
|
+
target_id: z.ZodString;
|
|
964
|
+
report_format: z.ZodDefault<z.ZodEnum<["markdown", "json"]>>;
|
|
965
|
+
}, "strip", z.ZodTypeAny, {
|
|
966
|
+
target_id: string;
|
|
967
|
+
report_format: "json" | "markdown";
|
|
968
|
+
}, {
|
|
969
|
+
target_id: string;
|
|
970
|
+
report_format?: "json" | "markdown" | undefined;
|
|
971
|
+
}>;
|
|
972
|
+
type AuditSecurityInput = z.infer<typeof AuditSecurityInputSchema>;
|
|
973
|
+
declare const AuditSecurityOutputSchema: z.ZodObject<{
|
|
974
|
+
run_id: z.ZodString;
|
|
975
|
+
wp_core_outdated: z.ZodBoolean;
|
|
976
|
+
outdated_plugins: z.ZodArray<z.ZodObject<{
|
|
977
|
+
slug: z.ZodString;
|
|
978
|
+
current: z.ZodString;
|
|
979
|
+
latest: z.ZodString;
|
|
980
|
+
}, "strip", z.ZodTypeAny, {
|
|
981
|
+
slug: string;
|
|
982
|
+
current: string;
|
|
983
|
+
latest: string;
|
|
984
|
+
}, {
|
|
985
|
+
slug: string;
|
|
986
|
+
current: string;
|
|
987
|
+
latest: string;
|
|
988
|
+
}>, "many">;
|
|
989
|
+
outdated_themes: z.ZodArray<z.ZodObject<{
|
|
990
|
+
slug: z.ZodString;
|
|
991
|
+
current: z.ZodString;
|
|
992
|
+
latest: z.ZodString;
|
|
993
|
+
}, "strip", z.ZodTypeAny, {
|
|
994
|
+
slug: string;
|
|
995
|
+
current: string;
|
|
996
|
+
latest: string;
|
|
997
|
+
}, {
|
|
998
|
+
slug: string;
|
|
999
|
+
current: string;
|
|
1000
|
+
latest: string;
|
|
1001
|
+
}>, "many">;
|
|
1002
|
+
weak_admin_users: z.ZodArray<z.ZodObject<{
|
|
1003
|
+
login: z.ZodString;
|
|
1004
|
+
reason: z.ZodString;
|
|
1005
|
+
}, "strip", z.ZodTypeAny, {
|
|
1006
|
+
reason: string;
|
|
1007
|
+
login: string;
|
|
1008
|
+
}, {
|
|
1009
|
+
reason: string;
|
|
1010
|
+
login: string;
|
|
1011
|
+
}>, "many">;
|
|
1012
|
+
wp_debug_on: z.ZodBoolean;
|
|
1013
|
+
report_path: z.ZodString;
|
|
1014
|
+
}, "strip", z.ZodTypeAny, {
|
|
1015
|
+
run_id: string;
|
|
1016
|
+
wp_core_outdated: boolean;
|
|
1017
|
+
outdated_plugins: {
|
|
1018
|
+
slug: string;
|
|
1019
|
+
current: string;
|
|
1020
|
+
latest: string;
|
|
1021
|
+
}[];
|
|
1022
|
+
outdated_themes: {
|
|
1023
|
+
slug: string;
|
|
1024
|
+
current: string;
|
|
1025
|
+
latest: string;
|
|
1026
|
+
}[];
|
|
1027
|
+
weak_admin_users: {
|
|
1028
|
+
reason: string;
|
|
1029
|
+
login: string;
|
|
1030
|
+
}[];
|
|
1031
|
+
wp_debug_on: boolean;
|
|
1032
|
+
report_path: string;
|
|
1033
|
+
}, {
|
|
1034
|
+
run_id: string;
|
|
1035
|
+
wp_core_outdated: boolean;
|
|
1036
|
+
outdated_plugins: {
|
|
1037
|
+
slug: string;
|
|
1038
|
+
current: string;
|
|
1039
|
+
latest: string;
|
|
1040
|
+
}[];
|
|
1041
|
+
outdated_themes: {
|
|
1042
|
+
slug: string;
|
|
1043
|
+
current: string;
|
|
1044
|
+
latest: string;
|
|
1045
|
+
}[];
|
|
1046
|
+
weak_admin_users: {
|
|
1047
|
+
reason: string;
|
|
1048
|
+
login: string;
|
|
1049
|
+
}[];
|
|
1050
|
+
wp_debug_on: boolean;
|
|
1051
|
+
report_path: string;
|
|
1052
|
+
}>;
|
|
1053
|
+
type AuditSecurityOutput = z.infer<typeof AuditSecurityOutputSchema>;
|
|
1054
|
+
declare const MigrateDryrunInputSchema: z.ZodObject<{
|
|
1055
|
+
source_target_id: z.ZodString;
|
|
1056
|
+
dest_target_id: z.ZodString;
|
|
1057
|
+
scope: z.ZodDefault<z.ZodArray<z.ZodEnum<["posts", "options", "users", "plugin_versions"]>, "many">>;
|
|
1058
|
+
}, "strip", z.ZodTypeAny, {
|
|
1059
|
+
source_target_id: string;
|
|
1060
|
+
dest_target_id: string;
|
|
1061
|
+
scope: ("options" | "posts" | "users" | "plugin_versions")[];
|
|
1062
|
+
}, {
|
|
1063
|
+
source_target_id: string;
|
|
1064
|
+
dest_target_id: string;
|
|
1065
|
+
scope?: ("options" | "posts" | "users" | "plugin_versions")[] | undefined;
|
|
1066
|
+
}>;
|
|
1067
|
+
type MigrateDryrunInput = z.infer<typeof MigrateDryrunInputSchema>;
|
|
1068
|
+
declare const MigrateDryrunOutputSchema: z.ZodObject<{
|
|
1069
|
+
run_id: z.ZodString;
|
|
1070
|
+
plan: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
1071
|
+
plan_path: z.ZodString;
|
|
1072
|
+
}, "strip", z.ZodTypeAny, {
|
|
1073
|
+
run_id: string;
|
|
1074
|
+
plan: Record<string, unknown>;
|
|
1075
|
+
plan_path: string;
|
|
1076
|
+
}, {
|
|
1077
|
+
run_id: string;
|
|
1078
|
+
plan: Record<string, unknown>;
|
|
1079
|
+
plan_path: string;
|
|
1080
|
+
}>;
|
|
1081
|
+
type MigrateDryrunOutput = z.infer<typeof MigrateDryrunOutputSchema>;
|
|
1082
|
+
declare const AuditManyInputSchema: z.ZodObject<{
|
|
1083
|
+
target_ids: z.ZodArray<z.ZodString, "many">;
|
|
1084
|
+
report_format: z.ZodDefault<z.ZodEnum<["markdown", "json"]>>;
|
|
1085
|
+
}, "strip", z.ZodTypeAny, {
|
|
1086
|
+
report_format: "json" | "markdown";
|
|
1087
|
+
target_ids: string[];
|
|
1088
|
+
}, {
|
|
1089
|
+
target_ids: string[];
|
|
1090
|
+
report_format?: "json" | "markdown" | undefined;
|
|
1091
|
+
}>;
|
|
1092
|
+
type AuditManyInput = z.infer<typeof AuditManyInputSchema>;
|
|
1093
|
+
declare const AuditManyOutputSchema: z.ZodObject<{
|
|
1094
|
+
run_id: z.ZodString;
|
|
1095
|
+
reports: z.ZodArray<z.ZodObject<{
|
|
1096
|
+
target_id: z.ZodString;
|
|
1097
|
+
siteurl: z.ZodString;
|
|
1098
|
+
ok: z.ZodBoolean;
|
|
1099
|
+
error: z.ZodOptional<z.ZodString>;
|
|
1100
|
+
report_path: z.ZodOptional<z.ZodString>;
|
|
1101
|
+
summary: z.ZodOptional<z.ZodObject<{
|
|
1102
|
+
wp_core_outdated: z.ZodBoolean;
|
|
1103
|
+
outdated_plugin_count: z.ZodNumber;
|
|
1104
|
+
outdated_theme_count: z.ZodNumber;
|
|
1105
|
+
weak_admin_count: z.ZodNumber;
|
|
1106
|
+
wp_debug_on: z.ZodBoolean;
|
|
1107
|
+
}, "strip", z.ZodTypeAny, {
|
|
1108
|
+
wp_core_outdated: boolean;
|
|
1109
|
+
wp_debug_on: boolean;
|
|
1110
|
+
outdated_plugin_count: number;
|
|
1111
|
+
outdated_theme_count: number;
|
|
1112
|
+
weak_admin_count: number;
|
|
1113
|
+
}, {
|
|
1114
|
+
wp_core_outdated: boolean;
|
|
1115
|
+
wp_debug_on: boolean;
|
|
1116
|
+
outdated_plugin_count: number;
|
|
1117
|
+
outdated_theme_count: number;
|
|
1118
|
+
weak_admin_count: number;
|
|
1119
|
+
}>>;
|
|
1120
|
+
}, "strip", z.ZodTypeAny, {
|
|
1121
|
+
siteurl: string;
|
|
1122
|
+
ok: boolean;
|
|
1123
|
+
target_id: string;
|
|
1124
|
+
error?: string | undefined;
|
|
1125
|
+
report_path?: string | undefined;
|
|
1126
|
+
summary?: {
|
|
1127
|
+
wp_core_outdated: boolean;
|
|
1128
|
+
wp_debug_on: boolean;
|
|
1129
|
+
outdated_plugin_count: number;
|
|
1130
|
+
outdated_theme_count: number;
|
|
1131
|
+
weak_admin_count: number;
|
|
1132
|
+
} | undefined;
|
|
1133
|
+
}, {
|
|
1134
|
+
siteurl: string;
|
|
1135
|
+
ok: boolean;
|
|
1136
|
+
target_id: string;
|
|
1137
|
+
error?: string | undefined;
|
|
1138
|
+
report_path?: string | undefined;
|
|
1139
|
+
summary?: {
|
|
1140
|
+
wp_core_outdated: boolean;
|
|
1141
|
+
wp_debug_on: boolean;
|
|
1142
|
+
outdated_plugin_count: number;
|
|
1143
|
+
outdated_theme_count: number;
|
|
1144
|
+
weak_admin_count: number;
|
|
1145
|
+
} | undefined;
|
|
1146
|
+
}>, "many">;
|
|
1147
|
+
consolidated_path: z.ZodString;
|
|
1148
|
+
}, "strip", z.ZodTypeAny, {
|
|
1149
|
+
run_id: string;
|
|
1150
|
+
reports: {
|
|
1151
|
+
siteurl: string;
|
|
1152
|
+
ok: boolean;
|
|
1153
|
+
target_id: string;
|
|
1154
|
+
error?: string | undefined;
|
|
1155
|
+
report_path?: string | undefined;
|
|
1156
|
+
summary?: {
|
|
1157
|
+
wp_core_outdated: boolean;
|
|
1158
|
+
wp_debug_on: boolean;
|
|
1159
|
+
outdated_plugin_count: number;
|
|
1160
|
+
outdated_theme_count: number;
|
|
1161
|
+
weak_admin_count: number;
|
|
1162
|
+
} | undefined;
|
|
1163
|
+
}[];
|
|
1164
|
+
consolidated_path: string;
|
|
1165
|
+
}, {
|
|
1166
|
+
run_id: string;
|
|
1167
|
+
reports: {
|
|
1168
|
+
siteurl: string;
|
|
1169
|
+
ok: boolean;
|
|
1170
|
+
target_id: string;
|
|
1171
|
+
error?: string | undefined;
|
|
1172
|
+
report_path?: string | undefined;
|
|
1173
|
+
summary?: {
|
|
1174
|
+
wp_core_outdated: boolean;
|
|
1175
|
+
wp_debug_on: boolean;
|
|
1176
|
+
outdated_plugin_count: number;
|
|
1177
|
+
outdated_theme_count: number;
|
|
1178
|
+
weak_admin_count: number;
|
|
1179
|
+
} | undefined;
|
|
1180
|
+
}[];
|
|
1181
|
+
consolidated_path: string;
|
|
1182
|
+
}>;
|
|
1183
|
+
type AuditManyOutput = z.infer<typeof AuditManyOutputSchema>;
|
|
1184
|
+
declare const MigrateDataInputSchema: z.ZodObject<{
|
|
1185
|
+
source_target_id: z.ZodString;
|
|
1186
|
+
dest_target_id: z.ZodString;
|
|
1187
|
+
scope: z.ZodDefault<z.ZodEnum<["plugin_versions"]>>;
|
|
1188
|
+
allow_destructive: z.ZodLiteral<true>;
|
|
1189
|
+
confirm: z.ZodDefault<z.ZodBoolean>;
|
|
1190
|
+
}, "strip", z.ZodTypeAny, {
|
|
1191
|
+
allow_destructive: true;
|
|
1192
|
+
confirm: boolean;
|
|
1193
|
+
source_target_id: string;
|
|
1194
|
+
dest_target_id: string;
|
|
1195
|
+
scope: "plugin_versions";
|
|
1196
|
+
}, {
|
|
1197
|
+
allow_destructive: true;
|
|
1198
|
+
source_target_id: string;
|
|
1199
|
+
dest_target_id: string;
|
|
1200
|
+
confirm?: boolean | undefined;
|
|
1201
|
+
scope?: "plugin_versions" | undefined;
|
|
1202
|
+
}>;
|
|
1203
|
+
type MigrateDataInput = z.infer<typeof MigrateDataInputSchema>;
|
|
1204
|
+
declare const MigrateDataOutputSchema: z.ZodObject<{
|
|
1205
|
+
run_id: z.ZodString;
|
|
1206
|
+
scope: z.ZodString;
|
|
1207
|
+
applied: z.ZodArray<z.ZodObject<{
|
|
1208
|
+
action: z.ZodEnum<["install", "upgrade", "downgrade", "noop"]>;
|
|
1209
|
+
slug: z.ZodString;
|
|
1210
|
+
from: z.ZodOptional<z.ZodString>;
|
|
1211
|
+
to: z.ZodString;
|
|
1212
|
+
ok: z.ZodBoolean;
|
|
1213
|
+
error: z.ZodOptional<z.ZodString>;
|
|
1214
|
+
}, "strip", z.ZodTypeAny, {
|
|
1215
|
+
ok: boolean;
|
|
1216
|
+
slug: string;
|
|
1217
|
+
action: "install" | "upgrade" | "downgrade" | "noop";
|
|
1218
|
+
to: string;
|
|
1219
|
+
error?: string | undefined;
|
|
1220
|
+
from?: string | undefined;
|
|
1221
|
+
}, {
|
|
1222
|
+
ok: boolean;
|
|
1223
|
+
slug: string;
|
|
1224
|
+
action: "install" | "upgrade" | "downgrade" | "noop";
|
|
1225
|
+
to: string;
|
|
1226
|
+
error?: string | undefined;
|
|
1227
|
+
from?: string | undefined;
|
|
1228
|
+
}>, "many">;
|
|
1229
|
+
report_path: z.ZodString;
|
|
1230
|
+
}, "strip", z.ZodTypeAny, {
|
|
1231
|
+
run_id: string;
|
|
1232
|
+
report_path: string;
|
|
1233
|
+
scope: string;
|
|
1234
|
+
applied: {
|
|
1235
|
+
ok: boolean;
|
|
1236
|
+
slug: string;
|
|
1237
|
+
action: "install" | "upgrade" | "downgrade" | "noop";
|
|
1238
|
+
to: string;
|
|
1239
|
+
error?: string | undefined;
|
|
1240
|
+
from?: string | undefined;
|
|
1241
|
+
}[];
|
|
1242
|
+
}, {
|
|
1243
|
+
run_id: string;
|
|
1244
|
+
report_path: string;
|
|
1245
|
+
scope: string;
|
|
1246
|
+
applied: {
|
|
1247
|
+
ok: boolean;
|
|
1248
|
+
slug: string;
|
|
1249
|
+
action: "install" | "upgrade" | "downgrade" | "noop";
|
|
1250
|
+
to: string;
|
|
1251
|
+
error?: string | undefined;
|
|
1252
|
+
from?: string | undefined;
|
|
1253
|
+
}[];
|
|
1254
|
+
}>;
|
|
1255
|
+
type MigrateDataOutput = z.infer<typeof MigrateDataOutputSchema>;
|
|
1256
|
+
declare const ExecutePhpInputSchema: z.ZodObject<{
|
|
1257
|
+
target_id: z.ZodString;
|
|
1258
|
+
payload: z.ZodString;
|
|
1259
|
+
timeout_ms: z.ZodDefault<z.ZodNumber>;
|
|
1260
|
+
confirm: z.ZodLiteral<true>;
|
|
1261
|
+
}, "strip", z.ZodTypeAny, {
|
|
1262
|
+
target_id: string;
|
|
1263
|
+
timeout_ms: number;
|
|
1264
|
+
confirm: true;
|
|
1265
|
+
payload: string;
|
|
1266
|
+
}, {
|
|
1267
|
+
target_id: string;
|
|
1268
|
+
confirm: true;
|
|
1269
|
+
payload: string;
|
|
1270
|
+
timeout_ms?: number | undefined;
|
|
1271
|
+
}>;
|
|
1272
|
+
type ExecutePhpInput = z.infer<typeof ExecutePhpInputSchema>;
|
|
1273
|
+
declare const ExecutePhpOutputSchema: z.ZodObject<{
|
|
1274
|
+
ok: z.ZodBoolean;
|
|
1275
|
+
return_value: z.ZodOptional<z.ZodUnknown>;
|
|
1276
|
+
stdout: z.ZodOptional<z.ZodString>;
|
|
1277
|
+
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
1278
|
+
php_warnings: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1279
|
+
audit_id: z.ZodString;
|
|
1280
|
+
error_message: z.ZodOptional<z.ZodString>;
|
|
1281
|
+
}, "strip", z.ZodTypeAny, {
|
|
1282
|
+
ok: boolean;
|
|
1283
|
+
audit_id: string;
|
|
1284
|
+
stdout?: string | undefined;
|
|
1285
|
+
duration_ms?: number | undefined;
|
|
1286
|
+
return_value?: unknown;
|
|
1287
|
+
php_warnings?: string[] | undefined;
|
|
1288
|
+
error_message?: string | undefined;
|
|
1289
|
+
}, {
|
|
1290
|
+
ok: boolean;
|
|
1291
|
+
audit_id: string;
|
|
1292
|
+
stdout?: string | undefined;
|
|
1293
|
+
duration_ms?: number | undefined;
|
|
1294
|
+
return_value?: unknown;
|
|
1295
|
+
php_warnings?: string[] | undefined;
|
|
1296
|
+
error_message?: string | undefined;
|
|
1297
|
+
}>;
|
|
1298
|
+
type ExecutePhpOutput = z.infer<typeof ExecutePhpOutputSchema>;
|
|
1299
|
+
declare const IntrospectInputSchema: z.ZodObject<{
|
|
1300
|
+
target_id: z.ZodString;
|
|
1301
|
+
scope: z.ZodEnum<["hooks", "transients", "options_full", "request_state"]>;
|
|
1302
|
+
include_values: z.ZodDefault<z.ZodBoolean>;
|
|
1303
|
+
}, "strip", z.ZodTypeAny, {
|
|
1304
|
+
target_id: string;
|
|
1305
|
+
scope: "hooks" | "transients" | "options_full" | "request_state";
|
|
1306
|
+
include_values: boolean;
|
|
1307
|
+
}, {
|
|
1308
|
+
target_id: string;
|
|
1309
|
+
scope: "hooks" | "transients" | "options_full" | "request_state";
|
|
1310
|
+
include_values?: boolean | undefined;
|
|
1311
|
+
}>;
|
|
1312
|
+
type IntrospectInput = z.infer<typeof IntrospectInputSchema>;
|
|
1313
|
+
declare const IntrospectOutputSchema: z.ZodObject<{
|
|
1314
|
+
scope: z.ZodString;
|
|
1315
|
+
report: z.ZodUnknown;
|
|
1316
|
+
}, "strip", z.ZodTypeAny, {
|
|
1317
|
+
scope: string;
|
|
1318
|
+
report?: unknown;
|
|
1319
|
+
}, {
|
|
1320
|
+
scope: string;
|
|
1321
|
+
report?: unknown;
|
|
1322
|
+
}>;
|
|
1323
|
+
type IntrospectOutput = z.infer<typeof IntrospectOutputSchema>;
|
|
1324
|
+
declare const HookStateInputSchema: z.ZodObject<{
|
|
1325
|
+
target_id: z.ZodString;
|
|
1326
|
+
hook: z.ZodString;
|
|
1327
|
+
kind: z.ZodDefault<z.ZodEnum<["action", "filter"]>>;
|
|
1328
|
+
}, "strip", z.ZodTypeAny, {
|
|
1329
|
+
kind: "filter" | "action";
|
|
1330
|
+
target_id: string;
|
|
1331
|
+
hook: string;
|
|
1332
|
+
}, {
|
|
1333
|
+
target_id: string;
|
|
1334
|
+
hook: string;
|
|
1335
|
+
kind?: "filter" | "action" | undefined;
|
|
1336
|
+
}>;
|
|
1337
|
+
type HookStateInput = z.infer<typeof HookStateInputSchema>;
|
|
1338
|
+
declare const HookStateOutputSchema: z.ZodObject<{
|
|
1339
|
+
hook: z.ZodString;
|
|
1340
|
+
kind: z.ZodEnum<["action", "filter"]>;
|
|
1341
|
+
callbacks: z.ZodArray<z.ZodObject<{
|
|
1342
|
+
priority: z.ZodNumber;
|
|
1343
|
+
callback_identifier: z.ZodString;
|
|
1344
|
+
}, "strip", z.ZodTypeAny, {
|
|
1345
|
+
priority: number;
|
|
1346
|
+
callback_identifier: string;
|
|
1347
|
+
}, {
|
|
1348
|
+
priority: number;
|
|
1349
|
+
callback_identifier: string;
|
|
1350
|
+
}>, "many">;
|
|
1351
|
+
}, "strip", z.ZodTypeAny, {
|
|
1352
|
+
kind: "filter" | "action";
|
|
1353
|
+
hook: string;
|
|
1354
|
+
callbacks: {
|
|
1355
|
+
priority: number;
|
|
1356
|
+
callback_identifier: string;
|
|
1357
|
+
}[];
|
|
1358
|
+
}, {
|
|
1359
|
+
kind: "filter" | "action";
|
|
1360
|
+
hook: string;
|
|
1361
|
+
callbacks: {
|
|
1362
|
+
priority: number;
|
|
1363
|
+
callback_identifier: string;
|
|
1364
|
+
}[];
|
|
1365
|
+
}>;
|
|
1366
|
+
type HookStateOutput = z.infer<typeof HookStateOutputSchema>;
|
|
1367
|
+
declare const MemoryRecallInputSchema: z.ZodObject<{
|
|
1368
|
+
target_id: z.ZodString;
|
|
1369
|
+
query: z.ZodOptional<z.ZodString>;
|
|
1370
|
+
kind: z.ZodDefault<z.ZodEnum<["note", "convention", "runbook", "all"]>>;
|
|
1371
|
+
}, "strip", z.ZodTypeAny, {
|
|
1372
|
+
kind: "all" | "note" | "convention" | "runbook";
|
|
1373
|
+
target_id: string;
|
|
1374
|
+
query?: string | undefined;
|
|
1375
|
+
}, {
|
|
1376
|
+
target_id: string;
|
|
1377
|
+
kind?: "all" | "note" | "convention" | "runbook" | undefined;
|
|
1378
|
+
query?: string | undefined;
|
|
1379
|
+
}>;
|
|
1380
|
+
type MemoryRecallInput = z.infer<typeof MemoryRecallInputSchema>;
|
|
1381
|
+
declare const MemoryRecallOutputSchema: z.ZodObject<{
|
|
1382
|
+
site_slug: z.ZodString;
|
|
1383
|
+
summary: z.ZodString;
|
|
1384
|
+
notes: z.ZodArray<z.ZodObject<{
|
|
1385
|
+
kind: z.ZodEnum<["note", "convention", "runbook"]>;
|
|
1386
|
+
name: z.ZodString;
|
|
1387
|
+
content: z.ZodString;
|
|
1388
|
+
written_at: z.ZodString;
|
|
1389
|
+
}, "strip", z.ZodTypeAny, {
|
|
1390
|
+
name: string;
|
|
1391
|
+
content: string;
|
|
1392
|
+
kind: "note" | "convention" | "runbook";
|
|
1393
|
+
written_at: string;
|
|
1394
|
+
}, {
|
|
1395
|
+
name: string;
|
|
1396
|
+
content: string;
|
|
1397
|
+
kind: "note" | "convention" | "runbook";
|
|
1398
|
+
written_at: string;
|
|
1399
|
+
}>, "many">;
|
|
1400
|
+
}, "strip", z.ZodTypeAny, {
|
|
1401
|
+
summary: string;
|
|
1402
|
+
site_slug: string;
|
|
1403
|
+
notes: {
|
|
1404
|
+
name: string;
|
|
1405
|
+
content: string;
|
|
1406
|
+
kind: "note" | "convention" | "runbook";
|
|
1407
|
+
written_at: string;
|
|
1408
|
+
}[];
|
|
1409
|
+
}, {
|
|
1410
|
+
summary: string;
|
|
1411
|
+
site_slug: string;
|
|
1412
|
+
notes: {
|
|
1413
|
+
name: string;
|
|
1414
|
+
content: string;
|
|
1415
|
+
kind: "note" | "convention" | "runbook";
|
|
1416
|
+
written_at: string;
|
|
1417
|
+
}[];
|
|
1418
|
+
}>;
|
|
1419
|
+
type MemoryRecallOutput = z.infer<typeof MemoryRecallOutputSchema>;
|
|
1420
|
+
declare const MemoryNoteInputSchema: z.ZodObject<{
|
|
1421
|
+
target_id: z.ZodString;
|
|
1422
|
+
content: z.ZodString;
|
|
1423
|
+
kind: z.ZodDefault<z.ZodEnum<["note", "convention", "runbook"]>>;
|
|
1424
|
+
runbook_name: z.ZodOptional<z.ZodString>;
|
|
1425
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1426
|
+
}, "strip", z.ZodTypeAny, {
|
|
1427
|
+
content: string;
|
|
1428
|
+
kind: "note" | "convention" | "runbook";
|
|
1429
|
+
target_id: string;
|
|
1430
|
+
runbook_name?: string | undefined;
|
|
1431
|
+
tags?: string[] | undefined;
|
|
1432
|
+
}, {
|
|
1433
|
+
content: string;
|
|
1434
|
+
target_id: string;
|
|
1435
|
+
kind?: "note" | "convention" | "runbook" | undefined;
|
|
1436
|
+
runbook_name?: string | undefined;
|
|
1437
|
+
tags?: string[] | undefined;
|
|
1438
|
+
}>;
|
|
1439
|
+
type MemoryNoteInput = z.infer<typeof MemoryNoteInputSchema>;
|
|
1440
|
+
declare const MemoryNoteOutputSchema: z.ZodObject<{
|
|
1441
|
+
saved_at: z.ZodString;
|
|
1442
|
+
file_path: z.ZodString;
|
|
1443
|
+
site_slug: z.ZodString;
|
|
1444
|
+
}, "strip", z.ZodTypeAny, {
|
|
1445
|
+
site_slug: string;
|
|
1446
|
+
saved_at: string;
|
|
1447
|
+
file_path: string;
|
|
1448
|
+
}, {
|
|
1449
|
+
site_slug: string;
|
|
1450
|
+
saved_at: string;
|
|
1451
|
+
file_path: string;
|
|
1452
|
+
}>;
|
|
1453
|
+
type MemoryNoteOutput = z.infer<typeof MemoryNoteOutputSchema>;
|
|
1454
|
+
declare const MemoryListInputSchema: z.ZodObject<{
|
|
1455
|
+
target_id: z.ZodString;
|
|
1456
|
+
}, "strip", z.ZodTypeAny, {
|
|
1457
|
+
target_id: string;
|
|
1458
|
+
}, {
|
|
1459
|
+
target_id: string;
|
|
1460
|
+
}>;
|
|
1461
|
+
type MemoryListInput = z.infer<typeof MemoryListInputSchema>;
|
|
1462
|
+
declare const MemoryListOutputSchema: z.ZodObject<{
|
|
1463
|
+
site_slug: z.ZodString;
|
|
1464
|
+
files: z.ZodArray<z.ZodObject<{
|
|
1465
|
+
kind: z.ZodEnum<["meta", "site", "note", "convention", "runbook"]>;
|
|
1466
|
+
name: z.ZodString;
|
|
1467
|
+
size_bytes: z.ZodNumber;
|
|
1468
|
+
mtime: z.ZodString;
|
|
1469
|
+
}, "strip", z.ZodTypeAny, {
|
|
1470
|
+
name: string;
|
|
1471
|
+
kind: "site" | "meta" | "note" | "convention" | "runbook";
|
|
1472
|
+
size_bytes: number;
|
|
1473
|
+
mtime: string;
|
|
1474
|
+
}, {
|
|
1475
|
+
name: string;
|
|
1476
|
+
kind: "site" | "meta" | "note" | "convention" | "runbook";
|
|
1477
|
+
size_bytes: number;
|
|
1478
|
+
mtime: string;
|
|
1479
|
+
}>, "many">;
|
|
1480
|
+
total_bytes: z.ZodNumber;
|
|
1481
|
+
}, "strip", z.ZodTypeAny, {
|
|
1482
|
+
site_slug: string;
|
|
1483
|
+
files: {
|
|
1484
|
+
name: string;
|
|
1485
|
+
kind: "site" | "meta" | "note" | "convention" | "runbook";
|
|
1486
|
+
size_bytes: number;
|
|
1487
|
+
mtime: string;
|
|
1488
|
+
}[];
|
|
1489
|
+
total_bytes: number;
|
|
1490
|
+
}, {
|
|
1491
|
+
site_slug: string;
|
|
1492
|
+
files: {
|
|
1493
|
+
name: string;
|
|
1494
|
+
kind: "site" | "meta" | "note" | "convention" | "runbook";
|
|
1495
|
+
size_bytes: number;
|
|
1496
|
+
mtime: string;
|
|
1497
|
+
}[];
|
|
1498
|
+
total_bytes: number;
|
|
1499
|
+
}>;
|
|
1500
|
+
type MemoryListOutput = z.infer<typeof MemoryListOutputSchema>;
|
|
1501
|
+
declare const ElementorReadInputSchema: z.ZodObject<{
|
|
1502
|
+
target_id: z.ZodString;
|
|
1503
|
+
page_id: z.ZodOptional<z.ZodNumber>;
|
|
1504
|
+
type: z.ZodDefault<z.ZodString>;
|
|
1505
|
+
per_page: z.ZodDefault<z.ZodNumber>;
|
|
1506
|
+
}, "strip", z.ZodTypeAny, {
|
|
1507
|
+
type: string;
|
|
1508
|
+
target_id: string;
|
|
1509
|
+
per_page: number;
|
|
1510
|
+
page_id?: number | undefined;
|
|
1511
|
+
}, {
|
|
1512
|
+
target_id: string;
|
|
1513
|
+
type?: string | undefined;
|
|
1514
|
+
per_page?: number | undefined;
|
|
1515
|
+
page_id?: number | undefined;
|
|
1516
|
+
}>;
|
|
1517
|
+
type ElementorReadInput = z.infer<typeof ElementorReadInputSchema>;
|
|
1518
|
+
declare const ElementorReadOutputSchema: z.ZodObject<{
|
|
1519
|
+
mode: z.ZodEnum<["list", "page"]>;
|
|
1520
|
+
detected: z.ZodBoolean;
|
|
1521
|
+
pages: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
1522
|
+
page: z.ZodOptional<z.ZodUnknown>;
|
|
1523
|
+
}, "strip", z.ZodTypeAny, {
|
|
1524
|
+
mode: "page" | "list";
|
|
1525
|
+
detected: boolean;
|
|
1526
|
+
page?: unknown;
|
|
1527
|
+
pages?: unknown[] | undefined;
|
|
1528
|
+
}, {
|
|
1529
|
+
mode: "page" | "list";
|
|
1530
|
+
detected: boolean;
|
|
1531
|
+
page?: unknown;
|
|
1532
|
+
pages?: unknown[] | undefined;
|
|
1533
|
+
}>;
|
|
1534
|
+
type ElementorReadOutput = z.infer<typeof ElementorReadOutputSchema>;
|
|
1535
|
+
declare const WooReadInputSchema: z.ZodObject<{
|
|
1536
|
+
target_id: z.ZodString;
|
|
1537
|
+
scope: z.ZodEnum<["products", "orders", "settings_groups", "settings_in_group", "shipping_zones", "payment_gateways"]>;
|
|
1538
|
+
group: z.ZodOptional<z.ZodString>;
|
|
1539
|
+
per_page: z.ZodOptional<z.ZodNumber>;
|
|
1540
|
+
search: z.ZodOptional<z.ZodString>;
|
|
1541
|
+
status: z.ZodOptional<z.ZodString>;
|
|
1542
|
+
}, "strip", z.ZodTypeAny, {
|
|
1543
|
+
target_id: string;
|
|
1544
|
+
scope: "products" | "orders" | "settings_groups" | "settings_in_group" | "shipping_zones" | "payment_gateways";
|
|
1545
|
+
status?: string | undefined;
|
|
1546
|
+
search?: string | undefined;
|
|
1547
|
+
per_page?: number | undefined;
|
|
1548
|
+
group?: string | undefined;
|
|
1549
|
+
}, {
|
|
1550
|
+
target_id: string;
|
|
1551
|
+
scope: "products" | "orders" | "settings_groups" | "settings_in_group" | "shipping_zones" | "payment_gateways";
|
|
1552
|
+
status?: string | undefined;
|
|
1553
|
+
search?: string | undefined;
|
|
1554
|
+
per_page?: number | undefined;
|
|
1555
|
+
group?: string | undefined;
|
|
1556
|
+
}>;
|
|
1557
|
+
type WooReadInput = z.infer<typeof WooReadInputSchema>;
|
|
1558
|
+
declare const WooReadOutputSchema: z.ZodObject<{
|
|
1559
|
+
scope: z.ZodString;
|
|
1560
|
+
detected: z.ZodBoolean;
|
|
1561
|
+
items: z.ZodArray<z.ZodUnknown, "many">;
|
|
1562
|
+
}, "strip", z.ZodTypeAny, {
|
|
1563
|
+
items: unknown[];
|
|
1564
|
+
scope: string;
|
|
1565
|
+
detected: boolean;
|
|
1566
|
+
}, {
|
|
1567
|
+
items: unknown[];
|
|
1568
|
+
scope: string;
|
|
1569
|
+
detected: boolean;
|
|
1570
|
+
}>;
|
|
1571
|
+
type WooReadOutput = z.infer<typeof WooReadOutputSchema>;
|
|
1572
|
+
declare const AcfReadInputSchema: z.ZodObject<{
|
|
1573
|
+
target_id: z.ZodString;
|
|
1574
|
+
scope: z.ZodEnum<["field_groups", "fields_in_group", "post_meta"]>;
|
|
1575
|
+
group_key: z.ZodOptional<z.ZodString>;
|
|
1576
|
+
post_id: z.ZodOptional<z.ZodNumber>;
|
|
1577
|
+
}, "strip", z.ZodTypeAny, {
|
|
1578
|
+
target_id: string;
|
|
1579
|
+
scope: "field_groups" | "fields_in_group" | "post_meta";
|
|
1580
|
+
group_key?: string | undefined;
|
|
1581
|
+
post_id?: number | undefined;
|
|
1582
|
+
}, {
|
|
1583
|
+
target_id: string;
|
|
1584
|
+
scope: "field_groups" | "fields_in_group" | "post_meta";
|
|
1585
|
+
group_key?: string | undefined;
|
|
1586
|
+
post_id?: number | undefined;
|
|
1587
|
+
}>;
|
|
1588
|
+
type AcfReadInput = z.infer<typeof AcfReadInputSchema>;
|
|
1589
|
+
declare const AcfReadOutputSchema: z.ZodObject<{
|
|
1590
|
+
scope: z.ZodString;
|
|
1591
|
+
detected: z.ZodBoolean;
|
|
1592
|
+
items: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
1593
|
+
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1594
|
+
}, "strip", z.ZodTypeAny, {
|
|
1595
|
+
scope: string;
|
|
1596
|
+
detected: boolean;
|
|
1597
|
+
items?: unknown[] | undefined;
|
|
1598
|
+
meta?: Record<string, unknown> | undefined;
|
|
1599
|
+
}, {
|
|
1600
|
+
scope: string;
|
|
1601
|
+
detected: boolean;
|
|
1602
|
+
items?: unknown[] | undefined;
|
|
1603
|
+
meta?: Record<string, unknown> | undefined;
|
|
1604
|
+
}>;
|
|
1605
|
+
type AcfReadOutput = z.infer<typeof AcfReadOutputSchema>;
|
|
1606
|
+
declare const ElementorWriteInputSchema: z.ZodObject<{
|
|
1607
|
+
target_id: z.ZodString;
|
|
1608
|
+
post_id: z.ZodNumber;
|
|
1609
|
+
widget_tree: z.ZodArray<z.ZodUnknown, "many">;
|
|
1610
|
+
allow_destructive: z.ZodLiteral<true>;
|
|
1611
|
+
confirm: z.ZodDefault<z.ZodBoolean>;
|
|
1612
|
+
}, "strip", z.ZodTypeAny, {
|
|
1613
|
+
target_id: string;
|
|
1614
|
+
allow_destructive: true;
|
|
1615
|
+
confirm: boolean;
|
|
1616
|
+
post_id: number;
|
|
1617
|
+
widget_tree: unknown[];
|
|
1618
|
+
}, {
|
|
1619
|
+
target_id: string;
|
|
1620
|
+
allow_destructive: true;
|
|
1621
|
+
post_id: number;
|
|
1622
|
+
widget_tree: unknown[];
|
|
1623
|
+
confirm?: boolean | undefined;
|
|
1624
|
+
}>;
|
|
1625
|
+
type ElementorWriteInput = z.infer<typeof ElementorWriteInputSchema>;
|
|
1626
|
+
declare const ElementorWriteOutputSchema: z.ZodObject<{
|
|
1627
|
+
bytes_written: z.ZodNumber;
|
|
1628
|
+
backup_path: z.ZodNullable<z.ZodString>;
|
|
1629
|
+
}, "strip", z.ZodTypeAny, {
|
|
1630
|
+
bytes_written: number;
|
|
1631
|
+
backup_path: string | null;
|
|
1632
|
+
}, {
|
|
1633
|
+
bytes_written: number;
|
|
1634
|
+
backup_path: string | null;
|
|
1635
|
+
}>;
|
|
1636
|
+
type ElementorWriteOutput = z.infer<typeof ElementorWriteOutputSchema>;
|
|
1637
|
+
declare const WooWriteInputSchema: z.ZodObject<{
|
|
1638
|
+
target_id: z.ZodString;
|
|
1639
|
+
op: z.ZodEnum<["update_product", "bulk_update_prices"]>;
|
|
1640
|
+
product_id: z.ZodOptional<z.ZodNumber>;
|
|
1641
|
+
fields: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1642
|
+
price_updates: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1643
|
+
id: z.ZodNumber;
|
|
1644
|
+
regular_price: z.ZodOptional<z.ZodString>;
|
|
1645
|
+
sale_price: z.ZodOptional<z.ZodString>;
|
|
1646
|
+
}, "strip", z.ZodTypeAny, {
|
|
1647
|
+
id: number;
|
|
1648
|
+
regular_price?: string | undefined;
|
|
1649
|
+
sale_price?: string | undefined;
|
|
1650
|
+
}, {
|
|
1651
|
+
id: number;
|
|
1652
|
+
regular_price?: string | undefined;
|
|
1653
|
+
sale_price?: string | undefined;
|
|
1654
|
+
}>, "many">>;
|
|
1655
|
+
allow_destructive: z.ZodLiteral<true>;
|
|
1656
|
+
confirm: z.ZodDefault<z.ZodBoolean>;
|
|
1657
|
+
}, "strip", z.ZodTypeAny, {
|
|
1658
|
+
target_id: string;
|
|
1659
|
+
allow_destructive: true;
|
|
1660
|
+
confirm: boolean;
|
|
1661
|
+
op: "update_product" | "bulk_update_prices";
|
|
1662
|
+
product_id?: number | undefined;
|
|
1663
|
+
fields?: Record<string, unknown> | undefined;
|
|
1664
|
+
price_updates?: {
|
|
1665
|
+
id: number;
|
|
1666
|
+
regular_price?: string | undefined;
|
|
1667
|
+
sale_price?: string | undefined;
|
|
1668
|
+
}[] | undefined;
|
|
1669
|
+
}, {
|
|
1670
|
+
target_id: string;
|
|
1671
|
+
allow_destructive: true;
|
|
1672
|
+
op: "update_product" | "bulk_update_prices";
|
|
1673
|
+
confirm?: boolean | undefined;
|
|
1674
|
+
product_id?: number | undefined;
|
|
1675
|
+
fields?: Record<string, unknown> | undefined;
|
|
1676
|
+
price_updates?: {
|
|
1677
|
+
id: number;
|
|
1678
|
+
regular_price?: string | undefined;
|
|
1679
|
+
sale_price?: string | undefined;
|
|
1680
|
+
}[] | undefined;
|
|
1681
|
+
}>;
|
|
1682
|
+
type WooWriteInput = z.infer<typeof WooWriteInputSchema>;
|
|
1683
|
+
declare const WooWriteOutputSchema: z.ZodObject<{
|
|
1684
|
+
op: z.ZodString;
|
|
1685
|
+
result: z.ZodUnknown;
|
|
1686
|
+
}, "strip", z.ZodTypeAny, {
|
|
1687
|
+
op: string;
|
|
1688
|
+
result?: unknown;
|
|
1689
|
+
}, {
|
|
1690
|
+
op: string;
|
|
1691
|
+
result?: unknown;
|
|
1692
|
+
}>;
|
|
1693
|
+
type WooWriteOutput = z.infer<typeof WooWriteOutputSchema>;
|
|
1694
|
+
declare const AcfWriteInputSchema: z.ZodObject<{
|
|
1695
|
+
target_id: z.ZodString;
|
|
1696
|
+
post_id: z.ZodNumber;
|
|
1697
|
+
field_name: z.ZodString;
|
|
1698
|
+
value: z.ZodUnknown;
|
|
1699
|
+
allow_destructive: z.ZodLiteral<true>;
|
|
1700
|
+
confirm: z.ZodDefault<z.ZodBoolean>;
|
|
1701
|
+
}, "strip", z.ZodTypeAny, {
|
|
1702
|
+
target_id: string;
|
|
1703
|
+
allow_destructive: true;
|
|
1704
|
+
confirm: boolean;
|
|
1705
|
+
post_id: number;
|
|
1706
|
+
field_name: string;
|
|
1707
|
+
value?: unknown;
|
|
1708
|
+
}, {
|
|
1709
|
+
target_id: string;
|
|
1710
|
+
allow_destructive: true;
|
|
1711
|
+
post_id: number;
|
|
1712
|
+
field_name: string;
|
|
1713
|
+
value?: unknown;
|
|
1714
|
+
confirm?: boolean | undefined;
|
|
1715
|
+
}>;
|
|
1716
|
+
type AcfWriteInput = z.infer<typeof AcfWriteInputSchema>;
|
|
1717
|
+
declare const AcfWriteOutputSchema: z.ZodObject<{
|
|
1718
|
+
source: z.ZodEnum<["rest_acf_pro", "wp_cli"]>;
|
|
1719
|
+
post_id: z.ZodNumber;
|
|
1720
|
+
field_name: z.ZodString;
|
|
1721
|
+
}, "strip", z.ZodTypeAny, {
|
|
1722
|
+
source: "wp_cli" | "rest_acf_pro";
|
|
1723
|
+
post_id: number;
|
|
1724
|
+
field_name: string;
|
|
1725
|
+
}, {
|
|
1726
|
+
source: "wp_cli" | "rest_acf_pro";
|
|
1727
|
+
post_id: number;
|
|
1728
|
+
field_name: string;
|
|
1729
|
+
}>;
|
|
1730
|
+
type AcfWriteOutput = z.infer<typeof AcfWriteOutputSchema>;
|
|
1731
|
+
declare const BricksReadInputSchema: z.ZodObject<{
|
|
1732
|
+
target_id: z.ZodString;
|
|
1733
|
+
page_id: z.ZodOptional<z.ZodNumber>;
|
|
1734
|
+
type: z.ZodDefault<z.ZodString>;
|
|
1735
|
+
per_page: z.ZodDefault<z.ZodNumber>;
|
|
1736
|
+
}, "strip", z.ZodTypeAny, {
|
|
1737
|
+
type: string;
|
|
1738
|
+
target_id: string;
|
|
1739
|
+
per_page: number;
|
|
1740
|
+
page_id?: number | undefined;
|
|
1741
|
+
}, {
|
|
1742
|
+
target_id: string;
|
|
1743
|
+
type?: string | undefined;
|
|
1744
|
+
per_page?: number | undefined;
|
|
1745
|
+
page_id?: number | undefined;
|
|
1746
|
+
}>;
|
|
1747
|
+
type BricksReadInput = z.infer<typeof BricksReadInputSchema>;
|
|
1748
|
+
declare const BricksReadOutputSchema: z.ZodObject<{
|
|
1749
|
+
mode: z.ZodEnum<["list", "page"]>;
|
|
1750
|
+
detected: z.ZodBoolean;
|
|
1751
|
+
pages: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
1752
|
+
page: z.ZodOptional<z.ZodUnknown>;
|
|
1753
|
+
}, "strip", z.ZodTypeAny, {
|
|
1754
|
+
mode: "page" | "list";
|
|
1755
|
+
detected: boolean;
|
|
1756
|
+
page?: unknown;
|
|
1757
|
+
pages?: unknown[] | undefined;
|
|
1758
|
+
}, {
|
|
1759
|
+
mode: "page" | "list";
|
|
1760
|
+
detected: boolean;
|
|
1761
|
+
page?: unknown;
|
|
1762
|
+
pages?: unknown[] | undefined;
|
|
1763
|
+
}>;
|
|
1764
|
+
type BricksReadOutput = z.infer<typeof BricksReadOutputSchema>;
|
|
1765
|
+
declare const WpmlReadInputSchema: z.ZodObject<{
|
|
1766
|
+
target_id: z.ZodString;
|
|
1767
|
+
scope: z.ZodEnum<["languages", "string_translations", "post_translations"]>;
|
|
1768
|
+
domain: z.ZodOptional<z.ZodString>;
|
|
1769
|
+
post_id: z.ZodOptional<z.ZodNumber>;
|
|
1770
|
+
}, "strip", z.ZodTypeAny, {
|
|
1771
|
+
target_id: string;
|
|
1772
|
+
scope: "languages" | "string_translations" | "post_translations";
|
|
1773
|
+
post_id?: number | undefined;
|
|
1774
|
+
domain?: string | undefined;
|
|
1775
|
+
}, {
|
|
1776
|
+
target_id: string;
|
|
1777
|
+
scope: "languages" | "string_translations" | "post_translations";
|
|
1778
|
+
post_id?: number | undefined;
|
|
1779
|
+
domain?: string | undefined;
|
|
1780
|
+
}>;
|
|
1781
|
+
type WpmlReadInput = z.infer<typeof WpmlReadInputSchema>;
|
|
1782
|
+
declare const WpmlReadOutputSchema: z.ZodObject<{
|
|
1783
|
+
scope: z.ZodString;
|
|
1784
|
+
detected: z.ZodBoolean;
|
|
1785
|
+
data: z.ZodUnknown;
|
|
1786
|
+
}, "strip", z.ZodTypeAny, {
|
|
1787
|
+
scope: string;
|
|
1788
|
+
detected: boolean;
|
|
1789
|
+
data?: unknown;
|
|
1790
|
+
}, {
|
|
1791
|
+
scope: string;
|
|
1792
|
+
detected: boolean;
|
|
1793
|
+
data?: unknown;
|
|
1794
|
+
}>;
|
|
1795
|
+
type WpmlReadOutput = z.infer<typeof WpmlReadOutputSchema>;
|
|
1796
|
+
declare const YoastReadInputSchema: z.ZodObject<{
|
|
1797
|
+
target_id: z.ZodString;
|
|
1798
|
+
scope: z.ZodEnum<["post_meta", "settings"]>;
|
|
1799
|
+
post_id: z.ZodOptional<z.ZodNumber>;
|
|
1800
|
+
}, "strip", z.ZodTypeAny, {
|
|
1801
|
+
target_id: string;
|
|
1802
|
+
scope: "post_meta" | "settings";
|
|
1803
|
+
post_id?: number | undefined;
|
|
1804
|
+
}, {
|
|
1805
|
+
target_id: string;
|
|
1806
|
+
scope: "post_meta" | "settings";
|
|
1807
|
+
post_id?: number | undefined;
|
|
1808
|
+
}>;
|
|
1809
|
+
type YoastReadInput = z.infer<typeof YoastReadInputSchema>;
|
|
1810
|
+
declare const YoastReadOutputSchema: z.ZodObject<{
|
|
1811
|
+
scope: z.ZodString;
|
|
1812
|
+
detected: z.ZodBoolean;
|
|
1813
|
+
data: z.ZodUnknown;
|
|
1814
|
+
}, "strip", z.ZodTypeAny, {
|
|
1815
|
+
scope: string;
|
|
1816
|
+
detected: boolean;
|
|
1817
|
+
data?: unknown;
|
|
1818
|
+
}, {
|
|
1819
|
+
scope: string;
|
|
1820
|
+
detected: boolean;
|
|
1821
|
+
data?: unknown;
|
|
1822
|
+
}>;
|
|
1823
|
+
type YoastReadOutput = z.infer<typeof YoastReadOutputSchema>;
|
|
1824
|
+
declare const RankMathReadInputSchema: z.ZodObject<{
|
|
1825
|
+
target_id: z.ZodString;
|
|
1826
|
+
scope: z.ZodEnum<["post_meta", "settings"]>;
|
|
1827
|
+
post_id: z.ZodOptional<z.ZodNumber>;
|
|
1828
|
+
}, "strip", z.ZodTypeAny, {
|
|
1829
|
+
target_id: string;
|
|
1830
|
+
scope: "post_meta" | "settings";
|
|
1831
|
+
post_id?: number | undefined;
|
|
1832
|
+
}, {
|
|
1833
|
+
target_id: string;
|
|
1834
|
+
scope: "post_meta" | "settings";
|
|
1835
|
+
post_id?: number | undefined;
|
|
1836
|
+
}>;
|
|
1837
|
+
type RankMathReadInput = z.infer<typeof RankMathReadInputSchema>;
|
|
1838
|
+
declare const RankMathReadOutputSchema: z.ZodObject<{
|
|
1839
|
+
scope: z.ZodString;
|
|
1840
|
+
detected: z.ZodBoolean;
|
|
1841
|
+
data: z.ZodUnknown;
|
|
1842
|
+
}, "strip", z.ZodTypeAny, {
|
|
1843
|
+
scope: string;
|
|
1844
|
+
detected: boolean;
|
|
1845
|
+
data?: unknown;
|
|
1846
|
+
}, {
|
|
1847
|
+
scope: string;
|
|
1848
|
+
detected: boolean;
|
|
1849
|
+
data?: unknown;
|
|
1850
|
+
}>;
|
|
1851
|
+
type RankMathReadOutput = z.infer<typeof RankMathReadOutputSchema>;
|
|
1852
|
+
declare const PairInputSchema: z.ZodObject<{
|
|
1853
|
+
siteurl: z.ZodEffects<z.ZodString, string, string>;
|
|
1854
|
+
pair_token: z.ZodString;
|
|
1855
|
+
}, "strip", z.ZodTypeAny, {
|
|
1856
|
+
siteurl: string;
|
|
1857
|
+
pair_token: string;
|
|
1858
|
+
}, {
|
|
1859
|
+
siteurl: string;
|
|
1860
|
+
pair_token: string;
|
|
1861
|
+
}>;
|
|
1862
|
+
type PairInput = z.infer<typeof PairInputSchema>;
|
|
1863
|
+
declare const PairOutputSchema: z.ZodObject<{
|
|
1864
|
+
target_id: z.ZodString;
|
|
1865
|
+
siteurl: z.ZodString;
|
|
1866
|
+
username: z.ZodString;
|
|
1867
|
+
capabilities: z.ZodArray<z.ZodString, "many">;
|
|
1868
|
+
companion_version: z.ZodString;
|
|
1869
|
+
is_production: z.ZodBoolean;
|
|
1870
|
+
app_password_name: z.ZodString;
|
|
1871
|
+
credential_stored: z.ZodBoolean;
|
|
1872
|
+
}, "strip", z.ZodTypeAny, {
|
|
1873
|
+
siteurl: string;
|
|
1874
|
+
username: string;
|
|
1875
|
+
target_id: string;
|
|
1876
|
+
capabilities: string[];
|
|
1877
|
+
companion_version: string;
|
|
1878
|
+
is_production: boolean;
|
|
1879
|
+
app_password_name: string;
|
|
1880
|
+
credential_stored: boolean;
|
|
1881
|
+
}, {
|
|
1882
|
+
siteurl: string;
|
|
1883
|
+
username: string;
|
|
1884
|
+
target_id: string;
|
|
1885
|
+
capabilities: string[];
|
|
1886
|
+
companion_version: string;
|
|
1887
|
+
is_production: boolean;
|
|
1888
|
+
app_password_name: string;
|
|
1889
|
+
credential_stored: boolean;
|
|
1890
|
+
}>;
|
|
1891
|
+
type PairOutput = z.infer<typeof PairOutputSchema>;
|
|
1892
|
+
declare const DiviReadInputSchema: z.ZodObject<{
|
|
1893
|
+
target_id: z.ZodString;
|
|
1894
|
+
page_id: z.ZodOptional<z.ZodNumber>;
|
|
1895
|
+
type: z.ZodDefault<z.ZodString>;
|
|
1896
|
+
per_page: z.ZodDefault<z.ZodNumber>;
|
|
1897
|
+
}, "strip", z.ZodTypeAny, {
|
|
1898
|
+
type: string;
|
|
1899
|
+
target_id: string;
|
|
1900
|
+
per_page: number;
|
|
1901
|
+
page_id?: number | undefined;
|
|
1902
|
+
}, {
|
|
1903
|
+
target_id: string;
|
|
1904
|
+
type?: string | undefined;
|
|
1905
|
+
per_page?: number | undefined;
|
|
1906
|
+
page_id?: number | undefined;
|
|
1907
|
+
}>;
|
|
1908
|
+
type DiviReadInput = z.infer<typeof DiviReadInputSchema>;
|
|
1909
|
+
declare const DiviReadOutputSchema: z.ZodObject<{
|
|
1910
|
+
mode: z.ZodEnum<["list", "page"]>;
|
|
1911
|
+
detected: z.ZodBoolean;
|
|
1912
|
+
pages: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
1913
|
+
page: z.ZodOptional<z.ZodUnknown>;
|
|
1914
|
+
}, "strip", z.ZodTypeAny, {
|
|
1915
|
+
mode: "page" | "list";
|
|
1916
|
+
detected: boolean;
|
|
1917
|
+
page?: unknown;
|
|
1918
|
+
pages?: unknown[] | undefined;
|
|
1919
|
+
}, {
|
|
1920
|
+
mode: "page" | "list";
|
|
1921
|
+
detected: boolean;
|
|
1922
|
+
page?: unknown;
|
|
1923
|
+
pages?: unknown[] | undefined;
|
|
1924
|
+
}>;
|
|
1925
|
+
type DiviReadOutput = z.infer<typeof DiviReadOutputSchema>;
|
|
1926
|
+
declare const DiviWriteInputSchema: z.ZodObject<{
|
|
1927
|
+
target_id: z.ZodString;
|
|
1928
|
+
post_id: z.ZodNumber;
|
|
1929
|
+
content: z.ZodString;
|
|
1930
|
+
ensure_builder_flag: z.ZodDefault<z.ZodBoolean>;
|
|
1931
|
+
allow_destructive: z.ZodLiteral<true>;
|
|
1932
|
+
confirm: z.ZodDefault<z.ZodBoolean>;
|
|
1933
|
+
}, "strip", z.ZodTypeAny, {
|
|
1934
|
+
content: string;
|
|
1935
|
+
target_id: string;
|
|
1936
|
+
allow_destructive: true;
|
|
1937
|
+
confirm: boolean;
|
|
1938
|
+
post_id: number;
|
|
1939
|
+
ensure_builder_flag: boolean;
|
|
1940
|
+
}, {
|
|
1941
|
+
content: string;
|
|
1942
|
+
target_id: string;
|
|
1943
|
+
allow_destructive: true;
|
|
1944
|
+
post_id: number;
|
|
1945
|
+
confirm?: boolean | undefined;
|
|
1946
|
+
ensure_builder_flag?: boolean | undefined;
|
|
1947
|
+
}>;
|
|
1948
|
+
type DiviWriteInput = z.infer<typeof DiviWriteInputSchema>;
|
|
1949
|
+
declare const DiviWriteOutputSchema: z.ZodObject<{
|
|
1950
|
+
bytes_written: z.ZodNumber;
|
|
1951
|
+
backup_path: z.ZodNullable<z.ZodString>;
|
|
1952
|
+
}, "strip", z.ZodTypeAny, {
|
|
1953
|
+
bytes_written: number;
|
|
1954
|
+
backup_path: string | null;
|
|
1955
|
+
}, {
|
|
1956
|
+
bytes_written: number;
|
|
1957
|
+
backup_path: string | null;
|
|
1958
|
+
}>;
|
|
1959
|
+
type DiviWriteOutput = z.infer<typeof DiviWriteOutputSchema>;
|
|
1960
|
+
declare const OxygenReadInputSchema: z.ZodObject<{
|
|
1961
|
+
target_id: z.ZodString;
|
|
1962
|
+
page_id: z.ZodOptional<z.ZodNumber>;
|
|
1963
|
+
type: z.ZodDefault<z.ZodString>;
|
|
1964
|
+
per_page: z.ZodDefault<z.ZodNumber>;
|
|
1965
|
+
}, "strip", z.ZodTypeAny, {
|
|
1966
|
+
type: string;
|
|
1967
|
+
target_id: string;
|
|
1968
|
+
per_page: number;
|
|
1969
|
+
page_id?: number | undefined;
|
|
1970
|
+
}, {
|
|
1971
|
+
target_id: string;
|
|
1972
|
+
type?: string | undefined;
|
|
1973
|
+
per_page?: number | undefined;
|
|
1974
|
+
page_id?: number | undefined;
|
|
1975
|
+
}>;
|
|
1976
|
+
type OxygenReadInput = z.infer<typeof OxygenReadInputSchema>;
|
|
1977
|
+
declare const OxygenReadOutputSchema: z.ZodObject<{
|
|
1978
|
+
mode: z.ZodEnum<["list", "page"]>;
|
|
1979
|
+
detected: z.ZodBoolean;
|
|
1980
|
+
pages: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
1981
|
+
page: z.ZodOptional<z.ZodUnknown>;
|
|
1982
|
+
}, "strip", z.ZodTypeAny, {
|
|
1983
|
+
mode: "page" | "list";
|
|
1984
|
+
detected: boolean;
|
|
1985
|
+
page?: unknown;
|
|
1986
|
+
pages?: unknown[] | undefined;
|
|
1987
|
+
}, {
|
|
1988
|
+
mode: "page" | "list";
|
|
1989
|
+
detected: boolean;
|
|
1990
|
+
page?: unknown;
|
|
1991
|
+
pages?: unknown[] | undefined;
|
|
1992
|
+
}>;
|
|
1993
|
+
type OxygenReadOutput = z.infer<typeof OxygenReadOutputSchema>;
|
|
1994
|
+
declare const OxygenWriteInputSchema: z.ZodObject<{
|
|
1995
|
+
target_id: z.ZodString;
|
|
1996
|
+
post_id: z.ZodNumber;
|
|
1997
|
+
shortcodes: z.ZodString;
|
|
1998
|
+
allow_destructive: z.ZodLiteral<true>;
|
|
1999
|
+
confirm: z.ZodDefault<z.ZodBoolean>;
|
|
2000
|
+
}, "strip", z.ZodTypeAny, {
|
|
2001
|
+
target_id: string;
|
|
2002
|
+
allow_destructive: true;
|
|
2003
|
+
confirm: boolean;
|
|
2004
|
+
post_id: number;
|
|
2005
|
+
shortcodes: string;
|
|
2006
|
+
}, {
|
|
2007
|
+
target_id: string;
|
|
2008
|
+
allow_destructive: true;
|
|
2009
|
+
post_id: number;
|
|
2010
|
+
shortcodes: string;
|
|
2011
|
+
confirm?: boolean | undefined;
|
|
2012
|
+
}>;
|
|
2013
|
+
type OxygenWriteInput = z.infer<typeof OxygenWriteInputSchema>;
|
|
2014
|
+
declare const OxygenWriteOutputSchema: z.ZodObject<{
|
|
2015
|
+
bytes_written: z.ZodNumber;
|
|
2016
|
+
backup_path: z.ZodNullable<z.ZodString>;
|
|
2017
|
+
}, "strip", z.ZodTypeAny, {
|
|
2018
|
+
bytes_written: number;
|
|
2019
|
+
backup_path: string | null;
|
|
2020
|
+
}, {
|
|
2021
|
+
bytes_written: number;
|
|
2022
|
+
backup_path: string | null;
|
|
2023
|
+
}>;
|
|
2024
|
+
type OxygenWriteOutput = z.infer<typeof OxygenWriteOutputSchema>;
|
|
2025
|
+
declare const BricksWriteInputSchema: z.ZodObject<{
|
|
2026
|
+
target_id: z.ZodString;
|
|
2027
|
+
post_id: z.ZodNumber;
|
|
2028
|
+
scope: z.ZodDefault<z.ZodEnum<["page", "header", "footer"]>>;
|
|
2029
|
+
elements: z.ZodArray<z.ZodUnknown, "many">;
|
|
2030
|
+
allow_destructive: z.ZodLiteral<true>;
|
|
2031
|
+
confirm: z.ZodDefault<z.ZodBoolean>;
|
|
2032
|
+
}, "strip", z.ZodTypeAny, {
|
|
2033
|
+
target_id: string;
|
|
2034
|
+
allow_destructive: true;
|
|
2035
|
+
confirm: boolean;
|
|
2036
|
+
scope: "page" | "header" | "footer";
|
|
2037
|
+
post_id: number;
|
|
2038
|
+
elements: unknown[];
|
|
2039
|
+
}, {
|
|
2040
|
+
target_id: string;
|
|
2041
|
+
allow_destructive: true;
|
|
2042
|
+
post_id: number;
|
|
2043
|
+
elements: unknown[];
|
|
2044
|
+
confirm?: boolean | undefined;
|
|
2045
|
+
scope?: "page" | "header" | "footer" | undefined;
|
|
2046
|
+
}>;
|
|
2047
|
+
type BricksWriteInput = z.infer<typeof BricksWriteInputSchema>;
|
|
2048
|
+
declare const BricksWriteOutputSchema: z.ZodObject<{
|
|
2049
|
+
scope: z.ZodEnum<["page", "header", "footer"]>;
|
|
2050
|
+
bytes_written: z.ZodNumber;
|
|
2051
|
+
backup_path: z.ZodNullable<z.ZodString>;
|
|
2052
|
+
}, "strip", z.ZodTypeAny, {
|
|
2053
|
+
scope: "page" | "header" | "footer";
|
|
2054
|
+
bytes_written: number;
|
|
2055
|
+
backup_path: string | null;
|
|
2056
|
+
}, {
|
|
2057
|
+
scope: "page" | "header" | "footer";
|
|
2058
|
+
bytes_written: number;
|
|
2059
|
+
backup_path: string | null;
|
|
2060
|
+
}>;
|
|
2061
|
+
type BricksWriteOutput = z.infer<typeof BricksWriteOutputSchema>;
|
|
2062
|
+
declare const YoastWriteInputSchema: z.ZodObject<{
|
|
2063
|
+
target_id: z.ZodString;
|
|
2064
|
+
post_id: z.ZodNumber;
|
|
2065
|
+
focus_keyword: z.ZodOptional<z.ZodString>;
|
|
2066
|
+
meta_description: z.ZodOptional<z.ZodString>;
|
|
2067
|
+
title: z.ZodOptional<z.ZodString>;
|
|
2068
|
+
canonical: z.ZodOptional<z.ZodString>;
|
|
2069
|
+
noindex: z.ZodOptional<z.ZodBoolean>;
|
|
2070
|
+
allow_destructive: z.ZodLiteral<true>;
|
|
2071
|
+
confirm: z.ZodDefault<z.ZodBoolean>;
|
|
2072
|
+
}, "strip", z.ZodTypeAny, {
|
|
2073
|
+
target_id: string;
|
|
2074
|
+
allow_destructive: true;
|
|
2075
|
+
confirm: boolean;
|
|
2076
|
+
post_id: number;
|
|
2077
|
+
title?: string | undefined;
|
|
2078
|
+
focus_keyword?: string | undefined;
|
|
2079
|
+
meta_description?: string | undefined;
|
|
2080
|
+
canonical?: string | undefined;
|
|
2081
|
+
noindex?: boolean | undefined;
|
|
2082
|
+
}, {
|
|
2083
|
+
target_id: string;
|
|
2084
|
+
allow_destructive: true;
|
|
2085
|
+
post_id: number;
|
|
2086
|
+
title?: string | undefined;
|
|
2087
|
+
confirm?: boolean | undefined;
|
|
2088
|
+
focus_keyword?: string | undefined;
|
|
2089
|
+
meta_description?: string | undefined;
|
|
2090
|
+
canonical?: string | undefined;
|
|
2091
|
+
noindex?: boolean | undefined;
|
|
2092
|
+
}>;
|
|
2093
|
+
type YoastWriteInput = z.infer<typeof YoastWriteInputSchema>;
|
|
2094
|
+
declare const YoastWriteOutputSchema: z.ZodObject<{
|
|
2095
|
+
post_id: z.ZodNumber;
|
|
2096
|
+
updated_fields: z.ZodArray<z.ZodString, "many">;
|
|
2097
|
+
source: z.ZodEnum<["wp_cli"]>;
|
|
2098
|
+
}, "strip", z.ZodTypeAny, {
|
|
2099
|
+
source: "wp_cli";
|
|
2100
|
+
post_id: number;
|
|
2101
|
+
updated_fields: string[];
|
|
2102
|
+
}, {
|
|
2103
|
+
source: "wp_cli";
|
|
2104
|
+
post_id: number;
|
|
2105
|
+
updated_fields: string[];
|
|
2106
|
+
}>;
|
|
2107
|
+
type YoastWriteOutput = z.infer<typeof YoastWriteOutputSchema>;
|
|
2108
|
+
declare const RankMathWriteInputSchema: z.ZodObject<{
|
|
2109
|
+
target_id: z.ZodString;
|
|
2110
|
+
post_id: z.ZodNumber;
|
|
2111
|
+
focus_keyword: z.ZodOptional<z.ZodString>;
|
|
2112
|
+
meta_description: z.ZodOptional<z.ZodString>;
|
|
2113
|
+
title: z.ZodOptional<z.ZodString>;
|
|
2114
|
+
canonical: z.ZodOptional<z.ZodString>;
|
|
2115
|
+
noindex: z.ZodOptional<z.ZodBoolean>;
|
|
2116
|
+
allow_destructive: z.ZodLiteral<true>;
|
|
2117
|
+
confirm: z.ZodDefault<z.ZodBoolean>;
|
|
2118
|
+
}, "strip", z.ZodTypeAny, {
|
|
2119
|
+
target_id: string;
|
|
2120
|
+
allow_destructive: true;
|
|
2121
|
+
confirm: boolean;
|
|
2122
|
+
post_id: number;
|
|
2123
|
+
title?: string | undefined;
|
|
2124
|
+
focus_keyword?: string | undefined;
|
|
2125
|
+
meta_description?: string | undefined;
|
|
2126
|
+
canonical?: string | undefined;
|
|
2127
|
+
noindex?: boolean | undefined;
|
|
2128
|
+
}, {
|
|
2129
|
+
target_id: string;
|
|
2130
|
+
allow_destructive: true;
|
|
2131
|
+
post_id: number;
|
|
2132
|
+
title?: string | undefined;
|
|
2133
|
+
confirm?: boolean | undefined;
|
|
2134
|
+
focus_keyword?: string | undefined;
|
|
2135
|
+
meta_description?: string | undefined;
|
|
2136
|
+
canonical?: string | undefined;
|
|
2137
|
+
noindex?: boolean | undefined;
|
|
2138
|
+
}>;
|
|
2139
|
+
type RankMathWriteInput = z.infer<typeof RankMathWriteInputSchema>;
|
|
2140
|
+
declare const RankMathWriteOutputSchema: z.ZodObject<{
|
|
2141
|
+
post_id: z.ZodNumber;
|
|
2142
|
+
updated_fields: z.ZodArray<z.ZodString, "many">;
|
|
2143
|
+
source: z.ZodEnum<["wp_cli"]>;
|
|
2144
|
+
}, "strip", z.ZodTypeAny, {
|
|
2145
|
+
source: "wp_cli";
|
|
2146
|
+
post_id: number;
|
|
2147
|
+
updated_fields: string[];
|
|
2148
|
+
}, {
|
|
2149
|
+
source: "wp_cli";
|
|
2150
|
+
post_id: number;
|
|
2151
|
+
updated_fields: string[];
|
|
2152
|
+
}>;
|
|
2153
|
+
type RankMathWriteOutput = z.infer<typeof RankMathWriteOutputSchema>;
|
|
2154
|
+
declare const WpmlWriteInputSchema: z.ZodObject<{
|
|
2155
|
+
target_id: z.ZodString;
|
|
2156
|
+
op: z.ZodEnum<["set_post_language", "link_translations", "duplicate_for_translation"]>;
|
|
2157
|
+
post_id: z.ZodOptional<z.ZodNumber>;
|
|
2158
|
+
original_post_id: z.ZodOptional<z.ZodNumber>;
|
|
2159
|
+
language_code: z.ZodOptional<z.ZodString>;
|
|
2160
|
+
target_language: z.ZodOptional<z.ZodString>;
|
|
2161
|
+
translations: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
2162
|
+
allow_destructive: z.ZodLiteral<true>;
|
|
2163
|
+
confirm: z.ZodDefault<z.ZodBoolean>;
|
|
2164
|
+
}, "strip", z.ZodTypeAny, {
|
|
2165
|
+
target_id: string;
|
|
2166
|
+
allow_destructive: true;
|
|
2167
|
+
confirm: boolean;
|
|
2168
|
+
op: "set_post_language" | "link_translations" | "duplicate_for_translation";
|
|
2169
|
+
post_id?: number | undefined;
|
|
2170
|
+
original_post_id?: number | undefined;
|
|
2171
|
+
language_code?: string | undefined;
|
|
2172
|
+
target_language?: string | undefined;
|
|
2173
|
+
translations?: Record<string, number> | undefined;
|
|
2174
|
+
}, {
|
|
2175
|
+
target_id: string;
|
|
2176
|
+
allow_destructive: true;
|
|
2177
|
+
op: "set_post_language" | "link_translations" | "duplicate_for_translation";
|
|
2178
|
+
confirm?: boolean | undefined;
|
|
2179
|
+
post_id?: number | undefined;
|
|
2180
|
+
original_post_id?: number | undefined;
|
|
2181
|
+
language_code?: string | undefined;
|
|
2182
|
+
target_language?: string | undefined;
|
|
2183
|
+
translations?: Record<string, number> | undefined;
|
|
2184
|
+
}>;
|
|
2185
|
+
type WpmlWriteInput = z.infer<typeof WpmlWriteInputSchema>;
|
|
2186
|
+
declare const WpmlWriteOutputSchema: z.ZodObject<{
|
|
2187
|
+
op: z.ZodString;
|
|
2188
|
+
source: z.ZodEnum<["wp_cli", "rest"]>;
|
|
2189
|
+
result: z.ZodUnknown;
|
|
2190
|
+
}, "strip", z.ZodTypeAny, {
|
|
2191
|
+
source: "rest" | "wp_cli";
|
|
2192
|
+
op: string;
|
|
2193
|
+
result?: unknown;
|
|
2194
|
+
}, {
|
|
2195
|
+
source: "rest" | "wp_cli";
|
|
2196
|
+
op: string;
|
|
2197
|
+
result?: unknown;
|
|
2198
|
+
}>;
|
|
2199
|
+
type WpmlWriteOutput = z.infer<typeof WpmlWriteOutputSchema>;
|
|
2200
|
+
declare const FormsReadInputSchema: z.ZodObject<{
|
|
2201
|
+
target_id: z.ZodString;
|
|
2202
|
+
scope: z.ZodEnum<["list_forms", "list_entries", "form_detail"]>;
|
|
2203
|
+
engine: z.ZodDefault<z.ZodEnum<["auto", "gravity", "cf7", "wpforms"]>>;
|
|
2204
|
+
form_id: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
2205
|
+
per_page: z.ZodDefault<z.ZodNumber>;
|
|
2206
|
+
}, "strip", z.ZodTypeAny, {
|
|
2207
|
+
target_id: string;
|
|
2208
|
+
per_page: number;
|
|
2209
|
+
scope: "list_forms" | "list_entries" | "form_detail";
|
|
2210
|
+
engine: "auto" | "gravity" | "cf7" | "wpforms";
|
|
2211
|
+
form_id?: string | number | undefined;
|
|
2212
|
+
}, {
|
|
2213
|
+
target_id: string;
|
|
2214
|
+
scope: "list_forms" | "list_entries" | "form_detail";
|
|
2215
|
+
per_page?: number | undefined;
|
|
2216
|
+
engine?: "auto" | "gravity" | "cf7" | "wpforms" | undefined;
|
|
2217
|
+
form_id?: string | number | undefined;
|
|
2218
|
+
}>;
|
|
2219
|
+
type FormsReadInput = z.infer<typeof FormsReadInputSchema>;
|
|
2220
|
+
declare const FormsReadOutputSchema: z.ZodObject<{
|
|
2221
|
+
scope: z.ZodString;
|
|
2222
|
+
engine_used: z.ZodEnum<["gravity", "cf7", "wpforms", "none"]>;
|
|
2223
|
+
detected: z.ZodBoolean;
|
|
2224
|
+
items: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
2225
|
+
form: z.ZodOptional<z.ZodUnknown>;
|
|
2226
|
+
}, "strip", z.ZodTypeAny, {
|
|
2227
|
+
scope: string;
|
|
2228
|
+
detected: boolean;
|
|
2229
|
+
engine_used: "gravity" | "cf7" | "wpforms" | "none";
|
|
2230
|
+
items?: unknown[] | undefined;
|
|
2231
|
+
form?: unknown;
|
|
2232
|
+
}, {
|
|
2233
|
+
scope: string;
|
|
2234
|
+
detected: boolean;
|
|
2235
|
+
engine_used: "gravity" | "cf7" | "wpforms" | "none";
|
|
2236
|
+
items?: unknown[] | undefined;
|
|
2237
|
+
form?: unknown;
|
|
2238
|
+
}>;
|
|
2239
|
+
type FormsReadOutput = z.infer<typeof FormsReadOutputSchema>;
|
|
2240
|
+
declare const FormsWriteInputSchema: z.ZodObject<{
|
|
2241
|
+
target_id: z.ZodString;
|
|
2242
|
+
engine: z.ZodEnum<["gravity", "cf7", "wpforms"]>;
|
|
2243
|
+
op: z.ZodEnum<["delete_entry", "mark_spam", "unmark_spam"]>;
|
|
2244
|
+
entry_id: z.ZodNumber;
|
|
2245
|
+
allow_destructive: z.ZodLiteral<true>;
|
|
2246
|
+
confirm: z.ZodDefault<z.ZodBoolean>;
|
|
2247
|
+
}, "strip", z.ZodTypeAny, {
|
|
2248
|
+
target_id: string;
|
|
2249
|
+
allow_destructive: true;
|
|
2250
|
+
confirm: boolean;
|
|
2251
|
+
op: "delete_entry" | "mark_spam" | "unmark_spam";
|
|
2252
|
+
engine: "gravity" | "cf7" | "wpforms";
|
|
2253
|
+
entry_id: number;
|
|
2254
|
+
}, {
|
|
2255
|
+
target_id: string;
|
|
2256
|
+
allow_destructive: true;
|
|
2257
|
+
op: "delete_entry" | "mark_spam" | "unmark_spam";
|
|
2258
|
+
engine: "gravity" | "cf7" | "wpforms";
|
|
2259
|
+
entry_id: number;
|
|
2260
|
+
confirm?: boolean | undefined;
|
|
2261
|
+
}>;
|
|
2262
|
+
type FormsWriteInput = z.infer<typeof FormsWriteInputSchema>;
|
|
2263
|
+
declare const FormsWriteOutputSchema: z.ZodObject<{
|
|
2264
|
+
op: z.ZodString;
|
|
2265
|
+
entry_id: z.ZodNumber;
|
|
2266
|
+
source: z.ZodEnum<["rest", "wp_cli"]>;
|
|
2267
|
+
}, "strip", z.ZodTypeAny, {
|
|
2268
|
+
source: "rest" | "wp_cli";
|
|
2269
|
+
op: string;
|
|
2270
|
+
entry_id: number;
|
|
2271
|
+
}, {
|
|
2272
|
+
source: "rest" | "wp_cli";
|
|
2273
|
+
op: string;
|
|
2274
|
+
entry_id: number;
|
|
2275
|
+
}>;
|
|
2276
|
+
type FormsWriteOutput = z.infer<typeof FormsWriteOutputSchema>;
|
|
2277
|
+
declare const CronToolInputSchema: z.ZodObject<{
|
|
2278
|
+
target_id: z.ZodString;
|
|
2279
|
+
op: z.ZodEnum<["list", "run", "delete"]>;
|
|
2280
|
+
hook: z.ZodOptional<z.ZodString>;
|
|
2281
|
+
confirm: z.ZodDefault<z.ZodBoolean>;
|
|
2282
|
+
}, "strip", z.ZodTypeAny, {
|
|
2283
|
+
target_id: string;
|
|
2284
|
+
confirm: boolean;
|
|
2285
|
+
op: "list" | "run" | "delete";
|
|
2286
|
+
hook?: string | undefined;
|
|
2287
|
+
}, {
|
|
2288
|
+
target_id: string;
|
|
2289
|
+
op: "list" | "run" | "delete";
|
|
2290
|
+
confirm?: boolean | undefined;
|
|
2291
|
+
hook?: string | undefined;
|
|
2292
|
+
}>;
|
|
2293
|
+
type CronToolInput = z.infer<typeof CronToolInputSchema>;
|
|
2294
|
+
declare const CronToolOutputSchema: z.ZodObject<{
|
|
2295
|
+
op: z.ZodString;
|
|
2296
|
+
events: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2297
|
+
hook: z.ZodString;
|
|
2298
|
+
next_run_relative: z.ZodString;
|
|
2299
|
+
next_run_gmt: z.ZodString;
|
|
2300
|
+
recurrence: z.ZodString;
|
|
2301
|
+
}, "strip", z.ZodTypeAny, {
|
|
2302
|
+
hook: string;
|
|
2303
|
+
next_run_relative: string;
|
|
2304
|
+
next_run_gmt: string;
|
|
2305
|
+
recurrence: string;
|
|
2306
|
+
}, {
|
|
2307
|
+
hook: string;
|
|
2308
|
+
next_run_relative: string;
|
|
2309
|
+
next_run_gmt: string;
|
|
2310
|
+
recurrence: string;
|
|
2311
|
+
}>, "many">>;
|
|
2312
|
+
ran: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2313
|
+
deleted_count: z.ZodOptional<z.ZodNumber>;
|
|
2314
|
+
}, "strip", z.ZodTypeAny, {
|
|
2315
|
+
op: string;
|
|
2316
|
+
events?: {
|
|
2317
|
+
hook: string;
|
|
2318
|
+
next_run_relative: string;
|
|
2319
|
+
next_run_gmt: string;
|
|
2320
|
+
recurrence: string;
|
|
2321
|
+
}[] | undefined;
|
|
2322
|
+
ran?: string[] | undefined;
|
|
2323
|
+
deleted_count?: number | undefined;
|
|
2324
|
+
}, {
|
|
2325
|
+
op: string;
|
|
2326
|
+
events?: {
|
|
2327
|
+
hook: string;
|
|
2328
|
+
next_run_relative: string;
|
|
2329
|
+
next_run_gmt: string;
|
|
2330
|
+
recurrence: string;
|
|
2331
|
+
}[] | undefined;
|
|
2332
|
+
ran?: string[] | undefined;
|
|
2333
|
+
deleted_count?: number | undefined;
|
|
2334
|
+
}>;
|
|
2335
|
+
type CronToolOutput = z.infer<typeof CronToolOutputSchema>;
|
|
2336
|
+
declare const CacheToolInputSchema: z.ZodObject<{
|
|
2337
|
+
target_id: z.ZodString;
|
|
2338
|
+
op: z.ZodEnum<["inspect", "flush_object", "flush_transients"]>;
|
|
2339
|
+
confirm: z.ZodDefault<z.ZodBoolean>;
|
|
2340
|
+
}, "strip", z.ZodTypeAny, {
|
|
2341
|
+
target_id: string;
|
|
2342
|
+
confirm: boolean;
|
|
2343
|
+
op: "inspect" | "flush_object" | "flush_transients";
|
|
2344
|
+
}, {
|
|
2345
|
+
target_id: string;
|
|
2346
|
+
op: "inspect" | "flush_object" | "flush_transients";
|
|
2347
|
+
confirm?: boolean | undefined;
|
|
2348
|
+
}>;
|
|
2349
|
+
type CacheToolInput = z.infer<typeof CacheToolInputSchema>;
|
|
2350
|
+
declare const CacheToolOutputSchema: z.ZodObject<{
|
|
2351
|
+
op: z.ZodString;
|
|
2352
|
+
object_cache_active: z.ZodOptional<z.ZodBoolean>;
|
|
2353
|
+
transient_count: z.ZodOptional<z.ZodNumber>;
|
|
2354
|
+
expired_transient_count: z.ZodOptional<z.ZodNumber>;
|
|
2355
|
+
flushed: z.ZodOptional<z.ZodBoolean>;
|
|
2356
|
+
}, "strip", z.ZodTypeAny, {
|
|
2357
|
+
op: string;
|
|
2358
|
+
object_cache_active?: boolean | undefined;
|
|
2359
|
+
transient_count?: number | undefined;
|
|
2360
|
+
expired_transient_count?: number | undefined;
|
|
2361
|
+
flushed?: boolean | undefined;
|
|
2362
|
+
}, {
|
|
2363
|
+
op: string;
|
|
2364
|
+
object_cache_active?: boolean | undefined;
|
|
2365
|
+
transient_count?: number | undefined;
|
|
2366
|
+
expired_transient_count?: number | undefined;
|
|
2367
|
+
flushed?: boolean | undefined;
|
|
2368
|
+
}>;
|
|
2369
|
+
type CacheToolOutput = z.infer<typeof CacheToolOutputSchema>;
|
|
2370
|
+
declare const MailTestInputSchema: z.ZodObject<{
|
|
2371
|
+
target_id: z.ZodString;
|
|
2372
|
+
to: z.ZodString;
|
|
2373
|
+
subject: z.ZodDefault<z.ZodString>;
|
|
2374
|
+
body: z.ZodDefault<z.ZodString>;
|
|
2375
|
+
confirm: z.ZodLiteral<true>;
|
|
2376
|
+
}, "strip", z.ZodTypeAny, {
|
|
2377
|
+
body: string;
|
|
2378
|
+
target_id: string;
|
|
2379
|
+
confirm: true;
|
|
2380
|
+
to: string;
|
|
2381
|
+
subject: string;
|
|
2382
|
+
}, {
|
|
2383
|
+
target_id: string;
|
|
2384
|
+
confirm: true;
|
|
2385
|
+
to: string;
|
|
2386
|
+
body?: string | undefined;
|
|
2387
|
+
subject?: string | undefined;
|
|
2388
|
+
}>;
|
|
2389
|
+
type MailTestInput = z.infer<typeof MailTestInputSchema>;
|
|
2390
|
+
declare const MailTestOutputSchema: z.ZodObject<{
|
|
2391
|
+
to: z.ZodString;
|
|
2392
|
+
delivered: z.ZodBoolean;
|
|
2393
|
+
source: z.ZodEnum<["companion_php", "wp_cli_eval"]>;
|
|
2394
|
+
detail: z.ZodOptional<z.ZodString>;
|
|
2395
|
+
}, "strip", z.ZodTypeAny, {
|
|
2396
|
+
source: "companion_php" | "wp_cli_eval";
|
|
2397
|
+
to: string;
|
|
2398
|
+
delivered: boolean;
|
|
2399
|
+
detail?: string | undefined;
|
|
2400
|
+
}, {
|
|
2401
|
+
source: "companion_php" | "wp_cli_eval";
|
|
2402
|
+
to: string;
|
|
2403
|
+
delivered: boolean;
|
|
2404
|
+
detail?: string | undefined;
|
|
2405
|
+
}>;
|
|
2406
|
+
type MailTestOutput = z.infer<typeof MailTestOutputSchema>;
|
|
2407
|
+
declare const CloneInputSchema: z.ZodObject<{
|
|
2408
|
+
source_target_id: z.ZodString;
|
|
2409
|
+
dest_target_id: z.ZodString;
|
|
2410
|
+
scope: z.ZodDefault<z.ZodArray<z.ZodEnum<["db", "wp_content", "plugin_versions"]>, "many">>;
|
|
2411
|
+
rewrite_urls: z.ZodDefault<z.ZodBoolean>;
|
|
2412
|
+
allow_destructive: z.ZodLiteral<true>;
|
|
2413
|
+
confirm: z.ZodDefault<z.ZodBoolean>;
|
|
2414
|
+
}, "strip", z.ZodTypeAny, {
|
|
2415
|
+
allow_destructive: true;
|
|
2416
|
+
confirm: boolean;
|
|
2417
|
+
source_target_id: string;
|
|
2418
|
+
dest_target_id: string;
|
|
2419
|
+
scope: ("plugin_versions" | "db" | "wp_content")[];
|
|
2420
|
+
rewrite_urls: boolean;
|
|
2421
|
+
}, {
|
|
2422
|
+
allow_destructive: true;
|
|
2423
|
+
source_target_id: string;
|
|
2424
|
+
dest_target_id: string;
|
|
2425
|
+
confirm?: boolean | undefined;
|
|
2426
|
+
scope?: ("plugin_versions" | "db" | "wp_content")[] | undefined;
|
|
2427
|
+
rewrite_urls?: boolean | undefined;
|
|
2428
|
+
}>;
|
|
2429
|
+
type CloneInput = z.infer<typeof CloneInputSchema>;
|
|
2430
|
+
declare const CloneOutputSchema: z.ZodObject<{
|
|
2431
|
+
run_id: z.ZodString;
|
|
2432
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
2433
|
+
step: z.ZodString;
|
|
2434
|
+
ok: z.ZodBoolean;
|
|
2435
|
+
detail: z.ZodOptional<z.ZodString>;
|
|
2436
|
+
}, "strip", z.ZodTypeAny, {
|
|
2437
|
+
ok: boolean;
|
|
2438
|
+
step: string;
|
|
2439
|
+
detail?: string | undefined;
|
|
2440
|
+
}, {
|
|
2441
|
+
ok: boolean;
|
|
2442
|
+
step: string;
|
|
2443
|
+
detail?: string | undefined;
|
|
2444
|
+
}>, "many">;
|
|
2445
|
+
report_path: z.ZodString;
|
|
2446
|
+
}, "strip", z.ZodTypeAny, {
|
|
2447
|
+
run_id: string;
|
|
2448
|
+
report_path: string;
|
|
2449
|
+
steps: {
|
|
2450
|
+
ok: boolean;
|
|
2451
|
+
step: string;
|
|
2452
|
+
detail?: string | undefined;
|
|
2453
|
+
}[];
|
|
2454
|
+
}, {
|
|
2455
|
+
run_id: string;
|
|
2456
|
+
report_path: string;
|
|
2457
|
+
steps: {
|
|
2458
|
+
ok: boolean;
|
|
2459
|
+
step: string;
|
|
2460
|
+
detail?: string | undefined;
|
|
2461
|
+
}[];
|
|
2462
|
+
}>;
|
|
2463
|
+
type CloneOutput = z.infer<typeof CloneOutputSchema>;
|
|
2464
|
+
declare const BackupCreateInputSchema: z.ZodObject<{
|
|
2465
|
+
target_id: z.ZodString;
|
|
2466
|
+
scope: z.ZodDefault<z.ZodArray<z.ZodEnum<["db", "wp_content"]>, "many">>;
|
|
2467
|
+
label: z.ZodOptional<z.ZodString>;
|
|
2468
|
+
}, "strip", z.ZodTypeAny, {
|
|
2469
|
+
target_id: string;
|
|
2470
|
+
scope: ("db" | "wp_content")[];
|
|
2471
|
+
label?: string | undefined;
|
|
2472
|
+
}, {
|
|
2473
|
+
target_id: string;
|
|
2474
|
+
scope?: ("db" | "wp_content")[] | undefined;
|
|
2475
|
+
label?: string | undefined;
|
|
2476
|
+
}>;
|
|
2477
|
+
type BackupCreateInput = z.infer<typeof BackupCreateInputSchema>;
|
|
2478
|
+
declare const BackupCreateOutputSchema: z.ZodObject<{
|
|
2479
|
+
run_id: z.ZodString;
|
|
2480
|
+
artifact_dir: z.ZodString;
|
|
2481
|
+
artifacts: z.ZodArray<z.ZodObject<{
|
|
2482
|
+
kind: z.ZodEnum<["db", "wp_content"]>;
|
|
2483
|
+
path: z.ZodString;
|
|
2484
|
+
bytes: z.ZodNumber;
|
|
2485
|
+
}, "strip", z.ZodTypeAny, {
|
|
2486
|
+
path: string;
|
|
2487
|
+
bytes: number;
|
|
2488
|
+
kind: "db" | "wp_content";
|
|
2489
|
+
}, {
|
|
2490
|
+
path: string;
|
|
2491
|
+
bytes: number;
|
|
2492
|
+
kind: "db" | "wp_content";
|
|
2493
|
+
}>, "many">;
|
|
2494
|
+
}, "strip", z.ZodTypeAny, {
|
|
2495
|
+
run_id: string;
|
|
2496
|
+
artifact_dir: string;
|
|
2497
|
+
artifacts: {
|
|
2498
|
+
path: string;
|
|
2499
|
+
bytes: number;
|
|
2500
|
+
kind: "db" | "wp_content";
|
|
2501
|
+
}[];
|
|
2502
|
+
}, {
|
|
2503
|
+
run_id: string;
|
|
2504
|
+
artifact_dir: string;
|
|
2505
|
+
artifacts: {
|
|
2506
|
+
path: string;
|
|
2507
|
+
bytes: number;
|
|
2508
|
+
kind: "db" | "wp_content";
|
|
2509
|
+
}[];
|
|
2510
|
+
}>;
|
|
2511
|
+
type BackupCreateOutput = z.infer<typeof BackupCreateOutputSchema>;
|
|
2512
|
+
declare const BackupRestoreInputSchema: z.ZodObject<{
|
|
2513
|
+
target_id: z.ZodString;
|
|
2514
|
+
artifact_dir: z.ZodString;
|
|
2515
|
+
scope: z.ZodDefault<z.ZodArray<z.ZodEnum<["db", "wp_content"]>, "many">>;
|
|
2516
|
+
allow_destructive: z.ZodLiteral<true>;
|
|
2517
|
+
confirm: z.ZodDefault<z.ZodBoolean>;
|
|
2518
|
+
}, "strip", z.ZodTypeAny, {
|
|
2519
|
+
target_id: string;
|
|
2520
|
+
allow_destructive: true;
|
|
2521
|
+
confirm: boolean;
|
|
2522
|
+
scope: ("db" | "wp_content")[];
|
|
2523
|
+
artifact_dir: string;
|
|
2524
|
+
}, {
|
|
2525
|
+
target_id: string;
|
|
2526
|
+
allow_destructive: true;
|
|
2527
|
+
artifact_dir: string;
|
|
2528
|
+
confirm?: boolean | undefined;
|
|
2529
|
+
scope?: ("db" | "wp_content")[] | undefined;
|
|
2530
|
+
}>;
|
|
2531
|
+
type BackupRestoreInput = z.infer<typeof BackupRestoreInputSchema>;
|
|
2532
|
+
declare const BackupRestoreOutputSchema: z.ZodObject<{
|
|
2533
|
+
run_id: z.ZodString;
|
|
2534
|
+
restored: z.ZodArray<z.ZodObject<{
|
|
2535
|
+
kind: z.ZodEnum<["db", "wp_content"]>;
|
|
2536
|
+
ok: z.ZodBoolean;
|
|
2537
|
+
detail: z.ZodOptional<z.ZodString>;
|
|
2538
|
+
}, "strip", z.ZodTypeAny, {
|
|
2539
|
+
ok: boolean;
|
|
2540
|
+
kind: "db" | "wp_content";
|
|
2541
|
+
detail?: string | undefined;
|
|
2542
|
+
}, {
|
|
2543
|
+
ok: boolean;
|
|
2544
|
+
kind: "db" | "wp_content";
|
|
2545
|
+
detail?: string | undefined;
|
|
2546
|
+
}>, "many">;
|
|
2547
|
+
}, "strip", z.ZodTypeAny, {
|
|
2548
|
+
run_id: string;
|
|
2549
|
+
restored: {
|
|
2550
|
+
ok: boolean;
|
|
2551
|
+
kind: "db" | "wp_content";
|
|
2552
|
+
detail?: string | undefined;
|
|
2553
|
+
}[];
|
|
2554
|
+
}, {
|
|
2555
|
+
run_id: string;
|
|
2556
|
+
restored: {
|
|
2557
|
+
ok: boolean;
|
|
2558
|
+
kind: "db" | "wp_content";
|
|
2559
|
+
detail?: string | undefined;
|
|
2560
|
+
}[];
|
|
2561
|
+
}>;
|
|
2562
|
+
type BackupRestoreOutput = z.infer<typeof BackupRestoreOutputSchema>;
|
|
2563
|
+
declare const UserSessionListInputSchema: z.ZodObject<{
|
|
2564
|
+
target_id: z.ZodString;
|
|
2565
|
+
per_page: z.ZodDefault<z.ZodNumber>;
|
|
2566
|
+
}, "strip", z.ZodTypeAny, {
|
|
2567
|
+
target_id: string;
|
|
2568
|
+
per_page: number;
|
|
2569
|
+
}, {
|
|
2570
|
+
target_id: string;
|
|
2571
|
+
per_page?: number | undefined;
|
|
2572
|
+
}>;
|
|
2573
|
+
type UserSessionListInput = z.infer<typeof UserSessionListInputSchema>;
|
|
2574
|
+
declare const UserSessionListOutputSchema: z.ZodObject<{
|
|
2575
|
+
total_users_with_sessions: z.ZodNumber;
|
|
2576
|
+
sessions: z.ZodArray<z.ZodObject<{
|
|
2577
|
+
user_id: z.ZodNumber;
|
|
2578
|
+
user_login: z.ZodString;
|
|
2579
|
+
token_count: z.ZodNumber;
|
|
2580
|
+
tokens: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2581
|
+
login_ip: z.ZodOptional<z.ZodString>;
|
|
2582
|
+
ua: z.ZodOptional<z.ZodString>;
|
|
2583
|
+
login_time_gmt: z.ZodOptional<z.ZodString>;
|
|
2584
|
+
expiration_gmt: z.ZodOptional<z.ZodString>;
|
|
2585
|
+
}, "strip", z.ZodTypeAny, {
|
|
2586
|
+
login_ip?: string | undefined;
|
|
2587
|
+
ua?: string | undefined;
|
|
2588
|
+
login_time_gmt?: string | undefined;
|
|
2589
|
+
expiration_gmt?: string | undefined;
|
|
2590
|
+
}, {
|
|
2591
|
+
login_ip?: string | undefined;
|
|
2592
|
+
ua?: string | undefined;
|
|
2593
|
+
login_time_gmt?: string | undefined;
|
|
2594
|
+
expiration_gmt?: string | undefined;
|
|
2595
|
+
}>, "many">>;
|
|
2596
|
+
}, "strip", z.ZodTypeAny, {
|
|
2597
|
+
user_id: number;
|
|
2598
|
+
user_login: string;
|
|
2599
|
+
token_count: number;
|
|
2600
|
+
tokens?: {
|
|
2601
|
+
login_ip?: string | undefined;
|
|
2602
|
+
ua?: string | undefined;
|
|
2603
|
+
login_time_gmt?: string | undefined;
|
|
2604
|
+
expiration_gmt?: string | undefined;
|
|
2605
|
+
}[] | undefined;
|
|
2606
|
+
}, {
|
|
2607
|
+
user_id: number;
|
|
2608
|
+
user_login: string;
|
|
2609
|
+
token_count: number;
|
|
2610
|
+
tokens?: {
|
|
2611
|
+
login_ip?: string | undefined;
|
|
2612
|
+
ua?: string | undefined;
|
|
2613
|
+
login_time_gmt?: string | undefined;
|
|
2614
|
+
expiration_gmt?: string | undefined;
|
|
2615
|
+
}[] | undefined;
|
|
2616
|
+
}>, "many">;
|
|
2617
|
+
}, "strip", z.ZodTypeAny, {
|
|
2618
|
+
total_users_with_sessions: number;
|
|
2619
|
+
sessions: {
|
|
2620
|
+
user_id: number;
|
|
2621
|
+
user_login: string;
|
|
2622
|
+
token_count: number;
|
|
2623
|
+
tokens?: {
|
|
2624
|
+
login_ip?: string | undefined;
|
|
2625
|
+
ua?: string | undefined;
|
|
2626
|
+
login_time_gmt?: string | undefined;
|
|
2627
|
+
expiration_gmt?: string | undefined;
|
|
2628
|
+
}[] | undefined;
|
|
2629
|
+
}[];
|
|
2630
|
+
}, {
|
|
2631
|
+
total_users_with_sessions: number;
|
|
2632
|
+
sessions: {
|
|
2633
|
+
user_id: number;
|
|
2634
|
+
user_login: string;
|
|
2635
|
+
token_count: number;
|
|
2636
|
+
tokens?: {
|
|
2637
|
+
login_ip?: string | undefined;
|
|
2638
|
+
ua?: string | undefined;
|
|
2639
|
+
login_time_gmt?: string | undefined;
|
|
2640
|
+
expiration_gmt?: string | undefined;
|
|
2641
|
+
}[] | undefined;
|
|
2642
|
+
}[];
|
|
2643
|
+
}>;
|
|
2644
|
+
type UserSessionListOutput = z.infer<typeof UserSessionListOutputSchema>;
|
|
2645
|
+
declare const RestDumpInputSchema: z.ZodObject<{
|
|
2646
|
+
target_id: z.ZodString;
|
|
2647
|
+
filter_namespace: z.ZodOptional<z.ZodString>;
|
|
2648
|
+
}, "strip", z.ZodTypeAny, {
|
|
2649
|
+
target_id: string;
|
|
2650
|
+
filter_namespace?: string | undefined;
|
|
2651
|
+
}, {
|
|
2652
|
+
target_id: string;
|
|
2653
|
+
filter_namespace?: string | undefined;
|
|
2654
|
+
}>;
|
|
2655
|
+
type RestDumpInput = z.infer<typeof RestDumpInputSchema>;
|
|
2656
|
+
declare const RestDumpOutputSchema: z.ZodObject<{
|
|
2657
|
+
namespaces: z.ZodArray<z.ZodString, "many">;
|
|
2658
|
+
route_count: z.ZodNumber;
|
|
2659
|
+
routes: z.ZodArray<z.ZodObject<{
|
|
2660
|
+
path: z.ZodString;
|
|
2661
|
+
namespace: z.ZodString;
|
|
2662
|
+
methods: z.ZodArray<z.ZodString, "many">;
|
|
2663
|
+
}, "strip", z.ZodTypeAny, {
|
|
2664
|
+
path: string;
|
|
2665
|
+
namespace: string;
|
|
2666
|
+
methods: string[];
|
|
2667
|
+
}, {
|
|
2668
|
+
path: string;
|
|
2669
|
+
namespace: string;
|
|
2670
|
+
methods: string[];
|
|
2671
|
+
}>, "many">;
|
|
2672
|
+
}, "strip", z.ZodTypeAny, {
|
|
2673
|
+
namespaces: string[];
|
|
2674
|
+
route_count: number;
|
|
2675
|
+
routes: {
|
|
2676
|
+
path: string;
|
|
2677
|
+
namespace: string;
|
|
2678
|
+
methods: string[];
|
|
2679
|
+
}[];
|
|
2680
|
+
}, {
|
|
2681
|
+
namespaces: string[];
|
|
2682
|
+
route_count: number;
|
|
2683
|
+
routes: {
|
|
2684
|
+
path: string;
|
|
2685
|
+
namespace: string;
|
|
2686
|
+
methods: string[];
|
|
2687
|
+
}[];
|
|
2688
|
+
}>;
|
|
2689
|
+
type RestDumpOutput = z.infer<typeof RestDumpOutputSchema>;
|
|
2690
|
+
declare const ScaffoldPatternInputSchema: z.ZodObject<{
|
|
2691
|
+
target_id: z.ZodString;
|
|
2692
|
+
host: z.ZodEnum<["theme", "plugin"]>;
|
|
2693
|
+
host_slug: z.ZodString;
|
|
2694
|
+
pattern_slug: z.ZodString;
|
|
2695
|
+
title: z.ZodString;
|
|
2696
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2697
|
+
categories: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
2698
|
+
content: z.ZodString;
|
|
2699
|
+
allow_destructive: z.ZodLiteral<true>;
|
|
2700
|
+
}, "strip", z.ZodTypeAny, {
|
|
2701
|
+
content: string;
|
|
2702
|
+
host: "theme" | "plugin";
|
|
2703
|
+
target_id: string;
|
|
2704
|
+
allow_destructive: true;
|
|
2705
|
+
title: string;
|
|
2706
|
+
host_slug: string;
|
|
2707
|
+
pattern_slug: string;
|
|
2708
|
+
categories: string[];
|
|
2709
|
+
description?: string | undefined;
|
|
2710
|
+
}, {
|
|
2711
|
+
content: string;
|
|
2712
|
+
host: "theme" | "plugin";
|
|
2713
|
+
target_id: string;
|
|
2714
|
+
allow_destructive: true;
|
|
2715
|
+
title: string;
|
|
2716
|
+
host_slug: string;
|
|
2717
|
+
pattern_slug: string;
|
|
2718
|
+
description?: string | undefined;
|
|
2719
|
+
categories?: string[] | undefined;
|
|
2720
|
+
}>;
|
|
2721
|
+
type ScaffoldPatternInput = z.infer<typeof ScaffoldPatternInputSchema>;
|
|
2722
|
+
declare const ScaffoldPatternOutputSchema: z.ZodObject<{
|
|
2723
|
+
run_id: z.ZodString;
|
|
2724
|
+
file_written: z.ZodString;
|
|
2725
|
+
}, "strip", z.ZodTypeAny, {
|
|
2726
|
+
run_id: string;
|
|
2727
|
+
file_written: string;
|
|
2728
|
+
}, {
|
|
2729
|
+
run_id: string;
|
|
2730
|
+
file_written: string;
|
|
2731
|
+
}>;
|
|
2732
|
+
type ScaffoldPatternOutput = z.infer<typeof ScaffoldPatternOutputSchema>;
|
|
2733
|
+
declare const DiagnoseInputSchema: z.ZodObject<{
|
|
2734
|
+
target_id: z.ZodString;
|
|
2735
|
+
scopes: z.ZodDefault<z.ZodArray<z.ZodEnum<["plugin_conflict_probe", "slow_queries", "large_options", "broken_images", "php_errors"]>, "many">>;
|
|
2736
|
+
report_format: z.ZodDefault<z.ZodEnum<["markdown", "json"]>>;
|
|
2737
|
+
}, "strip", z.ZodTypeAny, {
|
|
2738
|
+
target_id: string;
|
|
2739
|
+
report_format: "json" | "markdown";
|
|
2740
|
+
scopes: ("plugin_conflict_probe" | "slow_queries" | "large_options" | "broken_images" | "php_errors")[];
|
|
2741
|
+
}, {
|
|
2742
|
+
target_id: string;
|
|
2743
|
+
report_format?: "json" | "markdown" | undefined;
|
|
2744
|
+
scopes?: ("plugin_conflict_probe" | "slow_queries" | "large_options" | "broken_images" | "php_errors")[] | undefined;
|
|
2745
|
+
}>;
|
|
2746
|
+
type DiagnoseInput = z.infer<typeof DiagnoseInputSchema>;
|
|
2747
|
+
declare const DiagnoseOutputSchema: z.ZodObject<{
|
|
2748
|
+
run_id: z.ZodString;
|
|
2749
|
+
findings: z.ZodArray<z.ZodObject<{
|
|
2750
|
+
scope: z.ZodString;
|
|
2751
|
+
severity: z.ZodEnum<["info", "warn", "critical"]>;
|
|
2752
|
+
message: z.ZodString;
|
|
2753
|
+
detail: z.ZodOptional<z.ZodUnknown>;
|
|
2754
|
+
}, "strip", z.ZodTypeAny, {
|
|
2755
|
+
message: string;
|
|
2756
|
+
scope: string;
|
|
2757
|
+
severity: "warn" | "info" | "critical";
|
|
2758
|
+
detail?: unknown;
|
|
2759
|
+
}, {
|
|
2760
|
+
message: string;
|
|
2761
|
+
scope: string;
|
|
2762
|
+
severity: "warn" | "info" | "critical";
|
|
2763
|
+
detail?: unknown;
|
|
2764
|
+
}>, "many">;
|
|
2765
|
+
report_path: z.ZodString;
|
|
2766
|
+
}, "strip", z.ZodTypeAny, {
|
|
2767
|
+
run_id: string;
|
|
2768
|
+
report_path: string;
|
|
2769
|
+
findings: {
|
|
2770
|
+
message: string;
|
|
2771
|
+
scope: string;
|
|
2772
|
+
severity: "warn" | "info" | "critical";
|
|
2773
|
+
detail?: unknown;
|
|
2774
|
+
}[];
|
|
2775
|
+
}, {
|
|
2776
|
+
run_id: string;
|
|
2777
|
+
report_path: string;
|
|
2778
|
+
findings: {
|
|
2779
|
+
message: string;
|
|
2780
|
+
scope: string;
|
|
2781
|
+
severity: "warn" | "info" | "critical";
|
|
2782
|
+
detail?: unknown;
|
|
2783
|
+
}[];
|
|
2784
|
+
}>;
|
|
2785
|
+
type DiagnoseOutput = z.infer<typeof DiagnoseOutputSchema>;
|
|
2786
|
+
declare const WpFileReadInputSchema: z.ZodObject<{
|
|
2787
|
+
target_id: z.ZodString;
|
|
2788
|
+
path: z.ZodString;
|
|
2789
|
+
}, "strip", z.ZodTypeAny, {
|
|
2790
|
+
path: string;
|
|
2791
|
+
target_id: string;
|
|
2792
|
+
}, {
|
|
2793
|
+
path: string;
|
|
2794
|
+
target_id: string;
|
|
2795
|
+
}>;
|
|
2796
|
+
type WpFileReadInput = z.infer<typeof WpFileReadInputSchema>;
|
|
2797
|
+
declare const WpFileReadOutputSchema: z.ZodObject<{
|
|
2798
|
+
path: z.ZodString;
|
|
2799
|
+
content: z.ZodString;
|
|
2800
|
+
bytes: z.ZodNumber;
|
|
2801
|
+
}, "strip", z.ZodTypeAny, {
|
|
2802
|
+
path: string;
|
|
2803
|
+
content: string;
|
|
2804
|
+
bytes: number;
|
|
2805
|
+
}, {
|
|
2806
|
+
path: string;
|
|
2807
|
+
content: string;
|
|
2808
|
+
bytes: number;
|
|
2809
|
+
}>;
|
|
2810
|
+
type WpFileReadOutput = z.infer<typeof WpFileReadOutputSchema>;
|
|
2811
|
+
declare const WpFileWriteInputSchema: z.ZodObject<{
|
|
2812
|
+
target_id: z.ZodString;
|
|
2813
|
+
path: z.ZodString;
|
|
2814
|
+
content: z.ZodString;
|
|
2815
|
+
mode: z.ZodDefault<z.ZodEnum<["overwrite", "append"]>>;
|
|
2816
|
+
backup: z.ZodDefault<z.ZodBoolean>;
|
|
2817
|
+
confirm_unsafe_path: z.ZodDefault<z.ZodBoolean>;
|
|
2818
|
+
}, "strip", z.ZodTypeAny, {
|
|
2819
|
+
path: string;
|
|
2820
|
+
content: string;
|
|
2821
|
+
target_id: string;
|
|
2822
|
+
mode: "overwrite" | "append";
|
|
2823
|
+
backup: boolean;
|
|
2824
|
+
confirm_unsafe_path: boolean;
|
|
2825
|
+
}, {
|
|
2826
|
+
path: string;
|
|
2827
|
+
content: string;
|
|
2828
|
+
target_id: string;
|
|
2829
|
+
mode?: "overwrite" | "append" | undefined;
|
|
2830
|
+
backup?: boolean | undefined;
|
|
2831
|
+
confirm_unsafe_path?: boolean | undefined;
|
|
2832
|
+
}>;
|
|
2833
|
+
type WpFileWriteInput = z.infer<typeof WpFileWriteInputSchema>;
|
|
2834
|
+
declare const WpFileWriteOutputSchema: z.ZodObject<{
|
|
2835
|
+
path: z.ZodString;
|
|
2836
|
+
bytes_written: z.ZodNumber;
|
|
2837
|
+
backup_path: z.ZodNullable<z.ZodString>;
|
|
2838
|
+
}, "strip", z.ZodTypeAny, {
|
|
2839
|
+
path: string;
|
|
2840
|
+
bytes_written: number;
|
|
2841
|
+
backup_path: string | null;
|
|
2842
|
+
}, {
|
|
2843
|
+
path: string;
|
|
2844
|
+
bytes_written: number;
|
|
2845
|
+
backup_path: string | null;
|
|
2846
|
+
}>;
|
|
2847
|
+
type WpFileWriteOutput = z.infer<typeof WpFileWriteOutputSchema>;
|
|
2848
|
+
|
|
2849
|
+
type tools_AcfReadInput = AcfReadInput;
|
|
2850
|
+
declare const tools_AcfReadInputSchema: typeof AcfReadInputSchema;
|
|
2851
|
+
type tools_AcfReadOutput = AcfReadOutput;
|
|
2852
|
+
declare const tools_AcfReadOutputSchema: typeof AcfReadOutputSchema;
|
|
2853
|
+
type tools_AcfWriteInput = AcfWriteInput;
|
|
2854
|
+
declare const tools_AcfWriteInputSchema: typeof AcfWriteInputSchema;
|
|
2855
|
+
type tools_AcfWriteOutput = AcfWriteOutput;
|
|
2856
|
+
declare const tools_AcfWriteOutputSchema: typeof AcfWriteOutputSchema;
|
|
2857
|
+
type tools_AuditManyInput = AuditManyInput;
|
|
2858
|
+
declare const tools_AuditManyInputSchema: typeof AuditManyInputSchema;
|
|
2859
|
+
type tools_AuditManyOutput = AuditManyOutput;
|
|
2860
|
+
declare const tools_AuditManyOutputSchema: typeof AuditManyOutputSchema;
|
|
2861
|
+
type tools_AuditSecurityInput = AuditSecurityInput;
|
|
2862
|
+
declare const tools_AuditSecurityInputSchema: typeof AuditSecurityInputSchema;
|
|
2863
|
+
type tools_AuditSecurityOutput = AuditSecurityOutput;
|
|
2864
|
+
declare const tools_AuditSecurityOutputSchema: typeof AuditSecurityOutputSchema;
|
|
2865
|
+
type tools_BackupCreateInput = BackupCreateInput;
|
|
2866
|
+
declare const tools_BackupCreateInputSchema: typeof BackupCreateInputSchema;
|
|
2867
|
+
type tools_BackupCreateOutput = BackupCreateOutput;
|
|
2868
|
+
declare const tools_BackupCreateOutputSchema: typeof BackupCreateOutputSchema;
|
|
2869
|
+
type tools_BackupRestoreInput = BackupRestoreInput;
|
|
2870
|
+
declare const tools_BackupRestoreInputSchema: typeof BackupRestoreInputSchema;
|
|
2871
|
+
type tools_BackupRestoreOutput = BackupRestoreOutput;
|
|
2872
|
+
declare const tools_BackupRestoreOutputSchema: typeof BackupRestoreOutputSchema;
|
|
2873
|
+
type tools_BricksReadInput = BricksReadInput;
|
|
2874
|
+
declare const tools_BricksReadInputSchema: typeof BricksReadInputSchema;
|
|
2875
|
+
type tools_BricksReadOutput = BricksReadOutput;
|
|
2876
|
+
declare const tools_BricksReadOutputSchema: typeof BricksReadOutputSchema;
|
|
2877
|
+
type tools_BricksWriteInput = BricksWriteInput;
|
|
2878
|
+
declare const tools_BricksWriteInputSchema: typeof BricksWriteInputSchema;
|
|
2879
|
+
type tools_BricksWriteOutput = BricksWriteOutput;
|
|
2880
|
+
declare const tools_BricksWriteOutputSchema: typeof BricksWriteOutputSchema;
|
|
2881
|
+
type tools_CacheToolInput = CacheToolInput;
|
|
2882
|
+
declare const tools_CacheToolInputSchema: typeof CacheToolInputSchema;
|
|
2883
|
+
type tools_CacheToolOutput = CacheToolOutput;
|
|
2884
|
+
declare const tools_CacheToolOutputSchema: typeof CacheToolOutputSchema;
|
|
2885
|
+
type tools_CloneInput = CloneInput;
|
|
2886
|
+
declare const tools_CloneInputSchema: typeof CloneInputSchema;
|
|
2887
|
+
type tools_CloneOutput = CloneOutput;
|
|
2888
|
+
declare const tools_CloneOutputSchema: typeof CloneOutputSchema;
|
|
2889
|
+
type tools_ConnectDockerInput = ConnectDockerInput;
|
|
2890
|
+
declare const tools_ConnectDockerInputSchema: typeof ConnectDockerInputSchema;
|
|
2891
|
+
type tools_ConnectDockerOutput = ConnectDockerOutput;
|
|
2892
|
+
declare const tools_ConnectDockerOutputSchema: typeof ConnectDockerOutputSchema;
|
|
2893
|
+
type tools_ConnectLocalInput = ConnectLocalInput;
|
|
2894
|
+
declare const tools_ConnectLocalInputSchema: typeof ConnectLocalInputSchema;
|
|
2895
|
+
type tools_ConnectLocalOutput = ConnectLocalOutput;
|
|
2896
|
+
declare const tools_ConnectLocalOutputSchema: typeof ConnectLocalOutputSchema;
|
|
2897
|
+
type tools_ConnectRestInput = ConnectRestInput;
|
|
2898
|
+
declare const tools_ConnectRestInputSchema: typeof ConnectRestInputSchema;
|
|
2899
|
+
type tools_ConnectRestOutput = ConnectRestOutput;
|
|
2900
|
+
declare const tools_ConnectRestOutputSchema: typeof ConnectRestOutputSchema;
|
|
2901
|
+
type tools_ConnectSshInput = ConnectSshInput;
|
|
2902
|
+
declare const tools_ConnectSshInputSchema: typeof ConnectSshInputSchema;
|
|
2903
|
+
type tools_ConnectSshOutput = ConnectSshOutput;
|
|
2904
|
+
declare const tools_ConnectSshOutputSchema: typeof ConnectSshOutputSchema;
|
|
2905
|
+
type tools_CronToolInput = CronToolInput;
|
|
2906
|
+
declare const tools_CronToolInputSchema: typeof CronToolInputSchema;
|
|
2907
|
+
type tools_CronToolOutput = CronToolOutput;
|
|
2908
|
+
declare const tools_CronToolOutputSchema: typeof CronToolOutputSchema;
|
|
2909
|
+
type tools_DbQueryInput = DbQueryInput;
|
|
2910
|
+
declare const tools_DbQueryInputSchema: typeof DbQueryInputSchema;
|
|
2911
|
+
type tools_DbQueryOutput = DbQueryOutput;
|
|
2912
|
+
declare const tools_DbQueryOutputSchema: typeof DbQueryOutputSchema;
|
|
2913
|
+
type tools_DiagnoseInput = DiagnoseInput;
|
|
2914
|
+
declare const tools_DiagnoseInputSchema: typeof DiagnoseInputSchema;
|
|
2915
|
+
type tools_DiagnoseOutput = DiagnoseOutput;
|
|
2916
|
+
declare const tools_DiagnoseOutputSchema: typeof DiagnoseOutputSchema;
|
|
2917
|
+
type tools_DisconnectInput = DisconnectInput;
|
|
2918
|
+
declare const tools_DisconnectInputSchema: typeof DisconnectInputSchema;
|
|
2919
|
+
type tools_DisconnectOutput = DisconnectOutput;
|
|
2920
|
+
declare const tools_DisconnectOutputSchema: typeof DisconnectOutputSchema;
|
|
2921
|
+
type tools_DiviReadInput = DiviReadInput;
|
|
2922
|
+
declare const tools_DiviReadInputSchema: typeof DiviReadInputSchema;
|
|
2923
|
+
type tools_DiviReadOutput = DiviReadOutput;
|
|
2924
|
+
declare const tools_DiviReadOutputSchema: typeof DiviReadOutputSchema;
|
|
2925
|
+
type tools_DiviWriteInput = DiviWriteInput;
|
|
2926
|
+
declare const tools_DiviWriteInputSchema: typeof DiviWriteInputSchema;
|
|
2927
|
+
type tools_DiviWriteOutput = DiviWriteOutput;
|
|
2928
|
+
declare const tools_DiviWriteOutputSchema: typeof DiviWriteOutputSchema;
|
|
2929
|
+
type tools_ElementorReadInput = ElementorReadInput;
|
|
2930
|
+
declare const tools_ElementorReadInputSchema: typeof ElementorReadInputSchema;
|
|
2931
|
+
type tools_ElementorReadOutput = ElementorReadOutput;
|
|
2932
|
+
declare const tools_ElementorReadOutputSchema: typeof ElementorReadOutputSchema;
|
|
2933
|
+
type tools_ElementorWriteInput = ElementorWriteInput;
|
|
2934
|
+
declare const tools_ElementorWriteInputSchema: typeof ElementorWriteInputSchema;
|
|
2935
|
+
type tools_ElementorWriteOutput = ElementorWriteOutput;
|
|
2936
|
+
declare const tools_ElementorWriteOutputSchema: typeof ElementorWriteOutputSchema;
|
|
2937
|
+
type tools_ExecutePhpInput = ExecutePhpInput;
|
|
2938
|
+
declare const tools_ExecutePhpInputSchema: typeof ExecutePhpInputSchema;
|
|
2939
|
+
type tools_ExecutePhpOutput = ExecutePhpOutput;
|
|
2940
|
+
declare const tools_ExecutePhpOutputSchema: typeof ExecutePhpOutputSchema;
|
|
2941
|
+
type tools_FormsReadInput = FormsReadInput;
|
|
2942
|
+
declare const tools_FormsReadInputSchema: typeof FormsReadInputSchema;
|
|
2943
|
+
type tools_FormsReadOutput = FormsReadOutput;
|
|
2944
|
+
declare const tools_FormsReadOutputSchema: typeof FormsReadOutputSchema;
|
|
2945
|
+
type tools_FormsWriteInput = FormsWriteInput;
|
|
2946
|
+
declare const tools_FormsWriteInputSchema: typeof FormsWriteInputSchema;
|
|
2947
|
+
type tools_FormsWriteOutput = FormsWriteOutput;
|
|
2948
|
+
declare const tools_FormsWriteOutputSchema: typeof FormsWriteOutputSchema;
|
|
2949
|
+
type tools_HookStateInput = HookStateInput;
|
|
2950
|
+
declare const tools_HookStateInputSchema: typeof HookStateInputSchema;
|
|
2951
|
+
type tools_HookStateOutput = HookStateOutput;
|
|
2952
|
+
declare const tools_HookStateOutputSchema: typeof HookStateOutputSchema;
|
|
2953
|
+
type tools_IntrospectInput = IntrospectInput;
|
|
2954
|
+
declare const tools_IntrospectInputSchema: typeof IntrospectInputSchema;
|
|
2955
|
+
type tools_IntrospectOutput = IntrospectOutput;
|
|
2956
|
+
declare const tools_IntrospectOutputSchema: typeof IntrospectOutputSchema;
|
|
2957
|
+
type tools_MailTestInput = MailTestInput;
|
|
2958
|
+
declare const tools_MailTestInputSchema: typeof MailTestInputSchema;
|
|
2959
|
+
type tools_MailTestOutput = MailTestOutput;
|
|
2960
|
+
declare const tools_MailTestOutputSchema: typeof MailTestOutputSchema;
|
|
2961
|
+
type tools_MemoryListInput = MemoryListInput;
|
|
2962
|
+
declare const tools_MemoryListInputSchema: typeof MemoryListInputSchema;
|
|
2963
|
+
type tools_MemoryListOutput = MemoryListOutput;
|
|
2964
|
+
declare const tools_MemoryListOutputSchema: typeof MemoryListOutputSchema;
|
|
2965
|
+
type tools_MemoryNoteInput = MemoryNoteInput;
|
|
2966
|
+
declare const tools_MemoryNoteInputSchema: typeof MemoryNoteInputSchema;
|
|
2967
|
+
type tools_MemoryNoteOutput = MemoryNoteOutput;
|
|
2968
|
+
declare const tools_MemoryNoteOutputSchema: typeof MemoryNoteOutputSchema;
|
|
2969
|
+
type tools_MemoryRecallInput = MemoryRecallInput;
|
|
2970
|
+
declare const tools_MemoryRecallInputSchema: typeof MemoryRecallInputSchema;
|
|
2971
|
+
type tools_MemoryRecallOutput = MemoryRecallOutput;
|
|
2972
|
+
declare const tools_MemoryRecallOutputSchema: typeof MemoryRecallOutputSchema;
|
|
2973
|
+
type tools_MigrateDataInput = MigrateDataInput;
|
|
2974
|
+
declare const tools_MigrateDataInputSchema: typeof MigrateDataInputSchema;
|
|
2975
|
+
type tools_MigrateDataOutput = MigrateDataOutput;
|
|
2976
|
+
declare const tools_MigrateDataOutputSchema: typeof MigrateDataOutputSchema;
|
|
2977
|
+
type tools_MigrateDryrunInput = MigrateDryrunInput;
|
|
2978
|
+
declare const tools_MigrateDryrunInputSchema: typeof MigrateDryrunInputSchema;
|
|
2979
|
+
type tools_MigrateDryrunOutput = MigrateDryrunOutput;
|
|
2980
|
+
declare const tools_MigrateDryrunOutputSchema: typeof MigrateDryrunOutputSchema;
|
|
2981
|
+
type tools_OptionGetInput = OptionGetInput;
|
|
2982
|
+
declare const tools_OptionGetInputSchema: typeof OptionGetInputSchema;
|
|
2983
|
+
type tools_OptionGetOutput = OptionGetOutput;
|
|
2984
|
+
declare const tools_OptionGetOutputSchema: typeof OptionGetOutputSchema;
|
|
2985
|
+
type tools_OptionSetInput = OptionSetInput;
|
|
2986
|
+
declare const tools_OptionSetInputSchema: typeof OptionSetInputSchema;
|
|
2987
|
+
type tools_OptionSetOutput = OptionSetOutput;
|
|
2988
|
+
declare const tools_OptionSetOutputSchema: typeof OptionSetOutputSchema;
|
|
2989
|
+
type tools_OxygenReadInput = OxygenReadInput;
|
|
2990
|
+
declare const tools_OxygenReadInputSchema: typeof OxygenReadInputSchema;
|
|
2991
|
+
type tools_OxygenReadOutput = OxygenReadOutput;
|
|
2992
|
+
declare const tools_OxygenReadOutputSchema: typeof OxygenReadOutputSchema;
|
|
2993
|
+
type tools_OxygenWriteInput = OxygenWriteInput;
|
|
2994
|
+
declare const tools_OxygenWriteInputSchema: typeof OxygenWriteInputSchema;
|
|
2995
|
+
type tools_OxygenWriteOutput = OxygenWriteOutput;
|
|
2996
|
+
declare const tools_OxygenWriteOutputSchema: typeof OxygenWriteOutputSchema;
|
|
2997
|
+
type tools_PairInput = PairInput;
|
|
2998
|
+
declare const tools_PairInputSchema: typeof PairInputSchema;
|
|
2999
|
+
type tools_PairOutput = PairOutput;
|
|
3000
|
+
declare const tools_PairOutputSchema: typeof PairOutputSchema;
|
|
3001
|
+
type tools_PostCreateInput = PostCreateInput;
|
|
3002
|
+
declare const tools_PostCreateInputSchema: typeof PostCreateInputSchema;
|
|
3003
|
+
type tools_PostCreateOutput = PostCreateOutput;
|
|
3004
|
+
declare const tools_PostCreateOutputSchema: typeof PostCreateOutputSchema;
|
|
3005
|
+
type tools_PostGetInput = PostGetInput;
|
|
3006
|
+
declare const tools_PostGetInputSchema: typeof PostGetInputSchema;
|
|
3007
|
+
type tools_PostGetOutput = PostGetOutput;
|
|
3008
|
+
declare const tools_PostGetOutputSchema: typeof PostGetOutputSchema;
|
|
3009
|
+
type tools_PostListInput = PostListInput;
|
|
3010
|
+
declare const tools_PostListInputSchema: typeof PostListInputSchema;
|
|
3011
|
+
type tools_PostListOutput = PostListOutput;
|
|
3012
|
+
declare const tools_PostListOutputSchema: typeof PostListOutputSchema;
|
|
3013
|
+
type tools_PostUpdateInput = PostUpdateInput;
|
|
3014
|
+
declare const tools_PostUpdateInputSchema: typeof PostUpdateInputSchema;
|
|
3015
|
+
type tools_PostUpdateOutput = PostUpdateOutput;
|
|
3016
|
+
declare const tools_PostUpdateOutputSchema: typeof PostUpdateOutputSchema;
|
|
3017
|
+
type tools_RankMathReadInput = RankMathReadInput;
|
|
3018
|
+
declare const tools_RankMathReadInputSchema: typeof RankMathReadInputSchema;
|
|
3019
|
+
type tools_RankMathReadOutput = RankMathReadOutput;
|
|
3020
|
+
declare const tools_RankMathReadOutputSchema: typeof RankMathReadOutputSchema;
|
|
3021
|
+
type tools_RankMathWriteInput = RankMathWriteInput;
|
|
3022
|
+
declare const tools_RankMathWriteInputSchema: typeof RankMathWriteInputSchema;
|
|
3023
|
+
type tools_RankMathWriteOutput = RankMathWriteOutput;
|
|
3024
|
+
declare const tools_RankMathWriteOutputSchema: typeof RankMathWriteOutputSchema;
|
|
3025
|
+
type tools_RestDumpInput = RestDumpInput;
|
|
3026
|
+
declare const tools_RestDumpInputSchema: typeof RestDumpInputSchema;
|
|
3027
|
+
type tools_RestDumpOutput = RestDumpOutput;
|
|
3028
|
+
declare const tools_RestDumpOutputSchema: typeof RestDumpOutputSchema;
|
|
3029
|
+
type tools_RestRequestInput = RestRequestInput;
|
|
3030
|
+
declare const tools_RestRequestInputSchema: typeof RestRequestInputSchema;
|
|
3031
|
+
type tools_RestRequestOutput = RestRequestOutput;
|
|
3032
|
+
declare const tools_RestRequestOutputSchema: typeof RestRequestOutputSchema;
|
|
3033
|
+
declare const tools_RunIdSchema: typeof RunIdSchema;
|
|
3034
|
+
type tools_ScaffoldBlockInput = ScaffoldBlockInput;
|
|
3035
|
+
declare const tools_ScaffoldBlockInputSchema: typeof ScaffoldBlockInputSchema;
|
|
3036
|
+
type tools_ScaffoldBlockOutput = ScaffoldBlockOutput;
|
|
3037
|
+
declare const tools_ScaffoldBlockOutputSchema: typeof ScaffoldBlockOutputSchema;
|
|
3038
|
+
type tools_ScaffoldPatternInput = ScaffoldPatternInput;
|
|
3039
|
+
declare const tools_ScaffoldPatternInputSchema: typeof ScaffoldPatternInputSchema;
|
|
3040
|
+
type tools_ScaffoldPatternOutput = ScaffoldPatternOutput;
|
|
3041
|
+
declare const tools_ScaffoldPatternOutputSchema: typeof ScaffoldPatternOutputSchema;
|
|
3042
|
+
type tools_ScaffoldPluginInput = ScaffoldPluginInput;
|
|
3043
|
+
declare const tools_ScaffoldPluginInputSchema: typeof ScaffoldPluginInputSchema;
|
|
3044
|
+
type tools_ScaffoldPluginOutput = ScaffoldPluginOutput;
|
|
3045
|
+
declare const tools_ScaffoldPluginOutputSchema: typeof ScaffoldPluginOutputSchema;
|
|
3046
|
+
type tools_ScaffoldThemeInput = ScaffoldThemeInput;
|
|
3047
|
+
declare const tools_ScaffoldThemeInputSchema: typeof ScaffoldThemeInputSchema;
|
|
3048
|
+
type tools_ScaffoldThemeOutput = ScaffoldThemeOutput;
|
|
3049
|
+
declare const tools_ScaffoldThemeOutputSchema: typeof ScaffoldThemeOutputSchema;
|
|
3050
|
+
declare const tools_TargetIdSchema: typeof TargetIdSchema;
|
|
3051
|
+
type tools_UserListInput = UserListInput;
|
|
3052
|
+
declare const tools_UserListInputSchema: typeof UserListInputSchema;
|
|
3053
|
+
type tools_UserListOutput = UserListOutput;
|
|
3054
|
+
declare const tools_UserListOutputSchema: typeof UserListOutputSchema;
|
|
3055
|
+
type tools_UserSessionListInput = UserSessionListInput;
|
|
3056
|
+
declare const tools_UserSessionListInputSchema: typeof UserSessionListInputSchema;
|
|
3057
|
+
type tools_UserSessionListOutput = UserSessionListOutput;
|
|
3058
|
+
declare const tools_UserSessionListOutputSchema: typeof UserSessionListOutputSchema;
|
|
3059
|
+
type tools_WooReadInput = WooReadInput;
|
|
3060
|
+
declare const tools_WooReadInputSchema: typeof WooReadInputSchema;
|
|
3061
|
+
type tools_WooReadOutput = WooReadOutput;
|
|
3062
|
+
declare const tools_WooReadOutputSchema: typeof WooReadOutputSchema;
|
|
3063
|
+
type tools_WooWriteInput = WooWriteInput;
|
|
3064
|
+
declare const tools_WooWriteInputSchema: typeof WooWriteInputSchema;
|
|
3065
|
+
type tools_WooWriteOutput = WooWriteOutput;
|
|
3066
|
+
declare const tools_WooWriteOutputSchema: typeof WooWriteOutputSchema;
|
|
3067
|
+
type tools_WpCliRunInput = WpCliRunInput;
|
|
3068
|
+
declare const tools_WpCliRunInputSchema: typeof WpCliRunInputSchema;
|
|
3069
|
+
type tools_WpCliRunOutput = WpCliRunOutput;
|
|
3070
|
+
declare const tools_WpCliRunOutputSchema: typeof WpCliRunOutputSchema;
|
|
3071
|
+
type tools_WpFileReadInput = WpFileReadInput;
|
|
3072
|
+
declare const tools_WpFileReadInputSchema: typeof WpFileReadInputSchema;
|
|
3073
|
+
type tools_WpFileReadOutput = WpFileReadOutput;
|
|
3074
|
+
declare const tools_WpFileReadOutputSchema: typeof WpFileReadOutputSchema;
|
|
3075
|
+
type tools_WpFileWriteInput = WpFileWriteInput;
|
|
3076
|
+
declare const tools_WpFileWriteInputSchema: typeof WpFileWriteInputSchema;
|
|
3077
|
+
type tools_WpFileWriteOutput = WpFileWriteOutput;
|
|
3078
|
+
declare const tools_WpFileWriteOutputSchema: typeof WpFileWriteOutputSchema;
|
|
3079
|
+
type tools_WpHealthCheckInput = WpHealthCheckInput;
|
|
3080
|
+
declare const tools_WpHealthCheckInputSchema: typeof WpHealthCheckInputSchema;
|
|
3081
|
+
type tools_WpHealthCheckOutput = WpHealthCheckOutput;
|
|
3082
|
+
declare const tools_WpHealthCheckOutputSchema: typeof WpHealthCheckOutputSchema;
|
|
3083
|
+
type tools_WpmlReadInput = WpmlReadInput;
|
|
3084
|
+
declare const tools_WpmlReadInputSchema: typeof WpmlReadInputSchema;
|
|
3085
|
+
type tools_WpmlReadOutput = WpmlReadOutput;
|
|
3086
|
+
declare const tools_WpmlReadOutputSchema: typeof WpmlReadOutputSchema;
|
|
3087
|
+
type tools_WpmlWriteInput = WpmlWriteInput;
|
|
3088
|
+
declare const tools_WpmlWriteInputSchema: typeof WpmlWriteInputSchema;
|
|
3089
|
+
type tools_WpmlWriteOutput = WpmlWriteOutput;
|
|
3090
|
+
declare const tools_WpmlWriteOutputSchema: typeof WpmlWriteOutputSchema;
|
|
3091
|
+
type tools_YoastReadInput = YoastReadInput;
|
|
3092
|
+
declare const tools_YoastReadInputSchema: typeof YoastReadInputSchema;
|
|
3093
|
+
type tools_YoastReadOutput = YoastReadOutput;
|
|
3094
|
+
declare const tools_YoastReadOutputSchema: typeof YoastReadOutputSchema;
|
|
3095
|
+
type tools_YoastWriteInput = YoastWriteInput;
|
|
3096
|
+
declare const tools_YoastWriteInputSchema: typeof YoastWriteInputSchema;
|
|
3097
|
+
type tools_YoastWriteOutput = YoastWriteOutput;
|
|
3098
|
+
declare const tools_YoastWriteOutputSchema: typeof YoastWriteOutputSchema;
|
|
3099
|
+
declare namespace tools {
|
|
3100
|
+
export { type tools_AcfReadInput as AcfReadInput, tools_AcfReadInputSchema as AcfReadInputSchema, type tools_AcfReadOutput as AcfReadOutput, tools_AcfReadOutputSchema as AcfReadOutputSchema, type tools_AcfWriteInput as AcfWriteInput, tools_AcfWriteInputSchema as AcfWriteInputSchema, type tools_AcfWriteOutput as AcfWriteOutput, tools_AcfWriteOutputSchema as AcfWriteOutputSchema, type tools_AuditManyInput as AuditManyInput, tools_AuditManyInputSchema as AuditManyInputSchema, type tools_AuditManyOutput as AuditManyOutput, tools_AuditManyOutputSchema as AuditManyOutputSchema, type tools_AuditSecurityInput as AuditSecurityInput, tools_AuditSecurityInputSchema as AuditSecurityInputSchema, type tools_AuditSecurityOutput as AuditSecurityOutput, tools_AuditSecurityOutputSchema as AuditSecurityOutputSchema, type tools_BackupCreateInput as BackupCreateInput, tools_BackupCreateInputSchema as BackupCreateInputSchema, type tools_BackupCreateOutput as BackupCreateOutput, tools_BackupCreateOutputSchema as BackupCreateOutputSchema, type tools_BackupRestoreInput as BackupRestoreInput, tools_BackupRestoreInputSchema as BackupRestoreInputSchema, type tools_BackupRestoreOutput as BackupRestoreOutput, tools_BackupRestoreOutputSchema as BackupRestoreOutputSchema, type tools_BricksReadInput as BricksReadInput, tools_BricksReadInputSchema as BricksReadInputSchema, type tools_BricksReadOutput as BricksReadOutput, tools_BricksReadOutputSchema as BricksReadOutputSchema, type tools_BricksWriteInput as BricksWriteInput, tools_BricksWriteInputSchema as BricksWriteInputSchema, type tools_BricksWriteOutput as BricksWriteOutput, tools_BricksWriteOutputSchema as BricksWriteOutputSchema, type tools_CacheToolInput as CacheToolInput, tools_CacheToolInputSchema as CacheToolInputSchema, type tools_CacheToolOutput as CacheToolOutput, tools_CacheToolOutputSchema as CacheToolOutputSchema, type tools_CloneInput as CloneInput, tools_CloneInputSchema as CloneInputSchema, type tools_CloneOutput as CloneOutput, tools_CloneOutputSchema as CloneOutputSchema, type tools_ConnectDockerInput as ConnectDockerInput, tools_ConnectDockerInputSchema as ConnectDockerInputSchema, type tools_ConnectDockerOutput as ConnectDockerOutput, tools_ConnectDockerOutputSchema as ConnectDockerOutputSchema, type tools_ConnectLocalInput as ConnectLocalInput, tools_ConnectLocalInputSchema as ConnectLocalInputSchema, type tools_ConnectLocalOutput as ConnectLocalOutput, tools_ConnectLocalOutputSchema as ConnectLocalOutputSchema, type tools_ConnectRestInput as ConnectRestInput, tools_ConnectRestInputSchema as ConnectRestInputSchema, type tools_ConnectRestOutput as ConnectRestOutput, tools_ConnectRestOutputSchema as ConnectRestOutputSchema, type tools_ConnectSshInput as ConnectSshInput, tools_ConnectSshInputSchema as ConnectSshInputSchema, type tools_ConnectSshOutput as ConnectSshOutput, tools_ConnectSshOutputSchema as ConnectSshOutputSchema, type tools_CronToolInput as CronToolInput, tools_CronToolInputSchema as CronToolInputSchema, type tools_CronToolOutput as CronToolOutput, tools_CronToolOutputSchema as CronToolOutputSchema, type tools_DbQueryInput as DbQueryInput, tools_DbQueryInputSchema as DbQueryInputSchema, type tools_DbQueryOutput as DbQueryOutput, tools_DbQueryOutputSchema as DbQueryOutputSchema, type tools_DiagnoseInput as DiagnoseInput, tools_DiagnoseInputSchema as DiagnoseInputSchema, type tools_DiagnoseOutput as DiagnoseOutput, tools_DiagnoseOutputSchema as DiagnoseOutputSchema, type tools_DisconnectInput as DisconnectInput, tools_DisconnectInputSchema as DisconnectInputSchema, type tools_DisconnectOutput as DisconnectOutput, tools_DisconnectOutputSchema as DisconnectOutputSchema, type tools_DiviReadInput as DiviReadInput, tools_DiviReadInputSchema as DiviReadInputSchema, type tools_DiviReadOutput as DiviReadOutput, tools_DiviReadOutputSchema as DiviReadOutputSchema, type tools_DiviWriteInput as DiviWriteInput, tools_DiviWriteInputSchema as DiviWriteInputSchema, type tools_DiviWriteOutput as DiviWriteOutput, tools_DiviWriteOutputSchema as DiviWriteOutputSchema, type tools_ElementorReadInput as ElementorReadInput, tools_ElementorReadInputSchema as ElementorReadInputSchema, type tools_ElementorReadOutput as ElementorReadOutput, tools_ElementorReadOutputSchema as ElementorReadOutputSchema, type tools_ElementorWriteInput as ElementorWriteInput, tools_ElementorWriteInputSchema as ElementorWriteInputSchema, type tools_ElementorWriteOutput as ElementorWriteOutput, tools_ElementorWriteOutputSchema as ElementorWriteOutputSchema, type tools_ExecutePhpInput as ExecutePhpInput, tools_ExecutePhpInputSchema as ExecutePhpInputSchema, type tools_ExecutePhpOutput as ExecutePhpOutput, tools_ExecutePhpOutputSchema as ExecutePhpOutputSchema, type tools_FormsReadInput as FormsReadInput, tools_FormsReadInputSchema as FormsReadInputSchema, type tools_FormsReadOutput as FormsReadOutput, tools_FormsReadOutputSchema as FormsReadOutputSchema, type tools_FormsWriteInput as FormsWriteInput, tools_FormsWriteInputSchema as FormsWriteInputSchema, type tools_FormsWriteOutput as FormsWriteOutput, tools_FormsWriteOutputSchema as FormsWriteOutputSchema, type tools_HookStateInput as HookStateInput, tools_HookStateInputSchema as HookStateInputSchema, type tools_HookStateOutput as HookStateOutput, tools_HookStateOutputSchema as HookStateOutputSchema, type tools_IntrospectInput as IntrospectInput, tools_IntrospectInputSchema as IntrospectInputSchema, type tools_IntrospectOutput as IntrospectOutput, tools_IntrospectOutputSchema as IntrospectOutputSchema, type tools_MailTestInput as MailTestInput, tools_MailTestInputSchema as MailTestInputSchema, type tools_MailTestOutput as MailTestOutput, tools_MailTestOutputSchema as MailTestOutputSchema, type tools_MemoryListInput as MemoryListInput, tools_MemoryListInputSchema as MemoryListInputSchema, type tools_MemoryListOutput as MemoryListOutput, tools_MemoryListOutputSchema as MemoryListOutputSchema, type tools_MemoryNoteInput as MemoryNoteInput, tools_MemoryNoteInputSchema as MemoryNoteInputSchema, type tools_MemoryNoteOutput as MemoryNoteOutput, tools_MemoryNoteOutputSchema as MemoryNoteOutputSchema, type tools_MemoryRecallInput as MemoryRecallInput, tools_MemoryRecallInputSchema as MemoryRecallInputSchema, type tools_MemoryRecallOutput as MemoryRecallOutput, tools_MemoryRecallOutputSchema as MemoryRecallOutputSchema, type tools_MigrateDataInput as MigrateDataInput, tools_MigrateDataInputSchema as MigrateDataInputSchema, type tools_MigrateDataOutput as MigrateDataOutput, tools_MigrateDataOutputSchema as MigrateDataOutputSchema, type tools_MigrateDryrunInput as MigrateDryrunInput, tools_MigrateDryrunInputSchema as MigrateDryrunInputSchema, type tools_MigrateDryrunOutput as MigrateDryrunOutput, tools_MigrateDryrunOutputSchema as MigrateDryrunOutputSchema, type tools_OptionGetInput as OptionGetInput, tools_OptionGetInputSchema as OptionGetInputSchema, type tools_OptionGetOutput as OptionGetOutput, tools_OptionGetOutputSchema as OptionGetOutputSchema, type tools_OptionSetInput as OptionSetInput, tools_OptionSetInputSchema as OptionSetInputSchema, type tools_OptionSetOutput as OptionSetOutput, tools_OptionSetOutputSchema as OptionSetOutputSchema, type tools_OxygenReadInput as OxygenReadInput, tools_OxygenReadInputSchema as OxygenReadInputSchema, type tools_OxygenReadOutput as OxygenReadOutput, tools_OxygenReadOutputSchema as OxygenReadOutputSchema, type tools_OxygenWriteInput as OxygenWriteInput, tools_OxygenWriteInputSchema as OxygenWriteInputSchema, type tools_OxygenWriteOutput as OxygenWriteOutput, tools_OxygenWriteOutputSchema as OxygenWriteOutputSchema, type tools_PairInput as PairInput, tools_PairInputSchema as PairInputSchema, type tools_PairOutput as PairOutput, tools_PairOutputSchema as PairOutputSchema, type tools_PostCreateInput as PostCreateInput, tools_PostCreateInputSchema as PostCreateInputSchema, type tools_PostCreateOutput as PostCreateOutput, tools_PostCreateOutputSchema as PostCreateOutputSchema, type tools_PostGetInput as PostGetInput, tools_PostGetInputSchema as PostGetInputSchema, type tools_PostGetOutput as PostGetOutput, tools_PostGetOutputSchema as PostGetOutputSchema, type tools_PostListInput as PostListInput, tools_PostListInputSchema as PostListInputSchema, type tools_PostListOutput as PostListOutput, tools_PostListOutputSchema as PostListOutputSchema, type tools_PostUpdateInput as PostUpdateInput, tools_PostUpdateInputSchema as PostUpdateInputSchema, type tools_PostUpdateOutput as PostUpdateOutput, tools_PostUpdateOutputSchema as PostUpdateOutputSchema, type tools_RankMathReadInput as RankMathReadInput, tools_RankMathReadInputSchema as RankMathReadInputSchema, type tools_RankMathReadOutput as RankMathReadOutput, tools_RankMathReadOutputSchema as RankMathReadOutputSchema, type tools_RankMathWriteInput as RankMathWriteInput, tools_RankMathWriteInputSchema as RankMathWriteInputSchema, type tools_RankMathWriteOutput as RankMathWriteOutput, tools_RankMathWriteOutputSchema as RankMathWriteOutputSchema, type tools_RestDumpInput as RestDumpInput, tools_RestDumpInputSchema as RestDumpInputSchema, type tools_RestDumpOutput as RestDumpOutput, tools_RestDumpOutputSchema as RestDumpOutputSchema, type tools_RestRequestInput as RestRequestInput, tools_RestRequestInputSchema as RestRequestInputSchema, type tools_RestRequestOutput as RestRequestOutput, tools_RestRequestOutputSchema as RestRequestOutputSchema, tools_RunIdSchema as RunIdSchema, type tools_ScaffoldBlockInput as ScaffoldBlockInput, tools_ScaffoldBlockInputSchema as ScaffoldBlockInputSchema, type tools_ScaffoldBlockOutput as ScaffoldBlockOutput, tools_ScaffoldBlockOutputSchema as ScaffoldBlockOutputSchema, type tools_ScaffoldPatternInput as ScaffoldPatternInput, tools_ScaffoldPatternInputSchema as ScaffoldPatternInputSchema, type tools_ScaffoldPatternOutput as ScaffoldPatternOutput, tools_ScaffoldPatternOutputSchema as ScaffoldPatternOutputSchema, type tools_ScaffoldPluginInput as ScaffoldPluginInput, tools_ScaffoldPluginInputSchema as ScaffoldPluginInputSchema, type tools_ScaffoldPluginOutput as ScaffoldPluginOutput, tools_ScaffoldPluginOutputSchema as ScaffoldPluginOutputSchema, type tools_ScaffoldThemeInput as ScaffoldThemeInput, tools_ScaffoldThemeInputSchema as ScaffoldThemeInputSchema, type tools_ScaffoldThemeOutput as ScaffoldThemeOutput, tools_ScaffoldThemeOutputSchema as ScaffoldThemeOutputSchema, tools_TargetIdSchema as TargetIdSchema, type tools_UserListInput as UserListInput, tools_UserListInputSchema as UserListInputSchema, type tools_UserListOutput as UserListOutput, tools_UserListOutputSchema as UserListOutputSchema, type tools_UserSessionListInput as UserSessionListInput, tools_UserSessionListInputSchema as UserSessionListInputSchema, type tools_UserSessionListOutput as UserSessionListOutput, tools_UserSessionListOutputSchema as UserSessionListOutputSchema, type tools_WooReadInput as WooReadInput, tools_WooReadInputSchema as WooReadInputSchema, type tools_WooReadOutput as WooReadOutput, tools_WooReadOutputSchema as WooReadOutputSchema, type tools_WooWriteInput as WooWriteInput, tools_WooWriteInputSchema as WooWriteInputSchema, type tools_WooWriteOutput as WooWriteOutput, tools_WooWriteOutputSchema as WooWriteOutputSchema, type tools_WpCliRunInput as WpCliRunInput, tools_WpCliRunInputSchema as WpCliRunInputSchema, type tools_WpCliRunOutput as WpCliRunOutput, tools_WpCliRunOutputSchema as WpCliRunOutputSchema, type tools_WpFileReadInput as WpFileReadInput, tools_WpFileReadInputSchema as WpFileReadInputSchema, type tools_WpFileReadOutput as WpFileReadOutput, tools_WpFileReadOutputSchema as WpFileReadOutputSchema, type tools_WpFileWriteInput as WpFileWriteInput, tools_WpFileWriteInputSchema as WpFileWriteInputSchema, type tools_WpFileWriteOutput as WpFileWriteOutput, tools_WpFileWriteOutputSchema as WpFileWriteOutputSchema, type tools_WpHealthCheckInput as WpHealthCheckInput, tools_WpHealthCheckInputSchema as WpHealthCheckInputSchema, type tools_WpHealthCheckOutput as WpHealthCheckOutput, tools_WpHealthCheckOutputSchema as WpHealthCheckOutputSchema, type tools_WpmlReadInput as WpmlReadInput, tools_WpmlReadInputSchema as WpmlReadInputSchema, type tools_WpmlReadOutput as WpmlReadOutput, tools_WpmlReadOutputSchema as WpmlReadOutputSchema, type tools_WpmlWriteInput as WpmlWriteInput, tools_WpmlWriteInputSchema as WpmlWriteInputSchema, type tools_WpmlWriteOutput as WpmlWriteOutput, tools_WpmlWriteOutputSchema as WpmlWriteOutputSchema, type tools_YoastReadInput as YoastReadInput, tools_YoastReadInputSchema as YoastReadInputSchema, type tools_YoastReadOutput as YoastReadOutput, tools_YoastReadOutputSchema as YoastReadOutputSchema, type tools_YoastWriteInput as YoastWriteInput, tools_YoastWriteInputSchema as YoastWriteInputSchema, type tools_YoastWriteOutput as YoastWriteOutput, tools_YoastWriteOutputSchema as YoastWriteOutputSchema };
|
|
3101
|
+
}
|
|
3102
|
+
|
|
3103
|
+
export { ProdGuard, type Target, TargetRegistry, createServer, errors, loadProfile, openTarget, tools as schema };
|