@omni-graph/omni-model 0.5.26 → 0.5.28
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.
|
@@ -129,21 +129,35 @@ export declare const DesignGuideSectionTypeEnum: z.ZodEnum<["html_text", "bullet
|
|
|
129
129
|
export type SectionType = z.infer<typeof DesignGuideSectionTypeEnum>;
|
|
130
130
|
export type DesignGuideSection = z.infer<typeof DesignGuideSectionSchema>;
|
|
131
131
|
export declare const getPrettySectionTypeName: (type: SectionType) => string;
|
|
132
|
+
export declare const HeadingTypeEnum: z.ZodEnum<["h1", "h2", "h3", "h4", "h5", "h6", "strong"]>;
|
|
132
133
|
export declare const DesignGuideSectionSchema: z.ZodObject<{
|
|
133
134
|
name: z.ZodString;
|
|
134
135
|
type: z.ZodEnum<["html_text", "bullet_point", "specification", "plain_text", "title", "boolean"]>;
|
|
135
136
|
description: z.ZodString;
|
|
136
137
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
138
|
+
settings: z.ZodOptional<z.ZodObject<{
|
|
139
|
+
heading_type: z.ZodEnum<["h1", "h2", "h3", "h4", "h5", "h6", "strong"]>;
|
|
140
|
+
}, "strip", z.ZodTypeAny, {
|
|
141
|
+
heading_type: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "strong";
|
|
142
|
+
}, {
|
|
143
|
+
heading_type: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "strong";
|
|
144
|
+
}>>;
|
|
137
145
|
}, "strip", z.ZodTypeAny, {
|
|
138
146
|
type: "boolean" | "html_text" | "bullet_point" | "specification" | "plain_text" | "title";
|
|
139
147
|
name: string;
|
|
140
148
|
description: string;
|
|
141
149
|
hidden?: boolean | undefined;
|
|
150
|
+
settings?: {
|
|
151
|
+
heading_type: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "strong";
|
|
152
|
+
} | undefined;
|
|
142
153
|
}, {
|
|
143
154
|
type: "boolean" | "html_text" | "bullet_point" | "specification" | "plain_text" | "title";
|
|
144
155
|
name: string;
|
|
145
156
|
description: string;
|
|
146
157
|
hidden?: boolean | undefined;
|
|
158
|
+
settings?: {
|
|
159
|
+
heading_type: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "strong";
|
|
160
|
+
} | undefined;
|
|
147
161
|
}>;
|
|
148
162
|
export declare const ContentOptimizationResponseSchema: z.ZodEffects<z.ZodObject<{
|
|
149
163
|
id: z.ZodCatch<z.ZodEnum<[string, ...string[]]>>;
|
|
@@ -162,16 +176,29 @@ export declare const ContentOptimizationResponseSchema: z.ZodEffects<z.ZodObject
|
|
|
162
176
|
type: z.ZodEnum<["html_text", "bullet_point", "specification", "plain_text", "title", "boolean"]>;
|
|
163
177
|
description: z.ZodString;
|
|
164
178
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
179
|
+
settings: z.ZodOptional<z.ZodObject<{
|
|
180
|
+
heading_type: z.ZodEnum<["h1", "h2", "h3", "h4", "h5", "h6", "strong"]>;
|
|
181
|
+
}, "strip", z.ZodTypeAny, {
|
|
182
|
+
heading_type: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "strong";
|
|
183
|
+
}, {
|
|
184
|
+
heading_type: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "strong";
|
|
185
|
+
}>>;
|
|
165
186
|
}, "strip", z.ZodTypeAny, {
|
|
166
187
|
type: "boolean" | "html_text" | "bullet_point" | "specification" | "plain_text" | "title";
|
|
167
188
|
name: string;
|
|
168
189
|
description: string;
|
|
169
190
|
hidden?: boolean | undefined;
|
|
191
|
+
settings?: {
|
|
192
|
+
heading_type: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "strong";
|
|
193
|
+
} | undefined;
|
|
170
194
|
}, {
|
|
171
195
|
type: "boolean" | "html_text" | "bullet_point" | "specification" | "plain_text" | "title";
|
|
172
196
|
name: string;
|
|
173
197
|
description: string;
|
|
174
198
|
hidden?: boolean | undefined;
|
|
199
|
+
settings?: {
|
|
200
|
+
heading_type: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "strong";
|
|
201
|
+
} | undefined;
|
|
175
202
|
}>, "many">;
|
|
176
203
|
}, "strip", z.ZodTypeAny, {
|
|
177
204
|
sections: {
|
|
@@ -179,6 +206,9 @@ export declare const ContentOptimizationResponseSchema: z.ZodEffects<z.ZodObject
|
|
|
179
206
|
name: string;
|
|
180
207
|
description: string;
|
|
181
208
|
hidden?: boolean | undefined;
|
|
209
|
+
settings?: {
|
|
210
|
+
heading_type: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "strong";
|
|
211
|
+
} | undefined;
|
|
182
212
|
}[];
|
|
183
213
|
}, {
|
|
184
214
|
sections: {
|
|
@@ -186,6 +216,9 @@ export declare const ContentOptimizationResponseSchema: z.ZodEffects<z.ZodObject
|
|
|
186
216
|
name: string;
|
|
187
217
|
description: string;
|
|
188
218
|
hidden?: boolean | undefined;
|
|
219
|
+
settings?: {
|
|
220
|
+
heading_type: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "strong";
|
|
221
|
+
} | undefined;
|
|
189
222
|
}[];
|
|
190
223
|
}>;
|
|
191
224
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -198,6 +231,9 @@ export declare const ContentOptimizationResponseSchema: z.ZodEffects<z.ZodObject
|
|
|
198
231
|
name: string;
|
|
199
232
|
description: string;
|
|
200
233
|
hidden?: boolean | undefined;
|
|
234
|
+
settings?: {
|
|
235
|
+
heading_type: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "strong";
|
|
236
|
+
} | undefined;
|
|
201
237
|
}[];
|
|
202
238
|
};
|
|
203
239
|
prioritization_strategy?: string | undefined;
|
|
@@ -211,6 +247,9 @@ export declare const ContentOptimizationResponseSchema: z.ZodEffects<z.ZodObject
|
|
|
211
247
|
name: string;
|
|
212
248
|
description: string;
|
|
213
249
|
hidden?: boolean | undefined;
|
|
250
|
+
settings?: {
|
|
251
|
+
heading_type: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "strong";
|
|
252
|
+
} | undefined;
|
|
214
253
|
}[];
|
|
215
254
|
};
|
|
216
255
|
prioritization_strategy?: string | undefined;
|
|
@@ -227,6 +266,9 @@ export declare const ContentOptimizationResponseSchema: z.ZodEffects<z.ZodObject
|
|
|
227
266
|
name: string;
|
|
228
267
|
description: string;
|
|
229
268
|
hidden?: boolean | undefined;
|
|
269
|
+
settings?: {
|
|
270
|
+
heading_type: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "strong";
|
|
271
|
+
} | undefined;
|
|
230
272
|
}[];
|
|
231
273
|
};
|
|
232
274
|
prioritization_strategy?: string | undefined;
|
|
@@ -245,6 +287,9 @@ export declare const ContentOptimizationResponseSchema: z.ZodEffects<z.ZodObject
|
|
|
245
287
|
name: string;
|
|
246
288
|
description: string;
|
|
247
289
|
hidden?: boolean | undefined;
|
|
290
|
+
settings?: {
|
|
291
|
+
heading_type: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "strong";
|
|
292
|
+
} | undefined;
|
|
248
293
|
}[];
|
|
249
294
|
};
|
|
250
295
|
prioritization_strategy?: string | undefined;
|
|
@@ -263,6 +308,9 @@ export declare const ContentOptimizationResponseSchema: z.ZodEffects<z.ZodObject
|
|
|
263
308
|
name: string;
|
|
264
309
|
description: string;
|
|
265
310
|
hidden?: boolean | undefined;
|
|
311
|
+
settings?: {
|
|
312
|
+
heading_type: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "strong";
|
|
313
|
+
} | undefined;
|
|
266
314
|
}[];
|
|
267
315
|
};
|
|
268
316
|
prioritization_strategy?: string | undefined;
|
|
@@ -277,6 +325,9 @@ export declare const ContentOptimizationResponseSchema: z.ZodEffects<z.ZodObject
|
|
|
277
325
|
name: string;
|
|
278
326
|
description: string;
|
|
279
327
|
hidden?: boolean | undefined;
|
|
328
|
+
settings?: {
|
|
329
|
+
heading_type: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "strong";
|
|
330
|
+
} | undefined;
|
|
280
331
|
}[];
|
|
281
332
|
};
|
|
282
333
|
prioritization_strategy?: string | undefined;
|
|
@@ -298,16 +349,29 @@ export declare const DesignGuideResponseSchema: z.ZodEffects<z.ZodObject<{
|
|
|
298
349
|
type: z.ZodEnum<["html_text", "bullet_point", "specification", "plain_text", "title", "boolean"]>;
|
|
299
350
|
description: z.ZodString;
|
|
300
351
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
352
|
+
settings: z.ZodOptional<z.ZodObject<{
|
|
353
|
+
heading_type: z.ZodEnum<["h1", "h2", "h3", "h4", "h5", "h6", "strong"]>;
|
|
354
|
+
}, "strip", z.ZodTypeAny, {
|
|
355
|
+
heading_type: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "strong";
|
|
356
|
+
}, {
|
|
357
|
+
heading_type: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "strong";
|
|
358
|
+
}>>;
|
|
301
359
|
}, "strip", z.ZodTypeAny, {
|
|
302
360
|
type: "boolean" | "html_text" | "bullet_point" | "specification" | "plain_text" | "title";
|
|
303
361
|
name: string;
|
|
304
362
|
description: string;
|
|
305
363
|
hidden?: boolean | undefined;
|
|
364
|
+
settings?: {
|
|
365
|
+
heading_type: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "strong";
|
|
366
|
+
} | undefined;
|
|
306
367
|
}, {
|
|
307
368
|
type: "boolean" | "html_text" | "bullet_point" | "specification" | "plain_text" | "title";
|
|
308
369
|
name: string;
|
|
309
370
|
description: string;
|
|
310
371
|
hidden?: boolean | undefined;
|
|
372
|
+
settings?: {
|
|
373
|
+
heading_type: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "strong";
|
|
374
|
+
} | undefined;
|
|
311
375
|
}>, "many">;
|
|
312
376
|
}, "strip", z.ZodTypeAny, {
|
|
313
377
|
sections: {
|
|
@@ -315,6 +379,9 @@ export declare const DesignGuideResponseSchema: z.ZodEffects<z.ZodObject<{
|
|
|
315
379
|
name: string;
|
|
316
380
|
description: string;
|
|
317
381
|
hidden?: boolean | undefined;
|
|
382
|
+
settings?: {
|
|
383
|
+
heading_type: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "strong";
|
|
384
|
+
} | undefined;
|
|
318
385
|
}[];
|
|
319
386
|
}, {
|
|
320
387
|
sections: {
|
|
@@ -322,6 +389,9 @@ export declare const DesignGuideResponseSchema: z.ZodEffects<z.ZodObject<{
|
|
|
322
389
|
name: string;
|
|
323
390
|
description: string;
|
|
324
391
|
hidden?: boolean | undefined;
|
|
392
|
+
settings?: {
|
|
393
|
+
heading_type: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "strong";
|
|
394
|
+
} | undefined;
|
|
325
395
|
}[];
|
|
326
396
|
}>;
|
|
327
397
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -332,6 +402,9 @@ export declare const DesignGuideResponseSchema: z.ZodEffects<z.ZodObject<{
|
|
|
332
402
|
name: string;
|
|
333
403
|
description: string;
|
|
334
404
|
hidden?: boolean | undefined;
|
|
405
|
+
settings?: {
|
|
406
|
+
heading_type: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "strong";
|
|
407
|
+
} | undefined;
|
|
335
408
|
}[];
|
|
336
409
|
};
|
|
337
410
|
accountId: string;
|
|
@@ -344,6 +417,9 @@ export declare const DesignGuideResponseSchema: z.ZodEffects<z.ZodObject<{
|
|
|
344
417
|
name: string;
|
|
345
418
|
description: string;
|
|
346
419
|
hidden?: boolean | undefined;
|
|
420
|
+
settings?: {
|
|
421
|
+
heading_type: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "strong";
|
|
422
|
+
} | undefined;
|
|
347
423
|
}[];
|
|
348
424
|
};
|
|
349
425
|
accountId: string;
|
|
@@ -356,6 +432,9 @@ export declare const DesignGuideResponseSchema: z.ZodEffects<z.ZodObject<{
|
|
|
356
432
|
name: string;
|
|
357
433
|
description: string;
|
|
358
434
|
hidden?: boolean | undefined;
|
|
435
|
+
settings?: {
|
|
436
|
+
heading_type: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "strong";
|
|
437
|
+
} | undefined;
|
|
359
438
|
}[];
|
|
360
439
|
}, {
|
|
361
440
|
value: {
|
|
@@ -364,6 +443,9 @@ export declare const DesignGuideResponseSchema: z.ZodEffects<z.ZodObject<{
|
|
|
364
443
|
name: string;
|
|
365
444
|
description: string;
|
|
366
445
|
hidden?: boolean | undefined;
|
|
446
|
+
settings?: {
|
|
447
|
+
heading_type: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "strong";
|
|
448
|
+
} | undefined;
|
|
367
449
|
}[];
|
|
368
450
|
};
|
|
369
451
|
accountId: string;
|
|
@@ -1289,16 +1371,29 @@ export declare const SettingsSchemas: {
|
|
|
1289
1371
|
type: z.ZodEnum<["html_text", "bullet_point", "specification", "plain_text", "title", "boolean"]>;
|
|
1290
1372
|
description: z.ZodString;
|
|
1291
1373
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1374
|
+
settings: z.ZodOptional<z.ZodObject<{
|
|
1375
|
+
heading_type: z.ZodEnum<["h1", "h2", "h3", "h4", "h5", "h6", "strong"]>;
|
|
1376
|
+
}, "strip", z.ZodTypeAny, {
|
|
1377
|
+
heading_type: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "strong";
|
|
1378
|
+
}, {
|
|
1379
|
+
heading_type: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "strong";
|
|
1380
|
+
}>>;
|
|
1292
1381
|
}, "strip", z.ZodTypeAny, {
|
|
1293
1382
|
type: "boolean" | "html_text" | "bullet_point" | "specification" | "plain_text" | "title";
|
|
1294
1383
|
name: string;
|
|
1295
1384
|
description: string;
|
|
1296
1385
|
hidden?: boolean | undefined;
|
|
1386
|
+
settings?: {
|
|
1387
|
+
heading_type: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "strong";
|
|
1388
|
+
} | undefined;
|
|
1297
1389
|
}, {
|
|
1298
1390
|
type: "boolean" | "html_text" | "bullet_point" | "specification" | "plain_text" | "title";
|
|
1299
1391
|
name: string;
|
|
1300
1392
|
description: string;
|
|
1301
1393
|
hidden?: boolean | undefined;
|
|
1394
|
+
settings?: {
|
|
1395
|
+
heading_type: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "strong";
|
|
1396
|
+
} | undefined;
|
|
1302
1397
|
}>, "many">;
|
|
1303
1398
|
}, "strip", z.ZodTypeAny, {
|
|
1304
1399
|
sections: {
|
|
@@ -1306,6 +1401,9 @@ export declare const SettingsSchemas: {
|
|
|
1306
1401
|
name: string;
|
|
1307
1402
|
description: string;
|
|
1308
1403
|
hidden?: boolean | undefined;
|
|
1404
|
+
settings?: {
|
|
1405
|
+
heading_type: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "strong";
|
|
1406
|
+
} | undefined;
|
|
1309
1407
|
}[];
|
|
1310
1408
|
}, {
|
|
1311
1409
|
sections: {
|
|
@@ -1313,6 +1411,9 @@ export declare const SettingsSchemas: {
|
|
|
1313
1411
|
name: string;
|
|
1314
1412
|
description: string;
|
|
1315
1413
|
hidden?: boolean | undefined;
|
|
1414
|
+
settings?: {
|
|
1415
|
+
heading_type: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "strong";
|
|
1416
|
+
} | undefined;
|
|
1316
1417
|
}[];
|
|
1317
1418
|
}>;
|
|
1318
1419
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1325,6 +1426,9 @@ export declare const SettingsSchemas: {
|
|
|
1325
1426
|
name: string;
|
|
1326
1427
|
description: string;
|
|
1327
1428
|
hidden?: boolean | undefined;
|
|
1429
|
+
settings?: {
|
|
1430
|
+
heading_type: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "strong";
|
|
1431
|
+
} | undefined;
|
|
1328
1432
|
}[];
|
|
1329
1433
|
};
|
|
1330
1434
|
prioritization_strategy?: string | undefined;
|
|
@@ -1338,6 +1442,9 @@ export declare const SettingsSchemas: {
|
|
|
1338
1442
|
name: string;
|
|
1339
1443
|
description: string;
|
|
1340
1444
|
hidden?: boolean | undefined;
|
|
1445
|
+
settings?: {
|
|
1446
|
+
heading_type: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "strong";
|
|
1447
|
+
} | undefined;
|
|
1341
1448
|
}[];
|
|
1342
1449
|
};
|
|
1343
1450
|
prioritization_strategy?: string | undefined;
|
|
@@ -1354,6 +1461,9 @@ export declare const SettingsSchemas: {
|
|
|
1354
1461
|
name: string;
|
|
1355
1462
|
description: string;
|
|
1356
1463
|
hidden?: boolean | undefined;
|
|
1464
|
+
settings?: {
|
|
1465
|
+
heading_type: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "strong";
|
|
1466
|
+
} | undefined;
|
|
1357
1467
|
}[];
|
|
1358
1468
|
};
|
|
1359
1469
|
prioritization_strategy?: string | undefined;
|
|
@@ -1372,6 +1482,9 @@ export declare const SettingsSchemas: {
|
|
|
1372
1482
|
name: string;
|
|
1373
1483
|
description: string;
|
|
1374
1484
|
hidden?: boolean | undefined;
|
|
1485
|
+
settings?: {
|
|
1486
|
+
heading_type: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "strong";
|
|
1487
|
+
} | undefined;
|
|
1375
1488
|
}[];
|
|
1376
1489
|
};
|
|
1377
1490
|
prioritization_strategy?: string | undefined;
|
|
@@ -1390,6 +1503,9 @@ export declare const SettingsSchemas: {
|
|
|
1390
1503
|
name: string;
|
|
1391
1504
|
description: string;
|
|
1392
1505
|
hidden?: boolean | undefined;
|
|
1506
|
+
settings?: {
|
|
1507
|
+
heading_type: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "strong";
|
|
1508
|
+
} | undefined;
|
|
1393
1509
|
}[];
|
|
1394
1510
|
};
|
|
1395
1511
|
prioritization_strategy?: string | undefined;
|
|
@@ -1404,6 +1520,9 @@ export declare const SettingsSchemas: {
|
|
|
1404
1520
|
name: string;
|
|
1405
1521
|
description: string;
|
|
1406
1522
|
hidden?: boolean | undefined;
|
|
1523
|
+
settings?: {
|
|
1524
|
+
heading_type: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "strong";
|
|
1525
|
+
} | undefined;
|
|
1407
1526
|
}[];
|
|
1408
1527
|
};
|
|
1409
1528
|
prioritization_strategy?: string | undefined;
|
|
@@ -2418,16 +2537,29 @@ export declare const SettingsSchemas: {
|
|
|
2418
2537
|
type: z.ZodEnum<["html_text", "bullet_point", "specification", "plain_text", "title", "boolean"]>;
|
|
2419
2538
|
description: z.ZodString;
|
|
2420
2539
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2540
|
+
settings: z.ZodOptional<z.ZodObject<{
|
|
2541
|
+
heading_type: z.ZodEnum<["h1", "h2", "h3", "h4", "h5", "h6", "strong"]>;
|
|
2542
|
+
}, "strip", z.ZodTypeAny, {
|
|
2543
|
+
heading_type: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "strong";
|
|
2544
|
+
}, {
|
|
2545
|
+
heading_type: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "strong";
|
|
2546
|
+
}>>;
|
|
2421
2547
|
}, "strip", z.ZodTypeAny, {
|
|
2422
2548
|
type: "boolean" | "html_text" | "bullet_point" | "specification" | "plain_text" | "title";
|
|
2423
2549
|
name: string;
|
|
2424
2550
|
description: string;
|
|
2425
2551
|
hidden?: boolean | undefined;
|
|
2552
|
+
settings?: {
|
|
2553
|
+
heading_type: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "strong";
|
|
2554
|
+
} | undefined;
|
|
2426
2555
|
}, {
|
|
2427
2556
|
type: "boolean" | "html_text" | "bullet_point" | "specification" | "plain_text" | "title";
|
|
2428
2557
|
name: string;
|
|
2429
2558
|
description: string;
|
|
2430
2559
|
hidden?: boolean | undefined;
|
|
2560
|
+
settings?: {
|
|
2561
|
+
heading_type: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "strong";
|
|
2562
|
+
} | undefined;
|
|
2431
2563
|
}>, "many">;
|
|
2432
2564
|
}, "strip", z.ZodTypeAny, {
|
|
2433
2565
|
sections: {
|
|
@@ -2435,6 +2567,9 @@ export declare const SettingsSchemas: {
|
|
|
2435
2567
|
name: string;
|
|
2436
2568
|
description: string;
|
|
2437
2569
|
hidden?: boolean | undefined;
|
|
2570
|
+
settings?: {
|
|
2571
|
+
heading_type: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "strong";
|
|
2572
|
+
} | undefined;
|
|
2438
2573
|
}[];
|
|
2439
2574
|
}, {
|
|
2440
2575
|
sections: {
|
|
@@ -2442,6 +2577,9 @@ export declare const SettingsSchemas: {
|
|
|
2442
2577
|
name: string;
|
|
2443
2578
|
description: string;
|
|
2444
2579
|
hidden?: boolean | undefined;
|
|
2580
|
+
settings?: {
|
|
2581
|
+
heading_type: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "strong";
|
|
2582
|
+
} | undefined;
|
|
2445
2583
|
}[];
|
|
2446
2584
|
}>;
|
|
2447
2585
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -2452,6 +2590,9 @@ export declare const SettingsSchemas: {
|
|
|
2452
2590
|
name: string;
|
|
2453
2591
|
description: string;
|
|
2454
2592
|
hidden?: boolean | undefined;
|
|
2593
|
+
settings?: {
|
|
2594
|
+
heading_type: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "strong";
|
|
2595
|
+
} | undefined;
|
|
2455
2596
|
}[];
|
|
2456
2597
|
};
|
|
2457
2598
|
accountId: string;
|
|
@@ -2464,6 +2605,9 @@ export declare const SettingsSchemas: {
|
|
|
2464
2605
|
name: string;
|
|
2465
2606
|
description: string;
|
|
2466
2607
|
hidden?: boolean | undefined;
|
|
2608
|
+
settings?: {
|
|
2609
|
+
heading_type: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "strong";
|
|
2610
|
+
} | undefined;
|
|
2467
2611
|
}[];
|
|
2468
2612
|
};
|
|
2469
2613
|
accountId: string;
|
|
@@ -2476,6 +2620,9 @@ export declare const SettingsSchemas: {
|
|
|
2476
2620
|
name: string;
|
|
2477
2621
|
description: string;
|
|
2478
2622
|
hidden?: boolean | undefined;
|
|
2623
|
+
settings?: {
|
|
2624
|
+
heading_type: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "strong";
|
|
2625
|
+
} | undefined;
|
|
2479
2626
|
}[];
|
|
2480
2627
|
}, {
|
|
2481
2628
|
value: {
|
|
@@ -2484,6 +2631,9 @@ export declare const SettingsSchemas: {
|
|
|
2484
2631
|
name: string;
|
|
2485
2632
|
description: string;
|
|
2486
2633
|
hidden?: boolean | undefined;
|
|
2634
|
+
settings?: {
|
|
2635
|
+
heading_type: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "strong";
|
|
2636
|
+
} | undefined;
|
|
2487
2637
|
}[];
|
|
2488
2638
|
};
|
|
2489
2639
|
accountId: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"accountSettings.d.ts","sourceRoot":"","sources":["../../../src/zod/account-settings/accountSettings.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"accountSettings.d.ts","sourceRoot":"","sources":["../../../src/zod/account-settings/accountSettings.ts"],"names":[],"mappings":"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"}
|
|
@@ -35,11 +35,17 @@ export const getPrettySectionTypeName = (type) => {
|
|
|
35
35
|
return type;
|
|
36
36
|
}
|
|
37
37
|
};
|
|
38
|
+
export const HeadingTypeEnum = z.enum(['h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'strong']);
|
|
38
39
|
export const DesignGuideSectionSchema = z.object({
|
|
39
40
|
name: z.string(),
|
|
40
41
|
type: DesignGuideSectionTypeEnum,
|
|
41
42
|
description: z.string(),
|
|
42
43
|
hidden: z.boolean().optional(), // Whether the section should be hidden when converted to HTML
|
|
44
|
+
settings: z
|
|
45
|
+
.object({
|
|
46
|
+
heading_type: HeadingTypeEnum,
|
|
47
|
+
})
|
|
48
|
+
.optional(),
|
|
43
49
|
});
|
|
44
50
|
const ContentOptimizationValueSchema = z.object({
|
|
45
51
|
tone_of_voice: z.string().nullable(),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"accountSettings.js","sourceRoot":"","sources":["../../../src/zod/account-settings/accountSettings.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAC;AACtB,OAAO,EAAC,qBAAqB,EAAE,0BAA0B,EAAC,MAAM,QAAQ,CAAC;AACzE,OAAO,EAAC,sBAAsB,EAAC,MAAM,iBAAiB,CAAC;AACvD,OAAO,EAAC,uBAAuB,EAAC,MAAM,iBAAiB,CAAC;AAkCxD,MAAM,gCAAgC,GAAG,CAAC,CAAC,MAAM,CAAC;IAChD,cAAc,EAAE,CAAC,CAAC,MAAM,EAAE;IAC1B,mBAAmB,EAAE,CAAC,CAAC,MAAM,EAAE;IAC/B,kBAAkB,EAAE,CAAC,CAAC,MAAM,EAAE;IAC9B,gBAAgB,EAAE,CAAC,CAAC,OAAO,EAAE;IAC7B,YAAY,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;IACjC,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE;IACzB,qBAAqB,EAAE,CAAC,CAAC,MAAM,EAAE;IACjC,eAAe,EAAE,CAAC,CAAC,MAAM,EAAE;IAC3B,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE;CAC1B,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,mCAAmC,GAAG,0BAA0B,CAAC,MAAM,CAAC;IACnF,KAAK,EAAE,gCAAgC;CACxC,CAAC,CAAC,SAAS,CAAC,CAAC,IAAI,EAAE,EAAE;IACpB,OAAO,IAAI,CAAC,KAAK,CAAC;AACpB,CAAC,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,0BAA0B,GAAG,CAAC,CAAC,IAAI,CAAC,CAAC,WAAW,EAAE,cAAc,EAAE,eAAe,EAAE,YAAY,EAAE,OAAO,EAAE,SAAS,CAAC,CAAC,CAAC;AAKnI,MAAM,CAAC,MAAM,wBAAwB,GAAG,CAAC,IAAiB,EAAU,EAAE;IACpE,QAAQ,IAAI,EAAE,CAAC;QACb,KAAK,WAAW;YACd,OAAO,WAAW,CAAC;QACrB,KAAK,cAAc;YACjB,OAAO,eAAe,CAAC;QACzB,KAAK,eAAe;YAClB,OAAO,qBAAqB,CAAC;QAC/B,KAAK,YAAY;YACf,OAAO,YAAY,CAAC;QACtB,KAAK,OAAO;YACV,OAAO,OAAO,CAAC;QAEjB;YACE,OAAO,IAAI,CAAC;IAChB,CAAC;AACH,CAAC,CAAC;AAEF,MAAM,CAAC,MAAM,wBAAwB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC/C,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;IAChB,IAAI,EAAE,0BAA0B;IAChC,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE;IACvB,MAAM,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE,EAAE,8DAA8D;
|
|
1
|
+
{"version":3,"file":"accountSettings.js","sourceRoot":"","sources":["../../../src/zod/account-settings/accountSettings.ts"],"names":[],"mappings":"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"}
|