@lacneu/wix-openclaw 0.3.1 → 0.4.0
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/CHANGELOG.md +95 -2
- package/README.md +25 -10
- package/dist/config.js +9 -0
- package/dist/config.js.map +1 -1
- package/dist/index.d.ts +238 -0
- package/dist/index.js +16 -1
- package/dist/index.js.map +1 -1
- package/dist/tools/seo.d.ts +239 -0
- package/dist/tools/seo.js +1039 -0
- package/dist/tools/seo.js.map +1 -1
- package/openclaw.plugin.json +22 -5
- package/package.json +1 -1
package/dist/tools/seo.d.ts
CHANGED
|
@@ -6,6 +6,7 @@ declare const SeoTagSchema: import("@sinclair/typebox").TObject<{
|
|
|
6
6
|
type: import("@sinclair/typebox").TString;
|
|
7
7
|
props: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TRecord<import("@sinclair/typebox").TString, import("@sinclair/typebox").TUnknown>>;
|
|
8
8
|
children: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
9
|
+
meta: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TRecord<import("@sinclair/typebox").TString, import("@sinclair/typebox").TUnknown>>;
|
|
9
10
|
custom: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
10
11
|
disabled: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
11
12
|
}>;
|
|
@@ -195,5 +196,243 @@ export declare function buildSeoTools(client: WixClient): ({
|
|
|
195
196
|
data?: unknown;
|
|
196
197
|
error?: string;
|
|
197
198
|
}>>;
|
|
199
|
+
} | {
|
|
200
|
+
name: string;
|
|
201
|
+
description: string;
|
|
202
|
+
label: string;
|
|
203
|
+
parameters: import("@sinclair/typebox").TObject<{
|
|
204
|
+
siteId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
205
|
+
itemType: import("@sinclair/typebox").TString;
|
|
206
|
+
itemId: import("@sinclair/typebox").TString;
|
|
207
|
+
tags: import("@sinclair/typebox").TArray<import("@sinclair/typebox").TObject<{
|
|
208
|
+
type: import("@sinclair/typebox").TString;
|
|
209
|
+
props: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TRecord<import("@sinclair/typebox").TString, import("@sinclair/typebox").TUnknown>>;
|
|
210
|
+
children: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
211
|
+
meta: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TRecord<import("@sinclair/typebox").TString, import("@sinclair/typebox").TUnknown>>;
|
|
212
|
+
custom: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
213
|
+
disabled: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
214
|
+
}>>;
|
|
215
|
+
publish: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
216
|
+
acknowledgeReplacement: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
217
|
+
}>;
|
|
218
|
+
execute: (toolCallId: string, params: {
|
|
219
|
+
siteId?: string | undefined;
|
|
220
|
+
publish?: boolean | undefined;
|
|
221
|
+
acknowledgeReplacement?: string | undefined;
|
|
222
|
+
tags: {
|
|
223
|
+
custom?: boolean | undefined;
|
|
224
|
+
props?: {
|
|
225
|
+
[x: string]: unknown;
|
|
226
|
+
} | undefined;
|
|
227
|
+
children?: string | undefined;
|
|
228
|
+
meta?: {
|
|
229
|
+
[x: string]: unknown;
|
|
230
|
+
} | undefined;
|
|
231
|
+
disabled?: boolean | undefined;
|
|
232
|
+
type: string;
|
|
233
|
+
}[];
|
|
234
|
+
itemType: string;
|
|
235
|
+
itemId: string;
|
|
236
|
+
}, signal?: AbortSignal) => Promise<import("./_factory.js").WixToolResult<{
|
|
237
|
+
status: "ok" | "failed";
|
|
238
|
+
data?: unknown;
|
|
239
|
+
error?: string;
|
|
240
|
+
}>>;
|
|
241
|
+
} | {
|
|
242
|
+
name: string;
|
|
243
|
+
description: string;
|
|
244
|
+
label: string;
|
|
245
|
+
parameters: import("@sinclair/typebox").TObject<{
|
|
246
|
+
siteId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
247
|
+
itemType: import("@sinclair/typebox").TString;
|
|
248
|
+
itemId: import("@sinclair/typebox").TString;
|
|
249
|
+
acknowledgeReplacement: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
250
|
+
}>;
|
|
251
|
+
execute: (toolCallId: string, params: {
|
|
252
|
+
siteId?: string | undefined;
|
|
253
|
+
acknowledgeReplacement?: string | undefined;
|
|
254
|
+
itemType: string;
|
|
255
|
+
itemId: string;
|
|
256
|
+
}, signal?: AbortSignal) => Promise<import("./_factory.js").WixToolResult<{
|
|
257
|
+
status: "ok" | "failed";
|
|
258
|
+
data?: unknown;
|
|
259
|
+
error?: string;
|
|
260
|
+
}>>;
|
|
261
|
+
} | {
|
|
262
|
+
name: string;
|
|
263
|
+
description: string;
|
|
264
|
+
label: string;
|
|
265
|
+
parameters: import("@sinclair/typebox").TObject<{
|
|
266
|
+
siteId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
267
|
+
tags: import("@sinclair/typebox").TArray<import("@sinclair/typebox").TObject<{
|
|
268
|
+
type: import("@sinclair/typebox").TString;
|
|
269
|
+
props: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TRecord<import("@sinclair/typebox").TString, import("@sinclair/typebox").TUnknown>>;
|
|
270
|
+
children: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
271
|
+
meta: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TRecord<import("@sinclair/typebox").TString, import("@sinclair/typebox").TUnknown>>;
|
|
272
|
+
custom: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
273
|
+
disabled: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
274
|
+
}>>;
|
|
275
|
+
acknowledgeReplacement: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
276
|
+
}>;
|
|
277
|
+
execute: (toolCallId: string, params: {
|
|
278
|
+
siteId?: string | undefined;
|
|
279
|
+
acknowledgeReplacement?: string | undefined;
|
|
280
|
+
tags: {
|
|
281
|
+
custom?: boolean | undefined;
|
|
282
|
+
props?: {
|
|
283
|
+
[x: string]: unknown;
|
|
284
|
+
} | undefined;
|
|
285
|
+
children?: string | undefined;
|
|
286
|
+
meta?: {
|
|
287
|
+
[x: string]: unknown;
|
|
288
|
+
} | undefined;
|
|
289
|
+
disabled?: boolean | undefined;
|
|
290
|
+
type: string;
|
|
291
|
+
}[];
|
|
292
|
+
}, signal?: AbortSignal) => Promise<import("./_factory.js").WixToolResult<{
|
|
293
|
+
status: "ok" | "failed";
|
|
294
|
+
data?: unknown;
|
|
295
|
+
error?: string;
|
|
296
|
+
}>>;
|
|
297
|
+
} | {
|
|
298
|
+
name: string;
|
|
299
|
+
description: string;
|
|
300
|
+
label: string;
|
|
301
|
+
parameters: import("@sinclair/typebox").TObject<{
|
|
302
|
+
siteId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
303
|
+
itemType: import("@sinclair/typebox").TString;
|
|
304
|
+
entries: import("@sinclair/typebox").TArray<import("@sinclair/typebox").TObject<{
|
|
305
|
+
itemId: import("@sinclair/typebox").TString;
|
|
306
|
+
tags: import("@sinclair/typebox").TArray<import("@sinclair/typebox").TObject<{
|
|
307
|
+
type: import("@sinclair/typebox").TString;
|
|
308
|
+
props: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TRecord<import("@sinclair/typebox").TString, import("@sinclair/typebox").TUnknown>>;
|
|
309
|
+
children: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
310
|
+
meta: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TRecord<import("@sinclair/typebox").TString, import("@sinclair/typebox").TUnknown>>;
|
|
311
|
+
custom: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
312
|
+
disabled: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
313
|
+
}>>;
|
|
314
|
+
}>>;
|
|
315
|
+
publish: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
316
|
+
acknowledgeReplacement: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
317
|
+
}>;
|
|
318
|
+
execute: (toolCallId: string, params: {
|
|
319
|
+
siteId?: string | undefined;
|
|
320
|
+
publish?: boolean | undefined;
|
|
321
|
+
acknowledgeReplacement?: string | undefined;
|
|
322
|
+
entries: {
|
|
323
|
+
tags: {
|
|
324
|
+
custom?: boolean | undefined;
|
|
325
|
+
props?: {
|
|
326
|
+
[x: string]: unknown;
|
|
327
|
+
} | undefined;
|
|
328
|
+
children?: string | undefined;
|
|
329
|
+
meta?: {
|
|
330
|
+
[x: string]: unknown;
|
|
331
|
+
} | undefined;
|
|
332
|
+
disabled?: boolean | undefined;
|
|
333
|
+
type: string;
|
|
334
|
+
}[];
|
|
335
|
+
itemId: string;
|
|
336
|
+
}[];
|
|
337
|
+
itemType: string;
|
|
338
|
+
}, signal?: AbortSignal) => Promise<import("./_factory.js").WixToolResult<{
|
|
339
|
+
status: "ok" | "failed";
|
|
340
|
+
data?: unknown;
|
|
341
|
+
error?: string;
|
|
342
|
+
}>>;
|
|
343
|
+
} | {
|
|
344
|
+
name: string;
|
|
345
|
+
description: string;
|
|
346
|
+
label: string;
|
|
347
|
+
parameters: import("@sinclair/typebox").TObject<{
|
|
348
|
+
siteId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
349
|
+
pageType: import("@sinclair/typebox").TString;
|
|
350
|
+
pageId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
351
|
+
}>;
|
|
352
|
+
execute: (toolCallId: string, params: {
|
|
353
|
+
siteId?: string | undefined;
|
|
354
|
+
pageId?: string | undefined;
|
|
355
|
+
pageType: string;
|
|
356
|
+
}, signal?: AbortSignal) => Promise<import("./_factory.js").WixToolResult<{
|
|
357
|
+
status: "ok" | "failed";
|
|
358
|
+
data?: unknown;
|
|
359
|
+
error?: string;
|
|
360
|
+
}>>;
|
|
361
|
+
} | {
|
|
362
|
+
name: string;
|
|
363
|
+
description: string;
|
|
364
|
+
label: string;
|
|
365
|
+
parameters: import("@sinclair/typebox").TObject<{
|
|
366
|
+
siteId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
367
|
+
pageType: import("@sinclair/typebox").TString;
|
|
368
|
+
}>;
|
|
369
|
+
execute: (toolCallId: string, params: {
|
|
370
|
+
siteId?: string | undefined;
|
|
371
|
+
pageType: string;
|
|
372
|
+
}, signal?: AbortSignal) => Promise<import("./_factory.js").WixToolResult<{
|
|
373
|
+
status: "ok" | "failed";
|
|
374
|
+
data?: unknown;
|
|
375
|
+
error?: string;
|
|
376
|
+
}>>;
|
|
377
|
+
} | {
|
|
378
|
+
name: string;
|
|
379
|
+
description: string;
|
|
380
|
+
label: string;
|
|
381
|
+
parameters: import("@sinclair/typebox").TObject<{
|
|
382
|
+
siteId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
383
|
+
pageType: import("@sinclair/typebox").TString;
|
|
384
|
+
tags: import("@sinclair/typebox").TArray<import("@sinclair/typebox").TObject<{
|
|
385
|
+
type: import("@sinclair/typebox").TString;
|
|
386
|
+
props: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TRecord<import("@sinclair/typebox").TString, import("@sinclair/typebox").TUnknown>>;
|
|
387
|
+
children: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
388
|
+
meta: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TRecord<import("@sinclair/typebox").TString, import("@sinclair/typebox").TUnknown>>;
|
|
389
|
+
custom: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
390
|
+
disabled: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
391
|
+
}>>;
|
|
392
|
+
pageId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
393
|
+
acknowledgeReplacement: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
394
|
+
}>;
|
|
395
|
+
execute: (toolCallId: string, params: {
|
|
396
|
+
siteId?: string | undefined;
|
|
397
|
+
pageId?: string | undefined;
|
|
398
|
+
acknowledgeReplacement?: string | undefined;
|
|
399
|
+
tags: {
|
|
400
|
+
custom?: boolean | undefined;
|
|
401
|
+
props?: {
|
|
402
|
+
[x: string]: unknown;
|
|
403
|
+
} | undefined;
|
|
404
|
+
children?: string | undefined;
|
|
405
|
+
meta?: {
|
|
406
|
+
[x: string]: unknown;
|
|
407
|
+
} | undefined;
|
|
408
|
+
disabled?: boolean | undefined;
|
|
409
|
+
type: string;
|
|
410
|
+
}[];
|
|
411
|
+
pageType: string;
|
|
412
|
+
}, signal?: AbortSignal) => Promise<import("./_factory.js").WixToolResult<{
|
|
413
|
+
status: "ok" | "failed";
|
|
414
|
+
data?: unknown;
|
|
415
|
+
error?: string;
|
|
416
|
+
}>>;
|
|
417
|
+
} | {
|
|
418
|
+
name: string;
|
|
419
|
+
description: string;
|
|
420
|
+
label: string;
|
|
421
|
+
parameters: import("@sinclair/typebox").TObject<{
|
|
422
|
+
siteId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
423
|
+
pageType: import("@sinclair/typebox").TString;
|
|
424
|
+
pageId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
425
|
+
acknowledgeReplacement: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
426
|
+
}>;
|
|
427
|
+
execute: (toolCallId: string, params: {
|
|
428
|
+
siteId?: string | undefined;
|
|
429
|
+
pageId?: string | undefined;
|
|
430
|
+
acknowledgeReplacement?: string | undefined;
|
|
431
|
+
pageType: string;
|
|
432
|
+
}, signal?: AbortSignal) => Promise<import("./_factory.js").WixToolResult<{
|
|
433
|
+
status: "ok" | "failed";
|
|
434
|
+
data?: unknown;
|
|
435
|
+
error?: string;
|
|
436
|
+
}>>;
|
|
198
437
|
})[];
|
|
199
438
|
export { SeoTagSchema };
|