@rolino/contracts 0.5.0 → 0.7.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 +21 -0
- package/LICENSE +1 -1
- package/README.md +2 -0
- package/dist/index.cjs +395 -47
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1839 -294
- package/dist/index.d.ts +1839 -294
- package/dist/index.js +336 -41
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
|
|
3
3
|
declare const API_VERSION: "v1";
|
|
4
|
-
declare const CONTRACT_VERSION: "0.
|
|
4
|
+
declare const CONTRACT_VERSION: "0.18.0";
|
|
5
5
|
declare const RequestMetadataSchema: z.ZodObject<{
|
|
6
6
|
requestId: z.ZodString;
|
|
7
7
|
}, z.core.$strip>;
|
|
8
8
|
declare const ApiErrorCodeSchema: z.ZodEnum<{
|
|
9
9
|
AUTH_REQUIRED: "AUTH_REQUIRED";
|
|
10
10
|
FORBIDDEN: "FORBIDDEN";
|
|
11
|
+
METHOD_NOT_ALLOWED: "METHOD_NOT_ALLOWED";
|
|
11
12
|
NOT_FOUND: "NOT_FOUND";
|
|
12
13
|
FEATURE_DISABLED: "FEATURE_DISABLED";
|
|
13
14
|
BILLING_REQUIRED: "BILLING_REQUIRED";
|
|
@@ -28,6 +29,7 @@ declare const ApiProblemSchema: z.ZodObject<{
|
|
|
28
29
|
code: z.ZodEnum<{
|
|
29
30
|
AUTH_REQUIRED: "AUTH_REQUIRED";
|
|
30
31
|
FORBIDDEN: "FORBIDDEN";
|
|
32
|
+
METHOD_NOT_ALLOWED: "METHOD_NOT_ALLOWED";
|
|
31
33
|
NOT_FOUND: "NOT_FOUND";
|
|
32
34
|
FEATURE_DISABLED: "FEATURE_DISABLED";
|
|
33
35
|
BILLING_REQUIRED: "BILLING_REQUIRED";
|
|
@@ -43,6 +45,7 @@ declare const ApiProblemSchema: z.ZodObject<{
|
|
|
43
45
|
INTERNAL_ERROR: "INTERNAL_ERROR";
|
|
44
46
|
}>;
|
|
45
47
|
message: z.ZodString;
|
|
48
|
+
resolution: z.ZodOptional<z.ZodString>;
|
|
46
49
|
details: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
47
50
|
}, z.core.$strip>;
|
|
48
51
|
meta: z.ZodObject<{
|
|
@@ -156,6 +159,9 @@ declare const CapabilityIdSchema: z.ZodEnum<{
|
|
|
156
159
|
"integrations:read": "integrations:read";
|
|
157
160
|
"calendar:read": "calendar:read";
|
|
158
161
|
"seo:read": "seo:read";
|
|
162
|
+
"backlinks:read": "backlinks:read";
|
|
163
|
+
"backlinks:write": "backlinks:write";
|
|
164
|
+
"backlinks:contacts": "backlinks:contacts";
|
|
159
165
|
"blog:read": "blog:read";
|
|
160
166
|
"blog:write": "blog:write";
|
|
161
167
|
"blog:manage": "blog:manage";
|
|
@@ -163,8 +169,10 @@ declare const CapabilityIdSchema: z.ZodEnum<{
|
|
|
163
169
|
"blog:publish": "blog:publish";
|
|
164
170
|
}>;
|
|
165
171
|
type CapabilityId = z.infer<typeof CapabilityIdSchema>;
|
|
172
|
+
declare const AGENT_CAPABILITIES: ("identity:read" | "projects:read" | "projects:write" | "posts:read" | "posts:write" | "posts:schedule" | "posts:publish" | "integrations:read" | "calendar:read" | "seo:read" | "backlinks:read" | "backlinks:write" | "backlinks:contacts" | "blog:read" | "blog:write" | "blog:manage" | "blog:approve" | "blog:publish")[];
|
|
166
173
|
declare const AgentBlogPlanSchema: z.ZodObject<{
|
|
167
174
|
id: z.ZodString;
|
|
175
|
+
version: z.ZodNumber;
|
|
168
176
|
state: z.ZodString;
|
|
169
177
|
windowStart: z.ZodString;
|
|
170
178
|
windowEnd: z.ZodString;
|
|
@@ -173,6 +181,12 @@ declare const AgentBlogPlanSchema: z.ZodObject<{
|
|
|
173
181
|
}, z.core.$strip>;
|
|
174
182
|
activeRevisionId: z.ZodNullable<z.ZodString>;
|
|
175
183
|
itemCount: z.ZodNumber;
|
|
184
|
+
successorState: z.ZodOptional<z.ZodEnum<{
|
|
185
|
+
NOT_STARTED: "NOT_STARTED";
|
|
186
|
+
GENERATING: "GENERATING";
|
|
187
|
+
READY: "READY";
|
|
188
|
+
NEEDS_ATTENTION: "NEEDS_ATTENTION";
|
|
189
|
+
}>>;
|
|
176
190
|
}, z.core.$strip>;
|
|
177
191
|
declare const AgentBlogArticleSchema: z.ZodObject<{
|
|
178
192
|
id: z.ZodString;
|
|
@@ -184,7 +198,117 @@ declare const AgentBlogArticleSchema: z.ZodObject<{
|
|
|
184
198
|
publishedRevisionId: z.ZodNullable<z.ZodString>;
|
|
185
199
|
scheduledPublishAt: z.ZodNullable<z.ZodString>;
|
|
186
200
|
updatedAt: z.ZodString;
|
|
201
|
+
preparationState: z.ZodOptional<z.ZodEnum<{
|
|
202
|
+
NEEDS_ATTENTION: "NEEDS_ATTENTION";
|
|
203
|
+
PREPARING: "PREPARING";
|
|
204
|
+
READY_FOR_REVIEW: "READY_FOR_REVIEW";
|
|
205
|
+
SCHEDULED: "SCHEDULED";
|
|
206
|
+
MEASURING: "MEASURING";
|
|
207
|
+
}>>;
|
|
208
|
+
nextAction: z.ZodOptional<z.ZodEnum<{
|
|
209
|
+
WAIT: "WAIT";
|
|
210
|
+
REVIEW_ARTICLE: "REVIEW_ARTICLE";
|
|
211
|
+
OPEN_SCHEDULE: "OPEN_SCHEDULE";
|
|
212
|
+
VIEW_OBSERVATION: "VIEW_OBSERVATION";
|
|
213
|
+
RESOLVE_ISSUE: "RESOLVE_ISSUE";
|
|
214
|
+
}>>;
|
|
187
215
|
}, z.core.$strip>;
|
|
216
|
+
declare const AgentBlogArticleQualitySummarySchema: z.ZodObject<{
|
|
217
|
+
version: z.ZodLiteral<2>;
|
|
218
|
+
decision: z.ZodEnum<{
|
|
219
|
+
NEEDS_ATTENTION: "NEEDS_ATTENTION";
|
|
220
|
+
READY_FOR_REVIEW: "READY_FOR_REVIEW";
|
|
221
|
+
}>;
|
|
222
|
+
checks: z.ZodArray<z.ZodObject<{
|
|
223
|
+
code: z.ZodEnum<{
|
|
224
|
+
SAFE_MARKDOWN: "SAFE_MARKDOWN";
|
|
225
|
+
REQUIRED_METADATA: "REQUIRED_METADATA";
|
|
226
|
+
CANONICAL_PATH: "CANONICAL_PATH";
|
|
227
|
+
CATALOG_LINKS: "CATALOG_LINKS";
|
|
228
|
+
LIVE_LINK_TARGETS: "LIVE_LINK_TARGETS";
|
|
229
|
+
QUERY_OWNERSHIP: "QUERY_OWNERSHIP";
|
|
230
|
+
CONTENT_OVERLAP: "CONTENT_OVERLAP";
|
|
231
|
+
BRAND_TERMS: "BRAND_TERMS";
|
|
232
|
+
EVIDENCE_OWNERSHIP: "EVIDENCE_OWNERSHIP";
|
|
233
|
+
}>;
|
|
234
|
+
status: z.ZodEnum<{
|
|
235
|
+
PASSED: "PASSED";
|
|
236
|
+
FAILED: "FAILED";
|
|
237
|
+
WARNING: "WARNING";
|
|
238
|
+
}>;
|
|
239
|
+
message: z.ZodString;
|
|
240
|
+
}, z.core.$strict>>;
|
|
241
|
+
}, z.core.$strict>;
|
|
242
|
+
declare const AgentBlogMetricSourceSchema: z.ZodObject<{
|
|
243
|
+
provider: z.ZodEnum<{
|
|
244
|
+
GOOGLE_SEARCH_CONSOLE: "GOOGLE_SEARCH_CONSOLE";
|
|
245
|
+
GOOGLE_ANALYTICS: "GOOGLE_ANALYTICS";
|
|
246
|
+
}>;
|
|
247
|
+
observedAt: z.ZodString;
|
|
248
|
+
periodStart: z.ZodNullable<z.ZodString>;
|
|
249
|
+
periodEnd: z.ZodNullable<z.ZodString>;
|
|
250
|
+
metrics: z.ZodRecord<z.ZodString, z.ZodNumber>;
|
|
251
|
+
}, z.core.$strict>;
|
|
252
|
+
declare const AgentBlogPerformanceObservationSchema: z.ZodObject<{
|
|
253
|
+
state: z.ZodEnum<{
|
|
254
|
+
MEASURING: "MEASURING";
|
|
255
|
+
WAITING: "WAITING";
|
|
256
|
+
MATCHED: "MATCHED";
|
|
257
|
+
MISSING_MATCH: "MISSING_MATCH";
|
|
258
|
+
OBSERVED: "OBSERVED";
|
|
259
|
+
PARTIAL: "PARTIAL";
|
|
260
|
+
UNAVAILABLE: "UNAVAILABLE";
|
|
261
|
+
STALE: "STALE";
|
|
262
|
+
}>;
|
|
263
|
+
latestCheckpoint: z.ZodNullable<z.ZodEnum<{
|
|
264
|
+
BASELINE: "BASELINE";
|
|
265
|
+
DAY_28: "DAY_28";
|
|
266
|
+
DAY_56: "DAY_56";
|
|
267
|
+
}>>;
|
|
268
|
+
nextCheckpoint: z.ZodNullable<z.ZodEnum<{
|
|
269
|
+
BASELINE: "BASELINE";
|
|
270
|
+
DAY_28: "DAY_28";
|
|
271
|
+
DAY_56: "DAY_56";
|
|
272
|
+
}>>;
|
|
273
|
+
checkpoints: z.ZodArray<z.ZodObject<{
|
|
274
|
+
checkpoint: z.ZodEnum<{
|
|
275
|
+
BASELINE: "BASELINE";
|
|
276
|
+
DAY_28: "DAY_28";
|
|
277
|
+
DAY_56: "DAY_56";
|
|
278
|
+
}>;
|
|
279
|
+
state: z.ZodEnum<{
|
|
280
|
+
MEASURING: "MEASURING";
|
|
281
|
+
WAITING: "WAITING";
|
|
282
|
+
MATCHED: "MATCHED";
|
|
283
|
+
MISSING_MATCH: "MISSING_MATCH";
|
|
284
|
+
OBSERVED: "OBSERVED";
|
|
285
|
+
PARTIAL: "PARTIAL";
|
|
286
|
+
UNAVAILABLE: "UNAVAILABLE";
|
|
287
|
+
STALE: "STALE";
|
|
288
|
+
}>;
|
|
289
|
+
targetDataThrough: z.ZodNullable<z.ZodString>;
|
|
290
|
+
sources: z.ZodArray<z.ZodObject<{
|
|
291
|
+
provider: z.ZodEnum<{
|
|
292
|
+
GOOGLE_SEARCH_CONSOLE: "GOOGLE_SEARCH_CONSOLE";
|
|
293
|
+
GOOGLE_ANALYTICS: "GOOGLE_ANALYTICS";
|
|
294
|
+
}>;
|
|
295
|
+
observedAt: z.ZodString;
|
|
296
|
+
periodStart: z.ZodNullable<z.ZodString>;
|
|
297
|
+
periodEnd: z.ZodNullable<z.ZodString>;
|
|
298
|
+
metrics: z.ZodRecord<z.ZodString, z.ZodNumber>;
|
|
299
|
+
}, z.core.$strict>>;
|
|
300
|
+
siteContext: z.ZodArray<z.ZodObject<{
|
|
301
|
+
provider: z.ZodEnum<{
|
|
302
|
+
GOOGLE_SEARCH_CONSOLE: "GOOGLE_SEARCH_CONSOLE";
|
|
303
|
+
GOOGLE_ANALYTICS: "GOOGLE_ANALYTICS";
|
|
304
|
+
}>;
|
|
305
|
+
observedAt: z.ZodString;
|
|
306
|
+
periodStart: z.ZodNullable<z.ZodString>;
|
|
307
|
+
periodEnd: z.ZodNullable<z.ZodString>;
|
|
308
|
+
metrics: z.ZodRecord<z.ZodString, z.ZodNumber>;
|
|
309
|
+
}, z.core.$strict>>;
|
|
310
|
+
}, z.core.$strict>>;
|
|
311
|
+
}, z.core.$strict>;
|
|
188
312
|
declare const AgentBlogImageSchema: z.ZodObject<{
|
|
189
313
|
id: z.ZodString;
|
|
190
314
|
revisionId: z.ZodNullable<z.ZodString>;
|
|
@@ -199,12 +323,12 @@ declare const AgentBlogImageSchema: z.ZodObject<{
|
|
|
199
323
|
AGENT_UPLOAD: "AGENT_UPLOAD";
|
|
200
324
|
}>;
|
|
201
325
|
state: z.ZodEnum<{
|
|
202
|
-
QUEUED: "QUEUED";
|
|
203
326
|
GENERATING: "GENERATING";
|
|
204
327
|
READY_FOR_REVIEW: "READY_FOR_REVIEW";
|
|
328
|
+
FAILED: "FAILED";
|
|
329
|
+
QUEUED: "QUEUED";
|
|
205
330
|
APPROVED: "APPROVED";
|
|
206
331
|
REJECTED: "REJECTED";
|
|
207
|
-
FAILED: "FAILED";
|
|
208
332
|
}>;
|
|
209
333
|
publicUrl: z.ZodNullable<z.ZodString>;
|
|
210
334
|
mimeType: z.ZodNullable<z.ZodEnum<{
|
|
@@ -228,6 +352,20 @@ declare const AgentBlogArticleDetailSchema: z.ZodObject<{
|
|
|
228
352
|
publishedRevisionId: z.ZodNullable<z.ZodString>;
|
|
229
353
|
scheduledPublishAt: z.ZodNullable<z.ZodString>;
|
|
230
354
|
updatedAt: z.ZodString;
|
|
355
|
+
preparationState: z.ZodOptional<z.ZodEnum<{
|
|
356
|
+
NEEDS_ATTENTION: "NEEDS_ATTENTION";
|
|
357
|
+
PREPARING: "PREPARING";
|
|
358
|
+
READY_FOR_REVIEW: "READY_FOR_REVIEW";
|
|
359
|
+
SCHEDULED: "SCHEDULED";
|
|
360
|
+
MEASURING: "MEASURING";
|
|
361
|
+
}>>;
|
|
362
|
+
nextAction: z.ZodOptional<z.ZodEnum<{
|
|
363
|
+
WAIT: "WAIT";
|
|
364
|
+
REVIEW_ARTICLE: "REVIEW_ARTICLE";
|
|
365
|
+
OPEN_SCHEDULE: "OPEN_SCHEDULE";
|
|
366
|
+
VIEW_OBSERVATION: "VIEW_OBSERVATION";
|
|
367
|
+
RESOLVE_ISSUE: "RESOLVE_ISSUE";
|
|
368
|
+
}>>;
|
|
231
369
|
draft: z.ZodNullable<z.ZodObject<{
|
|
232
370
|
id: z.ZodString;
|
|
233
371
|
version: z.ZodNumber;
|
|
@@ -249,6 +387,32 @@ declare const AgentBlogArticleDetailSchema: z.ZodObject<{
|
|
|
249
387
|
contentHash: z.ZodString;
|
|
250
388
|
approvedAt: z.ZodNullable<z.ZodString>;
|
|
251
389
|
createdAt: z.ZodString;
|
|
390
|
+
quality: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
391
|
+
version: z.ZodLiteral<2>;
|
|
392
|
+
decision: z.ZodEnum<{
|
|
393
|
+
NEEDS_ATTENTION: "NEEDS_ATTENTION";
|
|
394
|
+
READY_FOR_REVIEW: "READY_FOR_REVIEW";
|
|
395
|
+
}>;
|
|
396
|
+
checks: z.ZodArray<z.ZodObject<{
|
|
397
|
+
code: z.ZodEnum<{
|
|
398
|
+
SAFE_MARKDOWN: "SAFE_MARKDOWN";
|
|
399
|
+
REQUIRED_METADATA: "REQUIRED_METADATA";
|
|
400
|
+
CANONICAL_PATH: "CANONICAL_PATH";
|
|
401
|
+
CATALOG_LINKS: "CATALOG_LINKS";
|
|
402
|
+
LIVE_LINK_TARGETS: "LIVE_LINK_TARGETS";
|
|
403
|
+
QUERY_OWNERSHIP: "QUERY_OWNERSHIP";
|
|
404
|
+
CONTENT_OVERLAP: "CONTENT_OVERLAP";
|
|
405
|
+
BRAND_TERMS: "BRAND_TERMS";
|
|
406
|
+
EVIDENCE_OWNERSHIP: "EVIDENCE_OWNERSHIP";
|
|
407
|
+
}>;
|
|
408
|
+
status: z.ZodEnum<{
|
|
409
|
+
PASSED: "PASSED";
|
|
410
|
+
FAILED: "FAILED";
|
|
411
|
+
WARNING: "WARNING";
|
|
412
|
+
}>;
|
|
413
|
+
message: z.ZodString;
|
|
414
|
+
}, z.core.$strict>>;
|
|
415
|
+
}, z.core.$strict>>>;
|
|
252
416
|
}, z.core.$strip>>;
|
|
253
417
|
images: z.ZodArray<z.ZodObject<{
|
|
254
418
|
id: z.ZodString;
|
|
@@ -264,12 +428,12 @@ declare const AgentBlogArticleDetailSchema: z.ZodObject<{
|
|
|
264
428
|
AGENT_UPLOAD: "AGENT_UPLOAD";
|
|
265
429
|
}>;
|
|
266
430
|
state: z.ZodEnum<{
|
|
267
|
-
QUEUED: "QUEUED";
|
|
268
431
|
GENERATING: "GENERATING";
|
|
269
432
|
READY_FOR_REVIEW: "READY_FOR_REVIEW";
|
|
433
|
+
FAILED: "FAILED";
|
|
434
|
+
QUEUED: "QUEUED";
|
|
270
435
|
APPROVED: "APPROVED";
|
|
271
436
|
REJECTED: "REJECTED";
|
|
272
|
-
FAILED: "FAILED";
|
|
273
437
|
}>;
|
|
274
438
|
publicUrl: z.ZodNullable<z.ZodString>;
|
|
275
439
|
mimeType: z.ZodNullable<z.ZodEnum<{
|
|
@@ -283,6 +447,66 @@ declare const AgentBlogArticleDetailSchema: z.ZodObject<{
|
|
|
283
447
|
caption: z.ZodNullable<z.ZodString>;
|
|
284
448
|
createdAt: z.ZodString;
|
|
285
449
|
}, z.core.$strict>>;
|
|
450
|
+
measurement: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
451
|
+
state: z.ZodEnum<{
|
|
452
|
+
MEASURING: "MEASURING";
|
|
453
|
+
WAITING: "WAITING";
|
|
454
|
+
MATCHED: "MATCHED";
|
|
455
|
+
MISSING_MATCH: "MISSING_MATCH";
|
|
456
|
+
OBSERVED: "OBSERVED";
|
|
457
|
+
PARTIAL: "PARTIAL";
|
|
458
|
+
UNAVAILABLE: "UNAVAILABLE";
|
|
459
|
+
STALE: "STALE";
|
|
460
|
+
}>;
|
|
461
|
+
latestCheckpoint: z.ZodNullable<z.ZodEnum<{
|
|
462
|
+
BASELINE: "BASELINE";
|
|
463
|
+
DAY_28: "DAY_28";
|
|
464
|
+
DAY_56: "DAY_56";
|
|
465
|
+
}>>;
|
|
466
|
+
nextCheckpoint: z.ZodNullable<z.ZodEnum<{
|
|
467
|
+
BASELINE: "BASELINE";
|
|
468
|
+
DAY_28: "DAY_28";
|
|
469
|
+
DAY_56: "DAY_56";
|
|
470
|
+
}>>;
|
|
471
|
+
checkpoints: z.ZodArray<z.ZodObject<{
|
|
472
|
+
checkpoint: z.ZodEnum<{
|
|
473
|
+
BASELINE: "BASELINE";
|
|
474
|
+
DAY_28: "DAY_28";
|
|
475
|
+
DAY_56: "DAY_56";
|
|
476
|
+
}>;
|
|
477
|
+
state: z.ZodEnum<{
|
|
478
|
+
MEASURING: "MEASURING";
|
|
479
|
+
WAITING: "WAITING";
|
|
480
|
+
MATCHED: "MATCHED";
|
|
481
|
+
MISSING_MATCH: "MISSING_MATCH";
|
|
482
|
+
OBSERVED: "OBSERVED";
|
|
483
|
+
PARTIAL: "PARTIAL";
|
|
484
|
+
UNAVAILABLE: "UNAVAILABLE";
|
|
485
|
+
STALE: "STALE";
|
|
486
|
+
}>;
|
|
487
|
+
targetDataThrough: z.ZodNullable<z.ZodString>;
|
|
488
|
+
sources: z.ZodArray<z.ZodObject<{
|
|
489
|
+
provider: z.ZodEnum<{
|
|
490
|
+
GOOGLE_SEARCH_CONSOLE: "GOOGLE_SEARCH_CONSOLE";
|
|
491
|
+
GOOGLE_ANALYTICS: "GOOGLE_ANALYTICS";
|
|
492
|
+
}>;
|
|
493
|
+
observedAt: z.ZodString;
|
|
494
|
+
periodStart: z.ZodNullable<z.ZodString>;
|
|
495
|
+
periodEnd: z.ZodNullable<z.ZodString>;
|
|
496
|
+
metrics: z.ZodRecord<z.ZodString, z.ZodNumber>;
|
|
497
|
+
}, z.core.$strict>>;
|
|
498
|
+
siteContext: z.ZodArray<z.ZodObject<{
|
|
499
|
+
provider: z.ZodEnum<{
|
|
500
|
+
GOOGLE_SEARCH_CONSOLE: "GOOGLE_SEARCH_CONSOLE";
|
|
501
|
+
GOOGLE_ANALYTICS: "GOOGLE_ANALYTICS";
|
|
502
|
+
}>;
|
|
503
|
+
observedAt: z.ZodString;
|
|
504
|
+
periodStart: z.ZodNullable<z.ZodString>;
|
|
505
|
+
periodEnd: z.ZodNullable<z.ZodString>;
|
|
506
|
+
metrics: z.ZodRecord<z.ZodString, z.ZodNumber>;
|
|
507
|
+
}, z.core.$strict>>;
|
|
508
|
+
}, z.core.$strict>>;
|
|
509
|
+
}, z.core.$strict>>>;
|
|
286
510
|
}, z.core.$strip>;
|
|
287
511
|
declare const AgentBlogJobSchema: z.ZodObject<{
|
|
288
512
|
id: z.ZodString;
|
|
@@ -581,6 +805,7 @@ declare const AgentBlogPublishingDestinationSchema: z.ZodObject<{
|
|
|
581
805
|
status: z.ZodString;
|
|
582
806
|
isPrimary: z.ZodBoolean;
|
|
583
807
|
enabled: z.ZodBoolean;
|
|
808
|
+
capabilities: z.ZodArray<z.ZodString>;
|
|
584
809
|
externalSiteName: z.ZodNullable<z.ZodString>;
|
|
585
810
|
externalSiteUrl: z.ZodNullable<z.ZodString>;
|
|
586
811
|
lastTestedAt: z.ZodNullable<z.ZodString>;
|
|
@@ -622,6 +847,7 @@ declare const AgentBlogPublishPreviewSchema: z.ZodObject<{
|
|
|
622
847
|
status: z.ZodString;
|
|
623
848
|
isPrimary: z.ZodBoolean;
|
|
624
849
|
enabled: z.ZodBoolean;
|
|
850
|
+
capabilities: z.ZodArray<z.ZodString>;
|
|
625
851
|
externalSiteName: z.ZodNullable<z.ZodString>;
|
|
626
852
|
externalSiteUrl: z.ZodNullable<z.ZodString>;
|
|
627
853
|
lastTestedAt: z.ZodNullable<z.ZodString>;
|
|
@@ -637,57 +863,57 @@ declare const AgentBlogSetupStatusSchema: z.ZodObject<{
|
|
|
637
863
|
projectId: z.ZodString;
|
|
638
864
|
brandName: z.ZodString;
|
|
639
865
|
brandWebsite: z.ZodEnum<{
|
|
640
|
-
MISSING: "MISSING";
|
|
641
866
|
READY: "READY";
|
|
867
|
+
MISSING: "MISSING";
|
|
642
868
|
}>;
|
|
643
869
|
websiteOrigin: z.ZodNullable<z.ZodString>;
|
|
644
870
|
siteId: z.ZodNullable<z.ZodString>;
|
|
645
871
|
blogBasePath: z.ZodNullable<z.ZodString>;
|
|
646
872
|
siteImport: z.ZodEnum<{
|
|
873
|
+
NOT_STARTED: "NOT_STARTED";
|
|
874
|
+
READY: "READY";
|
|
875
|
+
NEEDS_ATTENTION: "NEEDS_ATTENTION";
|
|
647
876
|
QUEUED: "QUEUED";
|
|
648
877
|
MISSING: "MISSING";
|
|
649
|
-
NOT_STARTED: "NOT_STARTED";
|
|
650
878
|
RUNNING: "RUNNING";
|
|
651
|
-
READY: "READY";
|
|
652
879
|
USED: "USED";
|
|
653
880
|
CONFIGURED: "CONFIGURED";
|
|
654
881
|
VERIFIED: "VERIFIED";
|
|
655
|
-
NEEDS_ATTENTION: "NEEDS_ATTENTION";
|
|
656
882
|
}>;
|
|
657
883
|
activeJobId: z.ZodNullable<z.ZodString>;
|
|
658
884
|
plan: z.ZodEnum<{
|
|
885
|
+
NOT_STARTED: "NOT_STARTED";
|
|
886
|
+
READY: "READY";
|
|
887
|
+
NEEDS_ATTENTION: "NEEDS_ATTENTION";
|
|
659
888
|
QUEUED: "QUEUED";
|
|
660
889
|
MISSING: "MISSING";
|
|
661
|
-
NOT_STARTED: "NOT_STARTED";
|
|
662
890
|
RUNNING: "RUNNING";
|
|
663
|
-
READY: "READY";
|
|
664
891
|
USED: "USED";
|
|
665
892
|
CONFIGURED: "CONFIGURED";
|
|
666
893
|
VERIFIED: "VERIFIED";
|
|
667
|
-
NEEDS_ATTENTION: "NEEDS_ATTENTION";
|
|
668
894
|
}>;
|
|
669
895
|
activePlanId: z.ZodNullable<z.ZodString>;
|
|
670
896
|
deliveryCredential: z.ZodEnum<{
|
|
897
|
+
NOT_STARTED: "NOT_STARTED";
|
|
898
|
+
READY: "READY";
|
|
899
|
+
NEEDS_ATTENTION: "NEEDS_ATTENTION";
|
|
671
900
|
QUEUED: "QUEUED";
|
|
672
901
|
MISSING: "MISSING";
|
|
673
|
-
NOT_STARTED: "NOT_STARTED";
|
|
674
902
|
RUNNING: "RUNNING";
|
|
675
|
-
READY: "READY";
|
|
676
903
|
USED: "USED";
|
|
677
904
|
CONFIGURED: "CONFIGURED";
|
|
678
905
|
VERIFIED: "VERIFIED";
|
|
679
|
-
NEEDS_ATTENTION: "NEEDS_ATTENTION";
|
|
680
906
|
}>;
|
|
681
907
|
revalidation: z.ZodEnum<{
|
|
908
|
+
NOT_STARTED: "NOT_STARTED";
|
|
909
|
+
READY: "READY";
|
|
910
|
+
NEEDS_ATTENTION: "NEEDS_ATTENTION";
|
|
682
911
|
QUEUED: "QUEUED";
|
|
683
912
|
MISSING: "MISSING";
|
|
684
|
-
NOT_STARTED: "NOT_STARTED";
|
|
685
913
|
RUNNING: "RUNNING";
|
|
686
|
-
READY: "READY";
|
|
687
914
|
USED: "USED";
|
|
688
915
|
CONFIGURED: "CONFIGURED";
|
|
689
916
|
VERIFIED: "VERIFIED";
|
|
690
|
-
NEEDS_ATTENTION: "NEEDS_ATTENTION";
|
|
691
917
|
}>;
|
|
692
918
|
nextAction: z.ZodEnum<{
|
|
693
919
|
READY: "READY";
|
|
@@ -708,6 +934,129 @@ declare const AgentBlogCadenceInputSchema: z.ZodObject<{
|
|
|
708
934
|
declare const AgentBlogIdempotentRequestSchema: z.ZodObject<{
|
|
709
935
|
idempotencyKey: z.ZodString;
|
|
710
936
|
}, z.core.$strict>;
|
|
937
|
+
declare const AgentBlogPlanDateMoveSchema: z.ZodObject<{
|
|
938
|
+
itemId: z.ZodString;
|
|
939
|
+
title: z.ZodString;
|
|
940
|
+
oldDate: z.ZodString;
|
|
941
|
+
newDate: z.ZodString;
|
|
942
|
+
state: z.ZodEnum<{
|
|
943
|
+
NEEDS_ATTENTION: "NEEDS_ATTENTION";
|
|
944
|
+
SCHEDULED: "SCHEDULED";
|
|
945
|
+
APPROVED: "APPROVED";
|
|
946
|
+
PLANNED: "PLANNED";
|
|
947
|
+
ACCEPTED: "ACCEPTED";
|
|
948
|
+
DISMISSED: "DISMISSED";
|
|
949
|
+
DRAFTING: "DRAFTING";
|
|
950
|
+
IN_REVIEW: "IN_REVIEW";
|
|
951
|
+
PUBLISHED: "PUBLISHED";
|
|
952
|
+
}>;
|
|
953
|
+
version: z.ZodNumber;
|
|
954
|
+
}, z.core.$strict>;
|
|
955
|
+
declare const AgentBlogPlanLockedItemSchema: z.ZodObject<{
|
|
956
|
+
itemId: z.ZodString;
|
|
957
|
+
title: z.ZodString;
|
|
958
|
+
date: z.ZodString;
|
|
959
|
+
state: z.ZodEnum<{
|
|
960
|
+
SCHEDULED: "SCHEDULED";
|
|
961
|
+
PUBLISHED: "PUBLISHED";
|
|
962
|
+
}>;
|
|
963
|
+
version: z.ZodNumber;
|
|
964
|
+
}, z.core.$strict>;
|
|
965
|
+
declare const AgentBlogPlanCadencePreviewRequestSchema: z.ZodObject<{
|
|
966
|
+
weekdays: z.ZodArray<z.ZodNumber>;
|
|
967
|
+
expectedPlanVersion: z.ZodNumber;
|
|
968
|
+
}, z.core.$strict>;
|
|
969
|
+
declare const AgentBlogPlanCadencePreviewSchema: z.ZodObject<{
|
|
970
|
+
planId: z.ZodString;
|
|
971
|
+
planTitle: z.ZodString;
|
|
972
|
+
planVersion: z.ZodNumber;
|
|
973
|
+
scheduleDigest: z.ZodString;
|
|
974
|
+
kind: z.ZodEnum<{
|
|
975
|
+
ready: "ready";
|
|
976
|
+
blocked: "blocked";
|
|
977
|
+
noop: "noop";
|
|
978
|
+
}>;
|
|
979
|
+
canExecute: z.ZodBoolean;
|
|
980
|
+
oldWeekdays: z.ZodArray<z.ZodNumber>;
|
|
981
|
+
newWeekdays: z.ZodArray<z.ZodNumber>;
|
|
982
|
+
moves: z.ZodArray<z.ZodObject<{
|
|
983
|
+
itemId: z.ZodString;
|
|
984
|
+
title: z.ZodString;
|
|
985
|
+
oldDate: z.ZodString;
|
|
986
|
+
newDate: z.ZodString;
|
|
987
|
+
state: z.ZodEnum<{
|
|
988
|
+
NEEDS_ATTENTION: "NEEDS_ATTENTION";
|
|
989
|
+
SCHEDULED: "SCHEDULED";
|
|
990
|
+
APPROVED: "APPROVED";
|
|
991
|
+
PLANNED: "PLANNED";
|
|
992
|
+
ACCEPTED: "ACCEPTED";
|
|
993
|
+
DISMISSED: "DISMISSED";
|
|
994
|
+
DRAFTING: "DRAFTING";
|
|
995
|
+
IN_REVIEW: "IN_REVIEW";
|
|
996
|
+
PUBLISHED: "PUBLISHED";
|
|
997
|
+
}>;
|
|
998
|
+
version: z.ZodNumber;
|
|
999
|
+
}, z.core.$strict>>;
|
|
1000
|
+
lockedItems: z.ZodArray<z.ZodObject<{
|
|
1001
|
+
itemId: z.ZodString;
|
|
1002
|
+
title: z.ZodString;
|
|
1003
|
+
date: z.ZodString;
|
|
1004
|
+
state: z.ZodEnum<{
|
|
1005
|
+
SCHEDULED: "SCHEDULED";
|
|
1006
|
+
PUBLISHED: "PUBLISHED";
|
|
1007
|
+
}>;
|
|
1008
|
+
version: z.ZodNumber;
|
|
1009
|
+
}, z.core.$strict>>;
|
|
1010
|
+
warnings: z.ZodArray<z.ZodString>;
|
|
1011
|
+
reason: z.ZodNullable<z.ZodString>;
|
|
1012
|
+
confirmation: z.ZodNullable<z.ZodObject<{
|
|
1013
|
+
token: z.ZodString;
|
|
1014
|
+
expiresAt: z.ZodString;
|
|
1015
|
+
}, z.core.$strict>>;
|
|
1016
|
+
}, z.core.$strict>;
|
|
1017
|
+
declare const AgentBlogPlanCadenceExecuteRequestSchema: z.ZodObject<{
|
|
1018
|
+
weekdays: z.ZodArray<z.ZodNumber>;
|
|
1019
|
+
expectedPlanVersion: z.ZodNumber;
|
|
1020
|
+
expectedScheduleDigest: z.ZodString;
|
|
1021
|
+
confirmationToken: z.ZodString;
|
|
1022
|
+
idempotencyKey: z.ZodString;
|
|
1023
|
+
}, z.core.$strict>;
|
|
1024
|
+
declare const AgentBlogPlanCadenceExecuteSchema: z.ZodObject<{
|
|
1025
|
+
planId: z.ZodString;
|
|
1026
|
+
planVersion: z.ZodNumber;
|
|
1027
|
+
publicationWeekdays: z.ZodArray<z.ZodNumber>;
|
|
1028
|
+
cadencePerWeek: z.ZodNumber;
|
|
1029
|
+
expectedItemCount: z.ZodNumber;
|
|
1030
|
+
moves: z.ZodArray<z.ZodObject<{
|
|
1031
|
+
itemId: z.ZodString;
|
|
1032
|
+
title: z.ZodString;
|
|
1033
|
+
oldDate: z.ZodString;
|
|
1034
|
+
newDate: z.ZodString;
|
|
1035
|
+
state: z.ZodEnum<{
|
|
1036
|
+
NEEDS_ATTENTION: "NEEDS_ATTENTION";
|
|
1037
|
+
SCHEDULED: "SCHEDULED";
|
|
1038
|
+
APPROVED: "APPROVED";
|
|
1039
|
+
PLANNED: "PLANNED";
|
|
1040
|
+
ACCEPTED: "ACCEPTED";
|
|
1041
|
+
DISMISSED: "DISMISSED";
|
|
1042
|
+
DRAFTING: "DRAFTING";
|
|
1043
|
+
IN_REVIEW: "IN_REVIEW";
|
|
1044
|
+
PUBLISHED: "PUBLISHED";
|
|
1045
|
+
}>;
|
|
1046
|
+
version: z.ZodNumber;
|
|
1047
|
+
}, z.core.$strict>>;
|
|
1048
|
+
lockedItems: z.ZodArray<z.ZodObject<{
|
|
1049
|
+
itemId: z.ZodString;
|
|
1050
|
+
title: z.ZodString;
|
|
1051
|
+
date: z.ZodString;
|
|
1052
|
+
state: z.ZodEnum<{
|
|
1053
|
+
SCHEDULED: "SCHEDULED";
|
|
1054
|
+
PUBLISHED: "PUBLISHED";
|
|
1055
|
+
}>;
|
|
1056
|
+
version: z.ZodNumber;
|
|
1057
|
+
}, z.core.$strict>>;
|
|
1058
|
+
scheduleDigest: z.ZodString;
|
|
1059
|
+
}, z.core.$strict>;
|
|
711
1060
|
declare const AgentBlogPlanCreateRequestSchema: z.ZodIntersection<z.ZodObject<{
|
|
712
1061
|
startsOn: z.ZodString;
|
|
713
1062
|
weekdays: z.ZodArray<z.ZodNumber>;
|
|
@@ -746,6 +1095,20 @@ declare const AgentBlogPlanItemSchema: z.ZodObject<{
|
|
|
746
1095
|
recommendedLinks: z.ZodUnknown;
|
|
747
1096
|
targetConversionPage: z.ZodNullable<z.ZodString>;
|
|
748
1097
|
articleId: z.ZodNullable<z.ZodString>;
|
|
1098
|
+
preparationState: z.ZodOptional<z.ZodEnum<{
|
|
1099
|
+
NEEDS_ATTENTION: "NEEDS_ATTENTION";
|
|
1100
|
+
PREPARING: "PREPARING";
|
|
1101
|
+
READY_FOR_REVIEW: "READY_FOR_REVIEW";
|
|
1102
|
+
SCHEDULED: "SCHEDULED";
|
|
1103
|
+
MEASURING: "MEASURING";
|
|
1104
|
+
}>>;
|
|
1105
|
+
nextAction: z.ZodOptional<z.ZodEnum<{
|
|
1106
|
+
WAIT: "WAIT";
|
|
1107
|
+
REVIEW_ARTICLE: "REVIEW_ARTICLE";
|
|
1108
|
+
OPEN_SCHEDULE: "OPEN_SCHEDULE";
|
|
1109
|
+
VIEW_OBSERVATION: "VIEW_OBSERVATION";
|
|
1110
|
+
RESOLVE_ISSUE: "RESOLVE_ISSUE";
|
|
1111
|
+
}>>;
|
|
749
1112
|
}, z.core.$strict>;
|
|
750
1113
|
declare const AgentBlogPlanItemStateRequestSchema: z.ZodObject<{
|
|
751
1114
|
state: z.ZodEnum<{
|
|
@@ -767,17 +1130,17 @@ declare const AgentBlogConnectionStatusSchema: z.ZodObject<{
|
|
|
767
1130
|
origin: z.ZodString;
|
|
768
1131
|
endpoint: z.ZodNullable<z.ZodString>;
|
|
769
1132
|
deliveryCredential: z.ZodEnum<{
|
|
770
|
-
MISSING: "MISSING";
|
|
771
1133
|
READY: "READY";
|
|
1134
|
+
MISSING: "MISSING";
|
|
772
1135
|
USED: "USED";
|
|
773
1136
|
}>;
|
|
774
1137
|
activeCredentialId: z.ZodNullable<z.ZodString>;
|
|
775
1138
|
credentialLastUsedAt: z.ZodNullable<z.ZodString>;
|
|
776
1139
|
revalidation: z.ZodEnum<{
|
|
1140
|
+
NEEDS_ATTENTION: "NEEDS_ATTENTION";
|
|
777
1141
|
MISSING: "MISSING";
|
|
778
1142
|
CONFIGURED: "CONFIGURED";
|
|
779
1143
|
VERIFIED: "VERIFIED";
|
|
780
|
-
NEEDS_ATTENTION: "NEEDS_ATTENTION";
|
|
781
1144
|
}>;
|
|
782
1145
|
revalidationLastTestedAt: z.ZodNullable<z.ZodString>;
|
|
783
1146
|
revalidationLastSucceededAt: z.ZodNullable<z.ZodString>;
|
|
@@ -863,22 +1226,127 @@ declare const AgentBlogConnectionExecuteSchema: z.ZodObject<{
|
|
|
863
1226
|
webhookSecret: z.ZodOptional<z.ZodString>;
|
|
864
1227
|
message: z.ZodString;
|
|
865
1228
|
}, z.core.$strict>;
|
|
866
|
-
declare const
|
|
1229
|
+
declare const AgentBlogWebhookSemanticsSchema: z.ZodEnum<{
|
|
1230
|
+
LIVE: "LIVE";
|
|
1231
|
+
DRAFT: "DRAFT";
|
|
1232
|
+
}>;
|
|
1233
|
+
declare const AgentBlogWebhookDestinationChangeSchema: z.ZodObject<{
|
|
1234
|
+
destinationId: z.ZodOptional<z.ZodString>;
|
|
1235
|
+
siteId: z.ZodString;
|
|
1236
|
+
name: z.ZodString;
|
|
1237
|
+
endpoint: z.ZodString;
|
|
1238
|
+
semantics: z.ZodEnum<{
|
|
1239
|
+
LIVE: "LIVE";
|
|
1240
|
+
DRAFT: "DRAFT";
|
|
1241
|
+
}>;
|
|
1242
|
+
}, z.core.$strict>;
|
|
1243
|
+
declare const AgentBlogWebhookDestinationPreviewRequestSchema: z.ZodObject<{
|
|
1244
|
+
destinationId: z.ZodOptional<z.ZodString>;
|
|
1245
|
+
siteId: z.ZodString;
|
|
1246
|
+
name: z.ZodString;
|
|
1247
|
+
endpoint: z.ZodString;
|
|
1248
|
+
semantics: z.ZodEnum<{
|
|
1249
|
+
LIVE: "LIVE";
|
|
1250
|
+
DRAFT: "DRAFT";
|
|
1251
|
+
}>;
|
|
1252
|
+
}, z.core.$strict>;
|
|
1253
|
+
declare const AgentBlogWebhookDestinationExecuteRequestSchema: z.ZodObject<{
|
|
1254
|
+
destinationId: z.ZodOptional<z.ZodString>;
|
|
1255
|
+
siteId: z.ZodString;
|
|
1256
|
+
name: z.ZodString;
|
|
1257
|
+
endpoint: z.ZodString;
|
|
1258
|
+
semantics: z.ZodEnum<{
|
|
1259
|
+
LIVE: "LIVE";
|
|
1260
|
+
DRAFT: "DRAFT";
|
|
1261
|
+
}>;
|
|
1262
|
+
confirmationToken: z.ZodString;
|
|
867
1263
|
idempotencyKey: z.ZodString;
|
|
868
1264
|
}, z.core.$strict>;
|
|
869
|
-
declare const
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
1265
|
+
declare const AgentBlogWebhookDestinationPreviewSchema: z.ZodObject<{
|
|
1266
|
+
siteId: z.ZodString;
|
|
1267
|
+
name: z.ZodString;
|
|
1268
|
+
endpoint: z.ZodString;
|
|
1269
|
+
semantics: z.ZodEnum<{
|
|
1270
|
+
LIVE: "LIVE";
|
|
1271
|
+
DRAFT: "DRAFT";
|
|
873
1272
|
}>;
|
|
874
|
-
|
|
875
|
-
|
|
1273
|
+
destinationId: z.ZodNullable<z.ZodString>;
|
|
1274
|
+
effect: z.ZodString;
|
|
1275
|
+
confirmation: z.ZodObject<{
|
|
1276
|
+
token: z.ZodString;
|
|
1277
|
+
expiresAt: z.ZodString;
|
|
1278
|
+
}, z.core.$strict>;
|
|
876
1279
|
}, z.core.$strict>;
|
|
877
|
-
declare const
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
1280
|
+
declare const AgentBlogWebhookDestinationExecuteSchema: z.ZodObject<{
|
|
1281
|
+
projectId: z.ZodString;
|
|
1282
|
+
siteId: z.ZodString;
|
|
1283
|
+
destinationId: z.ZodString;
|
|
1284
|
+
completed: z.ZodLiteral<true>;
|
|
1285
|
+
secretDelivered: z.ZodBoolean;
|
|
1286
|
+
alreadyDelivered: z.ZodBoolean;
|
|
1287
|
+
webhookSecret: z.ZodOptional<z.ZodString>;
|
|
1288
|
+
message: z.ZodString;
|
|
1289
|
+
}, z.core.$strict>;
|
|
1290
|
+
declare const AgentBlogWebhookTestRequestSchema: z.ZodObject<{
|
|
1291
|
+
siteId: z.ZodString;
|
|
1292
|
+
destinationId: z.ZodString;
|
|
1293
|
+
makePrimary: z.ZodOptional<z.ZodBoolean>;
|
|
1294
|
+
}, z.core.$strict>;
|
|
1295
|
+
declare const AgentBlogWebhookTestSchema: z.ZodObject<{
|
|
1296
|
+
destinationId: z.ZodString;
|
|
1297
|
+
status: z.ZodEnum<{
|
|
1298
|
+
NEEDS_ATTENTION: "NEEDS_ATTENTION";
|
|
1299
|
+
CONNECTED: "CONNECTED";
|
|
1300
|
+
}>;
|
|
1301
|
+
enabled: z.ZodBoolean;
|
|
1302
|
+
testedAt: z.ZodString;
|
|
1303
|
+
errorCode: z.ZodNullable<z.ZodString>;
|
|
1304
|
+
}, z.core.$strict>;
|
|
1305
|
+
declare const AgentBlogWebhookRotatePreviewRequestSchema: z.ZodObject<{
|
|
1306
|
+
siteId: z.ZodString;
|
|
1307
|
+
destinationId: z.ZodString;
|
|
1308
|
+
}, z.core.$strict>;
|
|
1309
|
+
declare const AgentBlogWebhookRotateExecuteRequestSchema: z.ZodObject<{
|
|
1310
|
+
siteId: z.ZodString;
|
|
1311
|
+
destinationId: z.ZodString;
|
|
1312
|
+
confirmationToken: z.ZodString;
|
|
1313
|
+
idempotencyKey: z.ZodString;
|
|
1314
|
+
}, z.core.$strict>;
|
|
1315
|
+
declare const AgentBlogWebhookRotatePreviewSchema: z.ZodObject<{
|
|
1316
|
+
siteId: z.ZodString;
|
|
1317
|
+
destinationId: z.ZodString;
|
|
1318
|
+
destinationName: z.ZodString;
|
|
1319
|
+
effect: z.ZodString;
|
|
1320
|
+
confirmation: z.ZodObject<{
|
|
1321
|
+
token: z.ZodString;
|
|
1322
|
+
expiresAt: z.ZodString;
|
|
1323
|
+
}, z.core.$strict>;
|
|
1324
|
+
}, z.core.$strict>;
|
|
1325
|
+
declare const AgentBlogWebhookRotateExecuteSchema: z.ZodObject<{
|
|
1326
|
+
destinationId: z.ZodString;
|
|
1327
|
+
completed: z.ZodLiteral<true>;
|
|
1328
|
+
secretDelivered: z.ZodBoolean;
|
|
1329
|
+
alreadyDelivered: z.ZodBoolean;
|
|
1330
|
+
webhookSecret: z.ZodOptional<z.ZodString>;
|
|
1331
|
+
message: z.ZodString;
|
|
1332
|
+
}, z.core.$strict>;
|
|
1333
|
+
declare const AgentBlogRevalidationTestRequestSchema: z.ZodObject<{
|
|
1334
|
+
idempotencyKey: z.ZodString;
|
|
1335
|
+
}, z.core.$strict>;
|
|
1336
|
+
declare const AgentBlogRevalidationTestSchema: z.ZodObject<{
|
|
1337
|
+
status: z.ZodEnum<{
|
|
1338
|
+
NEEDS_ATTENTION: "NEEDS_ATTENTION";
|
|
1339
|
+
VERIFIED: "VERIFIED";
|
|
1340
|
+
}>;
|
|
1341
|
+
testedAt: z.ZodString;
|
|
1342
|
+
errorCode: z.ZodNullable<z.ZodString>;
|
|
1343
|
+
}, z.core.$strict>;
|
|
1344
|
+
declare const AgentBlogPlanListResponseSchema: z.ZodObject<{
|
|
1345
|
+
data: z.ZodObject<{
|
|
1346
|
+
plans: z.ZodArray<z.ZodObject<{
|
|
1347
|
+
id: z.ZodString;
|
|
1348
|
+
version: z.ZodNumber;
|
|
1349
|
+
state: z.ZodString;
|
|
882
1350
|
windowStart: z.ZodString;
|
|
883
1351
|
windowEnd: z.ZodString;
|
|
884
1352
|
cadence: z.ZodObject<{
|
|
@@ -886,6 +1354,12 @@ declare const AgentBlogPlanListResponseSchema: z.ZodObject<{
|
|
|
886
1354
|
}, z.core.$strip>;
|
|
887
1355
|
activeRevisionId: z.ZodNullable<z.ZodString>;
|
|
888
1356
|
itemCount: z.ZodNumber;
|
|
1357
|
+
successorState: z.ZodOptional<z.ZodEnum<{
|
|
1358
|
+
NOT_STARTED: "NOT_STARTED";
|
|
1359
|
+
GENERATING: "GENERATING";
|
|
1360
|
+
READY: "READY";
|
|
1361
|
+
NEEDS_ATTENTION: "NEEDS_ATTENTION";
|
|
1362
|
+
}>>;
|
|
889
1363
|
}, z.core.$strip>>;
|
|
890
1364
|
}, z.core.$strip>;
|
|
891
1365
|
meta: z.ZodObject<{
|
|
@@ -904,6 +1378,20 @@ declare const AgentBlogArticleListResponseSchema: z.ZodObject<{
|
|
|
904
1378
|
publishedRevisionId: z.ZodNullable<z.ZodString>;
|
|
905
1379
|
scheduledPublishAt: z.ZodNullable<z.ZodString>;
|
|
906
1380
|
updatedAt: z.ZodString;
|
|
1381
|
+
preparationState: z.ZodOptional<z.ZodEnum<{
|
|
1382
|
+
NEEDS_ATTENTION: "NEEDS_ATTENTION";
|
|
1383
|
+
PREPARING: "PREPARING";
|
|
1384
|
+
READY_FOR_REVIEW: "READY_FOR_REVIEW";
|
|
1385
|
+
SCHEDULED: "SCHEDULED";
|
|
1386
|
+
MEASURING: "MEASURING";
|
|
1387
|
+
}>>;
|
|
1388
|
+
nextAction: z.ZodOptional<z.ZodEnum<{
|
|
1389
|
+
WAIT: "WAIT";
|
|
1390
|
+
REVIEW_ARTICLE: "REVIEW_ARTICLE";
|
|
1391
|
+
OPEN_SCHEDULE: "OPEN_SCHEDULE";
|
|
1392
|
+
VIEW_OBSERVATION: "VIEW_OBSERVATION";
|
|
1393
|
+
RESOLVE_ISSUE: "RESOLVE_ISSUE";
|
|
1394
|
+
}>>;
|
|
907
1395
|
}, z.core.$strip>>;
|
|
908
1396
|
}, z.core.$strip>;
|
|
909
1397
|
meta: z.ZodObject<{
|
|
@@ -921,6 +1409,20 @@ declare const AgentBlogArticleResponseSchema: z.ZodObject<{
|
|
|
921
1409
|
publishedRevisionId: z.ZodNullable<z.ZodString>;
|
|
922
1410
|
scheduledPublishAt: z.ZodNullable<z.ZodString>;
|
|
923
1411
|
updatedAt: z.ZodString;
|
|
1412
|
+
preparationState: z.ZodOptional<z.ZodEnum<{
|
|
1413
|
+
NEEDS_ATTENTION: "NEEDS_ATTENTION";
|
|
1414
|
+
PREPARING: "PREPARING";
|
|
1415
|
+
READY_FOR_REVIEW: "READY_FOR_REVIEW";
|
|
1416
|
+
SCHEDULED: "SCHEDULED";
|
|
1417
|
+
MEASURING: "MEASURING";
|
|
1418
|
+
}>>;
|
|
1419
|
+
nextAction: z.ZodOptional<z.ZodEnum<{
|
|
1420
|
+
WAIT: "WAIT";
|
|
1421
|
+
REVIEW_ARTICLE: "REVIEW_ARTICLE";
|
|
1422
|
+
OPEN_SCHEDULE: "OPEN_SCHEDULE";
|
|
1423
|
+
VIEW_OBSERVATION: "VIEW_OBSERVATION";
|
|
1424
|
+
RESOLVE_ISSUE: "RESOLVE_ISSUE";
|
|
1425
|
+
}>>;
|
|
924
1426
|
draft: z.ZodNullable<z.ZodObject<{
|
|
925
1427
|
id: z.ZodString;
|
|
926
1428
|
version: z.ZodNumber;
|
|
@@ -942,6 +1444,32 @@ declare const AgentBlogArticleResponseSchema: z.ZodObject<{
|
|
|
942
1444
|
contentHash: z.ZodString;
|
|
943
1445
|
approvedAt: z.ZodNullable<z.ZodString>;
|
|
944
1446
|
createdAt: z.ZodString;
|
|
1447
|
+
quality: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1448
|
+
version: z.ZodLiteral<2>;
|
|
1449
|
+
decision: z.ZodEnum<{
|
|
1450
|
+
NEEDS_ATTENTION: "NEEDS_ATTENTION";
|
|
1451
|
+
READY_FOR_REVIEW: "READY_FOR_REVIEW";
|
|
1452
|
+
}>;
|
|
1453
|
+
checks: z.ZodArray<z.ZodObject<{
|
|
1454
|
+
code: z.ZodEnum<{
|
|
1455
|
+
SAFE_MARKDOWN: "SAFE_MARKDOWN";
|
|
1456
|
+
REQUIRED_METADATA: "REQUIRED_METADATA";
|
|
1457
|
+
CANONICAL_PATH: "CANONICAL_PATH";
|
|
1458
|
+
CATALOG_LINKS: "CATALOG_LINKS";
|
|
1459
|
+
LIVE_LINK_TARGETS: "LIVE_LINK_TARGETS";
|
|
1460
|
+
QUERY_OWNERSHIP: "QUERY_OWNERSHIP";
|
|
1461
|
+
CONTENT_OVERLAP: "CONTENT_OVERLAP";
|
|
1462
|
+
BRAND_TERMS: "BRAND_TERMS";
|
|
1463
|
+
EVIDENCE_OWNERSHIP: "EVIDENCE_OWNERSHIP";
|
|
1464
|
+
}>;
|
|
1465
|
+
status: z.ZodEnum<{
|
|
1466
|
+
PASSED: "PASSED";
|
|
1467
|
+
FAILED: "FAILED";
|
|
1468
|
+
WARNING: "WARNING";
|
|
1469
|
+
}>;
|
|
1470
|
+
message: z.ZodString;
|
|
1471
|
+
}, z.core.$strict>>;
|
|
1472
|
+
}, z.core.$strict>>>;
|
|
945
1473
|
}, z.core.$strip>>;
|
|
946
1474
|
images: z.ZodArray<z.ZodObject<{
|
|
947
1475
|
id: z.ZodString;
|
|
@@ -957,12 +1485,12 @@ declare const AgentBlogArticleResponseSchema: z.ZodObject<{
|
|
|
957
1485
|
AGENT_UPLOAD: "AGENT_UPLOAD";
|
|
958
1486
|
}>;
|
|
959
1487
|
state: z.ZodEnum<{
|
|
960
|
-
QUEUED: "QUEUED";
|
|
961
1488
|
GENERATING: "GENERATING";
|
|
962
1489
|
READY_FOR_REVIEW: "READY_FOR_REVIEW";
|
|
1490
|
+
FAILED: "FAILED";
|
|
1491
|
+
QUEUED: "QUEUED";
|
|
963
1492
|
APPROVED: "APPROVED";
|
|
964
1493
|
REJECTED: "REJECTED";
|
|
965
|
-
FAILED: "FAILED";
|
|
966
1494
|
}>;
|
|
967
1495
|
publicUrl: z.ZodNullable<z.ZodString>;
|
|
968
1496
|
mimeType: z.ZodNullable<z.ZodEnum<{
|
|
@@ -976,6 +1504,66 @@ declare const AgentBlogArticleResponseSchema: z.ZodObject<{
|
|
|
976
1504
|
caption: z.ZodNullable<z.ZodString>;
|
|
977
1505
|
createdAt: z.ZodString;
|
|
978
1506
|
}, z.core.$strict>>;
|
|
1507
|
+
measurement: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1508
|
+
state: z.ZodEnum<{
|
|
1509
|
+
MEASURING: "MEASURING";
|
|
1510
|
+
WAITING: "WAITING";
|
|
1511
|
+
MATCHED: "MATCHED";
|
|
1512
|
+
MISSING_MATCH: "MISSING_MATCH";
|
|
1513
|
+
OBSERVED: "OBSERVED";
|
|
1514
|
+
PARTIAL: "PARTIAL";
|
|
1515
|
+
UNAVAILABLE: "UNAVAILABLE";
|
|
1516
|
+
STALE: "STALE";
|
|
1517
|
+
}>;
|
|
1518
|
+
latestCheckpoint: z.ZodNullable<z.ZodEnum<{
|
|
1519
|
+
BASELINE: "BASELINE";
|
|
1520
|
+
DAY_28: "DAY_28";
|
|
1521
|
+
DAY_56: "DAY_56";
|
|
1522
|
+
}>>;
|
|
1523
|
+
nextCheckpoint: z.ZodNullable<z.ZodEnum<{
|
|
1524
|
+
BASELINE: "BASELINE";
|
|
1525
|
+
DAY_28: "DAY_28";
|
|
1526
|
+
DAY_56: "DAY_56";
|
|
1527
|
+
}>>;
|
|
1528
|
+
checkpoints: z.ZodArray<z.ZodObject<{
|
|
1529
|
+
checkpoint: z.ZodEnum<{
|
|
1530
|
+
BASELINE: "BASELINE";
|
|
1531
|
+
DAY_28: "DAY_28";
|
|
1532
|
+
DAY_56: "DAY_56";
|
|
1533
|
+
}>;
|
|
1534
|
+
state: z.ZodEnum<{
|
|
1535
|
+
MEASURING: "MEASURING";
|
|
1536
|
+
WAITING: "WAITING";
|
|
1537
|
+
MATCHED: "MATCHED";
|
|
1538
|
+
MISSING_MATCH: "MISSING_MATCH";
|
|
1539
|
+
OBSERVED: "OBSERVED";
|
|
1540
|
+
PARTIAL: "PARTIAL";
|
|
1541
|
+
UNAVAILABLE: "UNAVAILABLE";
|
|
1542
|
+
STALE: "STALE";
|
|
1543
|
+
}>;
|
|
1544
|
+
targetDataThrough: z.ZodNullable<z.ZodString>;
|
|
1545
|
+
sources: z.ZodArray<z.ZodObject<{
|
|
1546
|
+
provider: z.ZodEnum<{
|
|
1547
|
+
GOOGLE_SEARCH_CONSOLE: "GOOGLE_SEARCH_CONSOLE";
|
|
1548
|
+
GOOGLE_ANALYTICS: "GOOGLE_ANALYTICS";
|
|
1549
|
+
}>;
|
|
1550
|
+
observedAt: z.ZodString;
|
|
1551
|
+
periodStart: z.ZodNullable<z.ZodString>;
|
|
1552
|
+
periodEnd: z.ZodNullable<z.ZodString>;
|
|
1553
|
+
metrics: z.ZodRecord<z.ZodString, z.ZodNumber>;
|
|
1554
|
+
}, z.core.$strict>>;
|
|
1555
|
+
siteContext: z.ZodArray<z.ZodObject<{
|
|
1556
|
+
provider: z.ZodEnum<{
|
|
1557
|
+
GOOGLE_SEARCH_CONSOLE: "GOOGLE_SEARCH_CONSOLE";
|
|
1558
|
+
GOOGLE_ANALYTICS: "GOOGLE_ANALYTICS";
|
|
1559
|
+
}>;
|
|
1560
|
+
observedAt: z.ZodString;
|
|
1561
|
+
periodStart: z.ZodNullable<z.ZodString>;
|
|
1562
|
+
periodEnd: z.ZodNullable<z.ZodString>;
|
|
1563
|
+
metrics: z.ZodRecord<z.ZodString, z.ZodNumber>;
|
|
1564
|
+
}, z.core.$strict>>;
|
|
1565
|
+
}, z.core.$strict>>;
|
|
1566
|
+
}, z.core.$strict>>>;
|
|
979
1567
|
}, z.core.$strip>;
|
|
980
1568
|
meta: z.ZodObject<{
|
|
981
1569
|
requestId: z.ZodString;
|
|
@@ -1013,12 +1601,12 @@ declare const AgentBlogImageGenerationResponseSchema: z.ZodObject<{
|
|
|
1013
1601
|
AGENT_UPLOAD: "AGENT_UPLOAD";
|
|
1014
1602
|
}>;
|
|
1015
1603
|
state: z.ZodEnum<{
|
|
1016
|
-
QUEUED: "QUEUED";
|
|
1017
1604
|
GENERATING: "GENERATING";
|
|
1018
1605
|
READY_FOR_REVIEW: "READY_FOR_REVIEW";
|
|
1606
|
+
FAILED: "FAILED";
|
|
1607
|
+
QUEUED: "QUEUED";
|
|
1019
1608
|
APPROVED: "APPROVED";
|
|
1020
1609
|
REJECTED: "REJECTED";
|
|
1021
|
-
FAILED: "FAILED";
|
|
1022
1610
|
}>;
|
|
1023
1611
|
publicUrl: z.ZodNullable<z.ZodString>;
|
|
1024
1612
|
mimeType: z.ZodNullable<z.ZodEnum<{
|
|
@@ -1081,12 +1669,12 @@ declare const AgentBlogImageResponseSchema: z.ZodObject<{
|
|
|
1081
1669
|
AGENT_UPLOAD: "AGENT_UPLOAD";
|
|
1082
1670
|
}>;
|
|
1083
1671
|
state: z.ZodEnum<{
|
|
1084
|
-
QUEUED: "QUEUED";
|
|
1085
1672
|
GENERATING: "GENERATING";
|
|
1086
1673
|
READY_FOR_REVIEW: "READY_FOR_REVIEW";
|
|
1674
|
+
FAILED: "FAILED";
|
|
1675
|
+
QUEUED: "QUEUED";
|
|
1087
1676
|
APPROVED: "APPROVED";
|
|
1088
1677
|
REJECTED: "REJECTED";
|
|
1089
|
-
FAILED: "FAILED";
|
|
1090
1678
|
}>;
|
|
1091
1679
|
publicUrl: z.ZodNullable<z.ZodString>;
|
|
1092
1680
|
mimeType: z.ZodNullable<z.ZodEnum<{
|
|
@@ -1294,6 +1882,7 @@ declare const AgentBlogPublishPreviewResponseSchema: z.ZodObject<{
|
|
|
1294
1882
|
status: z.ZodString;
|
|
1295
1883
|
isPrimary: z.ZodBoolean;
|
|
1296
1884
|
enabled: z.ZodBoolean;
|
|
1885
|
+
capabilities: z.ZodArray<z.ZodString>;
|
|
1297
1886
|
externalSiteName: z.ZodNullable<z.ZodString>;
|
|
1298
1887
|
externalSiteUrl: z.ZodNullable<z.ZodString>;
|
|
1299
1888
|
lastTestedAt: z.ZodNullable<z.ZodString>;
|
|
@@ -1358,6 +1947,7 @@ declare const AgentBlogPublishingDestinationListResponseSchema: z.ZodObject<{
|
|
|
1358
1947
|
status: z.ZodString;
|
|
1359
1948
|
isPrimary: z.ZodBoolean;
|
|
1360
1949
|
enabled: z.ZodBoolean;
|
|
1950
|
+
capabilities: z.ZodArray<z.ZodString>;
|
|
1361
1951
|
externalSiteName: z.ZodNullable<z.ZodString>;
|
|
1362
1952
|
externalSiteUrl: z.ZodNullable<z.ZodString>;
|
|
1363
1953
|
lastTestedAt: z.ZodNullable<z.ZodString>;
|
|
@@ -1396,57 +1986,57 @@ declare const AgentBlogSetupStatusResponseSchema: z.ZodObject<{
|
|
|
1396
1986
|
projectId: z.ZodString;
|
|
1397
1987
|
brandName: z.ZodString;
|
|
1398
1988
|
brandWebsite: z.ZodEnum<{
|
|
1399
|
-
MISSING: "MISSING";
|
|
1400
1989
|
READY: "READY";
|
|
1990
|
+
MISSING: "MISSING";
|
|
1401
1991
|
}>;
|
|
1402
1992
|
websiteOrigin: z.ZodNullable<z.ZodString>;
|
|
1403
1993
|
siteId: z.ZodNullable<z.ZodString>;
|
|
1404
1994
|
blogBasePath: z.ZodNullable<z.ZodString>;
|
|
1405
1995
|
siteImport: z.ZodEnum<{
|
|
1996
|
+
NOT_STARTED: "NOT_STARTED";
|
|
1997
|
+
READY: "READY";
|
|
1998
|
+
NEEDS_ATTENTION: "NEEDS_ATTENTION";
|
|
1406
1999
|
QUEUED: "QUEUED";
|
|
1407
2000
|
MISSING: "MISSING";
|
|
1408
|
-
NOT_STARTED: "NOT_STARTED";
|
|
1409
2001
|
RUNNING: "RUNNING";
|
|
1410
|
-
READY: "READY";
|
|
1411
2002
|
USED: "USED";
|
|
1412
2003
|
CONFIGURED: "CONFIGURED";
|
|
1413
2004
|
VERIFIED: "VERIFIED";
|
|
1414
|
-
NEEDS_ATTENTION: "NEEDS_ATTENTION";
|
|
1415
2005
|
}>;
|
|
1416
2006
|
activeJobId: z.ZodNullable<z.ZodString>;
|
|
1417
2007
|
plan: z.ZodEnum<{
|
|
2008
|
+
NOT_STARTED: "NOT_STARTED";
|
|
2009
|
+
READY: "READY";
|
|
2010
|
+
NEEDS_ATTENTION: "NEEDS_ATTENTION";
|
|
1418
2011
|
QUEUED: "QUEUED";
|
|
1419
2012
|
MISSING: "MISSING";
|
|
1420
|
-
NOT_STARTED: "NOT_STARTED";
|
|
1421
2013
|
RUNNING: "RUNNING";
|
|
1422
|
-
READY: "READY";
|
|
1423
2014
|
USED: "USED";
|
|
1424
2015
|
CONFIGURED: "CONFIGURED";
|
|
1425
2016
|
VERIFIED: "VERIFIED";
|
|
1426
|
-
NEEDS_ATTENTION: "NEEDS_ATTENTION";
|
|
1427
2017
|
}>;
|
|
1428
2018
|
activePlanId: z.ZodNullable<z.ZodString>;
|
|
1429
2019
|
deliveryCredential: z.ZodEnum<{
|
|
2020
|
+
NOT_STARTED: "NOT_STARTED";
|
|
2021
|
+
READY: "READY";
|
|
2022
|
+
NEEDS_ATTENTION: "NEEDS_ATTENTION";
|
|
1430
2023
|
QUEUED: "QUEUED";
|
|
1431
2024
|
MISSING: "MISSING";
|
|
1432
|
-
NOT_STARTED: "NOT_STARTED";
|
|
1433
2025
|
RUNNING: "RUNNING";
|
|
1434
|
-
READY: "READY";
|
|
1435
2026
|
USED: "USED";
|
|
1436
2027
|
CONFIGURED: "CONFIGURED";
|
|
1437
2028
|
VERIFIED: "VERIFIED";
|
|
1438
|
-
NEEDS_ATTENTION: "NEEDS_ATTENTION";
|
|
1439
2029
|
}>;
|
|
1440
2030
|
revalidation: z.ZodEnum<{
|
|
2031
|
+
NOT_STARTED: "NOT_STARTED";
|
|
2032
|
+
READY: "READY";
|
|
2033
|
+
NEEDS_ATTENTION: "NEEDS_ATTENTION";
|
|
1441
2034
|
QUEUED: "QUEUED";
|
|
1442
2035
|
MISSING: "MISSING";
|
|
1443
|
-
NOT_STARTED: "NOT_STARTED";
|
|
1444
2036
|
RUNNING: "RUNNING";
|
|
1445
|
-
READY: "READY";
|
|
1446
2037
|
USED: "USED";
|
|
1447
2038
|
CONFIGURED: "CONFIGURED";
|
|
1448
2039
|
VERIFIED: "VERIFIED";
|
|
1449
|
-
NEEDS_ATTENTION: "NEEDS_ATTENTION";
|
|
1450
2040
|
}>;
|
|
1451
2041
|
nextAction: z.ZodEnum<{
|
|
1452
2042
|
READY: "READY";
|
|
@@ -1493,6 +2083,20 @@ declare const AgentBlogPlanItemsResponseSchema: z.ZodObject<{
|
|
|
1493
2083
|
recommendedLinks: z.ZodUnknown;
|
|
1494
2084
|
targetConversionPage: z.ZodNullable<z.ZodString>;
|
|
1495
2085
|
articleId: z.ZodNullable<z.ZodString>;
|
|
2086
|
+
preparationState: z.ZodOptional<z.ZodEnum<{
|
|
2087
|
+
NEEDS_ATTENTION: "NEEDS_ATTENTION";
|
|
2088
|
+
PREPARING: "PREPARING";
|
|
2089
|
+
READY_FOR_REVIEW: "READY_FOR_REVIEW";
|
|
2090
|
+
SCHEDULED: "SCHEDULED";
|
|
2091
|
+
MEASURING: "MEASURING";
|
|
2092
|
+
}>>;
|
|
2093
|
+
nextAction: z.ZodOptional<z.ZodEnum<{
|
|
2094
|
+
WAIT: "WAIT";
|
|
2095
|
+
REVIEW_ARTICLE: "REVIEW_ARTICLE";
|
|
2096
|
+
OPEN_SCHEDULE: "OPEN_SCHEDULE";
|
|
2097
|
+
VIEW_OBSERVATION: "VIEW_OBSERVATION";
|
|
2098
|
+
RESOLVE_ISSUE: "RESOLVE_ISSUE";
|
|
2099
|
+
}>>;
|
|
1496
2100
|
}, z.core.$strict>>;
|
|
1497
2101
|
}, z.core.$strict>;
|
|
1498
2102
|
meta: z.ZodObject<{
|
|
@@ -1528,6 +2132,114 @@ declare const AgentBlogPlanItemResponseSchema: z.ZodObject<{
|
|
|
1528
2132
|
recommendedLinks: z.ZodUnknown;
|
|
1529
2133
|
targetConversionPage: z.ZodNullable<z.ZodString>;
|
|
1530
2134
|
articleId: z.ZodNullable<z.ZodString>;
|
|
2135
|
+
preparationState: z.ZodOptional<z.ZodEnum<{
|
|
2136
|
+
NEEDS_ATTENTION: "NEEDS_ATTENTION";
|
|
2137
|
+
PREPARING: "PREPARING";
|
|
2138
|
+
READY_FOR_REVIEW: "READY_FOR_REVIEW";
|
|
2139
|
+
SCHEDULED: "SCHEDULED";
|
|
2140
|
+
MEASURING: "MEASURING";
|
|
2141
|
+
}>>;
|
|
2142
|
+
nextAction: z.ZodOptional<z.ZodEnum<{
|
|
2143
|
+
WAIT: "WAIT";
|
|
2144
|
+
REVIEW_ARTICLE: "REVIEW_ARTICLE";
|
|
2145
|
+
OPEN_SCHEDULE: "OPEN_SCHEDULE";
|
|
2146
|
+
VIEW_OBSERVATION: "VIEW_OBSERVATION";
|
|
2147
|
+
RESOLVE_ISSUE: "RESOLVE_ISSUE";
|
|
2148
|
+
}>>;
|
|
2149
|
+
}, z.core.$strict>;
|
|
2150
|
+
meta: z.ZodObject<{
|
|
2151
|
+
requestId: z.ZodString;
|
|
2152
|
+
}, z.core.$strip>;
|
|
2153
|
+
}, z.core.$strip>;
|
|
2154
|
+
declare const AgentBlogPlanCadencePreviewResponseSchema: z.ZodObject<{
|
|
2155
|
+
data: z.ZodObject<{
|
|
2156
|
+
planId: z.ZodString;
|
|
2157
|
+
planTitle: z.ZodString;
|
|
2158
|
+
planVersion: z.ZodNumber;
|
|
2159
|
+
scheduleDigest: z.ZodString;
|
|
2160
|
+
kind: z.ZodEnum<{
|
|
2161
|
+
ready: "ready";
|
|
2162
|
+
blocked: "blocked";
|
|
2163
|
+
noop: "noop";
|
|
2164
|
+
}>;
|
|
2165
|
+
canExecute: z.ZodBoolean;
|
|
2166
|
+
oldWeekdays: z.ZodArray<z.ZodNumber>;
|
|
2167
|
+
newWeekdays: z.ZodArray<z.ZodNumber>;
|
|
2168
|
+
moves: z.ZodArray<z.ZodObject<{
|
|
2169
|
+
itemId: z.ZodString;
|
|
2170
|
+
title: z.ZodString;
|
|
2171
|
+
oldDate: z.ZodString;
|
|
2172
|
+
newDate: z.ZodString;
|
|
2173
|
+
state: z.ZodEnum<{
|
|
2174
|
+
NEEDS_ATTENTION: "NEEDS_ATTENTION";
|
|
2175
|
+
SCHEDULED: "SCHEDULED";
|
|
2176
|
+
APPROVED: "APPROVED";
|
|
2177
|
+
PLANNED: "PLANNED";
|
|
2178
|
+
ACCEPTED: "ACCEPTED";
|
|
2179
|
+
DISMISSED: "DISMISSED";
|
|
2180
|
+
DRAFTING: "DRAFTING";
|
|
2181
|
+
IN_REVIEW: "IN_REVIEW";
|
|
2182
|
+
PUBLISHED: "PUBLISHED";
|
|
2183
|
+
}>;
|
|
2184
|
+
version: z.ZodNumber;
|
|
2185
|
+
}, z.core.$strict>>;
|
|
2186
|
+
lockedItems: z.ZodArray<z.ZodObject<{
|
|
2187
|
+
itemId: z.ZodString;
|
|
2188
|
+
title: z.ZodString;
|
|
2189
|
+
date: z.ZodString;
|
|
2190
|
+
state: z.ZodEnum<{
|
|
2191
|
+
SCHEDULED: "SCHEDULED";
|
|
2192
|
+
PUBLISHED: "PUBLISHED";
|
|
2193
|
+
}>;
|
|
2194
|
+
version: z.ZodNumber;
|
|
2195
|
+
}, z.core.$strict>>;
|
|
2196
|
+
warnings: z.ZodArray<z.ZodString>;
|
|
2197
|
+
reason: z.ZodNullable<z.ZodString>;
|
|
2198
|
+
confirmation: z.ZodNullable<z.ZodObject<{
|
|
2199
|
+
token: z.ZodString;
|
|
2200
|
+
expiresAt: z.ZodString;
|
|
2201
|
+
}, z.core.$strict>>;
|
|
2202
|
+
}, z.core.$strict>;
|
|
2203
|
+
meta: z.ZodObject<{
|
|
2204
|
+
requestId: z.ZodString;
|
|
2205
|
+
}, z.core.$strip>;
|
|
2206
|
+
}, z.core.$strip>;
|
|
2207
|
+
declare const AgentBlogPlanCadenceExecuteResponseSchema: z.ZodObject<{
|
|
2208
|
+
data: z.ZodObject<{
|
|
2209
|
+
planId: z.ZodString;
|
|
2210
|
+
planVersion: z.ZodNumber;
|
|
2211
|
+
publicationWeekdays: z.ZodArray<z.ZodNumber>;
|
|
2212
|
+
cadencePerWeek: z.ZodNumber;
|
|
2213
|
+
expectedItemCount: z.ZodNumber;
|
|
2214
|
+
moves: z.ZodArray<z.ZodObject<{
|
|
2215
|
+
itemId: z.ZodString;
|
|
2216
|
+
title: z.ZodString;
|
|
2217
|
+
oldDate: z.ZodString;
|
|
2218
|
+
newDate: z.ZodString;
|
|
2219
|
+
state: z.ZodEnum<{
|
|
2220
|
+
NEEDS_ATTENTION: "NEEDS_ATTENTION";
|
|
2221
|
+
SCHEDULED: "SCHEDULED";
|
|
2222
|
+
APPROVED: "APPROVED";
|
|
2223
|
+
PLANNED: "PLANNED";
|
|
2224
|
+
ACCEPTED: "ACCEPTED";
|
|
2225
|
+
DISMISSED: "DISMISSED";
|
|
2226
|
+
DRAFTING: "DRAFTING";
|
|
2227
|
+
IN_REVIEW: "IN_REVIEW";
|
|
2228
|
+
PUBLISHED: "PUBLISHED";
|
|
2229
|
+
}>;
|
|
2230
|
+
version: z.ZodNumber;
|
|
2231
|
+
}, z.core.$strict>>;
|
|
2232
|
+
lockedItems: z.ZodArray<z.ZodObject<{
|
|
2233
|
+
itemId: z.ZodString;
|
|
2234
|
+
title: z.ZodString;
|
|
2235
|
+
date: z.ZodString;
|
|
2236
|
+
state: z.ZodEnum<{
|
|
2237
|
+
SCHEDULED: "SCHEDULED";
|
|
2238
|
+
PUBLISHED: "PUBLISHED";
|
|
2239
|
+
}>;
|
|
2240
|
+
version: z.ZodNumber;
|
|
2241
|
+
}, z.core.$strict>>;
|
|
2242
|
+
scheduleDigest: z.ZodString;
|
|
1531
2243
|
}, z.core.$strict>;
|
|
1532
2244
|
meta: z.ZodObject<{
|
|
1533
2245
|
requestId: z.ZodString;
|
|
@@ -1578,17 +2290,17 @@ declare const AgentBlogConnectionStatusResponseSchema: z.ZodObject<{
|
|
|
1578
2290
|
origin: z.ZodString;
|
|
1579
2291
|
endpoint: z.ZodNullable<z.ZodString>;
|
|
1580
2292
|
deliveryCredential: z.ZodEnum<{
|
|
1581
|
-
MISSING: "MISSING";
|
|
1582
2293
|
READY: "READY";
|
|
2294
|
+
MISSING: "MISSING";
|
|
1583
2295
|
USED: "USED";
|
|
1584
2296
|
}>;
|
|
1585
2297
|
activeCredentialId: z.ZodNullable<z.ZodString>;
|
|
1586
2298
|
credentialLastUsedAt: z.ZodNullable<z.ZodString>;
|
|
1587
2299
|
revalidation: z.ZodEnum<{
|
|
2300
|
+
NEEDS_ATTENTION: "NEEDS_ATTENTION";
|
|
1588
2301
|
MISSING: "MISSING";
|
|
1589
2302
|
CONFIGURED: "CONFIGURED";
|
|
1590
2303
|
VERIFIED: "VERIFIED";
|
|
1591
|
-
NEEDS_ATTENTION: "NEEDS_ATTENTION";
|
|
1592
2304
|
}>;
|
|
1593
2305
|
revalidationLastTestedAt: z.ZodNullable<z.ZodString>;
|
|
1594
2306
|
revalidationLastSucceededAt: z.ZodNullable<z.ZodString>;
|
|
@@ -1644,8 +2356,8 @@ declare const AgentBlogConnectionExecuteResponseSchema: z.ZodObject<{
|
|
|
1644
2356
|
declare const AgentBlogRevalidationTestResponseSchema: z.ZodObject<{
|
|
1645
2357
|
data: z.ZodObject<{
|
|
1646
2358
|
status: z.ZodEnum<{
|
|
1647
|
-
VERIFIED: "VERIFIED";
|
|
1648
2359
|
NEEDS_ATTENTION: "NEEDS_ATTENTION";
|
|
2360
|
+
VERIFIED: "VERIFIED";
|
|
1649
2361
|
}>;
|
|
1650
2362
|
testedAt: z.ZodString;
|
|
1651
2363
|
errorCode: z.ZodNullable<z.ZodString>;
|
|
@@ -1654,53 +2366,141 @@ declare const AgentBlogRevalidationTestResponseSchema: z.ZodObject<{
|
|
|
1654
2366
|
requestId: z.ZodString;
|
|
1655
2367
|
}, z.core.$strip>;
|
|
1656
2368
|
}, z.core.$strip>;
|
|
1657
|
-
|
|
1658
|
-
|
|
1659
|
-
|
|
1660
|
-
|
|
1661
|
-
|
|
1662
|
-
|
|
1663
|
-
|
|
1664
|
-
|
|
1665
|
-
|
|
1666
|
-
|
|
1667
|
-
|
|
1668
|
-
|
|
1669
|
-
|
|
1670
|
-
|
|
1671
|
-
|
|
1672
|
-
|
|
1673
|
-
|
|
1674
|
-
|
|
1675
|
-
|
|
1676
|
-
"projects:write": "projects:write";
|
|
1677
|
-
"posts:read": "posts:read";
|
|
1678
|
-
"posts:write": "posts:write";
|
|
1679
|
-
"posts:schedule": "posts:schedule";
|
|
1680
|
-
"posts:publish": "posts:publish";
|
|
1681
|
-
"integrations:read": "integrations:read";
|
|
1682
|
-
"calendar:read": "calendar:read";
|
|
1683
|
-
"seo:read": "seo:read";
|
|
1684
|
-
"blog:read": "blog:read";
|
|
1685
|
-
"blog:write": "blog:write";
|
|
1686
|
-
"blog:manage": "blog:manage";
|
|
1687
|
-
"blog:approve": "blog:approve";
|
|
1688
|
-
"blog:publish": "blog:publish";
|
|
1689
|
-
}>;
|
|
1690
|
-
available: z.ZodBoolean;
|
|
1691
|
-
reason: z.ZodEnum<{
|
|
1692
|
-
AUTH_REQUIRED: "AUTH_REQUIRED";
|
|
1693
|
-
FEATURE_DISABLED: "FEATURE_DISABLED";
|
|
1694
|
-
AVAILABLE: "AVAILABLE";
|
|
1695
|
-
SCOPE_REQUIRED: "SCOPE_REQUIRED";
|
|
1696
|
-
}>;
|
|
2369
|
+
declare const AgentBlogWebhookDestinationPreviewResponseSchema: z.ZodObject<{
|
|
2370
|
+
data: z.ZodObject<{
|
|
2371
|
+
siteId: z.ZodString;
|
|
2372
|
+
name: z.ZodString;
|
|
2373
|
+
endpoint: z.ZodString;
|
|
2374
|
+
semantics: z.ZodEnum<{
|
|
2375
|
+
LIVE: "LIVE";
|
|
2376
|
+
DRAFT: "DRAFT";
|
|
2377
|
+
}>;
|
|
2378
|
+
destinationId: z.ZodNullable<z.ZodString>;
|
|
2379
|
+
effect: z.ZodString;
|
|
2380
|
+
confirmation: z.ZodObject<{
|
|
2381
|
+
token: z.ZodString;
|
|
2382
|
+
expiresAt: z.ZodString;
|
|
2383
|
+
}, z.core.$strict>;
|
|
2384
|
+
}, z.core.$strict>;
|
|
2385
|
+
meta: z.ZodObject<{
|
|
2386
|
+
requestId: z.ZodString;
|
|
2387
|
+
}, z.core.$strip>;
|
|
1697
2388
|
}, z.core.$strip>;
|
|
1698
|
-
|
|
1699
|
-
|
|
1700
|
-
|
|
1701
|
-
|
|
2389
|
+
declare const AgentBlogWebhookDestinationExecuteResponseSchema: z.ZodObject<{
|
|
2390
|
+
data: z.ZodObject<{
|
|
2391
|
+
projectId: z.ZodString;
|
|
2392
|
+
siteId: z.ZodString;
|
|
2393
|
+
destinationId: z.ZodString;
|
|
2394
|
+
completed: z.ZodLiteral<true>;
|
|
2395
|
+
secretDelivered: z.ZodBoolean;
|
|
2396
|
+
alreadyDelivered: z.ZodBoolean;
|
|
2397
|
+
webhookSecret: z.ZodOptional<z.ZodString>;
|
|
2398
|
+
message: z.ZodString;
|
|
2399
|
+
}, z.core.$strict>;
|
|
2400
|
+
meta: z.ZodObject<{
|
|
2401
|
+
requestId: z.ZodString;
|
|
2402
|
+
}, z.core.$strip>;
|
|
2403
|
+
}, z.core.$strip>;
|
|
2404
|
+
declare const AgentBlogWebhookTestResponseSchema: z.ZodObject<{
|
|
2405
|
+
data: z.ZodObject<{
|
|
2406
|
+
destinationId: z.ZodString;
|
|
2407
|
+
status: z.ZodEnum<{
|
|
2408
|
+
NEEDS_ATTENTION: "NEEDS_ATTENTION";
|
|
2409
|
+
CONNECTED: "CONNECTED";
|
|
2410
|
+
}>;
|
|
2411
|
+
enabled: z.ZodBoolean;
|
|
2412
|
+
testedAt: z.ZodString;
|
|
2413
|
+
errorCode: z.ZodNullable<z.ZodString>;
|
|
2414
|
+
}, z.core.$strict>;
|
|
2415
|
+
meta: z.ZodObject<{
|
|
2416
|
+
requestId: z.ZodString;
|
|
2417
|
+
}, z.core.$strip>;
|
|
2418
|
+
}, z.core.$strip>;
|
|
2419
|
+
declare const AgentBlogWebhookRotatePreviewResponseSchema: z.ZodObject<{
|
|
2420
|
+
data: z.ZodObject<{
|
|
2421
|
+
siteId: z.ZodString;
|
|
2422
|
+
destinationId: z.ZodString;
|
|
2423
|
+
destinationName: z.ZodString;
|
|
2424
|
+
effect: z.ZodString;
|
|
2425
|
+
confirmation: z.ZodObject<{
|
|
2426
|
+
token: z.ZodString;
|
|
2427
|
+
expiresAt: z.ZodString;
|
|
2428
|
+
}, z.core.$strict>;
|
|
2429
|
+
}, z.core.$strict>;
|
|
2430
|
+
meta: z.ZodObject<{
|
|
2431
|
+
requestId: z.ZodString;
|
|
2432
|
+
}, z.core.$strip>;
|
|
2433
|
+
}, z.core.$strip>;
|
|
2434
|
+
declare const AgentBlogWebhookRotateExecuteResponseSchema: z.ZodObject<{
|
|
2435
|
+
data: z.ZodObject<{
|
|
2436
|
+
destinationId: z.ZodString;
|
|
2437
|
+
completed: z.ZodLiteral<true>;
|
|
2438
|
+
secretDelivered: z.ZodBoolean;
|
|
2439
|
+
alreadyDelivered: z.ZodBoolean;
|
|
2440
|
+
webhookSecret: z.ZodOptional<z.ZodString>;
|
|
2441
|
+
message: z.ZodString;
|
|
2442
|
+
}, z.core.$strict>;
|
|
2443
|
+
meta: z.ZodObject<{
|
|
2444
|
+
requestId: z.ZodString;
|
|
2445
|
+
}, z.core.$strip>;
|
|
2446
|
+
}, z.core.$strip>;
|
|
2447
|
+
type AgentBlogPlan = z.infer<typeof AgentBlogPlanSchema>;
|
|
2448
|
+
type AgentBlogArticle = z.infer<typeof AgentBlogArticleSchema>;
|
|
2449
|
+
type AgentBlogArticleDetail = z.infer<typeof AgentBlogArticleDetailSchema>;
|
|
2450
|
+
type AgentBlogJob = z.infer<typeof AgentBlogJobSchema>;
|
|
2451
|
+
type AgentBlogDraftUpdate = z.infer<typeof AgentBlogDraftUpdateSchema>;
|
|
2452
|
+
type AgentBlogPublishPreview = z.infer<typeof AgentBlogPublishPreviewSchema>;
|
|
2453
|
+
type AgentBlogPublishingProvider = z.infer<typeof AgentBlogPublishingProviderSchema>;
|
|
2454
|
+
type AgentBlogPublishingDestination = z.infer<typeof AgentBlogPublishingDestinationSchema>;
|
|
2455
|
+
type AgentBlogDeliveryAttempt = z.infer<typeof AgentBlogDeliveryAttemptSchema>;
|
|
2456
|
+
type AgentBlogSetupStatus = z.infer<typeof AgentBlogSetupStatusSchema>;
|
|
2457
|
+
type AgentBlogCadenceInput = z.infer<typeof AgentBlogCadenceInputSchema>;
|
|
2458
|
+
type AgentBlogPlanItem = z.infer<typeof AgentBlogPlanItemSchema>;
|
|
2459
|
+
type AgentBlogPlanDateMove = z.infer<typeof AgentBlogPlanDateMoveSchema>;
|
|
2460
|
+
type AgentBlogPlanCadencePreview = z.infer<typeof AgentBlogPlanCadencePreviewSchema>;
|
|
2461
|
+
type AgentBlogPlanCadenceExecute = z.infer<typeof AgentBlogPlanCadenceExecuteSchema>;
|
|
2462
|
+
type AgentBlogConnectionStatus = z.infer<typeof AgentBlogConnectionStatusSchema>;
|
|
2463
|
+
type AgentBlogConnectionRequest = z.infer<typeof AgentBlogConnectionRequestSchema>;
|
|
2464
|
+
type AgentBlogConnectionExecute = z.infer<typeof AgentBlogConnectionExecuteSchema>;
|
|
2465
|
+
type AgentBlogWebhookDestinationChange = z.infer<typeof AgentBlogWebhookDestinationChangeSchema>;
|
|
2466
|
+
type AgentBlogWebhookDestinationExecute = z.infer<typeof AgentBlogWebhookDestinationExecuteSchema>;
|
|
2467
|
+
type AgentBlogWebhookTest = z.infer<typeof AgentBlogWebhookTestSchema>;
|
|
2468
|
+
type AgentBlogWebhookRotateExecute = z.infer<typeof AgentBlogWebhookRotateExecuteSchema>;
|
|
2469
|
+
declare const CapabilitySchema: z.ZodObject<{
|
|
2470
|
+
id: z.ZodEnum<{
|
|
2471
|
+
"identity:read": "identity:read";
|
|
2472
|
+
"projects:read": "projects:read";
|
|
2473
|
+
"projects:write": "projects:write";
|
|
2474
|
+
"posts:read": "posts:read";
|
|
2475
|
+
"posts:write": "posts:write";
|
|
2476
|
+
"posts:schedule": "posts:schedule";
|
|
2477
|
+
"posts:publish": "posts:publish";
|
|
2478
|
+
"integrations:read": "integrations:read";
|
|
2479
|
+
"calendar:read": "calendar:read";
|
|
2480
|
+
"seo:read": "seo:read";
|
|
2481
|
+
"backlinks:read": "backlinks:read";
|
|
2482
|
+
"backlinks:write": "backlinks:write";
|
|
2483
|
+
"backlinks:contacts": "backlinks:contacts";
|
|
2484
|
+
"blog:read": "blog:read";
|
|
2485
|
+
"blog:write": "blog:write";
|
|
2486
|
+
"blog:manage": "blog:manage";
|
|
2487
|
+
"blog:approve": "blog:approve";
|
|
2488
|
+
"blog:publish": "blog:publish";
|
|
2489
|
+
}>;
|
|
2490
|
+
available: z.ZodBoolean;
|
|
2491
|
+
reason: z.ZodEnum<{
|
|
2492
|
+
AUTH_REQUIRED: "AUTH_REQUIRED";
|
|
2493
|
+
FEATURE_DISABLED: "FEATURE_DISABLED";
|
|
2494
|
+
AVAILABLE: "AVAILABLE";
|
|
2495
|
+
SCOPE_REQUIRED: "SCOPE_REQUIRED";
|
|
2496
|
+
}>;
|
|
2497
|
+
}, z.core.$strip>;
|
|
2498
|
+
type Capability = z.infer<typeof CapabilitySchema>;
|
|
2499
|
+
declare const ApiMetaSchema: z.ZodObject<{
|
|
2500
|
+
name: z.ZodLiteral<"Rolino">;
|
|
2501
|
+
serverVersion: z.ZodString;
|
|
1702
2502
|
apiVersion: z.ZodLiteral<"v1">;
|
|
1703
|
-
contractVersion: z.ZodLiteral<"0.
|
|
2503
|
+
contractVersion: z.ZodLiteral<"0.18.0">;
|
|
1704
2504
|
authentication: z.ZodObject<{
|
|
1705
2505
|
browserSession: z.ZodBoolean;
|
|
1706
2506
|
cliBrowserAuthorization: z.ZodBoolean;
|
|
@@ -1727,6 +2527,9 @@ declare const ApiMetaSchema: z.ZodObject<{
|
|
|
1727
2527
|
"integrations:read": "integrations:read";
|
|
1728
2528
|
"calendar:read": "calendar:read";
|
|
1729
2529
|
"seo:read": "seo:read";
|
|
2530
|
+
"backlinks:read": "backlinks:read";
|
|
2531
|
+
"backlinks:write": "backlinks:write";
|
|
2532
|
+
"backlinks:contacts": "backlinks:contacts";
|
|
1730
2533
|
"blog:read": "blog:read";
|
|
1731
2534
|
"blog:write": "blog:write";
|
|
1732
2535
|
"blog:manage": "blog:manage";
|
|
@@ -1748,7 +2551,7 @@ declare const ApiMetaResponseSchema: z.ZodObject<{
|
|
|
1748
2551
|
name: z.ZodLiteral<"Rolino">;
|
|
1749
2552
|
serverVersion: z.ZodString;
|
|
1750
2553
|
apiVersion: z.ZodLiteral<"v1">;
|
|
1751
|
-
contractVersion: z.ZodLiteral<"0.
|
|
2554
|
+
contractVersion: z.ZodLiteral<"0.18.0">;
|
|
1752
2555
|
authentication: z.ZodObject<{
|
|
1753
2556
|
browserSession: z.ZodBoolean;
|
|
1754
2557
|
cliBrowserAuthorization: z.ZodBoolean;
|
|
@@ -1775,6 +2578,9 @@ declare const ApiMetaResponseSchema: z.ZodObject<{
|
|
|
1775
2578
|
"integrations:read": "integrations:read";
|
|
1776
2579
|
"calendar:read": "calendar:read";
|
|
1777
2580
|
"seo:read": "seo:read";
|
|
2581
|
+
"backlinks:read": "backlinks:read";
|
|
2582
|
+
"backlinks:write": "backlinks:write";
|
|
2583
|
+
"backlinks:contacts": "backlinks:contacts";
|
|
1778
2584
|
"blog:read": "blog:read";
|
|
1779
2585
|
"blog:write": "blog:write";
|
|
1780
2586
|
"blog:manage": "blog:manage";
|
|
@@ -1798,6 +2604,7 @@ type ApiMetaResponse = z.infer<typeof ApiMetaResponseSchema>;
|
|
|
1798
2604
|
declare const AuthenticationKindSchema: z.ZodEnum<{
|
|
1799
2605
|
session: "session";
|
|
1800
2606
|
api_key: "api_key";
|
|
2607
|
+
oauth: "oauth";
|
|
1801
2608
|
}>;
|
|
1802
2609
|
type AuthenticationKind = z.infer<typeof AuthenticationKindSchema>;
|
|
1803
2610
|
declare const ActorSchema: z.ZodObject<{
|
|
@@ -1815,6 +2622,7 @@ declare const ActorSchema: z.ZodObject<{
|
|
|
1815
2622
|
kind: z.ZodEnum<{
|
|
1816
2623
|
session: "session";
|
|
1817
2624
|
api_key: "api_key";
|
|
2625
|
+
oauth: "oauth";
|
|
1818
2626
|
}>;
|
|
1819
2627
|
credentialId: z.ZodNullable<z.ZodString>;
|
|
1820
2628
|
}, z.core.$strip>;
|
|
@@ -1829,6 +2637,9 @@ declare const ActorSchema: z.ZodObject<{
|
|
|
1829
2637
|
"integrations:read": "integrations:read";
|
|
1830
2638
|
"calendar:read": "calendar:read";
|
|
1831
2639
|
"seo:read": "seo:read";
|
|
2640
|
+
"backlinks:read": "backlinks:read";
|
|
2641
|
+
"backlinks:write": "backlinks:write";
|
|
2642
|
+
"backlinks:contacts": "backlinks:contacts";
|
|
1832
2643
|
"blog:read": "blog:read";
|
|
1833
2644
|
"blog:write": "blog:write";
|
|
1834
2645
|
"blog:manage": "blog:manage";
|
|
@@ -1853,6 +2664,7 @@ declare const WhoAmIResponseSchema: z.ZodObject<{
|
|
|
1853
2664
|
kind: z.ZodEnum<{
|
|
1854
2665
|
session: "session";
|
|
1855
2666
|
api_key: "api_key";
|
|
2667
|
+
oauth: "oauth";
|
|
1856
2668
|
}>;
|
|
1857
2669
|
credentialId: z.ZodNullable<z.ZodString>;
|
|
1858
2670
|
}, z.core.$strip>;
|
|
@@ -1867,6 +2679,9 @@ declare const WhoAmIResponseSchema: z.ZodObject<{
|
|
|
1867
2679
|
"integrations:read": "integrations:read";
|
|
1868
2680
|
"calendar:read": "calendar:read";
|
|
1869
2681
|
"seo:read": "seo:read";
|
|
2682
|
+
"backlinks:read": "backlinks:read";
|
|
2683
|
+
"backlinks:write": "backlinks:write";
|
|
2684
|
+
"backlinks:contacts": "backlinks:contacts";
|
|
1870
2685
|
"blog:read": "blog:read";
|
|
1871
2686
|
"blog:write": "blog:write";
|
|
1872
2687
|
"blog:manage": "blog:manage";
|
|
@@ -1879,83 +2694,6 @@ declare const WhoAmIResponseSchema: z.ZodObject<{
|
|
|
1879
2694
|
}, z.core.$strip>;
|
|
1880
2695
|
}, z.core.$strip>;
|
|
1881
2696
|
type WhoAmIResponse = z.infer<typeof WhoAmIResponseSchema>;
|
|
1882
|
-
declare const CLI_BROWSER_AUTHORIZATION_TIMEOUT_MS: number;
|
|
1883
|
-
declare const CliAuthorizationExchangeRequestSchema: z.ZodObject<{
|
|
1884
|
-
code: z.ZodString;
|
|
1885
|
-
codeVerifier: z.ZodString;
|
|
1886
|
-
}, z.core.$strip>;
|
|
1887
|
-
type CliAuthorizationExchangeRequest = z.infer<typeof CliAuthorizationExchangeRequestSchema>;
|
|
1888
|
-
declare const CliAuthorizationCredentialSchema: z.ZodObject<{
|
|
1889
|
-
token: z.ZodString;
|
|
1890
|
-
tokenType: z.ZodLiteral<"Bearer">;
|
|
1891
|
-
expiresAt: z.ZodString;
|
|
1892
|
-
organization: z.ZodObject<{
|
|
1893
|
-
id: z.ZodString;
|
|
1894
|
-
name: z.ZodString;
|
|
1895
|
-
}, z.core.$strip>;
|
|
1896
|
-
capabilities: z.ZodArray<z.ZodEnum<{
|
|
1897
|
-
"identity:read": "identity:read";
|
|
1898
|
-
"projects:read": "projects:read";
|
|
1899
|
-
"projects:write": "projects:write";
|
|
1900
|
-
"posts:read": "posts:read";
|
|
1901
|
-
"posts:write": "posts:write";
|
|
1902
|
-
"posts:schedule": "posts:schedule";
|
|
1903
|
-
"posts:publish": "posts:publish";
|
|
1904
|
-
"integrations:read": "integrations:read";
|
|
1905
|
-
"calendar:read": "calendar:read";
|
|
1906
|
-
"seo:read": "seo:read";
|
|
1907
|
-
"blog:read": "blog:read";
|
|
1908
|
-
"blog:write": "blog:write";
|
|
1909
|
-
"blog:manage": "blog:manage";
|
|
1910
|
-
"blog:approve": "blog:approve";
|
|
1911
|
-
"blog:publish": "blog:publish";
|
|
1912
|
-
}>>;
|
|
1913
|
-
}, z.core.$strip>;
|
|
1914
|
-
type CliAuthorizationCredential = z.infer<typeof CliAuthorizationCredentialSchema>;
|
|
1915
|
-
declare const CliAuthorizationExchangeResponseSchema: z.ZodObject<{
|
|
1916
|
-
data: z.ZodObject<{
|
|
1917
|
-
token: z.ZodString;
|
|
1918
|
-
tokenType: z.ZodLiteral<"Bearer">;
|
|
1919
|
-
expiresAt: z.ZodString;
|
|
1920
|
-
organization: z.ZodObject<{
|
|
1921
|
-
id: z.ZodString;
|
|
1922
|
-
name: z.ZodString;
|
|
1923
|
-
}, z.core.$strip>;
|
|
1924
|
-
capabilities: z.ZodArray<z.ZodEnum<{
|
|
1925
|
-
"identity:read": "identity:read";
|
|
1926
|
-
"projects:read": "projects:read";
|
|
1927
|
-
"projects:write": "projects:write";
|
|
1928
|
-
"posts:read": "posts:read";
|
|
1929
|
-
"posts:write": "posts:write";
|
|
1930
|
-
"posts:schedule": "posts:schedule";
|
|
1931
|
-
"posts:publish": "posts:publish";
|
|
1932
|
-
"integrations:read": "integrations:read";
|
|
1933
|
-
"calendar:read": "calendar:read";
|
|
1934
|
-
"seo:read": "seo:read";
|
|
1935
|
-
"blog:read": "blog:read";
|
|
1936
|
-
"blog:write": "blog:write";
|
|
1937
|
-
"blog:manage": "blog:manage";
|
|
1938
|
-
"blog:approve": "blog:approve";
|
|
1939
|
-
"blog:publish": "blog:publish";
|
|
1940
|
-
}>>;
|
|
1941
|
-
}, z.core.$strip>;
|
|
1942
|
-
meta: z.ZodObject<{
|
|
1943
|
-
requestId: z.ZodString;
|
|
1944
|
-
}, z.core.$strip>;
|
|
1945
|
-
}, z.core.$strip>;
|
|
1946
|
-
type CliAuthorizationExchangeResponse = z.infer<typeof CliAuthorizationExchangeResponseSchema>;
|
|
1947
|
-
declare const CliAuthorizationRevokeDataSchema: z.ZodObject<{
|
|
1948
|
-
revoked: z.ZodLiteral<true>;
|
|
1949
|
-
}, z.core.$strip>;
|
|
1950
|
-
declare const CliAuthorizationRevokeResponseSchema: z.ZodObject<{
|
|
1951
|
-
data: z.ZodObject<{
|
|
1952
|
-
revoked: z.ZodLiteral<true>;
|
|
1953
|
-
}, z.core.$strip>;
|
|
1954
|
-
meta: z.ZodObject<{
|
|
1955
|
-
requestId: z.ZodString;
|
|
1956
|
-
}, z.core.$strip>;
|
|
1957
|
-
}, z.core.$strip>;
|
|
1958
|
-
type CliAuthorizationRevokeResponse = z.infer<typeof CliAuthorizationRevokeResponseSchema>;
|
|
1959
2697
|
declare const CapabilitiesDataSchema: z.ZodObject<{
|
|
1960
2698
|
capabilities: z.ZodArray<z.ZodObject<{
|
|
1961
2699
|
id: z.ZodEnum<{
|
|
@@ -1969,6 +2707,9 @@ declare const CapabilitiesDataSchema: z.ZodObject<{
|
|
|
1969
2707
|
"integrations:read": "integrations:read";
|
|
1970
2708
|
"calendar:read": "calendar:read";
|
|
1971
2709
|
"seo:read": "seo:read";
|
|
2710
|
+
"backlinks:read": "backlinks:read";
|
|
2711
|
+
"backlinks:write": "backlinks:write";
|
|
2712
|
+
"backlinks:contacts": "backlinks:contacts";
|
|
1972
2713
|
"blog:read": "blog:read";
|
|
1973
2714
|
"blog:write": "blog:write";
|
|
1974
2715
|
"blog:manage": "blog:manage";
|
|
@@ -1998,6 +2739,9 @@ declare const CapabilitiesResponseSchema: z.ZodObject<{
|
|
|
1998
2739
|
"integrations:read": "integrations:read";
|
|
1999
2740
|
"calendar:read": "calendar:read";
|
|
2000
2741
|
"seo:read": "seo:read";
|
|
2742
|
+
"backlinks:read": "backlinks:read";
|
|
2743
|
+
"backlinks:write": "backlinks:write";
|
|
2744
|
+
"backlinks:contacts": "backlinks:contacts";
|
|
2001
2745
|
"blog:read": "blog:read";
|
|
2002
2746
|
"blog:write": "blog:write";
|
|
2003
2747
|
"blog:manage": "blog:manage";
|
|
@@ -2172,23 +2916,23 @@ declare const ProjectResponseSchema: z.ZodObject<{
|
|
|
2172
2916
|
}, z.core.$strip>;
|
|
2173
2917
|
type ProjectResponse = z.infer<typeof ProjectResponseSchema>;
|
|
2174
2918
|
declare const PostStatusSchema: z.ZodEnum<{
|
|
2175
|
-
FAILED: "FAILED";
|
|
2176
2919
|
SCHEDULED: "SCHEDULED";
|
|
2920
|
+
FAILED: "FAILED";
|
|
2921
|
+
PUBLISHED: "PUBLISHED";
|
|
2177
2922
|
DRAFT: "DRAFT";
|
|
2178
2923
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
2179
2924
|
PUBLISHING: "PUBLISHING";
|
|
2180
|
-
PUBLISHED: "PUBLISHED";
|
|
2181
2925
|
PARTIALLY_PUBLISHED: "PARTIALLY_PUBLISHED";
|
|
2182
2926
|
}>;
|
|
2183
2927
|
type PostStatus = z.infer<typeof PostStatusSchema>;
|
|
2184
2928
|
declare const PlatformPostStatusSchema: z.ZodEnum<{
|
|
2185
|
-
|
|
2929
|
+
PREPARING: "PREPARING";
|
|
2186
2930
|
SCHEDULED: "SCHEDULED";
|
|
2931
|
+
FAILED: "FAILED";
|
|
2932
|
+
PUBLISHED: "PUBLISHED";
|
|
2187
2933
|
DRAFT: "DRAFT";
|
|
2188
2934
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
2189
2935
|
PUBLISHING: "PUBLISHING";
|
|
2190
|
-
PUBLISHED: "PUBLISHED";
|
|
2191
|
-
PREPARING: "PREPARING";
|
|
2192
2936
|
}>;
|
|
2193
2937
|
declare const PostMediaSchema: z.ZodObject<{
|
|
2194
2938
|
id: z.ZodString;
|
|
@@ -2348,6 +3092,7 @@ declare const PublishingProviderSchema: z.ZodEnum<{
|
|
|
2348
3092
|
YOUTUBE: "YOUTUBE";
|
|
2349
3093
|
BLUESKY: "BLUESKY";
|
|
2350
3094
|
LINKEDIN: "LINKEDIN";
|
|
3095
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
2351
3096
|
}>;
|
|
2352
3097
|
type PublishingProvider = z.infer<typeof PublishingProviderSchema>;
|
|
2353
3098
|
declare const PUBLISHING_PROVIDER_COUNT: number;
|
|
@@ -2357,13 +3102,13 @@ declare const PostDeliveryModeSchema: z.ZodEnum<{
|
|
|
2357
3102
|
}>;
|
|
2358
3103
|
type PostDeliveryMode = z.infer<typeof PostDeliveryModeSchema>;
|
|
2359
3104
|
declare const PostDestinationStageSchema: z.ZodEnum<{
|
|
2360
|
-
QUEUED: "QUEUED";
|
|
2361
|
-
FAILED: "FAILED";
|
|
2362
3105
|
SCHEDULED: "SCHEDULED";
|
|
3106
|
+
FAILED: "FAILED";
|
|
3107
|
+
QUEUED: "QUEUED";
|
|
3108
|
+
PUBLISHED: "PUBLISHED";
|
|
2363
3109
|
DRAFT: "DRAFT";
|
|
2364
3110
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
2365
3111
|
PUBLISHING: "PUBLISHING";
|
|
2366
|
-
PUBLISHED: "PUBLISHED";
|
|
2367
3112
|
UPLOADING: "UPLOADING";
|
|
2368
3113
|
PROCESSING: "PROCESSING";
|
|
2369
3114
|
CONFIRMING_SCHEDULE: "CONFIRMING_SCHEDULE";
|
|
@@ -2376,28 +3121,29 @@ declare const PostDestinationSchema: z.ZodObject<{
|
|
|
2376
3121
|
YOUTUBE: "YOUTUBE";
|
|
2377
3122
|
BLUESKY: "BLUESKY";
|
|
2378
3123
|
LINKEDIN: "LINKEDIN";
|
|
3124
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
2379
3125
|
}>;
|
|
2380
3126
|
status: z.ZodEnum<{
|
|
2381
|
-
|
|
3127
|
+
PREPARING: "PREPARING";
|
|
2382
3128
|
SCHEDULED: "SCHEDULED";
|
|
3129
|
+
FAILED: "FAILED";
|
|
3130
|
+
PUBLISHED: "PUBLISHED";
|
|
2383
3131
|
DRAFT: "DRAFT";
|
|
2384
3132
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
2385
3133
|
PUBLISHING: "PUBLISHING";
|
|
2386
|
-
PUBLISHED: "PUBLISHED";
|
|
2387
|
-
PREPARING: "PREPARING";
|
|
2388
3134
|
}>;
|
|
2389
3135
|
deliveryMode: z.ZodEnum<{
|
|
2390
3136
|
SCHEDULED: "SCHEDULED";
|
|
2391
3137
|
IMMEDIATE: "IMMEDIATE";
|
|
2392
3138
|
}>;
|
|
2393
3139
|
stage: z.ZodEnum<{
|
|
2394
|
-
QUEUED: "QUEUED";
|
|
2395
|
-
FAILED: "FAILED";
|
|
2396
3140
|
SCHEDULED: "SCHEDULED";
|
|
3141
|
+
FAILED: "FAILED";
|
|
3142
|
+
QUEUED: "QUEUED";
|
|
3143
|
+
PUBLISHED: "PUBLISHED";
|
|
2397
3144
|
DRAFT: "DRAFT";
|
|
2398
3145
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
2399
3146
|
PUBLISHING: "PUBLISHING";
|
|
2400
|
-
PUBLISHED: "PUBLISHED";
|
|
2401
3147
|
UPLOADING: "UPLOADING";
|
|
2402
3148
|
PROCESSING: "PROCESSING";
|
|
2403
3149
|
CONFIRMING_SCHEDULE: "CONFIRMING_SCHEDULE";
|
|
@@ -2526,12 +3272,12 @@ declare const PostSchema: z.ZodObject<{
|
|
|
2526
3272
|
}, z.core.$strip>>;
|
|
2527
3273
|
caption: z.ZodString;
|
|
2528
3274
|
status: z.ZodEnum<{
|
|
2529
|
-
FAILED: "FAILED";
|
|
2530
3275
|
SCHEDULED: "SCHEDULED";
|
|
3276
|
+
FAILED: "FAILED";
|
|
3277
|
+
PUBLISHED: "PUBLISHED";
|
|
2531
3278
|
DRAFT: "DRAFT";
|
|
2532
3279
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
2533
3280
|
PUBLISHING: "PUBLISHING";
|
|
2534
|
-
PUBLISHED: "PUBLISHED";
|
|
2535
3281
|
PARTIALLY_PUBLISHED: "PARTIALLY_PUBLISHED";
|
|
2536
3282
|
}>;
|
|
2537
3283
|
scheduledAt: z.ZodNullable<z.ZodString>;
|
|
@@ -2563,28 +3309,29 @@ declare const PostSchema: z.ZodObject<{
|
|
|
2563
3309
|
YOUTUBE: "YOUTUBE";
|
|
2564
3310
|
BLUESKY: "BLUESKY";
|
|
2565
3311
|
LINKEDIN: "LINKEDIN";
|
|
3312
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
2566
3313
|
}>;
|
|
2567
3314
|
status: z.ZodEnum<{
|
|
2568
|
-
|
|
3315
|
+
PREPARING: "PREPARING";
|
|
2569
3316
|
SCHEDULED: "SCHEDULED";
|
|
3317
|
+
FAILED: "FAILED";
|
|
3318
|
+
PUBLISHED: "PUBLISHED";
|
|
2570
3319
|
DRAFT: "DRAFT";
|
|
2571
3320
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
2572
3321
|
PUBLISHING: "PUBLISHING";
|
|
2573
|
-
PUBLISHED: "PUBLISHED";
|
|
2574
|
-
PREPARING: "PREPARING";
|
|
2575
3322
|
}>;
|
|
2576
3323
|
deliveryMode: z.ZodEnum<{
|
|
2577
3324
|
SCHEDULED: "SCHEDULED";
|
|
2578
3325
|
IMMEDIATE: "IMMEDIATE";
|
|
2579
3326
|
}>;
|
|
2580
3327
|
stage: z.ZodEnum<{
|
|
2581
|
-
QUEUED: "QUEUED";
|
|
2582
|
-
FAILED: "FAILED";
|
|
2583
3328
|
SCHEDULED: "SCHEDULED";
|
|
3329
|
+
FAILED: "FAILED";
|
|
3330
|
+
QUEUED: "QUEUED";
|
|
3331
|
+
PUBLISHED: "PUBLISHED";
|
|
2584
3332
|
DRAFT: "DRAFT";
|
|
2585
3333
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
2586
3334
|
PUBLISHING: "PUBLISHING";
|
|
2587
|
-
PUBLISHED: "PUBLISHED";
|
|
2588
3335
|
UPLOADING: "UPLOADING";
|
|
2589
3336
|
PROCESSING: "PROCESSING";
|
|
2590
3337
|
CONFIRMING_SCHEDULE: "CONFIRMING_SCHEDULE";
|
|
@@ -2632,12 +3379,12 @@ declare const PostListQuerySchema: z.ZodObject<{
|
|
|
2632
3379
|
limit: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
2633
3380
|
cursor: z.ZodOptional<z.ZodString>;
|
|
2634
3381
|
status: z.ZodOptional<z.ZodEnum<{
|
|
2635
|
-
FAILED: "FAILED";
|
|
2636
3382
|
SCHEDULED: "SCHEDULED";
|
|
3383
|
+
FAILED: "FAILED";
|
|
3384
|
+
PUBLISHED: "PUBLISHED";
|
|
2637
3385
|
DRAFT: "DRAFT";
|
|
2638
3386
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
2639
3387
|
PUBLISHING: "PUBLISHING";
|
|
2640
|
-
PUBLISHED: "PUBLISHED";
|
|
2641
3388
|
PARTIALLY_PUBLISHED: "PARTIALLY_PUBLISHED";
|
|
2642
3389
|
}>>;
|
|
2643
3390
|
}, z.core.$strip>;
|
|
@@ -2653,12 +3400,12 @@ declare const PostListDataSchema: z.ZodObject<{
|
|
|
2653
3400
|
}, z.core.$strip>>;
|
|
2654
3401
|
caption: z.ZodString;
|
|
2655
3402
|
status: z.ZodEnum<{
|
|
2656
|
-
FAILED: "FAILED";
|
|
2657
3403
|
SCHEDULED: "SCHEDULED";
|
|
3404
|
+
FAILED: "FAILED";
|
|
3405
|
+
PUBLISHED: "PUBLISHED";
|
|
2658
3406
|
DRAFT: "DRAFT";
|
|
2659
3407
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
2660
3408
|
PUBLISHING: "PUBLISHING";
|
|
2661
|
-
PUBLISHED: "PUBLISHED";
|
|
2662
3409
|
PARTIALLY_PUBLISHED: "PARTIALLY_PUBLISHED";
|
|
2663
3410
|
}>;
|
|
2664
3411
|
scheduledAt: z.ZodNullable<z.ZodString>;
|
|
@@ -2690,28 +3437,29 @@ declare const PostListDataSchema: z.ZodObject<{
|
|
|
2690
3437
|
YOUTUBE: "YOUTUBE";
|
|
2691
3438
|
BLUESKY: "BLUESKY";
|
|
2692
3439
|
LINKEDIN: "LINKEDIN";
|
|
3440
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
2693
3441
|
}>;
|
|
2694
3442
|
status: z.ZodEnum<{
|
|
2695
|
-
|
|
3443
|
+
PREPARING: "PREPARING";
|
|
2696
3444
|
SCHEDULED: "SCHEDULED";
|
|
3445
|
+
FAILED: "FAILED";
|
|
3446
|
+
PUBLISHED: "PUBLISHED";
|
|
2697
3447
|
DRAFT: "DRAFT";
|
|
2698
3448
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
2699
3449
|
PUBLISHING: "PUBLISHING";
|
|
2700
|
-
PUBLISHED: "PUBLISHED";
|
|
2701
|
-
PREPARING: "PREPARING";
|
|
2702
3450
|
}>;
|
|
2703
3451
|
deliveryMode: z.ZodEnum<{
|
|
2704
3452
|
SCHEDULED: "SCHEDULED";
|
|
2705
3453
|
IMMEDIATE: "IMMEDIATE";
|
|
2706
3454
|
}>;
|
|
2707
3455
|
stage: z.ZodEnum<{
|
|
2708
|
-
QUEUED: "QUEUED";
|
|
2709
|
-
FAILED: "FAILED";
|
|
2710
3456
|
SCHEDULED: "SCHEDULED";
|
|
3457
|
+
FAILED: "FAILED";
|
|
3458
|
+
QUEUED: "QUEUED";
|
|
3459
|
+
PUBLISHED: "PUBLISHED";
|
|
2711
3460
|
DRAFT: "DRAFT";
|
|
2712
3461
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
2713
3462
|
PUBLISHING: "PUBLISHING";
|
|
2714
|
-
PUBLISHED: "PUBLISHED";
|
|
2715
3463
|
UPLOADING: "UPLOADING";
|
|
2716
3464
|
PROCESSING: "PROCESSING";
|
|
2717
3465
|
CONFIRMING_SCHEDULE: "CONFIRMING_SCHEDULE";
|
|
@@ -2772,12 +3520,12 @@ declare const PostListResponseSchema: z.ZodObject<{
|
|
|
2772
3520
|
}, z.core.$strip>>;
|
|
2773
3521
|
caption: z.ZodString;
|
|
2774
3522
|
status: z.ZodEnum<{
|
|
2775
|
-
FAILED: "FAILED";
|
|
2776
3523
|
SCHEDULED: "SCHEDULED";
|
|
3524
|
+
FAILED: "FAILED";
|
|
3525
|
+
PUBLISHED: "PUBLISHED";
|
|
2777
3526
|
DRAFT: "DRAFT";
|
|
2778
3527
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
2779
3528
|
PUBLISHING: "PUBLISHING";
|
|
2780
|
-
PUBLISHED: "PUBLISHED";
|
|
2781
3529
|
PARTIALLY_PUBLISHED: "PARTIALLY_PUBLISHED";
|
|
2782
3530
|
}>;
|
|
2783
3531
|
scheduledAt: z.ZodNullable<z.ZodString>;
|
|
@@ -2809,28 +3557,29 @@ declare const PostListResponseSchema: z.ZodObject<{
|
|
|
2809
3557
|
YOUTUBE: "YOUTUBE";
|
|
2810
3558
|
BLUESKY: "BLUESKY";
|
|
2811
3559
|
LINKEDIN: "LINKEDIN";
|
|
3560
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
2812
3561
|
}>;
|
|
2813
3562
|
status: z.ZodEnum<{
|
|
2814
|
-
|
|
3563
|
+
PREPARING: "PREPARING";
|
|
2815
3564
|
SCHEDULED: "SCHEDULED";
|
|
3565
|
+
FAILED: "FAILED";
|
|
3566
|
+
PUBLISHED: "PUBLISHED";
|
|
2816
3567
|
DRAFT: "DRAFT";
|
|
2817
3568
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
2818
3569
|
PUBLISHING: "PUBLISHING";
|
|
2819
|
-
PUBLISHED: "PUBLISHED";
|
|
2820
|
-
PREPARING: "PREPARING";
|
|
2821
3570
|
}>;
|
|
2822
3571
|
deliveryMode: z.ZodEnum<{
|
|
2823
3572
|
SCHEDULED: "SCHEDULED";
|
|
2824
3573
|
IMMEDIATE: "IMMEDIATE";
|
|
2825
3574
|
}>;
|
|
2826
3575
|
stage: z.ZodEnum<{
|
|
2827
|
-
QUEUED: "QUEUED";
|
|
2828
|
-
FAILED: "FAILED";
|
|
2829
3576
|
SCHEDULED: "SCHEDULED";
|
|
3577
|
+
FAILED: "FAILED";
|
|
3578
|
+
QUEUED: "QUEUED";
|
|
3579
|
+
PUBLISHED: "PUBLISHED";
|
|
2830
3580
|
DRAFT: "DRAFT";
|
|
2831
3581
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
2832
3582
|
PUBLISHING: "PUBLISHING";
|
|
2833
|
-
PUBLISHED: "PUBLISHED";
|
|
2834
3583
|
UPLOADING: "UPLOADING";
|
|
2835
3584
|
PROCESSING: "PROCESSING";
|
|
2836
3585
|
CONFIRMING_SCHEDULE: "CONFIRMING_SCHEDULE";
|
|
@@ -2894,12 +3643,12 @@ declare const PostResponseSchema: z.ZodObject<{
|
|
|
2894
3643
|
}, z.core.$strip>>;
|
|
2895
3644
|
caption: z.ZodString;
|
|
2896
3645
|
status: z.ZodEnum<{
|
|
2897
|
-
FAILED: "FAILED";
|
|
2898
3646
|
SCHEDULED: "SCHEDULED";
|
|
3647
|
+
FAILED: "FAILED";
|
|
3648
|
+
PUBLISHED: "PUBLISHED";
|
|
2899
3649
|
DRAFT: "DRAFT";
|
|
2900
3650
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
2901
3651
|
PUBLISHING: "PUBLISHING";
|
|
2902
|
-
PUBLISHED: "PUBLISHED";
|
|
2903
3652
|
PARTIALLY_PUBLISHED: "PARTIALLY_PUBLISHED";
|
|
2904
3653
|
}>;
|
|
2905
3654
|
scheduledAt: z.ZodNullable<z.ZodString>;
|
|
@@ -2931,28 +3680,29 @@ declare const PostResponseSchema: z.ZodObject<{
|
|
|
2931
3680
|
YOUTUBE: "YOUTUBE";
|
|
2932
3681
|
BLUESKY: "BLUESKY";
|
|
2933
3682
|
LINKEDIN: "LINKEDIN";
|
|
3683
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
2934
3684
|
}>;
|
|
2935
3685
|
status: z.ZodEnum<{
|
|
2936
|
-
|
|
3686
|
+
PREPARING: "PREPARING";
|
|
2937
3687
|
SCHEDULED: "SCHEDULED";
|
|
3688
|
+
FAILED: "FAILED";
|
|
3689
|
+
PUBLISHED: "PUBLISHED";
|
|
2938
3690
|
DRAFT: "DRAFT";
|
|
2939
3691
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
2940
3692
|
PUBLISHING: "PUBLISHING";
|
|
2941
|
-
PUBLISHED: "PUBLISHED";
|
|
2942
|
-
PREPARING: "PREPARING";
|
|
2943
3693
|
}>;
|
|
2944
3694
|
deliveryMode: z.ZodEnum<{
|
|
2945
3695
|
SCHEDULED: "SCHEDULED";
|
|
2946
3696
|
IMMEDIATE: "IMMEDIATE";
|
|
2947
3697
|
}>;
|
|
2948
3698
|
stage: z.ZodEnum<{
|
|
2949
|
-
QUEUED: "QUEUED";
|
|
2950
|
-
FAILED: "FAILED";
|
|
2951
3699
|
SCHEDULED: "SCHEDULED";
|
|
3700
|
+
FAILED: "FAILED";
|
|
3701
|
+
QUEUED: "QUEUED";
|
|
3702
|
+
PUBLISHED: "PUBLISHED";
|
|
2952
3703
|
DRAFT: "DRAFT";
|
|
2953
3704
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
2954
3705
|
PUBLISHING: "PUBLISHING";
|
|
2955
|
-
PUBLISHED: "PUBLISHED";
|
|
2956
3706
|
UPLOADING: "UPLOADING";
|
|
2957
3707
|
PROCESSING: "PROCESSING";
|
|
2958
3708
|
CONFIRMING_SCHEDULE: "CONFIRMING_SCHEDULE";
|
|
@@ -3008,6 +3758,7 @@ declare const DraftPostInputSchema: z.ZodObject<{
|
|
|
3008
3758
|
YOUTUBE: "YOUTUBE";
|
|
3009
3759
|
BLUESKY: "BLUESKY";
|
|
3010
3760
|
LINKEDIN: "LINKEDIN";
|
|
3761
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3011
3762
|
}>>>;
|
|
3012
3763
|
mediaAssetIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
3013
3764
|
captionOverrides: z.ZodDefault<z.ZodObject<{
|
|
@@ -3016,6 +3767,7 @@ declare const DraftPostInputSchema: z.ZodObject<{
|
|
|
3016
3767
|
YOUTUBE: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3017
3768
|
BLUESKY: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3018
3769
|
LINKEDIN: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3770
|
+
GOOGLE_BUSINESS_PROFILE: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3019
3771
|
}, z.core.$strict>>;
|
|
3020
3772
|
tiktokSettings: z.ZodDefault<z.ZodNullable<z.ZodPipe<z.ZodObject<{
|
|
3021
3773
|
postMode: z.ZodOptional<z.ZodEnum<{
|
|
@@ -3083,6 +3835,7 @@ declare const DraftPostUpdateInputSchema: z.ZodObject<{
|
|
|
3083
3835
|
YOUTUBE: "YOUTUBE";
|
|
3084
3836
|
BLUESKY: "BLUESKY";
|
|
3085
3837
|
LINKEDIN: "LINKEDIN";
|
|
3838
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3086
3839
|
}>>>;
|
|
3087
3840
|
mediaAssetIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3088
3841
|
captionOverrides: z.ZodOptional<z.ZodObject<{
|
|
@@ -3091,6 +3844,7 @@ declare const DraftPostUpdateInputSchema: z.ZodObject<{
|
|
|
3091
3844
|
YOUTUBE: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3092
3845
|
BLUESKY: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3093
3846
|
LINKEDIN: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3847
|
+
GOOGLE_BUSINESS_PROFILE: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3094
3848
|
}, z.core.$strict>>;
|
|
3095
3849
|
tiktokSettings: z.ZodOptional<z.ZodNullable<z.ZodPipe<z.ZodObject<{
|
|
3096
3850
|
postMode: z.ZodOptional<z.ZodEnum<{
|
|
@@ -3151,8 +3905,8 @@ declare const DraftPostUpdateInputSchema: z.ZodObject<{
|
|
|
3151
3905
|
type DraftPostUpdateInput = z.input<typeof DraftPostUpdateInputSchema>;
|
|
3152
3906
|
type DraftPostUpdateData = z.infer<typeof DraftPostUpdateInputSchema>;
|
|
3153
3907
|
declare const IntegrationConnectionStatusSchema: z.ZodEnum<{
|
|
3154
|
-
PENDING: "PENDING";
|
|
3155
3908
|
CONNECTED: "CONNECTED";
|
|
3909
|
+
PENDING: "PENDING";
|
|
3156
3910
|
ERROR: "ERROR";
|
|
3157
3911
|
EXPIRED: "EXPIRED";
|
|
3158
3912
|
DISCONNECTED: "DISCONNECTED";
|
|
@@ -3169,10 +3923,11 @@ declare const IntegrationHealthSchema: z.ZodObject<{
|
|
|
3169
3923
|
YOUTUBE: "YOUTUBE";
|
|
3170
3924
|
BLUESKY: "BLUESKY";
|
|
3171
3925
|
LINKEDIN: "LINKEDIN";
|
|
3926
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3172
3927
|
}>;
|
|
3173
3928
|
connectionStatus: z.ZodEnum<{
|
|
3174
|
-
PENDING: "PENDING";
|
|
3175
3929
|
CONNECTED: "CONNECTED";
|
|
3930
|
+
PENDING: "PENDING";
|
|
3176
3931
|
ERROR: "ERROR";
|
|
3177
3932
|
EXPIRED: "EXPIRED";
|
|
3178
3933
|
DISCONNECTED: "DISCONNECTED";
|
|
@@ -3208,10 +3963,11 @@ declare const IntegrationHealthListDataSchema: z.ZodObject<{
|
|
|
3208
3963
|
YOUTUBE: "YOUTUBE";
|
|
3209
3964
|
BLUESKY: "BLUESKY";
|
|
3210
3965
|
LINKEDIN: "LINKEDIN";
|
|
3966
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3211
3967
|
}>;
|
|
3212
3968
|
connectionStatus: z.ZodEnum<{
|
|
3213
|
-
PENDING: "PENDING";
|
|
3214
3969
|
CONNECTED: "CONNECTED";
|
|
3970
|
+
PENDING: "PENDING";
|
|
3215
3971
|
ERROR: "ERROR";
|
|
3216
3972
|
EXPIRED: "EXPIRED";
|
|
3217
3973
|
DISCONNECTED: "DISCONNECTED";
|
|
@@ -3249,10 +4005,11 @@ declare const IntegrationHealthListResponseSchema: z.ZodObject<{
|
|
|
3249
4005
|
YOUTUBE: "YOUTUBE";
|
|
3250
4006
|
BLUESKY: "BLUESKY";
|
|
3251
4007
|
LINKEDIN: "LINKEDIN";
|
|
4008
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3252
4009
|
}>;
|
|
3253
4010
|
connectionStatus: z.ZodEnum<{
|
|
3254
|
-
PENDING: "PENDING";
|
|
3255
4011
|
CONNECTED: "CONNECTED";
|
|
4012
|
+
PENDING: "PENDING";
|
|
3256
4013
|
ERROR: "ERROR";
|
|
3257
4014
|
EXPIRED: "EXPIRED";
|
|
3258
4015
|
DISCONNECTED: "DISCONNECTED";
|
|
@@ -3531,6 +4288,7 @@ declare const ReadinessActionSchema: z.ZodObject<{
|
|
|
3531
4288
|
YOUTUBE: "YOUTUBE";
|
|
3532
4289
|
BLUESKY: "BLUESKY";
|
|
3533
4290
|
LINKEDIN: "LINKEDIN";
|
|
4291
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3534
4292
|
}>>;
|
|
3535
4293
|
mediaId: z.ZodOptional<z.ZodString>;
|
|
3536
4294
|
}, z.core.$strip>;
|
|
@@ -3555,6 +4313,7 @@ declare const PostReadinessCheckSchema: z.ZodObject<{
|
|
|
3555
4313
|
YOUTUBE: "YOUTUBE";
|
|
3556
4314
|
BLUESKY: "BLUESKY";
|
|
3557
4315
|
LINKEDIN: "LINKEDIN";
|
|
4316
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3558
4317
|
}>>;
|
|
3559
4318
|
mediaId: z.ZodOptional<z.ZodString>;
|
|
3560
4319
|
status: z.ZodEnum<{
|
|
@@ -3586,6 +4345,7 @@ declare const PostReadinessCheckSchema: z.ZodObject<{
|
|
|
3586
4345
|
YOUTUBE: "YOUTUBE";
|
|
3587
4346
|
BLUESKY: "BLUESKY";
|
|
3588
4347
|
LINKEDIN: "LINKEDIN";
|
|
4348
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3589
4349
|
}>>;
|
|
3590
4350
|
mediaId: z.ZodOptional<z.ZodString>;
|
|
3591
4351
|
}, z.core.$strip>>;
|
|
@@ -3612,6 +4372,7 @@ declare const PostReadinessSchema: z.ZodObject<{
|
|
|
3612
4372
|
YOUTUBE: "YOUTUBE";
|
|
3613
4373
|
BLUESKY: "BLUESKY";
|
|
3614
4374
|
LINKEDIN: "LINKEDIN";
|
|
4375
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3615
4376
|
}>>;
|
|
3616
4377
|
mediaId: z.ZodOptional<z.ZodString>;
|
|
3617
4378
|
status: z.ZodEnum<{
|
|
@@ -3643,6 +4404,7 @@ declare const PostReadinessSchema: z.ZodObject<{
|
|
|
3643
4404
|
YOUTUBE: "YOUTUBE";
|
|
3644
4405
|
BLUESKY: "BLUESKY";
|
|
3645
4406
|
LINKEDIN: "LINKEDIN";
|
|
4407
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3646
4408
|
}>>;
|
|
3647
4409
|
mediaId: z.ZodOptional<z.ZodString>;
|
|
3648
4410
|
}, z.core.$strip>>;
|
|
@@ -3654,6 +4416,7 @@ declare const PostReadinessSchema: z.ZodObject<{
|
|
|
3654
4416
|
YOUTUBE: "YOUTUBE";
|
|
3655
4417
|
BLUESKY: "BLUESKY";
|
|
3656
4418
|
LINKEDIN: "LINKEDIN";
|
|
4419
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3657
4420
|
}>;
|
|
3658
4421
|
connected: z.ZodBoolean;
|
|
3659
4422
|
username: z.ZodNullable<z.ZodString>;
|
|
@@ -3667,6 +4430,7 @@ declare const PostReadinessSchema: z.ZodObject<{
|
|
|
3667
4430
|
YOUTUBE: "YOUTUBE";
|
|
3668
4431
|
BLUESKY: "BLUESKY";
|
|
3669
4432
|
LINKEDIN: "LINKEDIN";
|
|
4433
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3670
4434
|
}>>;
|
|
3671
4435
|
liveHealthCheckedAt: z.ZodNullable<z.ZodString>;
|
|
3672
4436
|
}, z.core.$strip>;
|
|
@@ -3694,6 +4458,7 @@ declare const PostReadinessResponseSchema: z.ZodObject<{
|
|
|
3694
4458
|
YOUTUBE: "YOUTUBE";
|
|
3695
4459
|
BLUESKY: "BLUESKY";
|
|
3696
4460
|
LINKEDIN: "LINKEDIN";
|
|
4461
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3697
4462
|
}>>;
|
|
3698
4463
|
mediaId: z.ZodOptional<z.ZodString>;
|
|
3699
4464
|
status: z.ZodEnum<{
|
|
@@ -3725,6 +4490,7 @@ declare const PostReadinessResponseSchema: z.ZodObject<{
|
|
|
3725
4490
|
YOUTUBE: "YOUTUBE";
|
|
3726
4491
|
BLUESKY: "BLUESKY";
|
|
3727
4492
|
LINKEDIN: "LINKEDIN";
|
|
4493
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3728
4494
|
}>>;
|
|
3729
4495
|
mediaId: z.ZodOptional<z.ZodString>;
|
|
3730
4496
|
}, z.core.$strip>>;
|
|
@@ -3736,6 +4502,7 @@ declare const PostReadinessResponseSchema: z.ZodObject<{
|
|
|
3736
4502
|
YOUTUBE: "YOUTUBE";
|
|
3737
4503
|
BLUESKY: "BLUESKY";
|
|
3738
4504
|
LINKEDIN: "LINKEDIN";
|
|
4505
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3739
4506
|
}>;
|
|
3740
4507
|
connected: z.ZodBoolean;
|
|
3741
4508
|
username: z.ZodNullable<z.ZodString>;
|
|
@@ -3749,6 +4516,7 @@ declare const PostReadinessResponseSchema: z.ZodObject<{
|
|
|
3749
4516
|
YOUTUBE: "YOUTUBE";
|
|
3750
4517
|
BLUESKY: "BLUESKY";
|
|
3751
4518
|
LINKEDIN: "LINKEDIN";
|
|
4519
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3752
4520
|
}>>;
|
|
3753
4521
|
liveHealthCheckedAt: z.ZodNullable<z.ZodString>;
|
|
3754
4522
|
}, z.core.$strip>;
|
|
@@ -3775,12 +4543,12 @@ declare const PostSchedulePreviewSchema: z.ZodObject<{
|
|
|
3775
4543
|
projectId: z.ZodString;
|
|
3776
4544
|
version: z.ZodNumber;
|
|
3777
4545
|
status: z.ZodEnum<{
|
|
3778
|
-
FAILED: "FAILED";
|
|
3779
4546
|
SCHEDULED: "SCHEDULED";
|
|
4547
|
+
FAILED: "FAILED";
|
|
4548
|
+
PUBLISHED: "PUBLISHED";
|
|
3780
4549
|
DRAFT: "DRAFT";
|
|
3781
4550
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
3782
4551
|
PUBLISHING: "PUBLISHING";
|
|
3783
|
-
PUBLISHED: "PUBLISHED";
|
|
3784
4552
|
PARTIALLY_PUBLISHED: "PARTIALLY_PUBLISHED";
|
|
3785
4553
|
}>;
|
|
3786
4554
|
}, z.core.$strip>;
|
|
@@ -3794,6 +4562,7 @@ declare const PostSchedulePreviewSchema: z.ZodObject<{
|
|
|
3794
4562
|
YOUTUBE: "YOUTUBE";
|
|
3795
4563
|
BLUESKY: "BLUESKY";
|
|
3796
4564
|
LINKEDIN: "LINKEDIN";
|
|
4565
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3797
4566
|
}>>;
|
|
3798
4567
|
youtube: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
3799
4568
|
uploadVisibility: z.ZodLiteral<"PRIVATE">;
|
|
@@ -3828,6 +4597,7 @@ declare const PostSchedulePreviewSchema: z.ZodObject<{
|
|
|
3828
4597
|
YOUTUBE: "YOUTUBE";
|
|
3829
4598
|
BLUESKY: "BLUESKY";
|
|
3830
4599
|
LINKEDIN: "LINKEDIN";
|
|
4600
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3831
4601
|
}>>;
|
|
3832
4602
|
mediaId: z.ZodOptional<z.ZodString>;
|
|
3833
4603
|
status: z.ZodEnum<{
|
|
@@ -3859,6 +4629,7 @@ declare const PostSchedulePreviewSchema: z.ZodObject<{
|
|
|
3859
4629
|
YOUTUBE: "YOUTUBE";
|
|
3860
4630
|
BLUESKY: "BLUESKY";
|
|
3861
4631
|
LINKEDIN: "LINKEDIN";
|
|
4632
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3862
4633
|
}>>;
|
|
3863
4634
|
mediaId: z.ZodOptional<z.ZodString>;
|
|
3864
4635
|
}, z.core.$strip>>;
|
|
@@ -3870,6 +4641,7 @@ declare const PostSchedulePreviewSchema: z.ZodObject<{
|
|
|
3870
4641
|
YOUTUBE: "YOUTUBE";
|
|
3871
4642
|
BLUESKY: "BLUESKY";
|
|
3872
4643
|
LINKEDIN: "LINKEDIN";
|
|
4644
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3873
4645
|
}>;
|
|
3874
4646
|
connected: z.ZodBoolean;
|
|
3875
4647
|
username: z.ZodNullable<z.ZodString>;
|
|
@@ -3883,6 +4655,7 @@ declare const PostSchedulePreviewSchema: z.ZodObject<{
|
|
|
3883
4655
|
YOUTUBE: "YOUTUBE";
|
|
3884
4656
|
BLUESKY: "BLUESKY";
|
|
3885
4657
|
LINKEDIN: "LINKEDIN";
|
|
4658
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3886
4659
|
}>>;
|
|
3887
4660
|
liveHealthCheckedAt: z.ZodNullable<z.ZodString>;
|
|
3888
4661
|
}, z.core.$strip>;
|
|
@@ -3901,12 +4674,12 @@ declare const PostSchedulePreviewResponseSchema: z.ZodObject<{
|
|
|
3901
4674
|
projectId: z.ZodString;
|
|
3902
4675
|
version: z.ZodNumber;
|
|
3903
4676
|
status: z.ZodEnum<{
|
|
3904
|
-
FAILED: "FAILED";
|
|
3905
4677
|
SCHEDULED: "SCHEDULED";
|
|
4678
|
+
FAILED: "FAILED";
|
|
4679
|
+
PUBLISHED: "PUBLISHED";
|
|
3906
4680
|
DRAFT: "DRAFT";
|
|
3907
4681
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
3908
4682
|
PUBLISHING: "PUBLISHING";
|
|
3909
|
-
PUBLISHED: "PUBLISHED";
|
|
3910
4683
|
PARTIALLY_PUBLISHED: "PARTIALLY_PUBLISHED";
|
|
3911
4684
|
}>;
|
|
3912
4685
|
}, z.core.$strip>;
|
|
@@ -3920,6 +4693,7 @@ declare const PostSchedulePreviewResponseSchema: z.ZodObject<{
|
|
|
3920
4693
|
YOUTUBE: "YOUTUBE";
|
|
3921
4694
|
BLUESKY: "BLUESKY";
|
|
3922
4695
|
LINKEDIN: "LINKEDIN";
|
|
4696
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3923
4697
|
}>>;
|
|
3924
4698
|
youtube: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
3925
4699
|
uploadVisibility: z.ZodLiteral<"PRIVATE">;
|
|
@@ -3954,6 +4728,7 @@ declare const PostSchedulePreviewResponseSchema: z.ZodObject<{
|
|
|
3954
4728
|
YOUTUBE: "YOUTUBE";
|
|
3955
4729
|
BLUESKY: "BLUESKY";
|
|
3956
4730
|
LINKEDIN: "LINKEDIN";
|
|
4731
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3957
4732
|
}>>;
|
|
3958
4733
|
mediaId: z.ZodOptional<z.ZodString>;
|
|
3959
4734
|
status: z.ZodEnum<{
|
|
@@ -3985,6 +4760,7 @@ declare const PostSchedulePreviewResponseSchema: z.ZodObject<{
|
|
|
3985
4760
|
YOUTUBE: "YOUTUBE";
|
|
3986
4761
|
BLUESKY: "BLUESKY";
|
|
3987
4762
|
LINKEDIN: "LINKEDIN";
|
|
4763
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3988
4764
|
}>>;
|
|
3989
4765
|
mediaId: z.ZodOptional<z.ZodString>;
|
|
3990
4766
|
}, z.core.$strip>>;
|
|
@@ -3996,6 +4772,7 @@ declare const PostSchedulePreviewResponseSchema: z.ZodObject<{
|
|
|
3996
4772
|
YOUTUBE: "YOUTUBE";
|
|
3997
4773
|
BLUESKY: "BLUESKY";
|
|
3998
4774
|
LINKEDIN: "LINKEDIN";
|
|
4775
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3999
4776
|
}>;
|
|
4000
4777
|
connected: z.ZodBoolean;
|
|
4001
4778
|
username: z.ZodNullable<z.ZodString>;
|
|
@@ -4009,6 +4786,7 @@ declare const PostSchedulePreviewResponseSchema: z.ZodObject<{
|
|
|
4009
4786
|
YOUTUBE: "YOUTUBE";
|
|
4010
4787
|
BLUESKY: "BLUESKY";
|
|
4011
4788
|
LINKEDIN: "LINKEDIN";
|
|
4789
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
4012
4790
|
}>>;
|
|
4013
4791
|
liveHealthCheckedAt: z.ZodNullable<z.ZodString>;
|
|
4014
4792
|
}, z.core.$strip>;
|
|
@@ -4045,12 +4823,12 @@ declare const PostScheduleExecuteResultSchema: z.ZodUnion<readonly [z.ZodObject<
|
|
|
4045
4823
|
}, z.core.$strip>>;
|
|
4046
4824
|
caption: z.ZodString;
|
|
4047
4825
|
status: z.ZodEnum<{
|
|
4048
|
-
FAILED: "FAILED";
|
|
4049
4826
|
SCHEDULED: "SCHEDULED";
|
|
4827
|
+
FAILED: "FAILED";
|
|
4828
|
+
PUBLISHED: "PUBLISHED";
|
|
4050
4829
|
DRAFT: "DRAFT";
|
|
4051
4830
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
4052
4831
|
PUBLISHING: "PUBLISHING";
|
|
4053
|
-
PUBLISHED: "PUBLISHED";
|
|
4054
4832
|
PARTIALLY_PUBLISHED: "PARTIALLY_PUBLISHED";
|
|
4055
4833
|
}>;
|
|
4056
4834
|
scheduledAt: z.ZodNullable<z.ZodString>;
|
|
@@ -4082,28 +4860,29 @@ declare const PostScheduleExecuteResultSchema: z.ZodUnion<readonly [z.ZodObject<
|
|
|
4082
4860
|
YOUTUBE: "YOUTUBE";
|
|
4083
4861
|
BLUESKY: "BLUESKY";
|
|
4084
4862
|
LINKEDIN: "LINKEDIN";
|
|
4863
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
4085
4864
|
}>;
|
|
4086
4865
|
status: z.ZodEnum<{
|
|
4087
|
-
|
|
4866
|
+
PREPARING: "PREPARING";
|
|
4088
4867
|
SCHEDULED: "SCHEDULED";
|
|
4868
|
+
FAILED: "FAILED";
|
|
4869
|
+
PUBLISHED: "PUBLISHED";
|
|
4089
4870
|
DRAFT: "DRAFT";
|
|
4090
4871
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
4091
4872
|
PUBLISHING: "PUBLISHING";
|
|
4092
|
-
PUBLISHED: "PUBLISHED";
|
|
4093
|
-
PREPARING: "PREPARING";
|
|
4094
4873
|
}>;
|
|
4095
4874
|
deliveryMode: z.ZodEnum<{
|
|
4096
4875
|
SCHEDULED: "SCHEDULED";
|
|
4097
4876
|
IMMEDIATE: "IMMEDIATE";
|
|
4098
4877
|
}>;
|
|
4099
4878
|
stage: z.ZodEnum<{
|
|
4100
|
-
QUEUED: "QUEUED";
|
|
4101
|
-
FAILED: "FAILED";
|
|
4102
4879
|
SCHEDULED: "SCHEDULED";
|
|
4880
|
+
FAILED: "FAILED";
|
|
4881
|
+
QUEUED: "QUEUED";
|
|
4882
|
+
PUBLISHED: "PUBLISHED";
|
|
4103
4883
|
DRAFT: "DRAFT";
|
|
4104
4884
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
4105
4885
|
PUBLISHING: "PUBLISHING";
|
|
4106
|
-
PUBLISHED: "PUBLISHED";
|
|
4107
4886
|
UPLOADING: "UPLOADING";
|
|
4108
4887
|
PROCESSING: "PROCESSING";
|
|
4109
4888
|
CONFIRMING_SCHEDULE: "CONFIRMING_SCHEDULE";
|
|
@@ -4170,12 +4949,12 @@ declare const PostScheduleExecuteResponseSchema: z.ZodObject<{
|
|
|
4170
4949
|
}, z.core.$strip>>;
|
|
4171
4950
|
caption: z.ZodString;
|
|
4172
4951
|
status: z.ZodEnum<{
|
|
4173
|
-
FAILED: "FAILED";
|
|
4174
4952
|
SCHEDULED: "SCHEDULED";
|
|
4953
|
+
FAILED: "FAILED";
|
|
4954
|
+
PUBLISHED: "PUBLISHED";
|
|
4175
4955
|
DRAFT: "DRAFT";
|
|
4176
4956
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
4177
4957
|
PUBLISHING: "PUBLISHING";
|
|
4178
|
-
PUBLISHED: "PUBLISHED";
|
|
4179
4958
|
PARTIALLY_PUBLISHED: "PARTIALLY_PUBLISHED";
|
|
4180
4959
|
}>;
|
|
4181
4960
|
scheduledAt: z.ZodNullable<z.ZodString>;
|
|
@@ -4207,28 +4986,29 @@ declare const PostScheduleExecuteResponseSchema: z.ZodObject<{
|
|
|
4207
4986
|
YOUTUBE: "YOUTUBE";
|
|
4208
4987
|
BLUESKY: "BLUESKY";
|
|
4209
4988
|
LINKEDIN: "LINKEDIN";
|
|
4989
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
4210
4990
|
}>;
|
|
4211
4991
|
status: z.ZodEnum<{
|
|
4212
|
-
|
|
4992
|
+
PREPARING: "PREPARING";
|
|
4213
4993
|
SCHEDULED: "SCHEDULED";
|
|
4994
|
+
FAILED: "FAILED";
|
|
4995
|
+
PUBLISHED: "PUBLISHED";
|
|
4214
4996
|
DRAFT: "DRAFT";
|
|
4215
4997
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
4216
4998
|
PUBLISHING: "PUBLISHING";
|
|
4217
|
-
PUBLISHED: "PUBLISHED";
|
|
4218
|
-
PREPARING: "PREPARING";
|
|
4219
4999
|
}>;
|
|
4220
5000
|
deliveryMode: z.ZodEnum<{
|
|
4221
5001
|
SCHEDULED: "SCHEDULED";
|
|
4222
5002
|
IMMEDIATE: "IMMEDIATE";
|
|
4223
5003
|
}>;
|
|
4224
5004
|
stage: z.ZodEnum<{
|
|
4225
|
-
QUEUED: "QUEUED";
|
|
4226
|
-
FAILED: "FAILED";
|
|
4227
5005
|
SCHEDULED: "SCHEDULED";
|
|
5006
|
+
FAILED: "FAILED";
|
|
5007
|
+
QUEUED: "QUEUED";
|
|
5008
|
+
PUBLISHED: "PUBLISHED";
|
|
4228
5009
|
DRAFT: "DRAFT";
|
|
4229
5010
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
4230
5011
|
PUBLISHING: "PUBLISHING";
|
|
4231
|
-
PUBLISHED: "PUBLISHED";
|
|
4232
5012
|
UPLOADING: "UPLOADING";
|
|
4233
5013
|
PROCESSING: "PROCESSING";
|
|
4234
5014
|
CONFIRMING_SCHEDULE: "CONFIRMING_SCHEDULE";
|
|
@@ -4294,6 +5074,7 @@ declare const PostPublishInputSchema: z.ZodObject<{
|
|
|
4294
5074
|
YOUTUBE: "YOUTUBE";
|
|
4295
5075
|
BLUESKY: "BLUESKY";
|
|
4296
5076
|
LINKEDIN: "LINKEDIN";
|
|
5077
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
4297
5078
|
}>>;
|
|
4298
5079
|
}, z.core.$strict>;
|
|
4299
5080
|
type PostPublishInput = z.infer<typeof PostPublishInputSchema>;
|
|
@@ -4304,6 +5085,7 @@ declare const PostPublishExecuteInputSchema: z.ZodObject<{
|
|
|
4304
5085
|
YOUTUBE: "YOUTUBE";
|
|
4305
5086
|
BLUESKY: "BLUESKY";
|
|
4306
5087
|
LINKEDIN: "LINKEDIN";
|
|
5088
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
4307
5089
|
}>>;
|
|
4308
5090
|
confirmationToken: z.ZodString;
|
|
4309
5091
|
}, z.core.$strict>;
|
|
@@ -4316,12 +5098,12 @@ declare const PostPublishPreviewSchema: z.ZodObject<{
|
|
|
4316
5098
|
projectId: z.ZodString;
|
|
4317
5099
|
version: z.ZodNumber;
|
|
4318
5100
|
status: z.ZodEnum<{
|
|
4319
|
-
FAILED: "FAILED";
|
|
4320
5101
|
SCHEDULED: "SCHEDULED";
|
|
5102
|
+
FAILED: "FAILED";
|
|
5103
|
+
PUBLISHED: "PUBLISHED";
|
|
4321
5104
|
DRAFT: "DRAFT";
|
|
4322
5105
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
4323
5106
|
PUBLISHING: "PUBLISHING";
|
|
4324
|
-
PUBLISHED: "PUBLISHED";
|
|
4325
5107
|
PARTIALLY_PUBLISHED: "PARTIALLY_PUBLISHED";
|
|
4326
5108
|
}>;
|
|
4327
5109
|
}, z.core.$strip>;
|
|
@@ -4331,6 +5113,7 @@ declare const PostPublishPreviewSchema: z.ZodObject<{
|
|
|
4331
5113
|
YOUTUBE: "YOUTUBE";
|
|
4332
5114
|
BLUESKY: "BLUESKY";
|
|
4333
5115
|
LINKEDIN: "LINKEDIN";
|
|
5116
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
4334
5117
|
}>>;
|
|
4335
5118
|
youtube: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
4336
5119
|
visibility: z.ZodEnum<{
|
|
@@ -4363,6 +5146,7 @@ declare const PostPublishPreviewSchema: z.ZodObject<{
|
|
|
4363
5146
|
YOUTUBE: "YOUTUBE";
|
|
4364
5147
|
BLUESKY: "BLUESKY";
|
|
4365
5148
|
LINKEDIN: "LINKEDIN";
|
|
5149
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
4366
5150
|
}>>;
|
|
4367
5151
|
mediaId: z.ZodOptional<z.ZodString>;
|
|
4368
5152
|
status: z.ZodEnum<{
|
|
@@ -4394,6 +5178,7 @@ declare const PostPublishPreviewSchema: z.ZodObject<{
|
|
|
4394
5178
|
YOUTUBE: "YOUTUBE";
|
|
4395
5179
|
BLUESKY: "BLUESKY";
|
|
4396
5180
|
LINKEDIN: "LINKEDIN";
|
|
5181
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
4397
5182
|
}>>;
|
|
4398
5183
|
mediaId: z.ZodOptional<z.ZodString>;
|
|
4399
5184
|
}, z.core.$strip>>;
|
|
@@ -4405,6 +5190,7 @@ declare const PostPublishPreviewSchema: z.ZodObject<{
|
|
|
4405
5190
|
YOUTUBE: "YOUTUBE";
|
|
4406
5191
|
BLUESKY: "BLUESKY";
|
|
4407
5192
|
LINKEDIN: "LINKEDIN";
|
|
5193
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
4408
5194
|
}>;
|
|
4409
5195
|
connected: z.ZodBoolean;
|
|
4410
5196
|
username: z.ZodNullable<z.ZodString>;
|
|
@@ -4418,6 +5204,7 @@ declare const PostPublishPreviewSchema: z.ZodObject<{
|
|
|
4418
5204
|
YOUTUBE: "YOUTUBE";
|
|
4419
5205
|
BLUESKY: "BLUESKY";
|
|
4420
5206
|
LINKEDIN: "LINKEDIN";
|
|
5207
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
4421
5208
|
}>>;
|
|
4422
5209
|
liveHealthCheckedAt: z.ZodNullable<z.ZodString>;
|
|
4423
5210
|
}, z.core.$strip>;
|
|
@@ -4436,12 +5223,12 @@ declare const PostPublishPreviewResponseSchema: z.ZodObject<{
|
|
|
4436
5223
|
projectId: z.ZodString;
|
|
4437
5224
|
version: z.ZodNumber;
|
|
4438
5225
|
status: z.ZodEnum<{
|
|
4439
|
-
FAILED: "FAILED";
|
|
4440
5226
|
SCHEDULED: "SCHEDULED";
|
|
5227
|
+
FAILED: "FAILED";
|
|
5228
|
+
PUBLISHED: "PUBLISHED";
|
|
4441
5229
|
DRAFT: "DRAFT";
|
|
4442
5230
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
4443
5231
|
PUBLISHING: "PUBLISHING";
|
|
4444
|
-
PUBLISHED: "PUBLISHED";
|
|
4445
5232
|
PARTIALLY_PUBLISHED: "PARTIALLY_PUBLISHED";
|
|
4446
5233
|
}>;
|
|
4447
5234
|
}, z.core.$strip>;
|
|
@@ -4451,6 +5238,7 @@ declare const PostPublishPreviewResponseSchema: z.ZodObject<{
|
|
|
4451
5238
|
YOUTUBE: "YOUTUBE";
|
|
4452
5239
|
BLUESKY: "BLUESKY";
|
|
4453
5240
|
LINKEDIN: "LINKEDIN";
|
|
5241
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
4454
5242
|
}>>;
|
|
4455
5243
|
youtube: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
4456
5244
|
visibility: z.ZodEnum<{
|
|
@@ -4483,6 +5271,7 @@ declare const PostPublishPreviewResponseSchema: z.ZodObject<{
|
|
|
4483
5271
|
YOUTUBE: "YOUTUBE";
|
|
4484
5272
|
BLUESKY: "BLUESKY";
|
|
4485
5273
|
LINKEDIN: "LINKEDIN";
|
|
5274
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
4486
5275
|
}>>;
|
|
4487
5276
|
mediaId: z.ZodOptional<z.ZodString>;
|
|
4488
5277
|
status: z.ZodEnum<{
|
|
@@ -4514,6 +5303,7 @@ declare const PostPublishPreviewResponseSchema: z.ZodObject<{
|
|
|
4514
5303
|
YOUTUBE: "YOUTUBE";
|
|
4515
5304
|
BLUESKY: "BLUESKY";
|
|
4516
5305
|
LINKEDIN: "LINKEDIN";
|
|
5306
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
4517
5307
|
}>>;
|
|
4518
5308
|
mediaId: z.ZodOptional<z.ZodString>;
|
|
4519
5309
|
}, z.core.$strip>>;
|
|
@@ -4525,6 +5315,7 @@ declare const PostPublishPreviewResponseSchema: z.ZodObject<{
|
|
|
4525
5315
|
YOUTUBE: "YOUTUBE";
|
|
4526
5316
|
BLUESKY: "BLUESKY";
|
|
4527
5317
|
LINKEDIN: "LINKEDIN";
|
|
5318
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
4528
5319
|
}>;
|
|
4529
5320
|
connected: z.ZodBoolean;
|
|
4530
5321
|
username: z.ZodNullable<z.ZodString>;
|
|
@@ -4538,6 +5329,7 @@ declare const PostPublishPreviewResponseSchema: z.ZodObject<{
|
|
|
4538
5329
|
YOUTUBE: "YOUTUBE";
|
|
4539
5330
|
BLUESKY: "BLUESKY";
|
|
4540
5331
|
LINKEDIN: "LINKEDIN";
|
|
5332
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
4541
5333
|
}>>;
|
|
4542
5334
|
liveHealthCheckedAt: z.ZodNullable<z.ZodString>;
|
|
4543
5335
|
}, z.core.$strip>;
|
|
@@ -4556,11 +5348,11 @@ declare const CalendarEventSchema: z.ZodObject<{
|
|
|
4556
5348
|
title: z.ZodString;
|
|
4557
5349
|
caption: z.ZodString;
|
|
4558
5350
|
status: z.ZodEnum<{
|
|
4559
|
-
FAILED: "FAILED";
|
|
4560
5351
|
SCHEDULED: "SCHEDULED";
|
|
5352
|
+
FAILED: "FAILED";
|
|
5353
|
+
PUBLISHED: "PUBLISHED";
|
|
4561
5354
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
4562
5355
|
PUBLISHING: "PUBLISHING";
|
|
4563
|
-
PUBLISHED: "PUBLISHED";
|
|
4564
5356
|
PARTIALLY_PUBLISHED: "PARTIALLY_PUBLISHED";
|
|
4565
5357
|
}>;
|
|
4566
5358
|
scheduledAt: z.ZodString;
|
|
@@ -4577,15 +5369,16 @@ declare const CalendarEventSchema: z.ZodObject<{
|
|
|
4577
5369
|
YOUTUBE: "YOUTUBE";
|
|
4578
5370
|
BLUESKY: "BLUESKY";
|
|
4579
5371
|
LINKEDIN: "LINKEDIN";
|
|
5372
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
4580
5373
|
}>;
|
|
4581
5374
|
status: z.ZodEnum<{
|
|
4582
|
-
|
|
5375
|
+
PREPARING: "PREPARING";
|
|
4583
5376
|
SCHEDULED: "SCHEDULED";
|
|
5377
|
+
FAILED: "FAILED";
|
|
5378
|
+
PUBLISHED: "PUBLISHED";
|
|
4584
5379
|
DRAFT: "DRAFT";
|
|
4585
5380
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
4586
5381
|
PUBLISHING: "PUBLISHING";
|
|
4587
|
-
PUBLISHED: "PUBLISHED";
|
|
4588
|
-
PREPARING: "PREPARING";
|
|
4589
5382
|
}>;
|
|
4590
5383
|
}, z.core.$strip>>;
|
|
4591
5384
|
}, z.core.$strip>;
|
|
@@ -4604,11 +5397,11 @@ declare const CalendarListDataSchema: z.ZodObject<{
|
|
|
4604
5397
|
title: z.ZodString;
|
|
4605
5398
|
caption: z.ZodString;
|
|
4606
5399
|
status: z.ZodEnum<{
|
|
4607
|
-
FAILED: "FAILED";
|
|
4608
5400
|
SCHEDULED: "SCHEDULED";
|
|
5401
|
+
FAILED: "FAILED";
|
|
5402
|
+
PUBLISHED: "PUBLISHED";
|
|
4609
5403
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
4610
5404
|
PUBLISHING: "PUBLISHING";
|
|
4611
|
-
PUBLISHED: "PUBLISHED";
|
|
4612
5405
|
PARTIALLY_PUBLISHED: "PARTIALLY_PUBLISHED";
|
|
4613
5406
|
}>;
|
|
4614
5407
|
scheduledAt: z.ZodString;
|
|
@@ -4625,15 +5418,16 @@ declare const CalendarListDataSchema: z.ZodObject<{
|
|
|
4625
5418
|
YOUTUBE: "YOUTUBE";
|
|
4626
5419
|
BLUESKY: "BLUESKY";
|
|
4627
5420
|
LINKEDIN: "LINKEDIN";
|
|
5421
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
4628
5422
|
}>;
|
|
4629
5423
|
status: z.ZodEnum<{
|
|
4630
|
-
|
|
5424
|
+
PREPARING: "PREPARING";
|
|
4631
5425
|
SCHEDULED: "SCHEDULED";
|
|
5426
|
+
FAILED: "FAILED";
|
|
5427
|
+
PUBLISHED: "PUBLISHED";
|
|
4632
5428
|
DRAFT: "DRAFT";
|
|
4633
5429
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
4634
5430
|
PUBLISHING: "PUBLISHING";
|
|
4635
|
-
PUBLISHED: "PUBLISHED";
|
|
4636
|
-
PREPARING: "PREPARING";
|
|
4637
5431
|
}>;
|
|
4638
5432
|
}, z.core.$strip>>;
|
|
4639
5433
|
}, z.core.$strip>>;
|
|
@@ -4655,11 +5449,11 @@ declare const CalendarListResponseSchema: z.ZodObject<{
|
|
|
4655
5449
|
title: z.ZodString;
|
|
4656
5450
|
caption: z.ZodString;
|
|
4657
5451
|
status: z.ZodEnum<{
|
|
4658
|
-
FAILED: "FAILED";
|
|
4659
5452
|
SCHEDULED: "SCHEDULED";
|
|
5453
|
+
FAILED: "FAILED";
|
|
5454
|
+
PUBLISHED: "PUBLISHED";
|
|
4660
5455
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
4661
5456
|
PUBLISHING: "PUBLISHING";
|
|
4662
|
-
PUBLISHED: "PUBLISHED";
|
|
4663
5457
|
PARTIALLY_PUBLISHED: "PARTIALLY_PUBLISHED";
|
|
4664
5458
|
}>;
|
|
4665
5459
|
scheduledAt: z.ZodString;
|
|
@@ -4676,15 +5470,16 @@ declare const CalendarListResponseSchema: z.ZodObject<{
|
|
|
4676
5470
|
YOUTUBE: "YOUTUBE";
|
|
4677
5471
|
BLUESKY: "BLUESKY";
|
|
4678
5472
|
LINKEDIN: "LINKEDIN";
|
|
5473
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
4679
5474
|
}>;
|
|
4680
5475
|
status: z.ZodEnum<{
|
|
4681
|
-
|
|
5476
|
+
PREPARING: "PREPARING";
|
|
4682
5477
|
SCHEDULED: "SCHEDULED";
|
|
5478
|
+
FAILED: "FAILED";
|
|
5479
|
+
PUBLISHED: "PUBLISHED";
|
|
4683
5480
|
DRAFT: "DRAFT";
|
|
4684
5481
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
4685
5482
|
PUBLISHING: "PUBLISHING";
|
|
4686
|
-
PUBLISHED: "PUBLISHED";
|
|
4687
|
-
PREPARING: "PREPARING";
|
|
4688
5483
|
}>;
|
|
4689
5484
|
}, z.core.$strip>>;
|
|
4690
5485
|
}, z.core.$strip>>;
|
|
@@ -4747,8 +5542,8 @@ declare const SeoEvidenceSchema: z.ZodObject<{
|
|
|
4747
5542
|
}, z.core.$strict>;
|
|
4748
5543
|
type SeoEvidence = z.infer<typeof SeoEvidenceSchema>;
|
|
4749
5544
|
declare const SeoActionDecisionSchema: z.ZodEnum<{
|
|
4750
|
-
REJECTED: "REJECTED";
|
|
4751
5545
|
READY: "READY";
|
|
5546
|
+
REJECTED: "REJECTED";
|
|
4752
5547
|
NEEDS_REVIEW: "NEEDS_REVIEW";
|
|
4753
5548
|
}>;
|
|
4754
5549
|
type SeoActionDecision = z.infer<typeof SeoActionDecisionSchema>;
|
|
@@ -4769,8 +5564,8 @@ declare const SeoContentTypeSchema: z.ZodEnum<{
|
|
|
4769
5564
|
declare const SeoActionPlanSchema: z.ZodObject<{
|
|
4770
5565
|
version: z.ZodNumber;
|
|
4771
5566
|
decision: z.ZodEnum<{
|
|
4772
|
-
REJECTED: "REJECTED";
|
|
4773
5567
|
READY: "READY";
|
|
5568
|
+
REJECTED: "REJECTED";
|
|
4774
5569
|
NEEDS_REVIEW: "NEEDS_REVIEW";
|
|
4775
5570
|
}>;
|
|
4776
5571
|
decisionReason: z.ZodString;
|
|
@@ -4824,8 +5619,8 @@ declare const SeoActionPlanSchema: z.ZodObject<{
|
|
|
4824
5619
|
}, z.core.$strict>;
|
|
4825
5620
|
type SeoActionPlan = z.infer<typeof SeoActionPlanSchema>;
|
|
4826
5621
|
declare const SeoTaskDecisionSchema: z.ZodEnum<{
|
|
4827
|
-
REJECTED: "REJECTED";
|
|
4828
5622
|
READY: "READY";
|
|
5623
|
+
REJECTED: "REJECTED";
|
|
4829
5624
|
NEEDS_REVIEW: "NEEDS_REVIEW";
|
|
4830
5625
|
}>;
|
|
4831
5626
|
type SeoTaskDecision = z.infer<typeof SeoTaskDecisionSchema>;
|
|
@@ -4883,8 +5678,8 @@ declare const SeoAgentTaskSchema: z.ZodObject<{
|
|
|
4883
5678
|
legacy: z.ZodBoolean;
|
|
4884
5679
|
legacyLabel: z.ZodNullable<z.ZodString>;
|
|
4885
5680
|
decision: z.ZodEnum<{
|
|
4886
|
-
REJECTED: "REJECTED";
|
|
4887
5681
|
READY: "READY";
|
|
5682
|
+
REJECTED: "REJECTED";
|
|
4888
5683
|
NEEDS_REVIEW: "NEEDS_REVIEW";
|
|
4889
5684
|
}>;
|
|
4890
5685
|
decisionReason: z.ZodString;
|
|
@@ -5066,8 +5861,8 @@ declare const SeoOpportunityBriefSchema: z.ZodObject<{
|
|
|
5066
5861
|
actionPlan: z.ZodObject<{
|
|
5067
5862
|
version: z.ZodNumber;
|
|
5068
5863
|
decision: z.ZodEnum<{
|
|
5069
|
-
REJECTED: "REJECTED";
|
|
5070
5864
|
READY: "READY";
|
|
5865
|
+
REJECTED: "REJECTED";
|
|
5071
5866
|
NEEDS_REVIEW: "NEEDS_REVIEW";
|
|
5072
5867
|
}>;
|
|
5073
5868
|
decisionReason: z.ZodString;
|
|
@@ -5126,8 +5921,8 @@ declare const SeoOpportunityBriefSchema: z.ZodObject<{
|
|
|
5126
5921
|
legacy: z.ZodBoolean;
|
|
5127
5922
|
legacyLabel: z.ZodNullable<z.ZodString>;
|
|
5128
5923
|
decision: z.ZodEnum<{
|
|
5129
|
-
REJECTED: "REJECTED";
|
|
5130
5924
|
READY: "READY";
|
|
5925
|
+
REJECTED: "REJECTED";
|
|
5131
5926
|
NEEDS_REVIEW: "NEEDS_REVIEW";
|
|
5132
5927
|
}>;
|
|
5133
5928
|
decisionReason: z.ZodString;
|
|
@@ -5328,8 +6123,8 @@ declare const SeoOpportunitySchema: z.ZodObject<{
|
|
|
5328
6123
|
actionPlan: z.ZodObject<{
|
|
5329
6124
|
version: z.ZodNumber;
|
|
5330
6125
|
decision: z.ZodEnum<{
|
|
5331
|
-
REJECTED: "REJECTED";
|
|
5332
6126
|
READY: "READY";
|
|
6127
|
+
REJECTED: "REJECTED";
|
|
5333
6128
|
NEEDS_REVIEW: "NEEDS_REVIEW";
|
|
5334
6129
|
}>;
|
|
5335
6130
|
decisionReason: z.ZodString;
|
|
@@ -5388,8 +6183,8 @@ declare const SeoOpportunitySchema: z.ZodObject<{
|
|
|
5388
6183
|
legacy: z.ZodBoolean;
|
|
5389
6184
|
legacyLabel: z.ZodNullable<z.ZodString>;
|
|
5390
6185
|
decision: z.ZodEnum<{
|
|
5391
|
-
REJECTED: "REJECTED";
|
|
5392
6186
|
READY: "READY";
|
|
6187
|
+
REJECTED: "REJECTED";
|
|
5393
6188
|
NEEDS_REVIEW: "NEEDS_REVIEW";
|
|
5394
6189
|
}>;
|
|
5395
6190
|
decisionReason: z.ZodString;
|
|
@@ -5617,8 +6412,8 @@ declare const SeoOpportunityListDataSchema: z.ZodObject<{
|
|
|
5617
6412
|
actionPlan: z.ZodObject<{
|
|
5618
6413
|
version: z.ZodNumber;
|
|
5619
6414
|
decision: z.ZodEnum<{
|
|
5620
|
-
REJECTED: "REJECTED";
|
|
5621
6415
|
READY: "READY";
|
|
6416
|
+
REJECTED: "REJECTED";
|
|
5622
6417
|
NEEDS_REVIEW: "NEEDS_REVIEW";
|
|
5623
6418
|
}>;
|
|
5624
6419
|
decisionReason: z.ZodString;
|
|
@@ -5677,8 +6472,8 @@ declare const SeoOpportunityListDataSchema: z.ZodObject<{
|
|
|
5677
6472
|
legacy: z.ZodBoolean;
|
|
5678
6473
|
legacyLabel: z.ZodNullable<z.ZodString>;
|
|
5679
6474
|
decision: z.ZodEnum<{
|
|
5680
|
-
REJECTED: "REJECTED";
|
|
5681
6475
|
READY: "READY";
|
|
6476
|
+
REJECTED: "REJECTED";
|
|
5682
6477
|
NEEDS_REVIEW: "NEEDS_REVIEW";
|
|
5683
6478
|
}>;
|
|
5684
6479
|
decisionReason: z.ZodString;
|
|
@@ -5890,8 +6685,8 @@ declare const SeoOpportunityListResponseSchema: z.ZodObject<{
|
|
|
5890
6685
|
actionPlan: z.ZodObject<{
|
|
5891
6686
|
version: z.ZodNumber;
|
|
5892
6687
|
decision: z.ZodEnum<{
|
|
5893
|
-
REJECTED: "REJECTED";
|
|
5894
6688
|
READY: "READY";
|
|
6689
|
+
REJECTED: "REJECTED";
|
|
5895
6690
|
NEEDS_REVIEW: "NEEDS_REVIEW";
|
|
5896
6691
|
}>;
|
|
5897
6692
|
decisionReason: z.ZodString;
|
|
@@ -5950,8 +6745,8 @@ declare const SeoOpportunityListResponseSchema: z.ZodObject<{
|
|
|
5950
6745
|
legacy: z.ZodBoolean;
|
|
5951
6746
|
legacyLabel: z.ZodNullable<z.ZodString>;
|
|
5952
6747
|
decision: z.ZodEnum<{
|
|
5953
|
-
REJECTED: "REJECTED";
|
|
5954
6748
|
READY: "READY";
|
|
6749
|
+
REJECTED: "REJECTED";
|
|
5955
6750
|
NEEDS_REVIEW: "NEEDS_REVIEW";
|
|
5956
6751
|
}>;
|
|
5957
6752
|
decisionReason: z.ZodString;
|
|
@@ -6165,8 +6960,8 @@ declare const SeoOpportunityResponseSchema: z.ZodObject<{
|
|
|
6165
6960
|
actionPlan: z.ZodObject<{
|
|
6166
6961
|
version: z.ZodNumber;
|
|
6167
6962
|
decision: z.ZodEnum<{
|
|
6168
|
-
REJECTED: "REJECTED";
|
|
6169
6963
|
READY: "READY";
|
|
6964
|
+
REJECTED: "REJECTED";
|
|
6170
6965
|
NEEDS_REVIEW: "NEEDS_REVIEW";
|
|
6171
6966
|
}>;
|
|
6172
6967
|
decisionReason: z.ZodString;
|
|
@@ -6225,8 +7020,8 @@ declare const SeoOpportunityResponseSchema: z.ZodObject<{
|
|
|
6225
7020
|
legacy: z.ZodBoolean;
|
|
6226
7021
|
legacyLabel: z.ZodNullable<z.ZodString>;
|
|
6227
7022
|
decision: z.ZodEnum<{
|
|
6228
|
-
REJECTED: "REJECTED";
|
|
6229
7023
|
READY: "READY";
|
|
7024
|
+
REJECTED: "REJECTED";
|
|
6230
7025
|
NEEDS_REVIEW: "NEEDS_REVIEW";
|
|
6231
7026
|
}>;
|
|
6232
7027
|
decisionReason: z.ZodString;
|
|
@@ -6386,8 +7181,8 @@ declare const SeoOpportunityResponseSchema: z.ZodObject<{
|
|
|
6386
7181
|
}, z.core.$strip>;
|
|
6387
7182
|
}, z.core.$strip>;
|
|
6388
7183
|
declare const SeoReportCompletenessSchema: z.ZodEnum<{
|
|
6389
|
-
COMPLETE: "COMPLETE";
|
|
6390
7184
|
PARTIAL: "PARTIAL";
|
|
7185
|
+
COMPLETE: "COMPLETE";
|
|
6391
7186
|
}>;
|
|
6392
7187
|
type SeoReportCompleteness = z.infer<typeof SeoReportCompletenessSchema>;
|
|
6393
7188
|
declare const SeoReportTriggerSchema: z.ZodEnum<{
|
|
@@ -6402,8 +7197,8 @@ declare const SeoReportSummarySchema: z.ZodObject<{
|
|
|
6402
7197
|
timeZone: z.ZodString;
|
|
6403
7198
|
deliveryDay: z.ZodNumber;
|
|
6404
7199
|
completeness: z.ZodEnum<{
|
|
6405
|
-
COMPLETE: "COMPLETE";
|
|
6406
7200
|
PARTIAL: "PARTIAL";
|
|
7201
|
+
COMPLETE: "COMPLETE";
|
|
6407
7202
|
}>;
|
|
6408
7203
|
trigger: z.ZodEnum<{
|
|
6409
7204
|
SCHEDULED: "SCHEDULED";
|
|
@@ -6425,8 +7220,8 @@ declare const SeoReportSchema: z.ZodObject<{
|
|
|
6425
7220
|
timeZone: z.ZodString;
|
|
6426
7221
|
deliveryDay: z.ZodNumber;
|
|
6427
7222
|
completeness: z.ZodEnum<{
|
|
6428
|
-
COMPLETE: "COMPLETE";
|
|
6429
7223
|
PARTIAL: "PARTIAL";
|
|
7224
|
+
COMPLETE: "COMPLETE";
|
|
6430
7225
|
}>;
|
|
6431
7226
|
trigger: z.ZodEnum<{
|
|
6432
7227
|
SCHEDULED: "SCHEDULED";
|
|
@@ -6490,8 +7285,8 @@ declare const SeoReportSchema: z.ZodObject<{
|
|
|
6490
7285
|
actionPlan: z.ZodObject<{
|
|
6491
7286
|
version: z.ZodNumber;
|
|
6492
7287
|
decision: z.ZodEnum<{
|
|
6493
|
-
REJECTED: "REJECTED";
|
|
6494
7288
|
READY: "READY";
|
|
7289
|
+
REJECTED: "REJECTED";
|
|
6495
7290
|
NEEDS_REVIEW: "NEEDS_REVIEW";
|
|
6496
7291
|
}>;
|
|
6497
7292
|
decisionReason: z.ZodString;
|
|
@@ -6550,8 +7345,8 @@ declare const SeoReportSchema: z.ZodObject<{
|
|
|
6550
7345
|
legacy: z.ZodBoolean;
|
|
6551
7346
|
legacyLabel: z.ZodNullable<z.ZodString>;
|
|
6552
7347
|
decision: z.ZodEnum<{
|
|
6553
|
-
REJECTED: "REJECTED";
|
|
6554
7348
|
READY: "READY";
|
|
7349
|
+
REJECTED: "REJECTED";
|
|
6555
7350
|
NEEDS_REVIEW: "NEEDS_REVIEW";
|
|
6556
7351
|
}>;
|
|
6557
7352
|
decisionReason: z.ZodString;
|
|
@@ -6714,8 +7509,8 @@ declare const SeoReportListQuerySchema: z.ZodObject<{
|
|
|
6714
7509
|
limit: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
6715
7510
|
cursor: z.ZodOptional<z.ZodString>;
|
|
6716
7511
|
completeness: z.ZodOptional<z.ZodEnum<{
|
|
6717
|
-
COMPLETE: "COMPLETE";
|
|
6718
7512
|
PARTIAL: "PARTIAL";
|
|
7513
|
+
COMPLETE: "COMPLETE";
|
|
6719
7514
|
}>>;
|
|
6720
7515
|
}, z.core.$strict>;
|
|
6721
7516
|
type SeoReportListQuery = z.input<typeof SeoReportListQuerySchema>;
|
|
@@ -6728,8 +7523,8 @@ declare const SeoReportListDataSchema: z.ZodObject<{
|
|
|
6728
7523
|
timeZone: z.ZodString;
|
|
6729
7524
|
deliveryDay: z.ZodNumber;
|
|
6730
7525
|
completeness: z.ZodEnum<{
|
|
6731
|
-
COMPLETE: "COMPLETE";
|
|
6732
7526
|
PARTIAL: "PARTIAL";
|
|
7527
|
+
COMPLETE: "COMPLETE";
|
|
6733
7528
|
}>;
|
|
6734
7529
|
trigger: z.ZodEnum<{
|
|
6735
7530
|
SCHEDULED: "SCHEDULED";
|
|
@@ -6758,8 +7553,8 @@ declare const SeoReportListResponseSchema: z.ZodObject<{
|
|
|
6758
7553
|
timeZone: z.ZodString;
|
|
6759
7554
|
deliveryDay: z.ZodNumber;
|
|
6760
7555
|
completeness: z.ZodEnum<{
|
|
6761
|
-
COMPLETE: "COMPLETE";
|
|
6762
7556
|
PARTIAL: "PARTIAL";
|
|
7557
|
+
COMPLETE: "COMPLETE";
|
|
6763
7558
|
}>;
|
|
6764
7559
|
trigger: z.ZodEnum<{
|
|
6765
7560
|
SCHEDULED: "SCHEDULED";
|
|
@@ -6790,8 +7585,8 @@ declare const SeoReportResponseSchema: z.ZodObject<{
|
|
|
6790
7585
|
timeZone: z.ZodString;
|
|
6791
7586
|
deliveryDay: z.ZodNumber;
|
|
6792
7587
|
completeness: z.ZodEnum<{
|
|
6793
|
-
COMPLETE: "COMPLETE";
|
|
6794
7588
|
PARTIAL: "PARTIAL";
|
|
7589
|
+
COMPLETE: "COMPLETE";
|
|
6795
7590
|
}>;
|
|
6796
7591
|
trigger: z.ZodEnum<{
|
|
6797
7592
|
SCHEDULED: "SCHEDULED";
|
|
@@ -6855,8 +7650,8 @@ declare const SeoReportResponseSchema: z.ZodObject<{
|
|
|
6855
7650
|
actionPlan: z.ZodObject<{
|
|
6856
7651
|
version: z.ZodNumber;
|
|
6857
7652
|
decision: z.ZodEnum<{
|
|
6858
|
-
REJECTED: "REJECTED";
|
|
6859
7653
|
READY: "READY";
|
|
7654
|
+
REJECTED: "REJECTED";
|
|
6860
7655
|
NEEDS_REVIEW: "NEEDS_REVIEW";
|
|
6861
7656
|
}>;
|
|
6862
7657
|
decisionReason: z.ZodString;
|
|
@@ -6915,8 +7710,8 @@ declare const SeoReportResponseSchema: z.ZodObject<{
|
|
|
6915
7710
|
legacy: z.ZodBoolean;
|
|
6916
7711
|
legacyLabel: z.ZodNullable<z.ZodString>;
|
|
6917
7712
|
decision: z.ZodEnum<{
|
|
6918
|
-
REJECTED: "REJECTED";
|
|
6919
7713
|
READY: "READY";
|
|
7714
|
+
REJECTED: "REJECTED";
|
|
6920
7715
|
NEEDS_REVIEW: "NEEDS_REVIEW";
|
|
6921
7716
|
}>;
|
|
6922
7717
|
decisionReason: z.ZodString;
|
|
@@ -7078,5 +7873,755 @@ declare const SeoReportResponseSchema: z.ZodObject<{
|
|
|
7078
7873
|
requestId: z.ZodString;
|
|
7079
7874
|
}, z.core.$strip>;
|
|
7080
7875
|
}, z.core.$strip>;
|
|
7876
|
+
declare const BacklinkOpportunityTypeSchema: z.ZodEnum<{
|
|
7877
|
+
TOOL_ROUNDUP: "TOOL_ROUNDUP";
|
|
7878
|
+
COMPARISON: "COMPARISON";
|
|
7879
|
+
RESOURCE_PAGE: "RESOURCE_PAGE";
|
|
7880
|
+
RELEVANT_ARTICLE: "RELEVANT_ARTICLE";
|
|
7881
|
+
}>;
|
|
7882
|
+
declare const BacklinkProspectStageSchema: z.ZodEnum<{
|
|
7883
|
+
APPROVED: "APPROVED";
|
|
7884
|
+
REJECTED: "REJECTED";
|
|
7885
|
+
NEW: "NEW";
|
|
7886
|
+
CONTACT_RESEARCHING: "CONTACT_RESEARCHING";
|
|
7887
|
+
REVIEW_OUTREACH: "REVIEW_OUTREACH";
|
|
7888
|
+
READY_TO_CONTACT: "READY_TO_CONTACT";
|
|
7889
|
+
CONTACTED: "CONTACTED";
|
|
7890
|
+
REPLIED: "REPLIED";
|
|
7891
|
+
LINK_WON: "LINK_WON";
|
|
7892
|
+
NO_CONTACT: "NO_CONTACT";
|
|
7893
|
+
DECLINED: "DECLINED";
|
|
7894
|
+
}>;
|
|
7895
|
+
declare const BacklinkNextActionSchema: z.ZodEnum<{
|
|
7896
|
+
REVIEW_OUTREACH: "REVIEW_OUTREACH";
|
|
7897
|
+
REVIEW: "REVIEW";
|
|
7898
|
+
FIND_CONTACT: "FIND_CONTACT";
|
|
7899
|
+
VIEW_PROGRESS: "VIEW_PROGRESS";
|
|
7900
|
+
COPY_OUTREACH: "COPY_OUTREACH";
|
|
7901
|
+
RETRY_CONTACT: "RETRY_CONTACT";
|
|
7902
|
+
OPEN: "OPEN";
|
|
7903
|
+
}>;
|
|
7904
|
+
declare const BacklinkContactStateSchema: z.ZodEnum<{
|
|
7905
|
+
NOT_FOUND: "NOT_FOUND";
|
|
7906
|
+
STALE: "STALE";
|
|
7907
|
+
PUBLIC_CONFIRMED: "PUBLIC_CONFIRMED";
|
|
7908
|
+
GENERIC_PUBLIC: "GENERIC_PUBLIC";
|
|
7909
|
+
}>;
|
|
7910
|
+
declare const BacklinkVerificationStateSchema: z.ZodEnum<{
|
|
7911
|
+
FAILED: "FAILED";
|
|
7912
|
+
QUEUED: "QUEUED";
|
|
7913
|
+
MISSING: "MISSING";
|
|
7914
|
+
VERIFIED: "VERIFIED";
|
|
7915
|
+
CHECKING: "CHECKING";
|
|
7916
|
+
BLOCKED: "BLOCKED";
|
|
7917
|
+
}>;
|
|
7918
|
+
declare const BacklinkScoreComponentsSchema: z.ZodObject<{
|
|
7919
|
+
topicalRelevance: z.ZodObject<{
|
|
7920
|
+
score: z.ZodNumber;
|
|
7921
|
+
reason: z.ZodString;
|
|
7922
|
+
}, z.core.$strict>;
|
|
7923
|
+
editorialFit: z.ZodObject<{
|
|
7924
|
+
score: z.ZodNumber;
|
|
7925
|
+
reason: z.ZodString;
|
|
7926
|
+
}, z.core.$strict>;
|
|
7927
|
+
pageFreshness: z.ZodObject<{
|
|
7928
|
+
score: z.ZodNumber;
|
|
7929
|
+
reason: z.ZodString;
|
|
7930
|
+
}, z.core.$strict>;
|
|
7931
|
+
siteLegitimacy: z.ZodObject<{
|
|
7932
|
+
score: z.ZodNumber;
|
|
7933
|
+
reason: z.ZodString;
|
|
7934
|
+
}, z.core.$strict>;
|
|
7935
|
+
outreachFeasibility: z.ZodOptional<z.ZodObject<{
|
|
7936
|
+
score: z.ZodNumber;
|
|
7937
|
+
reason: z.ZodString;
|
|
7938
|
+
}, z.core.$strict>>;
|
|
7939
|
+
publisherType: z.ZodOptional<z.ZodEnum<{
|
|
7940
|
+
INDEPENDENT_PUBLISHER: "INDEPENDENT_PUBLISHER";
|
|
7941
|
+
PROFESSIONAL_ORGANIZATION: "PROFESSIONAL_ORGANIZATION";
|
|
7942
|
+
EDUCATIONAL_ORGANIZATION: "EDUCATIONAL_ORGANIZATION";
|
|
7943
|
+
AGENCY_OR_ECOSYSTEM: "AGENCY_OR_ECOSYSTEM";
|
|
7944
|
+
REVIEW_OR_DIRECTORY: "REVIEW_OR_DIRECTORY";
|
|
7945
|
+
PRODUCT_VENDOR: "PRODUCT_VENDOR";
|
|
7946
|
+
MARKETPLACE: "MARKETPLACE";
|
|
7947
|
+
COMMUNITY: "COMMUNITY";
|
|
7948
|
+
OWNED: "OWNED";
|
|
7949
|
+
UNKNOWN: "UNKNOWN";
|
|
7950
|
+
}>>;
|
|
7951
|
+
difficulty: z.ZodOptional<z.ZodEnum<{
|
|
7952
|
+
MEDIUM: "MEDIUM";
|
|
7953
|
+
EASY: "EASY";
|
|
7954
|
+
HARD: "HARD";
|
|
7955
|
+
}>>;
|
|
7956
|
+
productClaimsToVerify: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
7957
|
+
}, z.core.$strict>;
|
|
7958
|
+
declare const BacklinkProspectSchema: z.ZodObject<{
|
|
7959
|
+
id: z.ZodString;
|
|
7960
|
+
projectId: z.ZodString;
|
|
7961
|
+
url: z.ZodString;
|
|
7962
|
+
domain: z.ZodString;
|
|
7963
|
+
title: z.ZodString;
|
|
7964
|
+
opportunityType: z.ZodEnum<{
|
|
7965
|
+
TOOL_ROUNDUP: "TOOL_ROUNDUP";
|
|
7966
|
+
COMPARISON: "COMPARISON";
|
|
7967
|
+
RESOURCE_PAGE: "RESOURCE_PAGE";
|
|
7968
|
+
RELEVANT_ARTICLE: "RELEVANT_ARTICLE";
|
|
7969
|
+
}>;
|
|
7970
|
+
stage: z.ZodEnum<{
|
|
7971
|
+
APPROVED: "APPROVED";
|
|
7972
|
+
REJECTED: "REJECTED";
|
|
7973
|
+
NEW: "NEW";
|
|
7974
|
+
CONTACT_RESEARCHING: "CONTACT_RESEARCHING";
|
|
7975
|
+
REVIEW_OUTREACH: "REVIEW_OUTREACH";
|
|
7976
|
+
READY_TO_CONTACT: "READY_TO_CONTACT";
|
|
7977
|
+
CONTACTED: "CONTACTED";
|
|
7978
|
+
REPLIED: "REPLIED";
|
|
7979
|
+
LINK_WON: "LINK_WON";
|
|
7980
|
+
NO_CONTACT: "NO_CONTACT";
|
|
7981
|
+
DECLINED: "DECLINED";
|
|
7982
|
+
}>;
|
|
7983
|
+
version: z.ZodNumber;
|
|
7984
|
+
nextAction: z.ZodEnum<{
|
|
7985
|
+
REVIEW_OUTREACH: "REVIEW_OUTREACH";
|
|
7986
|
+
REVIEW: "REVIEW";
|
|
7987
|
+
FIND_CONTACT: "FIND_CONTACT";
|
|
7988
|
+
VIEW_PROGRESS: "VIEW_PROGRESS";
|
|
7989
|
+
COPY_OUTREACH: "COPY_OUTREACH";
|
|
7990
|
+
RETRY_CONTACT: "RETRY_CONTACT";
|
|
7991
|
+
OPEN: "OPEN";
|
|
7992
|
+
}>;
|
|
7993
|
+
score: z.ZodNumber;
|
|
7994
|
+
scoreComponents: z.ZodObject<{
|
|
7995
|
+
topicalRelevance: z.ZodObject<{
|
|
7996
|
+
score: z.ZodNumber;
|
|
7997
|
+
reason: z.ZodString;
|
|
7998
|
+
}, z.core.$strict>;
|
|
7999
|
+
editorialFit: z.ZodObject<{
|
|
8000
|
+
score: z.ZodNumber;
|
|
8001
|
+
reason: z.ZodString;
|
|
8002
|
+
}, z.core.$strict>;
|
|
8003
|
+
pageFreshness: z.ZodObject<{
|
|
8004
|
+
score: z.ZodNumber;
|
|
8005
|
+
reason: z.ZodString;
|
|
8006
|
+
}, z.core.$strict>;
|
|
8007
|
+
siteLegitimacy: z.ZodObject<{
|
|
8008
|
+
score: z.ZodNumber;
|
|
8009
|
+
reason: z.ZodString;
|
|
8010
|
+
}, z.core.$strict>;
|
|
8011
|
+
outreachFeasibility: z.ZodOptional<z.ZodObject<{
|
|
8012
|
+
score: z.ZodNumber;
|
|
8013
|
+
reason: z.ZodString;
|
|
8014
|
+
}, z.core.$strict>>;
|
|
8015
|
+
publisherType: z.ZodOptional<z.ZodEnum<{
|
|
8016
|
+
INDEPENDENT_PUBLISHER: "INDEPENDENT_PUBLISHER";
|
|
8017
|
+
PROFESSIONAL_ORGANIZATION: "PROFESSIONAL_ORGANIZATION";
|
|
8018
|
+
EDUCATIONAL_ORGANIZATION: "EDUCATIONAL_ORGANIZATION";
|
|
8019
|
+
AGENCY_OR_ECOSYSTEM: "AGENCY_OR_ECOSYSTEM";
|
|
8020
|
+
REVIEW_OR_DIRECTORY: "REVIEW_OR_DIRECTORY";
|
|
8021
|
+
PRODUCT_VENDOR: "PRODUCT_VENDOR";
|
|
8022
|
+
MARKETPLACE: "MARKETPLACE";
|
|
8023
|
+
COMMUNITY: "COMMUNITY";
|
|
8024
|
+
OWNED: "OWNED";
|
|
8025
|
+
UNKNOWN: "UNKNOWN";
|
|
8026
|
+
}>>;
|
|
8027
|
+
difficulty: z.ZodOptional<z.ZodEnum<{
|
|
8028
|
+
MEDIUM: "MEDIUM";
|
|
8029
|
+
EASY: "EASY";
|
|
8030
|
+
HARD: "HARD";
|
|
8031
|
+
}>>;
|
|
8032
|
+
productClaimsToVerify: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8033
|
+
}, z.core.$strict>;
|
|
8034
|
+
evidenceExcerpt: z.ZodString;
|
|
8035
|
+
evidenceSourceUrl: z.ZodString;
|
|
8036
|
+
suggestedTargetUrl: z.ZodString;
|
|
8037
|
+
placementAngle: z.ZodString;
|
|
8038
|
+
contactState: z.ZodEnum<{
|
|
8039
|
+
NOT_FOUND: "NOT_FOUND";
|
|
8040
|
+
STALE: "STALE";
|
|
8041
|
+
PUBLIC_CONFIRMED: "PUBLIC_CONFIRMED";
|
|
8042
|
+
GENERIC_PUBLIC: "GENERIC_PUBLIC";
|
|
8043
|
+
}>;
|
|
8044
|
+
lastCheckedAt: z.ZodString;
|
|
8045
|
+
createdAt: z.ZodString;
|
|
8046
|
+
updatedAt: z.ZodString;
|
|
8047
|
+
}, z.core.$strict>;
|
|
8048
|
+
type BacklinkProspect = z.infer<typeof BacklinkProspectSchema>;
|
|
8049
|
+
declare const BacklinkProspectListQuerySchema: z.ZodObject<{
|
|
8050
|
+
limit: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
8051
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
8052
|
+
stage: z.ZodOptional<z.ZodEnum<{
|
|
8053
|
+
APPROVED: "APPROVED";
|
|
8054
|
+
REJECTED: "REJECTED";
|
|
8055
|
+
NEW: "NEW";
|
|
8056
|
+
CONTACT_RESEARCHING: "CONTACT_RESEARCHING";
|
|
8057
|
+
REVIEW_OUTREACH: "REVIEW_OUTREACH";
|
|
8058
|
+
READY_TO_CONTACT: "READY_TO_CONTACT";
|
|
8059
|
+
CONTACTED: "CONTACTED";
|
|
8060
|
+
REPLIED: "REPLIED";
|
|
8061
|
+
LINK_WON: "LINK_WON";
|
|
8062
|
+
NO_CONTACT: "NO_CONTACT";
|
|
8063
|
+
DECLINED: "DECLINED";
|
|
8064
|
+
}>>;
|
|
8065
|
+
opportunityType: z.ZodOptional<z.ZodEnum<{
|
|
8066
|
+
TOOL_ROUNDUP: "TOOL_ROUNDUP";
|
|
8067
|
+
COMPARISON: "COMPARISON";
|
|
8068
|
+
RESOURCE_PAGE: "RESOURCE_PAGE";
|
|
8069
|
+
RELEVANT_ARTICLE: "RELEVANT_ARTICLE";
|
|
8070
|
+
}>>;
|
|
8071
|
+
}, z.core.$strict>;
|
|
8072
|
+
declare const BacklinkProspectListDataSchema: z.ZodObject<{
|
|
8073
|
+
items: z.ZodArray<z.ZodObject<{
|
|
8074
|
+
id: z.ZodString;
|
|
8075
|
+
projectId: z.ZodString;
|
|
8076
|
+
url: z.ZodString;
|
|
8077
|
+
domain: z.ZodString;
|
|
8078
|
+
title: z.ZodString;
|
|
8079
|
+
opportunityType: z.ZodEnum<{
|
|
8080
|
+
TOOL_ROUNDUP: "TOOL_ROUNDUP";
|
|
8081
|
+
COMPARISON: "COMPARISON";
|
|
8082
|
+
RESOURCE_PAGE: "RESOURCE_PAGE";
|
|
8083
|
+
RELEVANT_ARTICLE: "RELEVANT_ARTICLE";
|
|
8084
|
+
}>;
|
|
8085
|
+
stage: z.ZodEnum<{
|
|
8086
|
+
APPROVED: "APPROVED";
|
|
8087
|
+
REJECTED: "REJECTED";
|
|
8088
|
+
NEW: "NEW";
|
|
8089
|
+
CONTACT_RESEARCHING: "CONTACT_RESEARCHING";
|
|
8090
|
+
REVIEW_OUTREACH: "REVIEW_OUTREACH";
|
|
8091
|
+
READY_TO_CONTACT: "READY_TO_CONTACT";
|
|
8092
|
+
CONTACTED: "CONTACTED";
|
|
8093
|
+
REPLIED: "REPLIED";
|
|
8094
|
+
LINK_WON: "LINK_WON";
|
|
8095
|
+
NO_CONTACT: "NO_CONTACT";
|
|
8096
|
+
DECLINED: "DECLINED";
|
|
8097
|
+
}>;
|
|
8098
|
+
version: z.ZodNumber;
|
|
8099
|
+
nextAction: z.ZodEnum<{
|
|
8100
|
+
REVIEW_OUTREACH: "REVIEW_OUTREACH";
|
|
8101
|
+
REVIEW: "REVIEW";
|
|
8102
|
+
FIND_CONTACT: "FIND_CONTACT";
|
|
8103
|
+
VIEW_PROGRESS: "VIEW_PROGRESS";
|
|
8104
|
+
COPY_OUTREACH: "COPY_OUTREACH";
|
|
8105
|
+
RETRY_CONTACT: "RETRY_CONTACT";
|
|
8106
|
+
OPEN: "OPEN";
|
|
8107
|
+
}>;
|
|
8108
|
+
score: z.ZodNumber;
|
|
8109
|
+
scoreComponents: z.ZodObject<{
|
|
8110
|
+
topicalRelevance: z.ZodObject<{
|
|
8111
|
+
score: z.ZodNumber;
|
|
8112
|
+
reason: z.ZodString;
|
|
8113
|
+
}, z.core.$strict>;
|
|
8114
|
+
editorialFit: z.ZodObject<{
|
|
8115
|
+
score: z.ZodNumber;
|
|
8116
|
+
reason: z.ZodString;
|
|
8117
|
+
}, z.core.$strict>;
|
|
8118
|
+
pageFreshness: z.ZodObject<{
|
|
8119
|
+
score: z.ZodNumber;
|
|
8120
|
+
reason: z.ZodString;
|
|
8121
|
+
}, z.core.$strict>;
|
|
8122
|
+
siteLegitimacy: z.ZodObject<{
|
|
8123
|
+
score: z.ZodNumber;
|
|
8124
|
+
reason: z.ZodString;
|
|
8125
|
+
}, z.core.$strict>;
|
|
8126
|
+
outreachFeasibility: z.ZodOptional<z.ZodObject<{
|
|
8127
|
+
score: z.ZodNumber;
|
|
8128
|
+
reason: z.ZodString;
|
|
8129
|
+
}, z.core.$strict>>;
|
|
8130
|
+
publisherType: z.ZodOptional<z.ZodEnum<{
|
|
8131
|
+
INDEPENDENT_PUBLISHER: "INDEPENDENT_PUBLISHER";
|
|
8132
|
+
PROFESSIONAL_ORGANIZATION: "PROFESSIONAL_ORGANIZATION";
|
|
8133
|
+
EDUCATIONAL_ORGANIZATION: "EDUCATIONAL_ORGANIZATION";
|
|
8134
|
+
AGENCY_OR_ECOSYSTEM: "AGENCY_OR_ECOSYSTEM";
|
|
8135
|
+
REVIEW_OR_DIRECTORY: "REVIEW_OR_DIRECTORY";
|
|
8136
|
+
PRODUCT_VENDOR: "PRODUCT_VENDOR";
|
|
8137
|
+
MARKETPLACE: "MARKETPLACE";
|
|
8138
|
+
COMMUNITY: "COMMUNITY";
|
|
8139
|
+
OWNED: "OWNED";
|
|
8140
|
+
UNKNOWN: "UNKNOWN";
|
|
8141
|
+
}>>;
|
|
8142
|
+
difficulty: z.ZodOptional<z.ZodEnum<{
|
|
8143
|
+
MEDIUM: "MEDIUM";
|
|
8144
|
+
EASY: "EASY";
|
|
8145
|
+
HARD: "HARD";
|
|
8146
|
+
}>>;
|
|
8147
|
+
productClaimsToVerify: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8148
|
+
}, z.core.$strict>;
|
|
8149
|
+
evidenceExcerpt: z.ZodString;
|
|
8150
|
+
evidenceSourceUrl: z.ZodString;
|
|
8151
|
+
suggestedTargetUrl: z.ZodString;
|
|
8152
|
+
placementAngle: z.ZodString;
|
|
8153
|
+
contactState: z.ZodEnum<{
|
|
8154
|
+
NOT_FOUND: "NOT_FOUND";
|
|
8155
|
+
STALE: "STALE";
|
|
8156
|
+
PUBLIC_CONFIRMED: "PUBLIC_CONFIRMED";
|
|
8157
|
+
GENERIC_PUBLIC: "GENERIC_PUBLIC";
|
|
8158
|
+
}>;
|
|
8159
|
+
lastCheckedAt: z.ZodString;
|
|
8160
|
+
createdAt: z.ZodString;
|
|
8161
|
+
updatedAt: z.ZodString;
|
|
8162
|
+
}, z.core.$strict>>;
|
|
8163
|
+
page: z.ZodObject<{
|
|
8164
|
+
limit: z.ZodNumber;
|
|
8165
|
+
nextCursor: z.ZodNullable<z.ZodString>;
|
|
8166
|
+
}, z.core.$strict>;
|
|
8167
|
+
}, z.core.$strict>;
|
|
8168
|
+
declare const BacklinkProspectListResponseSchema: z.ZodObject<{
|
|
8169
|
+
data: z.ZodObject<{
|
|
8170
|
+
items: z.ZodArray<z.ZodObject<{
|
|
8171
|
+
id: z.ZodString;
|
|
8172
|
+
projectId: z.ZodString;
|
|
8173
|
+
url: z.ZodString;
|
|
8174
|
+
domain: z.ZodString;
|
|
8175
|
+
title: z.ZodString;
|
|
8176
|
+
opportunityType: z.ZodEnum<{
|
|
8177
|
+
TOOL_ROUNDUP: "TOOL_ROUNDUP";
|
|
8178
|
+
COMPARISON: "COMPARISON";
|
|
8179
|
+
RESOURCE_PAGE: "RESOURCE_PAGE";
|
|
8180
|
+
RELEVANT_ARTICLE: "RELEVANT_ARTICLE";
|
|
8181
|
+
}>;
|
|
8182
|
+
stage: z.ZodEnum<{
|
|
8183
|
+
APPROVED: "APPROVED";
|
|
8184
|
+
REJECTED: "REJECTED";
|
|
8185
|
+
NEW: "NEW";
|
|
8186
|
+
CONTACT_RESEARCHING: "CONTACT_RESEARCHING";
|
|
8187
|
+
REVIEW_OUTREACH: "REVIEW_OUTREACH";
|
|
8188
|
+
READY_TO_CONTACT: "READY_TO_CONTACT";
|
|
8189
|
+
CONTACTED: "CONTACTED";
|
|
8190
|
+
REPLIED: "REPLIED";
|
|
8191
|
+
LINK_WON: "LINK_WON";
|
|
8192
|
+
NO_CONTACT: "NO_CONTACT";
|
|
8193
|
+
DECLINED: "DECLINED";
|
|
8194
|
+
}>;
|
|
8195
|
+
version: z.ZodNumber;
|
|
8196
|
+
nextAction: z.ZodEnum<{
|
|
8197
|
+
REVIEW_OUTREACH: "REVIEW_OUTREACH";
|
|
8198
|
+
REVIEW: "REVIEW";
|
|
8199
|
+
FIND_CONTACT: "FIND_CONTACT";
|
|
8200
|
+
VIEW_PROGRESS: "VIEW_PROGRESS";
|
|
8201
|
+
COPY_OUTREACH: "COPY_OUTREACH";
|
|
8202
|
+
RETRY_CONTACT: "RETRY_CONTACT";
|
|
8203
|
+
OPEN: "OPEN";
|
|
8204
|
+
}>;
|
|
8205
|
+
score: z.ZodNumber;
|
|
8206
|
+
scoreComponents: z.ZodObject<{
|
|
8207
|
+
topicalRelevance: z.ZodObject<{
|
|
8208
|
+
score: z.ZodNumber;
|
|
8209
|
+
reason: z.ZodString;
|
|
8210
|
+
}, z.core.$strict>;
|
|
8211
|
+
editorialFit: z.ZodObject<{
|
|
8212
|
+
score: z.ZodNumber;
|
|
8213
|
+
reason: z.ZodString;
|
|
8214
|
+
}, z.core.$strict>;
|
|
8215
|
+
pageFreshness: z.ZodObject<{
|
|
8216
|
+
score: z.ZodNumber;
|
|
8217
|
+
reason: z.ZodString;
|
|
8218
|
+
}, z.core.$strict>;
|
|
8219
|
+
siteLegitimacy: z.ZodObject<{
|
|
8220
|
+
score: z.ZodNumber;
|
|
8221
|
+
reason: z.ZodString;
|
|
8222
|
+
}, z.core.$strict>;
|
|
8223
|
+
outreachFeasibility: z.ZodOptional<z.ZodObject<{
|
|
8224
|
+
score: z.ZodNumber;
|
|
8225
|
+
reason: z.ZodString;
|
|
8226
|
+
}, z.core.$strict>>;
|
|
8227
|
+
publisherType: z.ZodOptional<z.ZodEnum<{
|
|
8228
|
+
INDEPENDENT_PUBLISHER: "INDEPENDENT_PUBLISHER";
|
|
8229
|
+
PROFESSIONAL_ORGANIZATION: "PROFESSIONAL_ORGANIZATION";
|
|
8230
|
+
EDUCATIONAL_ORGANIZATION: "EDUCATIONAL_ORGANIZATION";
|
|
8231
|
+
AGENCY_OR_ECOSYSTEM: "AGENCY_OR_ECOSYSTEM";
|
|
8232
|
+
REVIEW_OR_DIRECTORY: "REVIEW_OR_DIRECTORY";
|
|
8233
|
+
PRODUCT_VENDOR: "PRODUCT_VENDOR";
|
|
8234
|
+
MARKETPLACE: "MARKETPLACE";
|
|
8235
|
+
COMMUNITY: "COMMUNITY";
|
|
8236
|
+
OWNED: "OWNED";
|
|
8237
|
+
UNKNOWN: "UNKNOWN";
|
|
8238
|
+
}>>;
|
|
8239
|
+
difficulty: z.ZodOptional<z.ZodEnum<{
|
|
8240
|
+
MEDIUM: "MEDIUM";
|
|
8241
|
+
EASY: "EASY";
|
|
8242
|
+
HARD: "HARD";
|
|
8243
|
+
}>>;
|
|
8244
|
+
productClaimsToVerify: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8245
|
+
}, z.core.$strict>;
|
|
8246
|
+
evidenceExcerpt: z.ZodString;
|
|
8247
|
+
evidenceSourceUrl: z.ZodString;
|
|
8248
|
+
suggestedTargetUrl: z.ZodString;
|
|
8249
|
+
placementAngle: z.ZodString;
|
|
8250
|
+
contactState: z.ZodEnum<{
|
|
8251
|
+
NOT_FOUND: "NOT_FOUND";
|
|
8252
|
+
STALE: "STALE";
|
|
8253
|
+
PUBLIC_CONFIRMED: "PUBLIC_CONFIRMED";
|
|
8254
|
+
GENERIC_PUBLIC: "GENERIC_PUBLIC";
|
|
8255
|
+
}>;
|
|
8256
|
+
lastCheckedAt: z.ZodString;
|
|
8257
|
+
createdAt: z.ZodString;
|
|
8258
|
+
updatedAt: z.ZodString;
|
|
8259
|
+
}, z.core.$strict>>;
|
|
8260
|
+
page: z.ZodObject<{
|
|
8261
|
+
limit: z.ZodNumber;
|
|
8262
|
+
nextCursor: z.ZodNullable<z.ZodString>;
|
|
8263
|
+
}, z.core.$strict>;
|
|
8264
|
+
}, z.core.$strict>;
|
|
8265
|
+
meta: z.ZodObject<{
|
|
8266
|
+
requestId: z.ZodString;
|
|
8267
|
+
}, z.core.$strip>;
|
|
8268
|
+
}, z.core.$strip>;
|
|
8269
|
+
declare const BacklinkProspectResponseSchema: z.ZodObject<{
|
|
8270
|
+
data: z.ZodObject<{
|
|
8271
|
+
id: z.ZodString;
|
|
8272
|
+
projectId: z.ZodString;
|
|
8273
|
+
url: z.ZodString;
|
|
8274
|
+
domain: z.ZodString;
|
|
8275
|
+
title: z.ZodString;
|
|
8276
|
+
opportunityType: z.ZodEnum<{
|
|
8277
|
+
TOOL_ROUNDUP: "TOOL_ROUNDUP";
|
|
8278
|
+
COMPARISON: "COMPARISON";
|
|
8279
|
+
RESOURCE_PAGE: "RESOURCE_PAGE";
|
|
8280
|
+
RELEVANT_ARTICLE: "RELEVANT_ARTICLE";
|
|
8281
|
+
}>;
|
|
8282
|
+
stage: z.ZodEnum<{
|
|
8283
|
+
APPROVED: "APPROVED";
|
|
8284
|
+
REJECTED: "REJECTED";
|
|
8285
|
+
NEW: "NEW";
|
|
8286
|
+
CONTACT_RESEARCHING: "CONTACT_RESEARCHING";
|
|
8287
|
+
REVIEW_OUTREACH: "REVIEW_OUTREACH";
|
|
8288
|
+
READY_TO_CONTACT: "READY_TO_CONTACT";
|
|
8289
|
+
CONTACTED: "CONTACTED";
|
|
8290
|
+
REPLIED: "REPLIED";
|
|
8291
|
+
LINK_WON: "LINK_WON";
|
|
8292
|
+
NO_CONTACT: "NO_CONTACT";
|
|
8293
|
+
DECLINED: "DECLINED";
|
|
8294
|
+
}>;
|
|
8295
|
+
version: z.ZodNumber;
|
|
8296
|
+
nextAction: z.ZodEnum<{
|
|
8297
|
+
REVIEW_OUTREACH: "REVIEW_OUTREACH";
|
|
8298
|
+
REVIEW: "REVIEW";
|
|
8299
|
+
FIND_CONTACT: "FIND_CONTACT";
|
|
8300
|
+
VIEW_PROGRESS: "VIEW_PROGRESS";
|
|
8301
|
+
COPY_OUTREACH: "COPY_OUTREACH";
|
|
8302
|
+
RETRY_CONTACT: "RETRY_CONTACT";
|
|
8303
|
+
OPEN: "OPEN";
|
|
8304
|
+
}>;
|
|
8305
|
+
score: z.ZodNumber;
|
|
8306
|
+
scoreComponents: z.ZodObject<{
|
|
8307
|
+
topicalRelevance: z.ZodObject<{
|
|
8308
|
+
score: z.ZodNumber;
|
|
8309
|
+
reason: z.ZodString;
|
|
8310
|
+
}, z.core.$strict>;
|
|
8311
|
+
editorialFit: z.ZodObject<{
|
|
8312
|
+
score: z.ZodNumber;
|
|
8313
|
+
reason: z.ZodString;
|
|
8314
|
+
}, z.core.$strict>;
|
|
8315
|
+
pageFreshness: z.ZodObject<{
|
|
8316
|
+
score: z.ZodNumber;
|
|
8317
|
+
reason: z.ZodString;
|
|
8318
|
+
}, z.core.$strict>;
|
|
8319
|
+
siteLegitimacy: z.ZodObject<{
|
|
8320
|
+
score: z.ZodNumber;
|
|
8321
|
+
reason: z.ZodString;
|
|
8322
|
+
}, z.core.$strict>;
|
|
8323
|
+
outreachFeasibility: z.ZodOptional<z.ZodObject<{
|
|
8324
|
+
score: z.ZodNumber;
|
|
8325
|
+
reason: z.ZodString;
|
|
8326
|
+
}, z.core.$strict>>;
|
|
8327
|
+
publisherType: z.ZodOptional<z.ZodEnum<{
|
|
8328
|
+
INDEPENDENT_PUBLISHER: "INDEPENDENT_PUBLISHER";
|
|
8329
|
+
PROFESSIONAL_ORGANIZATION: "PROFESSIONAL_ORGANIZATION";
|
|
8330
|
+
EDUCATIONAL_ORGANIZATION: "EDUCATIONAL_ORGANIZATION";
|
|
8331
|
+
AGENCY_OR_ECOSYSTEM: "AGENCY_OR_ECOSYSTEM";
|
|
8332
|
+
REVIEW_OR_DIRECTORY: "REVIEW_OR_DIRECTORY";
|
|
8333
|
+
PRODUCT_VENDOR: "PRODUCT_VENDOR";
|
|
8334
|
+
MARKETPLACE: "MARKETPLACE";
|
|
8335
|
+
COMMUNITY: "COMMUNITY";
|
|
8336
|
+
OWNED: "OWNED";
|
|
8337
|
+
UNKNOWN: "UNKNOWN";
|
|
8338
|
+
}>>;
|
|
8339
|
+
difficulty: z.ZodOptional<z.ZodEnum<{
|
|
8340
|
+
MEDIUM: "MEDIUM";
|
|
8341
|
+
EASY: "EASY";
|
|
8342
|
+
HARD: "HARD";
|
|
8343
|
+
}>>;
|
|
8344
|
+
productClaimsToVerify: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8345
|
+
}, z.core.$strict>;
|
|
8346
|
+
evidenceExcerpt: z.ZodString;
|
|
8347
|
+
evidenceSourceUrl: z.ZodString;
|
|
8348
|
+
suggestedTargetUrl: z.ZodString;
|
|
8349
|
+
placementAngle: z.ZodString;
|
|
8350
|
+
contactState: z.ZodEnum<{
|
|
8351
|
+
NOT_FOUND: "NOT_FOUND";
|
|
8352
|
+
STALE: "STALE";
|
|
8353
|
+
PUBLIC_CONFIRMED: "PUBLIC_CONFIRMED";
|
|
8354
|
+
GENERIC_PUBLIC: "GENERIC_PUBLIC";
|
|
8355
|
+
}>;
|
|
8356
|
+
lastCheckedAt: z.ZodString;
|
|
8357
|
+
createdAt: z.ZodString;
|
|
8358
|
+
updatedAt: z.ZodString;
|
|
8359
|
+
}, z.core.$strict>;
|
|
8360
|
+
meta: z.ZodObject<{
|
|
8361
|
+
requestId: z.ZodString;
|
|
8362
|
+
}, z.core.$strip>;
|
|
8363
|
+
}, z.core.$strip>;
|
|
8364
|
+
declare const BacklinkTargetInputSchema: z.ZodObject<{
|
|
8365
|
+
url: z.ZodString;
|
|
8366
|
+
label: z.ZodString;
|
|
8367
|
+
topicSummary: z.ZodOptional<z.ZodString>;
|
|
8368
|
+
}, z.core.$strict>;
|
|
8369
|
+
declare const BacklinkDiscoveryInputSchema: z.ZodObject<{
|
|
8370
|
+
limit: z.ZodDefault<z.ZodNumber>;
|
|
8371
|
+
}, z.core.$strict>;
|
|
8372
|
+
declare const BacklinkStageUpdateInputSchema: z.ZodObject<{
|
|
8373
|
+
stage: z.ZodEnum<{
|
|
8374
|
+
APPROVED: "APPROVED";
|
|
8375
|
+
REJECTED: "REJECTED";
|
|
8376
|
+
NEW: "NEW";
|
|
8377
|
+
CONTACT_RESEARCHING: "CONTACT_RESEARCHING";
|
|
8378
|
+
REVIEW_OUTREACH: "REVIEW_OUTREACH";
|
|
8379
|
+
READY_TO_CONTACT: "READY_TO_CONTACT";
|
|
8380
|
+
CONTACTED: "CONTACTED";
|
|
8381
|
+
REPLIED: "REPLIED";
|
|
8382
|
+
LINK_WON: "LINK_WON";
|
|
8383
|
+
NO_CONTACT: "NO_CONTACT";
|
|
8384
|
+
DECLINED: "DECLINED";
|
|
8385
|
+
}>;
|
|
8386
|
+
expectedVersion: z.ZodNumber;
|
|
8387
|
+
}, z.core.$strict>;
|
|
8388
|
+
declare const BacklinkVerificationInputSchema: z.ZodObject<{
|
|
8389
|
+
url: z.ZodString;
|
|
8390
|
+
expectedVersion: z.ZodNumber;
|
|
8391
|
+
}, z.core.$strict>;
|
|
8392
|
+
declare const BacklinkOutreachUpdateInputSchema: z.ZodObject<{
|
|
8393
|
+
expectedVersion: z.ZodNumber;
|
|
8394
|
+
subject: z.ZodString;
|
|
8395
|
+
body: z.ZodString;
|
|
8396
|
+
}, z.core.$strict>;
|
|
8397
|
+
declare const BacklinkTargetSchema: z.ZodObject<{
|
|
8398
|
+
id: z.ZodString;
|
|
8399
|
+
projectId: z.ZodString;
|
|
8400
|
+
normalizedUrl: z.ZodString;
|
|
8401
|
+
label: z.ZodString;
|
|
8402
|
+
topicSummary: z.ZodNullable<z.ZodString>;
|
|
8403
|
+
enabled: z.ZodBoolean;
|
|
8404
|
+
createdAt: z.ZodString;
|
|
8405
|
+
updatedAt: z.ZodString;
|
|
8406
|
+
}, z.core.$strict>;
|
|
8407
|
+
declare const BacklinkTargetListResponseSchema: z.ZodObject<{
|
|
8408
|
+
data: z.ZodArray<z.ZodObject<{
|
|
8409
|
+
id: z.ZodString;
|
|
8410
|
+
projectId: z.ZodString;
|
|
8411
|
+
normalizedUrl: z.ZodString;
|
|
8412
|
+
label: z.ZodString;
|
|
8413
|
+
topicSummary: z.ZodNullable<z.ZodString>;
|
|
8414
|
+
enabled: z.ZodBoolean;
|
|
8415
|
+
createdAt: z.ZodString;
|
|
8416
|
+
updatedAt: z.ZodString;
|
|
8417
|
+
}, z.core.$strict>>;
|
|
8418
|
+
meta: z.ZodObject<{
|
|
8419
|
+
requestId: z.ZodString;
|
|
8420
|
+
}, z.core.$strip>;
|
|
8421
|
+
}, z.core.$strip>;
|
|
8422
|
+
declare const BacklinkTargetResponseSchema: z.ZodObject<{
|
|
8423
|
+
data: z.ZodObject<{
|
|
8424
|
+
id: z.ZodString;
|
|
8425
|
+
projectId: z.ZodString;
|
|
8426
|
+
normalizedUrl: z.ZodString;
|
|
8427
|
+
label: z.ZodString;
|
|
8428
|
+
topicSummary: z.ZodNullable<z.ZodString>;
|
|
8429
|
+
enabled: z.ZodBoolean;
|
|
8430
|
+
createdAt: z.ZodString;
|
|
8431
|
+
updatedAt: z.ZodString;
|
|
8432
|
+
}, z.core.$strict>;
|
|
8433
|
+
meta: z.ZodObject<{
|
|
8434
|
+
requestId: z.ZodString;
|
|
8435
|
+
}, z.core.$strip>;
|
|
8436
|
+
}, z.core.$strip>;
|
|
8437
|
+
declare const BacklinkDiscoveryRunSchema: z.ZodObject<{
|
|
8438
|
+
id: z.ZodString;
|
|
8439
|
+
projectId: z.ZodString;
|
|
8440
|
+
status: z.ZodEnum<{
|
|
8441
|
+
FAILED: "FAILED";
|
|
8442
|
+
PARTIAL: "PARTIAL";
|
|
8443
|
+
QUEUED: "QUEUED";
|
|
8444
|
+
RUNNING: "RUNNING";
|
|
8445
|
+
SUCCEEDED: "SUCCEEDED";
|
|
8446
|
+
CANCELLED: "CANCELLED";
|
|
8447
|
+
}>;
|
|
8448
|
+
promptVersion: z.ZodNumber;
|
|
8449
|
+
configurationVersion: z.ZodNumber;
|
|
8450
|
+
searchedCount: z.ZodNumber;
|
|
8451
|
+
fetchedCount: z.ZodNumber;
|
|
8452
|
+
savedCount: z.ZodNumber;
|
|
8453
|
+
failedCount: z.ZodNumber;
|
|
8454
|
+
safeErrorCode: z.ZodNullable<z.ZodString>;
|
|
8455
|
+
createdAt: z.ZodString;
|
|
8456
|
+
updatedAt: z.ZodString;
|
|
8457
|
+
}, z.core.$strict>;
|
|
8458
|
+
declare const BacklinkDiscoveryRunResponseSchema: z.ZodObject<{
|
|
8459
|
+
data: z.ZodObject<{
|
|
8460
|
+
id: z.ZodString;
|
|
8461
|
+
projectId: z.ZodString;
|
|
8462
|
+
status: z.ZodEnum<{
|
|
8463
|
+
FAILED: "FAILED";
|
|
8464
|
+
PARTIAL: "PARTIAL";
|
|
8465
|
+
QUEUED: "QUEUED";
|
|
8466
|
+
RUNNING: "RUNNING";
|
|
8467
|
+
SUCCEEDED: "SUCCEEDED";
|
|
8468
|
+
CANCELLED: "CANCELLED";
|
|
8469
|
+
}>;
|
|
8470
|
+
promptVersion: z.ZodNumber;
|
|
8471
|
+
configurationVersion: z.ZodNumber;
|
|
8472
|
+
searchedCount: z.ZodNumber;
|
|
8473
|
+
fetchedCount: z.ZodNumber;
|
|
8474
|
+
savedCount: z.ZodNumber;
|
|
8475
|
+
failedCount: z.ZodNumber;
|
|
8476
|
+
safeErrorCode: z.ZodNullable<z.ZodString>;
|
|
8477
|
+
createdAt: z.ZodString;
|
|
8478
|
+
updatedAt: z.ZodString;
|
|
8479
|
+
}, z.core.$strict>;
|
|
8480
|
+
meta: z.ZodObject<{
|
|
8481
|
+
requestId: z.ZodString;
|
|
8482
|
+
}, z.core.$strip>;
|
|
8483
|
+
}, z.core.$strip>;
|
|
8484
|
+
declare const BacklinkQueueResponseSchema: z.ZodObject<{
|
|
8485
|
+
data: z.ZodObject<{
|
|
8486
|
+
prospectId: z.ZodString;
|
|
8487
|
+
status: z.ZodLiteral<"QUEUED">;
|
|
8488
|
+
}, z.core.$strict>;
|
|
8489
|
+
meta: z.ZodObject<{
|
|
8490
|
+
requestId: z.ZodString;
|
|
8491
|
+
}, z.core.$strip>;
|
|
8492
|
+
}, z.core.$strip>;
|
|
8493
|
+
declare const BacklinkVerificationSchema: z.ZodObject<{
|
|
8494
|
+
id: z.ZodString;
|
|
8495
|
+
prospectId: z.ZodString;
|
|
8496
|
+
state: z.ZodEnum<{
|
|
8497
|
+
FAILED: "FAILED";
|
|
8498
|
+
QUEUED: "QUEUED";
|
|
8499
|
+
MISSING: "MISSING";
|
|
8500
|
+
VERIFIED: "VERIFIED";
|
|
8501
|
+
CHECKING: "CHECKING";
|
|
8502
|
+
BLOCKED: "BLOCKED";
|
|
8503
|
+
}>;
|
|
8504
|
+
submittedUrl: z.ZodString;
|
|
8505
|
+
expectedTargetUrl: z.ZodString;
|
|
8506
|
+
}, z.core.$strict>;
|
|
8507
|
+
declare const BacklinkVerificationResponseSchema: z.ZodObject<{
|
|
8508
|
+
data: z.ZodObject<{
|
|
8509
|
+
id: z.ZodString;
|
|
8510
|
+
prospectId: z.ZodString;
|
|
8511
|
+
state: z.ZodEnum<{
|
|
8512
|
+
FAILED: "FAILED";
|
|
8513
|
+
QUEUED: "QUEUED";
|
|
8514
|
+
MISSING: "MISSING";
|
|
8515
|
+
VERIFIED: "VERIFIED";
|
|
8516
|
+
CHECKING: "CHECKING";
|
|
8517
|
+
BLOCKED: "BLOCKED";
|
|
8518
|
+
}>;
|
|
8519
|
+
submittedUrl: z.ZodString;
|
|
8520
|
+
expectedTargetUrl: z.ZodString;
|
|
8521
|
+
}, z.core.$strict>;
|
|
8522
|
+
meta: z.ZodObject<{
|
|
8523
|
+
requestId: z.ZodString;
|
|
8524
|
+
}, z.core.$strip>;
|
|
8525
|
+
}, z.core.$strip>;
|
|
8526
|
+
declare const BacklinkOutreachDraftSchema: z.ZodObject<{
|
|
8527
|
+
id: z.ZodString;
|
|
8528
|
+
prospectId: z.ZodString;
|
|
8529
|
+
version: z.ZodNumber;
|
|
8530
|
+
subject: z.ZodString;
|
|
8531
|
+
body: z.ZodString;
|
|
8532
|
+
}, z.core.$strict>;
|
|
8533
|
+
declare const BacklinkOutreachDraftResponseSchema: z.ZodObject<{
|
|
8534
|
+
data: z.ZodObject<{
|
|
8535
|
+
id: z.ZodString;
|
|
8536
|
+
prospectId: z.ZodString;
|
|
8537
|
+
version: z.ZodNumber;
|
|
8538
|
+
subject: z.ZodString;
|
|
8539
|
+
body: z.ZodString;
|
|
8540
|
+
}, z.core.$strict>;
|
|
8541
|
+
meta: z.ZodObject<{
|
|
8542
|
+
requestId: z.ZodString;
|
|
8543
|
+
}, z.core.$strip>;
|
|
8544
|
+
}, z.core.$strip>;
|
|
8545
|
+
type BacklinkTarget = z.infer<typeof BacklinkTargetSchema>;
|
|
8546
|
+
type BacklinkDiscoveryRun = z.infer<typeof BacklinkDiscoveryRunSchema>;
|
|
8547
|
+
declare const BacklinkContactSchema: z.ZodObject<{
|
|
8548
|
+
prospectId: z.ZodString;
|
|
8549
|
+
name: z.ZodNullable<z.ZodString>;
|
|
8550
|
+
role: z.ZodNullable<z.ZodString>;
|
|
8551
|
+
email: z.ZodString;
|
|
8552
|
+
evidenceState: z.ZodEnum<{
|
|
8553
|
+
STALE: "STALE";
|
|
8554
|
+
PUBLIC_CONFIRMED: "PUBLIC_CONFIRMED";
|
|
8555
|
+
GENERIC_PUBLIC: "GENERIC_PUBLIC";
|
|
8556
|
+
}>;
|
|
8557
|
+
sourceUrl: z.ZodString;
|
|
8558
|
+
evidenceExcerpt: z.ZodString;
|
|
8559
|
+
checkedAt: z.ZodString;
|
|
8560
|
+
draft: z.ZodNullable<z.ZodObject<{
|
|
8561
|
+
version: z.ZodNumber;
|
|
8562
|
+
subject: z.ZodString;
|
|
8563
|
+
body: z.ZodString;
|
|
8564
|
+
}, z.core.$strict>>;
|
|
8565
|
+
}, z.core.$strict>;
|
|
8566
|
+
type BacklinkContact = z.infer<typeof BacklinkContactSchema>;
|
|
8567
|
+
declare const BacklinkContactListDataSchema: z.ZodObject<{
|
|
8568
|
+
items: z.ZodArray<z.ZodObject<{
|
|
8569
|
+
prospectId: z.ZodString;
|
|
8570
|
+
name: z.ZodNullable<z.ZodString>;
|
|
8571
|
+
role: z.ZodNullable<z.ZodString>;
|
|
8572
|
+
email: z.ZodString;
|
|
8573
|
+
evidenceState: z.ZodEnum<{
|
|
8574
|
+
STALE: "STALE";
|
|
8575
|
+
PUBLIC_CONFIRMED: "PUBLIC_CONFIRMED";
|
|
8576
|
+
GENERIC_PUBLIC: "GENERIC_PUBLIC";
|
|
8577
|
+
}>;
|
|
8578
|
+
sourceUrl: z.ZodString;
|
|
8579
|
+
evidenceExcerpt: z.ZodString;
|
|
8580
|
+
checkedAt: z.ZodString;
|
|
8581
|
+
draft: z.ZodNullable<z.ZodObject<{
|
|
8582
|
+
version: z.ZodNumber;
|
|
8583
|
+
subject: z.ZodString;
|
|
8584
|
+
body: z.ZodString;
|
|
8585
|
+
}, z.core.$strict>>;
|
|
8586
|
+
}, z.core.$strict>>;
|
|
8587
|
+
page: z.ZodObject<{
|
|
8588
|
+
limit: z.ZodNumber;
|
|
8589
|
+
nextCursor: z.ZodNullable<z.ZodString>;
|
|
8590
|
+
}, z.core.$strict>;
|
|
8591
|
+
}, z.core.$strict>;
|
|
8592
|
+
declare const BacklinkContactListQuerySchema: z.ZodObject<{
|
|
8593
|
+
limit: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
8594
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
8595
|
+
}, z.core.$strict>;
|
|
8596
|
+
declare const BacklinkContactListResponseSchema: z.ZodObject<{
|
|
8597
|
+
data: z.ZodObject<{
|
|
8598
|
+
items: z.ZodArray<z.ZodObject<{
|
|
8599
|
+
prospectId: z.ZodString;
|
|
8600
|
+
name: z.ZodNullable<z.ZodString>;
|
|
8601
|
+
role: z.ZodNullable<z.ZodString>;
|
|
8602
|
+
email: z.ZodString;
|
|
8603
|
+
evidenceState: z.ZodEnum<{
|
|
8604
|
+
STALE: "STALE";
|
|
8605
|
+
PUBLIC_CONFIRMED: "PUBLIC_CONFIRMED";
|
|
8606
|
+
GENERIC_PUBLIC: "GENERIC_PUBLIC";
|
|
8607
|
+
}>;
|
|
8608
|
+
sourceUrl: z.ZodString;
|
|
8609
|
+
evidenceExcerpt: z.ZodString;
|
|
8610
|
+
checkedAt: z.ZodString;
|
|
8611
|
+
draft: z.ZodNullable<z.ZodObject<{
|
|
8612
|
+
version: z.ZodNumber;
|
|
8613
|
+
subject: z.ZodString;
|
|
8614
|
+
body: z.ZodString;
|
|
8615
|
+
}, z.core.$strict>>;
|
|
8616
|
+
}, z.core.$strict>>;
|
|
8617
|
+
page: z.ZodObject<{
|
|
8618
|
+
limit: z.ZodNumber;
|
|
8619
|
+
nextCursor: z.ZodNullable<z.ZodString>;
|
|
8620
|
+
}, z.core.$strict>;
|
|
8621
|
+
}, z.core.$strict>;
|
|
8622
|
+
meta: z.ZodObject<{
|
|
8623
|
+
requestId: z.ZodString;
|
|
8624
|
+
}, z.core.$strip>;
|
|
8625
|
+
}, z.core.$strip>;
|
|
7081
8626
|
|
|
7082
|
-
export { API_VERSION, type Actor, ActorSchema, AgentBlogApprovalExecuteRequestSchema, AgentBlogApprovalExecuteResponseSchema, AgentBlogApprovalExecuteSchema, AgentBlogApprovalImageSummarySchema, AgentBlogApprovalLinkSummarySchema, AgentBlogApprovalPreviewRequestSchema, AgentBlogApprovalPreviewResponseSchema, AgentBlogApprovalPreviewSchema, type AgentBlogArticle, AgentBlogArticleCreateRequestSchema, type AgentBlogArticleDetail, AgentBlogArticleDetailSchema, AgentBlogArticleListResponseSchema, AgentBlogArticleQueuedResponseSchema, AgentBlogArticleResponseSchema, AgentBlogArticleSchema, type AgentBlogCadenceInput, AgentBlogCadenceInputSchema, type AgentBlogConnectionExecute, AgentBlogConnectionExecuteRequestSchema, AgentBlogConnectionExecuteResponseSchema, AgentBlogConnectionExecuteSchema, AgentBlogConnectionPreviewRequestSchema, AgentBlogConnectionPreviewResponseSchema, AgentBlogConnectionPreviewSchema, type AgentBlogConnectionRequest, AgentBlogConnectionRequestSchema, type AgentBlogConnectionStatus, AgentBlogConnectionStatusResponseSchema, AgentBlogConnectionStatusSchema, type AgentBlogDeliveryAttempt, AgentBlogDeliveryAttemptListResponseSchema, AgentBlogDeliveryAttemptSchema, AgentBlogDestinationSelectionSchema, type AgentBlogDraftUpdate, AgentBlogDraftUpdateSchema, AgentBlogGenerateRequestSchema, AgentBlogIdempotentRequestSchema, AgentBlogImageGenerateRequestSchema, AgentBlogImageGenerationResponseSchema, AgentBlogImageResponseSchema, AgentBlogImageReviewRequestSchema, AgentBlogImageSchema, AgentBlogImageUploadCompleteRequestSchema, AgentBlogImageUploadPreparationResponseSchema, AgentBlogImageUploadPrepareRequestSchema, type AgentBlogJob, AgentBlogJobResponseSchema, AgentBlogJobSchema, type AgentBlogPlan, AgentBlogPlanCreateRequestSchema, type AgentBlogPlanItem, AgentBlogPlanItemResponseSchema, AgentBlogPlanItemSchema, AgentBlogPlanItemStateRequestSchema, AgentBlogPlanItemsResponseSchema, AgentBlogPlanListResponseSchema, AgentBlogPlanQueuedResponseSchema, AgentBlogPlanRetryRequestSchema, AgentBlogPlanSchema, AgentBlogPublishExecuteRequestSchema, AgentBlogPublishExecuteResponseSchema, type AgentBlogPublishPreview, AgentBlogPublishPreviewRequestSchema, AgentBlogPublishPreviewResponseSchema, AgentBlogPublishPreviewSchema, type AgentBlogPublishingDestination, AgentBlogPublishingDestinationListResponseSchema, AgentBlogPublishingDestinationSchema, type AgentBlogPublishingProvider, AgentBlogPublishingProviderListResponseSchema, AgentBlogPublishingProviderSchema, AgentBlogRevalidationTestRequestSchema, AgentBlogRevalidationTestResponseSchema, AgentBlogRevalidationTestSchema, AgentBlogScheduleCancelExecuteRequestSchema, AgentBlogScheduleCancelExecuteResponseSchema, AgentBlogScheduleCancelExecuteSchema, AgentBlogScheduleCancelPreviewRequestSchema, AgentBlogScheduleCancelPreviewResponseSchema, AgentBlogScheduleCancelPreviewSchema, AgentBlogScheduleExecuteRequestSchema, AgentBlogScheduleExecuteResponseSchema, AgentBlogScheduleExecuteSchema, AgentBlogSchedulePreviewRequestSchema, AgentBlogSchedulePreviewResponseSchema, AgentBlogSchedulePreviewSchema, type AgentBlogSetupStatus, AgentBlogSetupStatusResponseSchema, AgentBlogSetupStatusSchema, type ApiErrorCode, ApiErrorCodeSchema, type ApiMeta, type ApiMetaResponse, ApiMetaResponseSchema, ApiMetaSchema, type ApiProblem, ApiProblemSchema, type AuthenticationKind, AuthenticationKindSchema, BlogArticleListSchema, BlogImageSchema, BlogMetadataSchema, BlogSitemapEntrySchema, BlogSlugRedirectSchema, CLI_BROWSER_AUTHORIZATION_TIMEOUT_MS, CONTRACT_VERSION, type CalendarEvent, CalendarEventSchema, type CalendarListData, CalendarListDataSchema, type CalendarListQuery, CalendarListQuerySchema, CalendarListResponseSchema, CapabilitiesDataSchema, type CapabilitiesResponse, CapabilitiesResponseSchema, type Capability, type CapabilityId, CapabilityIdSchema, CapabilitySchema, type CliAuthorizationCredential, CliAuthorizationCredentialSchema, type CliAuthorizationExchangeRequest, CliAuthorizationExchangeRequestSchema, type CliAuthorizationExchangeResponse, CliAuthorizationExchangeResponseSchema, CliAuthorizationRevokeDataSchema, type CliAuthorizationRevokeResponse, CliAuthorizationRevokeResponseSchema, type DraftPostData, type DraftPostInput, DraftPostInputSchema, type DraftPostUpdateData, type DraftPostUpdateInput, DraftPostUpdateInputSchema, IntegrationConnectionStatusSchema, type IntegrationHealth, type IntegrationHealthListData, IntegrationHealthListDataSchema, IntegrationHealthListResponseSchema, IntegrationHealthSchema, LinkedInDeliveryOptionsSchema, type MediaAsset, type MediaAssetListData, MediaAssetListDataSchema, type MediaAssetListQuery, MediaAssetListQuerySchema, MediaAssetListResponseSchema, MediaAssetResponseSchema, MediaAssetSchema, type MediaAssetUploadCompleteInput, MediaAssetUploadCompleteInputSchema, type MediaAssetUploadInput, MediaAssetUploadInputSchema, type MediaAssetUploadPreparation, MediaAssetUploadPreparationResponseSchema, MediaAssetUploadPreparationSchema, PUBLISHING_PROVIDER_COUNT, PlatformPostStatusSchema, type Post, type PostDeliveryMode, PostDeliveryModeSchema, type PostDestination, PostDestinationSchema, type PostDestinationStage, PostDestinationStageSchema, type PostListData, PostListDataSchema, type PostListQuery, PostListQuerySchema, type PostListResponse, PostListResponseSchema, type PostMedia, PostMediaSchema, type PostProviderSettings, PostProviderSettingsSchema, type PostPublishExecuteInput, PostPublishExecuteInputSchema, type PostPublishInput, PostPublishInputSchema, type PostPublishPreview, PostPublishPreviewResponseSchema, PostPublishPreviewSchema, type PostReadiness, PostReadinessCheckSchema, PostReadinessResponseSchema, PostReadinessSchema, type PostResponse, PostResponseSchema, type PostScheduleExecuteInput, PostScheduleExecuteInputSchema, PostScheduleExecuteResponseSchema, type PostScheduleExecuteResult, PostScheduleExecuteResultSchema, type PostScheduleInput, PostScheduleInputSchema, type PostSchedulePending, PostSchedulePendingSchema, type PostSchedulePreview, PostSchedulePreviewResponseSchema, PostSchedulePreviewSchema, PostSchema, type PostStatus, PostStatusSchema, type Project, type ProjectCreateData, type ProjectCreateInput, ProjectCreateInputSchema, type ProjectListData, ProjectListDataSchema, type ProjectListQuery, ProjectListQuerySchema, type ProjectListResponse, ProjectListResponseSchema, type ProjectResponse, ProjectResponseSchema, ProjectSchema, type ProjectType, ProjectTypeSchema, type ProviderDeliveryOptions, type ProviderDeliveryOptionsProvider, ProviderDeliveryOptionsProviderSchema, ProviderDeliveryOptionsResponseSchema, ProviderDeliveryOptionsSchema, ProviderHealthStatusSchema, type PublishedBlogArticle, PublishedBlogArticleSchema, type PublishingProvider, PublishingProviderSchema, ReadinessActionSchema, ReadinessStatusSchema, RequestMetadataSchema, type SeoActionDecision, SeoActionDecisionSchema, type SeoActionPlan, SeoActionPlanSchema, type SeoAgentTask, SeoAgentTaskSchema, SeoConfidenceValueSchema, SeoContentTypeSchema, SeoCursorSchema, type SeoDecisionConfidence, SeoDecisionConfidenceSchema, SeoEntityIdSchema, type SeoEvidence, type SeoEvidenceProvenance, SeoEvidenceProvenanceSchema, SeoEvidenceSchema, type SeoExpectedImpact, SeoExpectedImpactSchema, type SeoOpportunity, type SeoOpportunityBrief, SeoOpportunityBriefSchema, type SeoOpportunityKind, SeoOpportunityKindSchema, type SeoOpportunityListData, SeoOpportunityListDataSchema, type SeoOpportunityListQuery, SeoOpportunityListQuerySchema, SeoOpportunityListResponseSchema, SeoOpportunityResponseSchema, SeoOpportunitySchema, type SeoReport, type SeoReportCompleteness, SeoReportCompletenessSchema, type SeoReportListData, SeoReportListDataSchema, type SeoReportListQuery, SeoReportListQuerySchema, SeoReportListResponseSchema, SeoReportResponseSchema, SeoReportSchema, type SeoReportSummary, SeoReportSummarySchema, SeoReportTriggerSchema, SeoSearchIntentSchema, type SeoTaskDecision, SeoTaskDecisionSchema, type SeoTaskFormat, SeoTaskFormatSchema, TikTokDeliveryOptionsSchema, type TikTokDraftSettings, type TikTokDraftSettingsInput, TikTokDraftSettingsSchema, type TikTokPostSettings, TikTokPostSettingsSchema, type WhoAmIResponse, WhoAmIResponseSchema, type YouTubePostSettings, YouTubePostSettingsSchema, successEnvelopeSchema };
|
|
8627
|
+
export { AGENT_CAPABILITIES, API_VERSION, type Actor, ActorSchema, AgentBlogApprovalExecuteRequestSchema, AgentBlogApprovalExecuteResponseSchema, AgentBlogApprovalExecuteSchema, AgentBlogApprovalImageSummarySchema, AgentBlogApprovalLinkSummarySchema, AgentBlogApprovalPreviewRequestSchema, AgentBlogApprovalPreviewResponseSchema, AgentBlogApprovalPreviewSchema, type AgentBlogArticle, AgentBlogArticleCreateRequestSchema, type AgentBlogArticleDetail, AgentBlogArticleDetailSchema, AgentBlogArticleListResponseSchema, AgentBlogArticleQualitySummarySchema, AgentBlogArticleQueuedResponseSchema, AgentBlogArticleResponseSchema, AgentBlogArticleSchema, type AgentBlogCadenceInput, AgentBlogCadenceInputSchema, type AgentBlogConnectionExecute, AgentBlogConnectionExecuteRequestSchema, AgentBlogConnectionExecuteResponseSchema, AgentBlogConnectionExecuteSchema, AgentBlogConnectionPreviewRequestSchema, AgentBlogConnectionPreviewResponseSchema, AgentBlogConnectionPreviewSchema, type AgentBlogConnectionRequest, AgentBlogConnectionRequestSchema, type AgentBlogConnectionStatus, AgentBlogConnectionStatusResponseSchema, AgentBlogConnectionStatusSchema, type AgentBlogDeliveryAttempt, AgentBlogDeliveryAttemptListResponseSchema, AgentBlogDeliveryAttemptSchema, AgentBlogDestinationSelectionSchema, type AgentBlogDraftUpdate, AgentBlogDraftUpdateSchema, AgentBlogGenerateRequestSchema, AgentBlogIdempotentRequestSchema, AgentBlogImageGenerateRequestSchema, AgentBlogImageGenerationResponseSchema, AgentBlogImageResponseSchema, AgentBlogImageReviewRequestSchema, AgentBlogImageSchema, AgentBlogImageUploadCompleteRequestSchema, AgentBlogImageUploadPreparationResponseSchema, AgentBlogImageUploadPrepareRequestSchema, type AgentBlogJob, AgentBlogJobResponseSchema, AgentBlogJobSchema, AgentBlogMetricSourceSchema, AgentBlogPerformanceObservationSchema, type AgentBlogPlan, type AgentBlogPlanCadenceExecute, AgentBlogPlanCadenceExecuteRequestSchema, AgentBlogPlanCadenceExecuteResponseSchema, AgentBlogPlanCadenceExecuteSchema, type AgentBlogPlanCadencePreview, AgentBlogPlanCadencePreviewRequestSchema, AgentBlogPlanCadencePreviewResponseSchema, AgentBlogPlanCadencePreviewSchema, AgentBlogPlanCreateRequestSchema, type AgentBlogPlanDateMove, AgentBlogPlanDateMoveSchema, type AgentBlogPlanItem, AgentBlogPlanItemResponseSchema, AgentBlogPlanItemSchema, AgentBlogPlanItemStateRequestSchema, AgentBlogPlanItemsResponseSchema, AgentBlogPlanListResponseSchema, AgentBlogPlanLockedItemSchema, AgentBlogPlanQueuedResponseSchema, AgentBlogPlanRetryRequestSchema, AgentBlogPlanSchema, AgentBlogPublishExecuteRequestSchema, AgentBlogPublishExecuteResponseSchema, type AgentBlogPublishPreview, AgentBlogPublishPreviewRequestSchema, AgentBlogPublishPreviewResponseSchema, AgentBlogPublishPreviewSchema, type AgentBlogPublishingDestination, AgentBlogPublishingDestinationListResponseSchema, AgentBlogPublishingDestinationSchema, type AgentBlogPublishingProvider, AgentBlogPublishingProviderListResponseSchema, AgentBlogPublishingProviderSchema, AgentBlogRevalidationTestRequestSchema, AgentBlogRevalidationTestResponseSchema, AgentBlogRevalidationTestSchema, AgentBlogScheduleCancelExecuteRequestSchema, AgentBlogScheduleCancelExecuteResponseSchema, AgentBlogScheduleCancelExecuteSchema, AgentBlogScheduleCancelPreviewRequestSchema, AgentBlogScheduleCancelPreviewResponseSchema, AgentBlogScheduleCancelPreviewSchema, AgentBlogScheduleExecuteRequestSchema, AgentBlogScheduleExecuteResponseSchema, AgentBlogScheduleExecuteSchema, AgentBlogSchedulePreviewRequestSchema, AgentBlogSchedulePreviewResponseSchema, AgentBlogSchedulePreviewSchema, type AgentBlogSetupStatus, AgentBlogSetupStatusResponseSchema, AgentBlogSetupStatusSchema, type AgentBlogWebhookDestinationChange, AgentBlogWebhookDestinationChangeSchema, type AgentBlogWebhookDestinationExecute, AgentBlogWebhookDestinationExecuteRequestSchema, AgentBlogWebhookDestinationExecuteResponseSchema, AgentBlogWebhookDestinationExecuteSchema, AgentBlogWebhookDestinationPreviewRequestSchema, AgentBlogWebhookDestinationPreviewResponseSchema, AgentBlogWebhookDestinationPreviewSchema, type AgentBlogWebhookRotateExecute, AgentBlogWebhookRotateExecuteRequestSchema, AgentBlogWebhookRotateExecuteResponseSchema, AgentBlogWebhookRotateExecuteSchema, AgentBlogWebhookRotatePreviewRequestSchema, AgentBlogWebhookRotatePreviewResponseSchema, AgentBlogWebhookRotatePreviewSchema, AgentBlogWebhookSemanticsSchema, type AgentBlogWebhookTest, AgentBlogWebhookTestRequestSchema, AgentBlogWebhookTestResponseSchema, AgentBlogWebhookTestSchema, type ApiErrorCode, ApiErrorCodeSchema, type ApiMeta, type ApiMetaResponse, ApiMetaResponseSchema, ApiMetaSchema, type ApiProblem, ApiProblemSchema, type AuthenticationKind, AuthenticationKindSchema, type BacklinkContact, BacklinkContactListDataSchema, BacklinkContactListQuerySchema, BacklinkContactListResponseSchema, BacklinkContactSchema, BacklinkContactStateSchema, BacklinkDiscoveryInputSchema, type BacklinkDiscoveryRun, BacklinkDiscoveryRunResponseSchema, BacklinkDiscoveryRunSchema, BacklinkNextActionSchema, BacklinkOpportunityTypeSchema, BacklinkOutreachDraftResponseSchema, BacklinkOutreachDraftSchema, BacklinkOutreachUpdateInputSchema, type BacklinkProspect, BacklinkProspectListDataSchema, BacklinkProspectListQuerySchema, BacklinkProspectListResponseSchema, BacklinkProspectResponseSchema, BacklinkProspectSchema, BacklinkProspectStageSchema, BacklinkQueueResponseSchema, BacklinkScoreComponentsSchema, BacklinkStageUpdateInputSchema, type BacklinkTarget, BacklinkTargetInputSchema, BacklinkTargetListResponseSchema, BacklinkTargetResponseSchema, BacklinkTargetSchema, BacklinkVerificationInputSchema, BacklinkVerificationResponseSchema, BacklinkVerificationSchema, BacklinkVerificationStateSchema, BlogArticleListSchema, BlogImageSchema, BlogMetadataSchema, BlogSitemapEntrySchema, BlogSlugRedirectSchema, CONTRACT_VERSION, type CalendarEvent, CalendarEventSchema, type CalendarListData, CalendarListDataSchema, type CalendarListQuery, CalendarListQuerySchema, CalendarListResponseSchema, CapabilitiesDataSchema, type CapabilitiesResponse, CapabilitiesResponseSchema, type Capability, type CapabilityId, CapabilityIdSchema, CapabilitySchema, type DraftPostData, type DraftPostInput, DraftPostInputSchema, type DraftPostUpdateData, type DraftPostUpdateInput, DraftPostUpdateInputSchema, IntegrationConnectionStatusSchema, type IntegrationHealth, type IntegrationHealthListData, IntegrationHealthListDataSchema, IntegrationHealthListResponseSchema, IntegrationHealthSchema, LinkedInDeliveryOptionsSchema, type MediaAsset, type MediaAssetListData, MediaAssetListDataSchema, type MediaAssetListQuery, MediaAssetListQuerySchema, MediaAssetListResponseSchema, MediaAssetResponseSchema, MediaAssetSchema, type MediaAssetUploadCompleteInput, MediaAssetUploadCompleteInputSchema, type MediaAssetUploadInput, MediaAssetUploadInputSchema, type MediaAssetUploadPreparation, MediaAssetUploadPreparationResponseSchema, MediaAssetUploadPreparationSchema, PUBLISHING_PROVIDER_COUNT, PlatformPostStatusSchema, type Post, type PostDeliveryMode, PostDeliveryModeSchema, type PostDestination, PostDestinationSchema, type PostDestinationStage, PostDestinationStageSchema, type PostListData, PostListDataSchema, type PostListQuery, PostListQuerySchema, type PostListResponse, PostListResponseSchema, type PostMedia, PostMediaSchema, type PostProviderSettings, PostProviderSettingsSchema, type PostPublishExecuteInput, PostPublishExecuteInputSchema, type PostPublishInput, PostPublishInputSchema, type PostPublishPreview, PostPublishPreviewResponseSchema, PostPublishPreviewSchema, type PostReadiness, PostReadinessCheckSchema, PostReadinessResponseSchema, PostReadinessSchema, type PostResponse, PostResponseSchema, type PostScheduleExecuteInput, PostScheduleExecuteInputSchema, PostScheduleExecuteResponseSchema, type PostScheduleExecuteResult, PostScheduleExecuteResultSchema, type PostScheduleInput, PostScheduleInputSchema, type PostSchedulePending, PostSchedulePendingSchema, type PostSchedulePreview, PostSchedulePreviewResponseSchema, PostSchedulePreviewSchema, PostSchema, type PostStatus, PostStatusSchema, type Project, type ProjectCreateData, type ProjectCreateInput, ProjectCreateInputSchema, type ProjectListData, ProjectListDataSchema, type ProjectListQuery, ProjectListQuerySchema, type ProjectListResponse, ProjectListResponseSchema, type ProjectResponse, ProjectResponseSchema, ProjectSchema, type ProjectType, ProjectTypeSchema, type ProviderDeliveryOptions, type ProviderDeliveryOptionsProvider, ProviderDeliveryOptionsProviderSchema, ProviderDeliveryOptionsResponseSchema, ProviderDeliveryOptionsSchema, ProviderHealthStatusSchema, type PublishedBlogArticle, PublishedBlogArticleSchema, type PublishingProvider, PublishingProviderSchema, ReadinessActionSchema, ReadinessStatusSchema, RequestMetadataSchema, type SeoActionDecision, SeoActionDecisionSchema, type SeoActionPlan, SeoActionPlanSchema, type SeoAgentTask, SeoAgentTaskSchema, SeoConfidenceValueSchema, SeoContentTypeSchema, SeoCursorSchema, type SeoDecisionConfidence, SeoDecisionConfidenceSchema, SeoEntityIdSchema, type SeoEvidence, type SeoEvidenceProvenance, SeoEvidenceProvenanceSchema, SeoEvidenceSchema, type SeoExpectedImpact, SeoExpectedImpactSchema, type SeoOpportunity, type SeoOpportunityBrief, SeoOpportunityBriefSchema, type SeoOpportunityKind, SeoOpportunityKindSchema, type SeoOpportunityListData, SeoOpportunityListDataSchema, type SeoOpportunityListQuery, SeoOpportunityListQuerySchema, SeoOpportunityListResponseSchema, SeoOpportunityResponseSchema, SeoOpportunitySchema, type SeoReport, type SeoReportCompleteness, SeoReportCompletenessSchema, type SeoReportListData, SeoReportListDataSchema, type SeoReportListQuery, SeoReportListQuerySchema, SeoReportListResponseSchema, SeoReportResponseSchema, SeoReportSchema, type SeoReportSummary, SeoReportSummarySchema, SeoReportTriggerSchema, SeoSearchIntentSchema, type SeoTaskDecision, SeoTaskDecisionSchema, type SeoTaskFormat, SeoTaskFormatSchema, TikTokDeliveryOptionsSchema, type TikTokDraftSettings, type TikTokDraftSettingsInput, TikTokDraftSettingsSchema, type TikTokPostSettings, TikTokPostSettingsSchema, type WhoAmIResponse, WhoAmIResponseSchema, type YouTubePostSettings, YouTubePostSettingsSchema, successEnvelopeSchema };
|