markdown-codec 6.0.0 → 6.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +25 -24
- package/dist/ast/ast.d.cts +1 -1
- package/dist/ast/ast.d.ts +1 -1
- package/dist/{ast-8XCbjRQT.d.cts → ast-CNfTgS0N.d.cts} +35 -35
- package/dist/{ast-8XCbjRQT.d.ts → ast-CNfTgS0N.d.ts} +35 -35
- package/dist/block/block.d.cts +3 -3
- package/dist/block/block.d.ts +3 -3
- package/dist/block/definitions.d.cts +1 -1
- package/dist/block/definitions.d.ts +1 -1
- package/dist/block/node.d.cts +4 -4
- package/dist/block/node.d.ts +4 -4
- package/dist/block/table.d.cts +1 -1
- package/dist/block/table.d.ts +1 -1
- package/dist/codec.d.cts +579 -0
- package/dist/codec.d.ts +579 -0
- package/dist/defaults/defaults.d.cts +1 -1
- package/dist/defaults/defaults.d.ts +1 -1
- package/dist/diagnostics/diagnostics.d.cts +1 -1
- package/dist/diagnostics/diagnostics.d.ts +1 -1
- package/dist/{diagnostics-CkcSYZf1.d.cts → diagnostics-CH-xa2-s.d.cts} +5 -5
- package/dist/{diagnostics-CkcSYZf1.d.ts → diagnostics-CH-xa2-s.d.ts} +5 -5
- package/dist/emit/emit.cjs +1 -1
- package/dist/emit/emit.js +1 -1
- package/dist/emit/inline.cjs +2 -2
- package/dist/emit/inline.d.cts +3 -3
- package/dist/emit/inline.d.ts +3 -3
- package/dist/emit/inline.js +2 -2
- package/dist/emit/table.d.cts +1 -1
- package/dist/emit/table.d.ts +1 -1
- package/dist/html/render.d.cts +1 -1
- package/dist/html/render.d.ts +1 -1
- package/dist/image/image.cjs +4 -4
- package/dist/image/image.d.cts +1 -1
- package/dist/image/image.d.ts +1 -1
- package/dist/image/image.js +4 -4
- package/dist/{image-C4KYmz_L.d.cts → image-B5L0HpAJ.d.cts} +1 -1
- package/dist/{image-DescdRgq.d.cts → image-BtmTG4_a.d.cts} +1 -1
- package/dist/{image-DescdRgq.d.ts → image-BtmTG4_a.d.ts} +1 -1
- package/dist/{image-Cm3hT5PS.d.ts → image-C390OIB3.d.ts} +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/inline/delimiter.d.cts +2 -2
- package/dist/inline/delimiter.d.ts +2 -2
- package/dist/inline/inline.d.cts +1 -1
- package/dist/inline/inline.d.ts +1 -1
- package/dist/inline/node.d.cts +2 -2
- package/dist/inline/node.d.ts +2 -2
- package/dist/{inline-CoS1JzxI.d.cts → inline-CnO86zMw.d.cts} +1 -1
- package/dist/{inline-OGXVE6hB.d.ts → inline-DItZ-VVw.d.ts} +1 -1
- package/dist/lower/front-matter.d.cts +1 -1
- package/dist/lower/front-matter.d.ts +1 -1
- package/dist/lower/image.d.cts +1 -1
- package/dist/lower/image.d.ts +1 -1
- package/dist/lower/inline.d.cts +3 -3
- package/dist/lower/inline.d.ts +3 -3
- package/dist/lower/table.d.cts +1 -1
- package/dist/lower/table.d.ts +1 -1
- package/dist/options/options.d.cts +10 -10
- package/dist/options/options.d.ts +10 -10
- package/dist/read.d.cts +1 -1
- package/dist/read.d.ts +1 -1
- package/dist/scan/entity-table.cjs +2125 -2125
- package/dist/scan/entity-table.js +2125 -2125
- package/dist/shared/list-id.d.cts +3 -3
- package/dist/shared/list-id.d.ts +3 -3
- package/package.json +2 -11
package/dist/block/table.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { N as MarkdownTableAlignment } from "../ast-
|
|
1
|
+
import { N as MarkdownTableAlignment } from "../ast-CNfTgS0N.js";
|
|
2
2
|
//#region src/block/table.d.ts
|
|
3
3
|
declare function splitTableRow(line: string): string[];
|
|
4
4
|
declare function parseTableDelimiterRow(line: string): MarkdownTableAlignment[] | undefined;
|
package/dist/codec.d.cts
CHANGED
|
@@ -1161,6 +1161,585 @@ declare const markdownContentCodec: z.ZodCodec<z.ZodCustom<Uint8Array<ArrayBuffe
|
|
|
1161
1161
|
}, z.core.$strip>>;
|
|
1162
1162
|
}, z.core.$strip>;
|
|
1163
1163
|
embeddedObjects: z.ZodOptional<z.ZodArray<z.ZodCustom<import("document-schema.js").ContentEmbeddedObject, import("document-schema.js").ContentEmbeddedObject>>>;
|
|
1164
|
+
dataValidations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1165
|
+
ranges: z.ZodArray<z.ZodObject<{
|
|
1166
|
+
startRow: z.ZodNumber;
|
|
1167
|
+
startColumn: z.ZodNumber;
|
|
1168
|
+
endRow: z.ZodNumber;
|
|
1169
|
+
endColumn: z.ZodNumber;
|
|
1170
|
+
}, z.core.$strip>>;
|
|
1171
|
+
type: z.ZodEnum<{
|
|
1172
|
+
date: "date";
|
|
1173
|
+
custom: "custom";
|
|
1174
|
+
list: "list";
|
|
1175
|
+
time: "time";
|
|
1176
|
+
whole: "whole";
|
|
1177
|
+
decimal: "decimal";
|
|
1178
|
+
textLength: "textLength";
|
|
1179
|
+
}>;
|
|
1180
|
+
operator: z.ZodOptional<z.ZodEnum<{
|
|
1181
|
+
between: "between";
|
|
1182
|
+
notBetween: "notBetween";
|
|
1183
|
+
equal: "equal";
|
|
1184
|
+
notEqual: "notEqual";
|
|
1185
|
+
greaterThan: "greaterThan";
|
|
1186
|
+
greaterThanOrEqual: "greaterThanOrEqual";
|
|
1187
|
+
lessThan: "lessThan";
|
|
1188
|
+
lessThanOrEqual: "lessThanOrEqual";
|
|
1189
|
+
}>>;
|
|
1190
|
+
formula1: z.ZodOptional<z.ZodString>;
|
|
1191
|
+
formula2: z.ZodOptional<z.ZodString>;
|
|
1192
|
+
allowBlank: z.ZodOptional<z.ZodBoolean>;
|
|
1193
|
+
showInputMessage: z.ZodOptional<z.ZodBoolean>;
|
|
1194
|
+
promptTitle: z.ZodOptional<z.ZodString>;
|
|
1195
|
+
prompt: z.ZodOptional<z.ZodString>;
|
|
1196
|
+
showErrorMessage: z.ZodOptional<z.ZodBoolean>;
|
|
1197
|
+
errorStyle: z.ZodOptional<z.ZodEnum<{
|
|
1198
|
+
stop: "stop";
|
|
1199
|
+
warning: "warning";
|
|
1200
|
+
information: "information";
|
|
1201
|
+
}>>;
|
|
1202
|
+
errorTitle: z.ZodOptional<z.ZodString>;
|
|
1203
|
+
error: z.ZodOptional<z.ZodString>;
|
|
1204
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
1205
|
+
format: z.ZodEnum<{
|
|
1206
|
+
docx: "docx";
|
|
1207
|
+
pptx: "pptx";
|
|
1208
|
+
xlsx: "xlsx";
|
|
1209
|
+
odt: "odt";
|
|
1210
|
+
ods: "ods";
|
|
1211
|
+
odp: "odp";
|
|
1212
|
+
odg: "odg";
|
|
1213
|
+
odm: "odm";
|
|
1214
|
+
odb: "odb";
|
|
1215
|
+
odf: "odf";
|
|
1216
|
+
markdown: "markdown";
|
|
1217
|
+
pdf: "pdf";
|
|
1218
|
+
}>;
|
|
1219
|
+
xml: z.ZodString;
|
|
1220
|
+
}, z.core.$strict>>;
|
|
1221
|
+
}, z.core.$strip>>>;
|
|
1222
|
+
conditionalFormats: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1223
|
+
operator: z.ZodEnum<{
|
|
1224
|
+
between: "between";
|
|
1225
|
+
notBetween: "notBetween";
|
|
1226
|
+
equal: "equal";
|
|
1227
|
+
notEqual: "notEqual";
|
|
1228
|
+
greaterThan: "greaterThan";
|
|
1229
|
+
greaterThanOrEqual: "greaterThanOrEqual";
|
|
1230
|
+
lessThan: "lessThan";
|
|
1231
|
+
lessThanOrEqual: "lessThanOrEqual";
|
|
1232
|
+
}>;
|
|
1233
|
+
formula1: z.ZodString;
|
|
1234
|
+
formula2: z.ZodOptional<z.ZodString>;
|
|
1235
|
+
style: z.ZodOptional<z.ZodObject<{
|
|
1236
|
+
textColor: z.ZodOptional<z.ZodObject<{
|
|
1237
|
+
r: z.ZodNumber;
|
|
1238
|
+
g: z.ZodNumber;
|
|
1239
|
+
b: z.ZodNumber;
|
|
1240
|
+
}, z.core.$strip>>;
|
|
1241
|
+
background: z.ZodOptional<z.ZodObject<{
|
|
1242
|
+
r: z.ZodNumber;
|
|
1243
|
+
g: z.ZodNumber;
|
|
1244
|
+
b: z.ZodNumber;
|
|
1245
|
+
}, z.core.$strip>>;
|
|
1246
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
1247
|
+
format: z.ZodEnum<{
|
|
1248
|
+
docx: "docx";
|
|
1249
|
+
pptx: "pptx";
|
|
1250
|
+
xlsx: "xlsx";
|
|
1251
|
+
odt: "odt";
|
|
1252
|
+
ods: "ods";
|
|
1253
|
+
odp: "odp";
|
|
1254
|
+
odg: "odg";
|
|
1255
|
+
odm: "odm";
|
|
1256
|
+
odb: "odb";
|
|
1257
|
+
odf: "odf";
|
|
1258
|
+
markdown: "markdown";
|
|
1259
|
+
pdf: "pdf";
|
|
1260
|
+
}>;
|
|
1261
|
+
xml: z.ZodString;
|
|
1262
|
+
}, z.core.$strict>>;
|
|
1263
|
+
}, z.core.$strip>>;
|
|
1264
|
+
ranges: z.ZodArray<z.ZodObject<{
|
|
1265
|
+
startRow: z.ZodNumber;
|
|
1266
|
+
startColumn: z.ZodNumber;
|
|
1267
|
+
endRow: z.ZodNumber;
|
|
1268
|
+
endColumn: z.ZodNumber;
|
|
1269
|
+
}, z.core.$strip>>;
|
|
1270
|
+
priority: z.ZodOptional<z.ZodNumber>;
|
|
1271
|
+
stopIfTrue: z.ZodOptional<z.ZodBoolean>;
|
|
1272
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
1273
|
+
format: z.ZodEnum<{
|
|
1274
|
+
docx: "docx";
|
|
1275
|
+
pptx: "pptx";
|
|
1276
|
+
xlsx: "xlsx";
|
|
1277
|
+
odt: "odt";
|
|
1278
|
+
ods: "ods";
|
|
1279
|
+
odp: "odp";
|
|
1280
|
+
odg: "odg";
|
|
1281
|
+
odm: "odm";
|
|
1282
|
+
odb: "odb";
|
|
1283
|
+
odf: "odf";
|
|
1284
|
+
markdown: "markdown";
|
|
1285
|
+
pdf: "pdf";
|
|
1286
|
+
}>;
|
|
1287
|
+
xml: z.ZodString;
|
|
1288
|
+
}, z.core.$strict>>;
|
|
1289
|
+
type: z.ZodLiteral<"cellIs">;
|
|
1290
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1291
|
+
text: z.ZodString;
|
|
1292
|
+
style: z.ZodOptional<z.ZodObject<{
|
|
1293
|
+
textColor: z.ZodOptional<z.ZodObject<{
|
|
1294
|
+
r: z.ZodNumber;
|
|
1295
|
+
g: z.ZodNumber;
|
|
1296
|
+
b: z.ZodNumber;
|
|
1297
|
+
}, z.core.$strip>>;
|
|
1298
|
+
background: z.ZodOptional<z.ZodObject<{
|
|
1299
|
+
r: z.ZodNumber;
|
|
1300
|
+
g: z.ZodNumber;
|
|
1301
|
+
b: z.ZodNumber;
|
|
1302
|
+
}, z.core.$strip>>;
|
|
1303
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
1304
|
+
format: z.ZodEnum<{
|
|
1305
|
+
docx: "docx";
|
|
1306
|
+
pptx: "pptx";
|
|
1307
|
+
xlsx: "xlsx";
|
|
1308
|
+
odt: "odt";
|
|
1309
|
+
ods: "ods";
|
|
1310
|
+
odp: "odp";
|
|
1311
|
+
odg: "odg";
|
|
1312
|
+
odm: "odm";
|
|
1313
|
+
odb: "odb";
|
|
1314
|
+
odf: "odf";
|
|
1315
|
+
markdown: "markdown";
|
|
1316
|
+
pdf: "pdf";
|
|
1317
|
+
}>;
|
|
1318
|
+
xml: z.ZodString;
|
|
1319
|
+
}, z.core.$strict>>;
|
|
1320
|
+
}, z.core.$strip>>;
|
|
1321
|
+
ranges: z.ZodArray<z.ZodObject<{
|
|
1322
|
+
startRow: z.ZodNumber;
|
|
1323
|
+
startColumn: z.ZodNumber;
|
|
1324
|
+
endRow: z.ZodNumber;
|
|
1325
|
+
endColumn: z.ZodNumber;
|
|
1326
|
+
}, z.core.$strip>>;
|
|
1327
|
+
priority: z.ZodOptional<z.ZodNumber>;
|
|
1328
|
+
stopIfTrue: z.ZodOptional<z.ZodBoolean>;
|
|
1329
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
1330
|
+
format: z.ZodEnum<{
|
|
1331
|
+
docx: "docx";
|
|
1332
|
+
pptx: "pptx";
|
|
1333
|
+
xlsx: "xlsx";
|
|
1334
|
+
odt: "odt";
|
|
1335
|
+
ods: "ods";
|
|
1336
|
+
odp: "odp";
|
|
1337
|
+
odg: "odg";
|
|
1338
|
+
odm: "odm";
|
|
1339
|
+
odb: "odb";
|
|
1340
|
+
odf: "odf";
|
|
1341
|
+
markdown: "markdown";
|
|
1342
|
+
pdf: "pdf";
|
|
1343
|
+
}>;
|
|
1344
|
+
xml: z.ZodString;
|
|
1345
|
+
}, z.core.$strict>>;
|
|
1346
|
+
type: z.ZodEnum<{
|
|
1347
|
+
containsText: "containsText";
|
|
1348
|
+
notContainsText: "notContainsText";
|
|
1349
|
+
beginsWith: "beginsWith";
|
|
1350
|
+
endsWith: "endsWith";
|
|
1351
|
+
}>;
|
|
1352
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1353
|
+
style: z.ZodOptional<z.ZodObject<{
|
|
1354
|
+
textColor: z.ZodOptional<z.ZodObject<{
|
|
1355
|
+
r: z.ZodNumber;
|
|
1356
|
+
g: z.ZodNumber;
|
|
1357
|
+
b: z.ZodNumber;
|
|
1358
|
+
}, z.core.$strip>>;
|
|
1359
|
+
background: z.ZodOptional<z.ZodObject<{
|
|
1360
|
+
r: z.ZodNumber;
|
|
1361
|
+
g: z.ZodNumber;
|
|
1362
|
+
b: z.ZodNumber;
|
|
1363
|
+
}, z.core.$strip>>;
|
|
1364
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
1365
|
+
format: z.ZodEnum<{
|
|
1366
|
+
docx: "docx";
|
|
1367
|
+
pptx: "pptx";
|
|
1368
|
+
xlsx: "xlsx";
|
|
1369
|
+
odt: "odt";
|
|
1370
|
+
ods: "ods";
|
|
1371
|
+
odp: "odp";
|
|
1372
|
+
odg: "odg";
|
|
1373
|
+
odm: "odm";
|
|
1374
|
+
odb: "odb";
|
|
1375
|
+
odf: "odf";
|
|
1376
|
+
markdown: "markdown";
|
|
1377
|
+
pdf: "pdf";
|
|
1378
|
+
}>;
|
|
1379
|
+
xml: z.ZodString;
|
|
1380
|
+
}, z.core.$strict>>;
|
|
1381
|
+
}, z.core.$strip>>;
|
|
1382
|
+
ranges: z.ZodArray<z.ZodObject<{
|
|
1383
|
+
startRow: z.ZodNumber;
|
|
1384
|
+
startColumn: z.ZodNumber;
|
|
1385
|
+
endRow: z.ZodNumber;
|
|
1386
|
+
endColumn: z.ZodNumber;
|
|
1387
|
+
}, z.core.$strip>>;
|
|
1388
|
+
priority: z.ZodOptional<z.ZodNumber>;
|
|
1389
|
+
stopIfTrue: z.ZodOptional<z.ZodBoolean>;
|
|
1390
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
1391
|
+
format: z.ZodEnum<{
|
|
1392
|
+
docx: "docx";
|
|
1393
|
+
pptx: "pptx";
|
|
1394
|
+
xlsx: "xlsx";
|
|
1395
|
+
odt: "odt";
|
|
1396
|
+
ods: "ods";
|
|
1397
|
+
odp: "odp";
|
|
1398
|
+
odg: "odg";
|
|
1399
|
+
odm: "odm";
|
|
1400
|
+
odb: "odb";
|
|
1401
|
+
odf: "odf";
|
|
1402
|
+
markdown: "markdown";
|
|
1403
|
+
pdf: "pdf";
|
|
1404
|
+
}>;
|
|
1405
|
+
xml: z.ZodString;
|
|
1406
|
+
}, z.core.$strict>>;
|
|
1407
|
+
type: z.ZodEnum<{
|
|
1408
|
+
containsBlanks: "containsBlanks";
|
|
1409
|
+
notContainsBlanks: "notContainsBlanks";
|
|
1410
|
+
containsErrors: "containsErrors";
|
|
1411
|
+
notContainsErrors: "notContainsErrors";
|
|
1412
|
+
uniqueValues: "uniqueValues";
|
|
1413
|
+
duplicateValues: "duplicateValues";
|
|
1414
|
+
}>;
|
|
1415
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1416
|
+
rank: z.ZodNumber;
|
|
1417
|
+
percent: z.ZodOptional<z.ZodBoolean>;
|
|
1418
|
+
bottom: z.ZodOptional<z.ZodBoolean>;
|
|
1419
|
+
style: z.ZodOptional<z.ZodObject<{
|
|
1420
|
+
textColor: z.ZodOptional<z.ZodObject<{
|
|
1421
|
+
r: z.ZodNumber;
|
|
1422
|
+
g: z.ZodNumber;
|
|
1423
|
+
b: z.ZodNumber;
|
|
1424
|
+
}, z.core.$strip>>;
|
|
1425
|
+
background: z.ZodOptional<z.ZodObject<{
|
|
1426
|
+
r: z.ZodNumber;
|
|
1427
|
+
g: z.ZodNumber;
|
|
1428
|
+
b: z.ZodNumber;
|
|
1429
|
+
}, z.core.$strip>>;
|
|
1430
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
1431
|
+
format: z.ZodEnum<{
|
|
1432
|
+
docx: "docx";
|
|
1433
|
+
pptx: "pptx";
|
|
1434
|
+
xlsx: "xlsx";
|
|
1435
|
+
odt: "odt";
|
|
1436
|
+
ods: "ods";
|
|
1437
|
+
odp: "odp";
|
|
1438
|
+
odg: "odg";
|
|
1439
|
+
odm: "odm";
|
|
1440
|
+
odb: "odb";
|
|
1441
|
+
odf: "odf";
|
|
1442
|
+
markdown: "markdown";
|
|
1443
|
+
pdf: "pdf";
|
|
1444
|
+
}>;
|
|
1445
|
+
xml: z.ZodString;
|
|
1446
|
+
}, z.core.$strict>>;
|
|
1447
|
+
}, z.core.$strip>>;
|
|
1448
|
+
ranges: z.ZodArray<z.ZodObject<{
|
|
1449
|
+
startRow: z.ZodNumber;
|
|
1450
|
+
startColumn: z.ZodNumber;
|
|
1451
|
+
endRow: z.ZodNumber;
|
|
1452
|
+
endColumn: z.ZodNumber;
|
|
1453
|
+
}, z.core.$strip>>;
|
|
1454
|
+
priority: z.ZodOptional<z.ZodNumber>;
|
|
1455
|
+
stopIfTrue: z.ZodOptional<z.ZodBoolean>;
|
|
1456
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
1457
|
+
format: z.ZodEnum<{
|
|
1458
|
+
docx: "docx";
|
|
1459
|
+
pptx: "pptx";
|
|
1460
|
+
xlsx: "xlsx";
|
|
1461
|
+
odt: "odt";
|
|
1462
|
+
ods: "ods";
|
|
1463
|
+
odp: "odp";
|
|
1464
|
+
odg: "odg";
|
|
1465
|
+
odm: "odm";
|
|
1466
|
+
odb: "odb";
|
|
1467
|
+
odf: "odf";
|
|
1468
|
+
markdown: "markdown";
|
|
1469
|
+
pdf: "pdf";
|
|
1470
|
+
}>;
|
|
1471
|
+
xml: z.ZodString;
|
|
1472
|
+
}, z.core.$strict>>;
|
|
1473
|
+
type: z.ZodLiteral<"top10">;
|
|
1474
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1475
|
+
aboveAverage: z.ZodOptional<z.ZodBoolean>;
|
|
1476
|
+
equalAverage: z.ZodOptional<z.ZodBoolean>;
|
|
1477
|
+
stdDev: z.ZodOptional<z.ZodNumber>;
|
|
1478
|
+
style: z.ZodOptional<z.ZodObject<{
|
|
1479
|
+
textColor: z.ZodOptional<z.ZodObject<{
|
|
1480
|
+
r: z.ZodNumber;
|
|
1481
|
+
g: z.ZodNumber;
|
|
1482
|
+
b: z.ZodNumber;
|
|
1483
|
+
}, z.core.$strip>>;
|
|
1484
|
+
background: z.ZodOptional<z.ZodObject<{
|
|
1485
|
+
r: z.ZodNumber;
|
|
1486
|
+
g: z.ZodNumber;
|
|
1487
|
+
b: z.ZodNumber;
|
|
1488
|
+
}, z.core.$strip>>;
|
|
1489
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
1490
|
+
format: z.ZodEnum<{
|
|
1491
|
+
docx: "docx";
|
|
1492
|
+
pptx: "pptx";
|
|
1493
|
+
xlsx: "xlsx";
|
|
1494
|
+
odt: "odt";
|
|
1495
|
+
ods: "ods";
|
|
1496
|
+
odp: "odp";
|
|
1497
|
+
odg: "odg";
|
|
1498
|
+
odm: "odm";
|
|
1499
|
+
odb: "odb";
|
|
1500
|
+
odf: "odf";
|
|
1501
|
+
markdown: "markdown";
|
|
1502
|
+
pdf: "pdf";
|
|
1503
|
+
}>;
|
|
1504
|
+
xml: z.ZodString;
|
|
1505
|
+
}, z.core.$strict>>;
|
|
1506
|
+
}, z.core.$strip>>;
|
|
1507
|
+
ranges: z.ZodArray<z.ZodObject<{
|
|
1508
|
+
startRow: z.ZodNumber;
|
|
1509
|
+
startColumn: z.ZodNumber;
|
|
1510
|
+
endRow: z.ZodNumber;
|
|
1511
|
+
endColumn: z.ZodNumber;
|
|
1512
|
+
}, z.core.$strip>>;
|
|
1513
|
+
priority: z.ZodOptional<z.ZodNumber>;
|
|
1514
|
+
stopIfTrue: z.ZodOptional<z.ZodBoolean>;
|
|
1515
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
1516
|
+
format: z.ZodEnum<{
|
|
1517
|
+
docx: "docx";
|
|
1518
|
+
pptx: "pptx";
|
|
1519
|
+
xlsx: "xlsx";
|
|
1520
|
+
odt: "odt";
|
|
1521
|
+
ods: "ods";
|
|
1522
|
+
odp: "odp";
|
|
1523
|
+
odg: "odg";
|
|
1524
|
+
odm: "odm";
|
|
1525
|
+
odb: "odb";
|
|
1526
|
+
odf: "odf";
|
|
1527
|
+
markdown: "markdown";
|
|
1528
|
+
pdf: "pdf";
|
|
1529
|
+
}>;
|
|
1530
|
+
xml: z.ZodString;
|
|
1531
|
+
}, z.core.$strict>>;
|
|
1532
|
+
type: z.ZodLiteral<"aboveAverage">;
|
|
1533
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1534
|
+
timePeriod: z.ZodEnum<{
|
|
1535
|
+
yesterday: "yesterday";
|
|
1536
|
+
today: "today";
|
|
1537
|
+
tomorrow: "tomorrow";
|
|
1538
|
+
last7Days: "last7Days";
|
|
1539
|
+
thisMonth: "thisMonth";
|
|
1540
|
+
lastMonth: "lastMonth";
|
|
1541
|
+
nextMonth: "nextMonth";
|
|
1542
|
+
thisWeek: "thisWeek";
|
|
1543
|
+
lastWeek: "lastWeek";
|
|
1544
|
+
nextWeek: "nextWeek";
|
|
1545
|
+
}>;
|
|
1546
|
+
style: z.ZodOptional<z.ZodObject<{
|
|
1547
|
+
textColor: z.ZodOptional<z.ZodObject<{
|
|
1548
|
+
r: z.ZodNumber;
|
|
1549
|
+
g: z.ZodNumber;
|
|
1550
|
+
b: z.ZodNumber;
|
|
1551
|
+
}, z.core.$strip>>;
|
|
1552
|
+
background: z.ZodOptional<z.ZodObject<{
|
|
1553
|
+
r: z.ZodNumber;
|
|
1554
|
+
g: z.ZodNumber;
|
|
1555
|
+
b: z.ZodNumber;
|
|
1556
|
+
}, z.core.$strip>>;
|
|
1557
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
1558
|
+
format: z.ZodEnum<{
|
|
1559
|
+
docx: "docx";
|
|
1560
|
+
pptx: "pptx";
|
|
1561
|
+
xlsx: "xlsx";
|
|
1562
|
+
odt: "odt";
|
|
1563
|
+
ods: "ods";
|
|
1564
|
+
odp: "odp";
|
|
1565
|
+
odg: "odg";
|
|
1566
|
+
odm: "odm";
|
|
1567
|
+
odb: "odb";
|
|
1568
|
+
odf: "odf";
|
|
1569
|
+
markdown: "markdown";
|
|
1570
|
+
pdf: "pdf";
|
|
1571
|
+
}>;
|
|
1572
|
+
xml: z.ZodString;
|
|
1573
|
+
}, z.core.$strict>>;
|
|
1574
|
+
}, z.core.$strip>>;
|
|
1575
|
+
ranges: z.ZodArray<z.ZodObject<{
|
|
1576
|
+
startRow: z.ZodNumber;
|
|
1577
|
+
startColumn: z.ZodNumber;
|
|
1578
|
+
endRow: z.ZodNumber;
|
|
1579
|
+
endColumn: z.ZodNumber;
|
|
1580
|
+
}, z.core.$strip>>;
|
|
1581
|
+
priority: z.ZodOptional<z.ZodNumber>;
|
|
1582
|
+
stopIfTrue: z.ZodOptional<z.ZodBoolean>;
|
|
1583
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
1584
|
+
format: z.ZodEnum<{
|
|
1585
|
+
docx: "docx";
|
|
1586
|
+
pptx: "pptx";
|
|
1587
|
+
xlsx: "xlsx";
|
|
1588
|
+
odt: "odt";
|
|
1589
|
+
ods: "ods";
|
|
1590
|
+
odp: "odp";
|
|
1591
|
+
odg: "odg";
|
|
1592
|
+
odm: "odm";
|
|
1593
|
+
odb: "odb";
|
|
1594
|
+
odf: "odf";
|
|
1595
|
+
markdown: "markdown";
|
|
1596
|
+
pdf: "pdf";
|
|
1597
|
+
}>;
|
|
1598
|
+
xml: z.ZodString;
|
|
1599
|
+
}, z.core.$strict>>;
|
|
1600
|
+
type: z.ZodLiteral<"timePeriod">;
|
|
1601
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1602
|
+
stops: z.ZodArray<z.ZodObject<{
|
|
1603
|
+
value: z.ZodObject<{
|
|
1604
|
+
type: z.ZodEnum<{
|
|
1605
|
+
formula: "formula";
|
|
1606
|
+
num: "num";
|
|
1607
|
+
percent: "percent";
|
|
1608
|
+
max: "max";
|
|
1609
|
+
min: "min";
|
|
1610
|
+
percentile: "percentile";
|
|
1611
|
+
}>;
|
|
1612
|
+
value: z.ZodOptional<z.ZodString>;
|
|
1613
|
+
}, z.core.$strip>;
|
|
1614
|
+
color: z.ZodObject<{
|
|
1615
|
+
r: z.ZodNumber;
|
|
1616
|
+
g: z.ZodNumber;
|
|
1617
|
+
b: z.ZodNumber;
|
|
1618
|
+
}, z.core.$strip>;
|
|
1619
|
+
}, z.core.$strip>>;
|
|
1620
|
+
ranges: z.ZodArray<z.ZodObject<{
|
|
1621
|
+
startRow: z.ZodNumber;
|
|
1622
|
+
startColumn: z.ZodNumber;
|
|
1623
|
+
endRow: z.ZodNumber;
|
|
1624
|
+
endColumn: z.ZodNumber;
|
|
1625
|
+
}, z.core.$strip>>;
|
|
1626
|
+
priority: z.ZodOptional<z.ZodNumber>;
|
|
1627
|
+
stopIfTrue: z.ZodOptional<z.ZodBoolean>;
|
|
1628
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
1629
|
+
format: z.ZodEnum<{
|
|
1630
|
+
docx: "docx";
|
|
1631
|
+
pptx: "pptx";
|
|
1632
|
+
xlsx: "xlsx";
|
|
1633
|
+
odt: "odt";
|
|
1634
|
+
ods: "ods";
|
|
1635
|
+
odp: "odp";
|
|
1636
|
+
odg: "odg";
|
|
1637
|
+
odm: "odm";
|
|
1638
|
+
odb: "odb";
|
|
1639
|
+
odf: "odf";
|
|
1640
|
+
markdown: "markdown";
|
|
1641
|
+
pdf: "pdf";
|
|
1642
|
+
}>;
|
|
1643
|
+
xml: z.ZodString;
|
|
1644
|
+
}, z.core.$strict>>;
|
|
1645
|
+
type: z.ZodLiteral<"colorScale">;
|
|
1646
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1647
|
+
min: z.ZodObject<{
|
|
1648
|
+
type: z.ZodEnum<{
|
|
1649
|
+
formula: "formula";
|
|
1650
|
+
num: "num";
|
|
1651
|
+
percent: "percent";
|
|
1652
|
+
max: "max";
|
|
1653
|
+
min: "min";
|
|
1654
|
+
percentile: "percentile";
|
|
1655
|
+
}>;
|
|
1656
|
+
value: z.ZodOptional<z.ZodString>;
|
|
1657
|
+
}, z.core.$strip>;
|
|
1658
|
+
max: z.ZodObject<{
|
|
1659
|
+
type: z.ZodEnum<{
|
|
1660
|
+
formula: "formula";
|
|
1661
|
+
num: "num";
|
|
1662
|
+
percent: "percent";
|
|
1663
|
+
max: "max";
|
|
1664
|
+
min: "min";
|
|
1665
|
+
percentile: "percentile";
|
|
1666
|
+
}>;
|
|
1667
|
+
value: z.ZodOptional<z.ZodString>;
|
|
1668
|
+
}, z.core.$strip>;
|
|
1669
|
+
color: z.ZodObject<{
|
|
1670
|
+
r: z.ZodNumber;
|
|
1671
|
+
g: z.ZodNumber;
|
|
1672
|
+
b: z.ZodNumber;
|
|
1673
|
+
}, z.core.$strip>;
|
|
1674
|
+
showValue: z.ZodOptional<z.ZodBoolean>;
|
|
1675
|
+
ranges: z.ZodArray<z.ZodObject<{
|
|
1676
|
+
startRow: z.ZodNumber;
|
|
1677
|
+
startColumn: z.ZodNumber;
|
|
1678
|
+
endRow: z.ZodNumber;
|
|
1679
|
+
endColumn: z.ZodNumber;
|
|
1680
|
+
}, z.core.$strip>>;
|
|
1681
|
+
priority: z.ZodOptional<z.ZodNumber>;
|
|
1682
|
+
stopIfTrue: z.ZodOptional<z.ZodBoolean>;
|
|
1683
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
1684
|
+
format: z.ZodEnum<{
|
|
1685
|
+
docx: "docx";
|
|
1686
|
+
pptx: "pptx";
|
|
1687
|
+
xlsx: "xlsx";
|
|
1688
|
+
odt: "odt";
|
|
1689
|
+
ods: "ods";
|
|
1690
|
+
odp: "odp";
|
|
1691
|
+
odg: "odg";
|
|
1692
|
+
odm: "odm";
|
|
1693
|
+
odb: "odb";
|
|
1694
|
+
odf: "odf";
|
|
1695
|
+
markdown: "markdown";
|
|
1696
|
+
pdf: "pdf";
|
|
1697
|
+
}>;
|
|
1698
|
+
xml: z.ZodString;
|
|
1699
|
+
}, z.core.$strict>>;
|
|
1700
|
+
type: z.ZodLiteral<"dataBar">;
|
|
1701
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1702
|
+
iconSetType: z.ZodString;
|
|
1703
|
+
thresholds: z.ZodArray<z.ZodObject<{
|
|
1704
|
+
type: z.ZodEnum<{
|
|
1705
|
+
formula: "formula";
|
|
1706
|
+
num: "num";
|
|
1707
|
+
percent: "percent";
|
|
1708
|
+
max: "max";
|
|
1709
|
+
min: "min";
|
|
1710
|
+
percentile: "percentile";
|
|
1711
|
+
}>;
|
|
1712
|
+
value: z.ZodOptional<z.ZodString>;
|
|
1713
|
+
}, z.core.$strip>>;
|
|
1714
|
+
reverse: z.ZodOptional<z.ZodBoolean>;
|
|
1715
|
+
showValue: z.ZodOptional<z.ZodBoolean>;
|
|
1716
|
+
ranges: z.ZodArray<z.ZodObject<{
|
|
1717
|
+
startRow: z.ZodNumber;
|
|
1718
|
+
startColumn: z.ZodNumber;
|
|
1719
|
+
endRow: z.ZodNumber;
|
|
1720
|
+
endColumn: z.ZodNumber;
|
|
1721
|
+
}, z.core.$strip>>;
|
|
1722
|
+
priority: z.ZodOptional<z.ZodNumber>;
|
|
1723
|
+
stopIfTrue: z.ZodOptional<z.ZodBoolean>;
|
|
1724
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
1725
|
+
format: z.ZodEnum<{
|
|
1726
|
+
docx: "docx";
|
|
1727
|
+
pptx: "pptx";
|
|
1728
|
+
xlsx: "xlsx";
|
|
1729
|
+
odt: "odt";
|
|
1730
|
+
ods: "ods";
|
|
1731
|
+
odp: "odp";
|
|
1732
|
+
odg: "odg";
|
|
1733
|
+
odm: "odm";
|
|
1734
|
+
odb: "odb";
|
|
1735
|
+
odf: "odf";
|
|
1736
|
+
markdown: "markdown";
|
|
1737
|
+
pdf: "pdf";
|
|
1738
|
+
}>;
|
|
1739
|
+
xml: z.ZodString;
|
|
1740
|
+
}, z.core.$strict>>;
|
|
1741
|
+
type: z.ZodLiteral<"iconSet">;
|
|
1742
|
+
}, z.core.$strip>], "type">>>;
|
|
1164
1743
|
source: z.ZodOptional<z.ZodObject<{
|
|
1165
1744
|
format: z.ZodEnum<{
|
|
1166
1745
|
docx: "docx";
|