@gmb/bitmark-parser-generator 3.35.0 → 3.36.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/README.md +2 -2
- package/dist/browser/bitmark-parser-generator.min.js +1 -1
- package/dist/browser/bundle-report.html +2 -2
- package/dist/index.cjs +5415 -6732
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +764 -1216
- package/dist/index.d.ts +764 -1216
- package/dist/index.js +5416 -6733
- package/dist/index.js.map +1 -1
- package/package.json +12 -9
package/dist/index.d.ts
CHANGED
|
@@ -1158,7 +1158,605 @@ declare const BodyBitType: Readonly<{
|
|
|
1158
1158
|
}>>;
|
|
1159
1159
|
type BodyBitTypeType = EnumType<typeof BodyBitType>;
|
|
1160
1160
|
|
|
1161
|
-
declare const
|
|
1161
|
+
declare const BitTagConfigKeyType: Readonly<{
|
|
1162
|
+
unknown: "unknown";
|
|
1163
|
+
tag: "tag";
|
|
1164
|
+
property: "property";
|
|
1165
|
+
resource: "resource";
|
|
1166
|
+
group: "group";
|
|
1167
|
+
}> & _ncoderz_superenum.EnumExtensions<EnumType<{
|
|
1168
|
+
unknown: "unknown";
|
|
1169
|
+
tag: "tag";
|
|
1170
|
+
property: "property";
|
|
1171
|
+
resource: "resource";
|
|
1172
|
+
group: "group";
|
|
1173
|
+
}>>;
|
|
1174
|
+
type BitTagConfigKeyTypeType = EnumType<typeof BitTagConfigKeyType>;
|
|
1175
|
+
|
|
1176
|
+
/**
|
|
1177
|
+
* Config keys for tags, resources, properties, and groups.
|
|
1178
|
+
*
|
|
1179
|
+
* Each type has a different prefix so there are no conflicts:
|
|
1180
|
+
* - Resources: `&`
|
|
1181
|
+
* - Properties: `@`
|
|
1182
|
+
* - Groups: `group_`
|
|
1183
|
+
* - Tags: <none>
|
|
1184
|
+
*
|
|
1185
|
+
*/
|
|
1186
|
+
declare const ConfigKey: Readonly<{
|
|
1187
|
+
group_standardAllBits: "group_standardAllBits";
|
|
1188
|
+
group_standardItemLeadInstructionHint: "group_standardItemLeadInstructionHint";
|
|
1189
|
+
group_standardExample: "group_standardExample";
|
|
1190
|
+
group_standardTags: "group_standardTags";
|
|
1191
|
+
group_imageSource: "group_imageSource";
|
|
1192
|
+
group_technicalTerm: "group_technicalTerm";
|
|
1193
|
+
group_person: "group_person";
|
|
1194
|
+
group_gap: "group_gap";
|
|
1195
|
+
group_trueFalse: "group_trueFalse";
|
|
1196
|
+
group_markConfig: "group_markConfig";
|
|
1197
|
+
group_mark: "group_mark";
|
|
1198
|
+
group_bookCommon: "group_bookCommon";
|
|
1199
|
+
group_learningPathCommon: "group_learningPathCommon";
|
|
1200
|
+
group_quizCommon: "group_quizCommon";
|
|
1201
|
+
group_resourceBitTags: "group_resourceBitTags";
|
|
1202
|
+
group_resourceCommon: "group_resourceCommon";
|
|
1203
|
+
group_resourceImageCommon: "group_resourceImageCommon";
|
|
1204
|
+
group_resourceAudioCommon: "group_resourceAudioCommon";
|
|
1205
|
+
group_resourceVideoCommon: "group_resourceVideoCommon";
|
|
1206
|
+
group_resourceIcon: "group_resourceIcon";
|
|
1207
|
+
group_resourceImage: "group_resourceImage";
|
|
1208
|
+
group_resourceImageEmbed: "group_resourceImageEmbed";
|
|
1209
|
+
group_resourceImageLink: "group_resourceImageLink";
|
|
1210
|
+
group_resourceImageResponsive: "group_resourceImageResponsive";
|
|
1211
|
+
group_resourceImagePortrait: "group_resourceImagePortrait";
|
|
1212
|
+
group_resourceImageLandscape: "group_resourceImageLandscape";
|
|
1213
|
+
group_resourceAudio: "group_resourceAudio";
|
|
1214
|
+
group_resourceAudioEmbed: "group_resourceAudioEmbed";
|
|
1215
|
+
group_resourceAudioLink: "group_resourceAudioLink";
|
|
1216
|
+
group_resourceVideo: "group_resourceVideo";
|
|
1217
|
+
group_resourceVideoEmbed: "group_resourceVideoEmbed";
|
|
1218
|
+
group_resourceVideoLink: "group_resourceVideoLink";
|
|
1219
|
+
group_resourceStillImageFilm: "group_resourceStillImageFilm";
|
|
1220
|
+
group_resourceStillImageFilmEmbed: "group_resourceStillImageFilmEmbed";
|
|
1221
|
+
group_resourceStillImageFilmLink: "group_resourceStillImageFilmLink";
|
|
1222
|
+
group_resourceArticle: "group_resourceArticle";
|
|
1223
|
+
group_resourceArticleEmbed: "group_resourceArticleEmbed";
|
|
1224
|
+
group_resourceArticleLink: "group_resourceArticleLink";
|
|
1225
|
+
group_resourceDocument: "group_resourceDocument";
|
|
1226
|
+
group_resourceDocumentEmbed: "group_resourceDocumentEmbed";
|
|
1227
|
+
group_resourceDocumentLink: "group_resourceDocumentLink";
|
|
1228
|
+
group_resourceDocumentDownload: "group_resourceDocumentDownload";
|
|
1229
|
+
group_resourceAppLink: "group_resourceAppLink";
|
|
1230
|
+
group_resourceWebsiteLink: "group_resourceWebsiteLink";
|
|
1231
|
+
property_action: "@action";
|
|
1232
|
+
property_activityType: "@activityType";
|
|
1233
|
+
property_additionalSolutions: "@additionalSolutions";
|
|
1234
|
+
property_ageRange: "@ageRange";
|
|
1235
|
+
property_aiGenerated: "@aiGenerated";
|
|
1236
|
+
property_analyticsTag: "@analyticsTag";
|
|
1237
|
+
property_allowedBit: "@allowedBit";
|
|
1238
|
+
property_allowSubtitles: "@allowSubtitles";
|
|
1239
|
+
property_alt: "@alt";
|
|
1240
|
+
property_altLangTag: "@altLangTag";
|
|
1241
|
+
property_author: "@author";
|
|
1242
|
+
property_autoplay: "@autoplay";
|
|
1243
|
+
property_availableClassifications: "@availableClassifications";
|
|
1244
|
+
property_blockId: "@blockId";
|
|
1245
|
+
property_book: "@book";
|
|
1246
|
+
property_bookAlias: "@bookAlias";
|
|
1247
|
+
property_bookDiff: "@bookDiff";
|
|
1248
|
+
property_bot: "@bot";
|
|
1249
|
+
property_bubbleTag: "@bubbleTag";
|
|
1250
|
+
property_buttonCaption: "@buttonCaption";
|
|
1251
|
+
property_callToActionUrl: "@callToActionUrl";
|
|
1252
|
+
property_caption: "@caption";
|
|
1253
|
+
property_categoryTag: "@categoryTag";
|
|
1254
|
+
property_chatWithBook: "@chatWithBook";
|
|
1255
|
+
property_chatWithBookBrainKey: "@chatWithBookBrainKey";
|
|
1256
|
+
property_citationStyle: "@citationStyle";
|
|
1257
|
+
property_classification: "@classification";
|
|
1258
|
+
property_codeLineNumbers: "@codeLineNumbers";
|
|
1259
|
+
property_codeMinimap: "@codeMinimap";
|
|
1260
|
+
property_color: "@color";
|
|
1261
|
+
property_colorTag: "@colorTag";
|
|
1262
|
+
property_computerLanguage: "@computerLanguage";
|
|
1263
|
+
property_content2Buy: "@content2Buy";
|
|
1264
|
+
property_copyright: "@copyright";
|
|
1265
|
+
property_coverColor: "@coverColor";
|
|
1266
|
+
property_coverImage: "@coverImage";
|
|
1267
|
+
property_customerExternalId: "@customerExternalId";
|
|
1268
|
+
property_customerId: "@customerId";
|
|
1269
|
+
property_date: "@date";
|
|
1270
|
+
property_dateEnd: "@dateEnd";
|
|
1271
|
+
property_decimalPlaces: "@decimalPlaces";
|
|
1272
|
+
property_deeplink: "@deeplink";
|
|
1273
|
+
property_disableCalculation: "@disableCalculation";
|
|
1274
|
+
property_disableFeedback: "@disableFeedback";
|
|
1275
|
+
property_diffTo: "@diffTo";
|
|
1276
|
+
property_diffOp: "@diffOp";
|
|
1277
|
+
property_diffRef: "@diffRef";
|
|
1278
|
+
property_diffContext: "@diffContext";
|
|
1279
|
+
property_diffTime: "@diffTime";
|
|
1280
|
+
property_duration: "@duration";
|
|
1281
|
+
property_emphasis: "@emphasis";
|
|
1282
|
+
property_example: "@example";
|
|
1283
|
+
property_externalId: "@externalId";
|
|
1284
|
+
property_externalLink: "@externalLink";
|
|
1285
|
+
property_externalLinkText: "@externalLinkText";
|
|
1286
|
+
property_feedbackEngine: "@feedbackEngine";
|
|
1287
|
+
property_feedbackType: "@feedbackType";
|
|
1288
|
+
property_flashcardSet: "@flashcardSet";
|
|
1289
|
+
property_focusX: "@focusX";
|
|
1290
|
+
property_focusY: "@focusY";
|
|
1291
|
+
property_format: "@format";
|
|
1292
|
+
property_handInAcceptFileType: "@handInAcceptFileType";
|
|
1293
|
+
property_handInRequirement: "@handInRequirement";
|
|
1294
|
+
property_handInInstruction: "@handInInstruction";
|
|
1295
|
+
property_hasBookNavigation: "@hasBookNavigation";
|
|
1296
|
+
property_hasMarkAsDone: "@hasMarkAsDone";
|
|
1297
|
+
property_height: "@height";
|
|
1298
|
+
property_icon: "@icon";
|
|
1299
|
+
property_iconTag: "@iconTag";
|
|
1300
|
+
property_id: "@id";
|
|
1301
|
+
property_imageFirst: "@imageFirst";
|
|
1302
|
+
property_imageSource: "@imageSource";
|
|
1303
|
+
property_index: "@index";
|
|
1304
|
+
property_internalComment: "@internalComment";
|
|
1305
|
+
property_isCaseSensitive: "@isCaseSensitive";
|
|
1306
|
+
property_isInfoOnly: "@isInfoOnly";
|
|
1307
|
+
property_isPublic: "@isPublic";
|
|
1308
|
+
property_isTemplate: "@isTemplate";
|
|
1309
|
+
property_isTemplateStripTheme: "@isTemplateStripTheme";
|
|
1310
|
+
property_isTracked: "@isTracked";
|
|
1311
|
+
property_jupyterExecutionCount: "@jupyterExecutionCount";
|
|
1312
|
+
property_jupyterId: "@jupyterId";
|
|
1313
|
+
property_kind: "@kind";
|
|
1314
|
+
property_label: "@label";
|
|
1315
|
+
property_labelFalse: "@labelFalse";
|
|
1316
|
+
property_labelTrue: "@labelTrue";
|
|
1317
|
+
property_lang: "@lang";
|
|
1318
|
+
property_language: "@language";
|
|
1319
|
+
property_layer: "@layer";
|
|
1320
|
+
property_layerRole: "@layerRole";
|
|
1321
|
+
property_levelCEFRp: "@levelCEFRp";
|
|
1322
|
+
property_levelCEFR: "@levelCEFR";
|
|
1323
|
+
property_levelILR: "@levelILR";
|
|
1324
|
+
property_levelACTFL: "@levelACTFL";
|
|
1325
|
+
property_license: "@license";
|
|
1326
|
+
property_list: "@list";
|
|
1327
|
+
property_listItemIndent: "@listItemIndent";
|
|
1328
|
+
property_location: "@location";
|
|
1329
|
+
property_machineTranslated: "@machineTranslated";
|
|
1330
|
+
property_mailingList: "@mailingList";
|
|
1331
|
+
property_maxCreatedBits: "@maxCreatedBits";
|
|
1332
|
+
property_maxDisplayLevel: "@maxDisplayLevel";
|
|
1333
|
+
property_maxTocChapterLevel: "@maxTocChapterLevel";
|
|
1334
|
+
property_mockupId: "@mockupId";
|
|
1335
|
+
property_mute: "@mute";
|
|
1336
|
+
property_padletId: "@padletId";
|
|
1337
|
+
property_pageNo: "@pageNo";
|
|
1338
|
+
property_partialAnswer: "@partialAnswer";
|
|
1339
|
+
property_partner: "@partner";
|
|
1340
|
+
property_person: "@person";
|
|
1341
|
+
property_path: "@path";
|
|
1342
|
+
property_pointerLeft: "@pointerLeft";
|
|
1343
|
+
property_pointerTop: "@pointerTop";
|
|
1344
|
+
property_posterImage: "@posterImage";
|
|
1345
|
+
property_page: "@page";
|
|
1346
|
+
property_processHandIn: "@processHandIn";
|
|
1347
|
+
property_processHandInLocation: "@processHandInLocation";
|
|
1348
|
+
property_product: "@product";
|
|
1349
|
+
property_productFolder: "@productFolder";
|
|
1350
|
+
property_productId: "@productId";
|
|
1351
|
+
property_productVideo: "@productVideo";
|
|
1352
|
+
property_progress: "@progress";
|
|
1353
|
+
property_mark: "@mark";
|
|
1354
|
+
property_reference: "@reference";
|
|
1355
|
+
property_sampleSolution: "@sampleSolution";
|
|
1356
|
+
property_title: "@title";
|
|
1357
|
+
property_publications: "@publications";
|
|
1358
|
+
property_publisher: "@publisher";
|
|
1359
|
+
property_publisherName: "@publisherName";
|
|
1360
|
+
property_quizCountItems: "@quizCountItems";
|
|
1361
|
+
property_quizStrikethroughSolutions: "@quizStrikethroughSolutions";
|
|
1362
|
+
property_quotedPerson: "@quotedPerson";
|
|
1363
|
+
property_ratingLevelEnd: "@ratingLevelEnd";
|
|
1364
|
+
property_ratingLevelSelected: "@ratingLevelSelected";
|
|
1365
|
+
property_ratingLevelStart: "@ratingLevelStart";
|
|
1366
|
+
property_reaction: "@reaction";
|
|
1367
|
+
property_reasonableNumOfChars: "@reasonableNumOfChars";
|
|
1368
|
+
property_reductionTag: "@reductionTag";
|
|
1369
|
+
property_refAuthor: "@refAuthor";
|
|
1370
|
+
property_refBookTitle: "@refBookTitle";
|
|
1371
|
+
property_refPublisher: "@refPublisher";
|
|
1372
|
+
property_refPublicationYear: "@refPublicationYear";
|
|
1373
|
+
property_releaseDate: "@releaseDate";
|
|
1374
|
+
property_releaseKind: "@releaseKind";
|
|
1375
|
+
property_releaseVersion: "@releaseVersion";
|
|
1376
|
+
property_resolved: "@resolved";
|
|
1377
|
+
property_resolvedBy: "@resolvedBy";
|
|
1378
|
+
property_resolvedDate: "@resolvedDate";
|
|
1379
|
+
property_revealSolutions: "@revealSolutions";
|
|
1380
|
+
property_scormSource: "@scormSource";
|
|
1381
|
+
property_search: "@search";
|
|
1382
|
+
property_searchIndex: "@searchIndex";
|
|
1383
|
+
property_servings: "@servings";
|
|
1384
|
+
property_showInIndex: "@showInIndex";
|
|
1385
|
+
property_showSubtitles: "@showSubtitles";
|
|
1386
|
+
property_siteName: "@siteName";
|
|
1387
|
+
property_size: "@size";
|
|
1388
|
+
property_slug: "@slug";
|
|
1389
|
+
property_spaceId: "@spaceId";
|
|
1390
|
+
property_src1x: "@src1x";
|
|
1391
|
+
property_src2x: "@src2x";
|
|
1392
|
+
property_src3x: "@src3x";
|
|
1393
|
+
property_src4x: "@src4x";
|
|
1394
|
+
property_stripePricingTableId: "@stripePricingTableId";
|
|
1395
|
+
property_stripePublishableKey: "@stripePublishableKey";
|
|
1396
|
+
property_subject: "@subject";
|
|
1397
|
+
property_subtype: "@subtype";
|
|
1398
|
+
property_tableAutoWidth: "@tableAutoWidth";
|
|
1399
|
+
property_tableFixedHeader: "@tableFixedHeader";
|
|
1400
|
+
property_tableHeaderWhitespaceNoWrap: "@tableHeaderWhitespaceNoWrap";
|
|
1401
|
+
property_tableHeight: "@tableHeight";
|
|
1402
|
+
property_tablePagination: "@tablePagination";
|
|
1403
|
+
property_tablePaginationLimit: "@tablePaginationLimit";
|
|
1404
|
+
property_tableResizableColumns: "@tableResizableColumns";
|
|
1405
|
+
property_tableColumnMinWidth: "@tableColumnMinWidth";
|
|
1406
|
+
property_tableSearch: "@tableSearch";
|
|
1407
|
+
property_tableSort: "@tableSort";
|
|
1408
|
+
property_tableWhitespaceNoWrap: "@tableWhitespaceNoWrap";
|
|
1409
|
+
property_tag: "@tag";
|
|
1410
|
+
property_target: "@target";
|
|
1411
|
+
property_technicalTerm: "@technicalTerm";
|
|
1412
|
+
property_textReference: "@textReference";
|
|
1413
|
+
property_theme: "@theme";
|
|
1414
|
+
property_thumbImage: "@thumbImage";
|
|
1415
|
+
property_toc: "@toc";
|
|
1416
|
+
property_tocResource: "@tocResource";
|
|
1417
|
+
property_tocContent: "@tocContent";
|
|
1418
|
+
property_topicTag: "@topicTag";
|
|
1419
|
+
property_trim: "@trim";
|
|
1420
|
+
property_unit: "@unit";
|
|
1421
|
+
property_unitAbbr: "@unitAbbr";
|
|
1422
|
+
property_vendorDashboardId: "@vendorDashboardId";
|
|
1423
|
+
property_vendorSurveyId: "@vendorSurveyId";
|
|
1424
|
+
property_vendorUrl: "@vendorUrl";
|
|
1425
|
+
property_videoCallLink: "@videoCallLink";
|
|
1426
|
+
property_width: "@width";
|
|
1427
|
+
property_x: "@x";
|
|
1428
|
+
property_y: "@y";
|
|
1429
|
+
property_zoomDisabled: "@zoomDisabled";
|
|
1430
|
+
resource_image: "&image";
|
|
1431
|
+
resource_imageResponsive: "&imageResponsive";
|
|
1432
|
+
resource_imagePortrait: "&imagePortrait";
|
|
1433
|
+
resource_imageLandscape: "&imageLandscape";
|
|
1434
|
+
resource_imageEmbed: "&imageEmbed";
|
|
1435
|
+
resource_imageLink: "&imageLink";
|
|
1436
|
+
resource_audio: "&audio";
|
|
1437
|
+
resource_audioEmbed: "&audioEmbed";
|
|
1438
|
+
resource_audioLink: "&audioLink";
|
|
1439
|
+
resource_video: "&video";
|
|
1440
|
+
resource_videoEmbed: "&videoEmbed";
|
|
1441
|
+
resource_videoLink: "&videoLink";
|
|
1442
|
+
resource_stillImageFilm: "&stillImageFilm";
|
|
1443
|
+
resource_stillImageFilmEmbed: "&stillImageFilmEmbed";
|
|
1444
|
+
resource_stillImageFilmLink: "&stillImageFilmLink";
|
|
1445
|
+
resource_article: "&article";
|
|
1446
|
+
resource_articleEmbed: "&articleEmbed";
|
|
1447
|
+
resource_articleLink: "&articleLink";
|
|
1448
|
+
resource_document: "&document";
|
|
1449
|
+
resource_documentEmbed: "&documentEmbed";
|
|
1450
|
+
resource_documentLink: "&documentLink";
|
|
1451
|
+
resource_documentDownload: "&documentDownload";
|
|
1452
|
+
resource_appLink: "&appLink";
|
|
1453
|
+
resource_websiteLink: "&websiteLink";
|
|
1454
|
+
resource_icon: "&icon";
|
|
1455
|
+
resource_backgroundWallpaper: "&backgroundWallpaper";
|
|
1456
|
+
resource_imagePlaceholder: "&imagePlaceholder";
|
|
1457
|
+
tag_title: "#";
|
|
1458
|
+
tag_anchor: "▼";
|
|
1459
|
+
tag_reference: "►";
|
|
1460
|
+
tag_property: "@";
|
|
1461
|
+
tag_item: "%";
|
|
1462
|
+
tag_instruction: "!";
|
|
1463
|
+
tag_hint: "?";
|
|
1464
|
+
tag_true: "+";
|
|
1465
|
+
tag_false: "-";
|
|
1466
|
+
tag_sampleSolution: "$";
|
|
1467
|
+
tag_gap: "_";
|
|
1468
|
+
tag_mark: "=";
|
|
1469
|
+
tag_resource: "&";
|
|
1470
|
+
_unknown: "_unknown";
|
|
1471
|
+
}> & _ncoderz_superenum.EnumExtensions<EnumType<{
|
|
1472
|
+
group_standardAllBits: "group_standardAllBits";
|
|
1473
|
+
group_standardItemLeadInstructionHint: "group_standardItemLeadInstructionHint";
|
|
1474
|
+
group_standardExample: "group_standardExample";
|
|
1475
|
+
group_standardTags: "group_standardTags";
|
|
1476
|
+
group_imageSource: "group_imageSource";
|
|
1477
|
+
group_technicalTerm: "group_technicalTerm";
|
|
1478
|
+
group_person: "group_person";
|
|
1479
|
+
group_gap: "group_gap";
|
|
1480
|
+
group_trueFalse: "group_trueFalse";
|
|
1481
|
+
group_markConfig: "group_markConfig";
|
|
1482
|
+
group_mark: "group_mark";
|
|
1483
|
+
group_bookCommon: "group_bookCommon";
|
|
1484
|
+
group_learningPathCommon: "group_learningPathCommon";
|
|
1485
|
+
group_quizCommon: "group_quizCommon";
|
|
1486
|
+
group_resourceBitTags: "group_resourceBitTags";
|
|
1487
|
+
group_resourceCommon: "group_resourceCommon";
|
|
1488
|
+
group_resourceImageCommon: "group_resourceImageCommon";
|
|
1489
|
+
group_resourceAudioCommon: "group_resourceAudioCommon";
|
|
1490
|
+
group_resourceVideoCommon: "group_resourceVideoCommon";
|
|
1491
|
+
group_resourceIcon: "group_resourceIcon";
|
|
1492
|
+
group_resourceImage: "group_resourceImage";
|
|
1493
|
+
group_resourceImageEmbed: "group_resourceImageEmbed";
|
|
1494
|
+
group_resourceImageLink: "group_resourceImageLink";
|
|
1495
|
+
group_resourceImageResponsive: "group_resourceImageResponsive";
|
|
1496
|
+
group_resourceImagePortrait: "group_resourceImagePortrait";
|
|
1497
|
+
group_resourceImageLandscape: "group_resourceImageLandscape";
|
|
1498
|
+
group_resourceAudio: "group_resourceAudio";
|
|
1499
|
+
group_resourceAudioEmbed: "group_resourceAudioEmbed";
|
|
1500
|
+
group_resourceAudioLink: "group_resourceAudioLink";
|
|
1501
|
+
group_resourceVideo: "group_resourceVideo";
|
|
1502
|
+
group_resourceVideoEmbed: "group_resourceVideoEmbed";
|
|
1503
|
+
group_resourceVideoLink: "group_resourceVideoLink";
|
|
1504
|
+
group_resourceStillImageFilm: "group_resourceStillImageFilm";
|
|
1505
|
+
group_resourceStillImageFilmEmbed: "group_resourceStillImageFilmEmbed";
|
|
1506
|
+
group_resourceStillImageFilmLink: "group_resourceStillImageFilmLink";
|
|
1507
|
+
group_resourceArticle: "group_resourceArticle";
|
|
1508
|
+
group_resourceArticleEmbed: "group_resourceArticleEmbed";
|
|
1509
|
+
group_resourceArticleLink: "group_resourceArticleLink";
|
|
1510
|
+
group_resourceDocument: "group_resourceDocument";
|
|
1511
|
+
group_resourceDocumentEmbed: "group_resourceDocumentEmbed";
|
|
1512
|
+
group_resourceDocumentLink: "group_resourceDocumentLink";
|
|
1513
|
+
group_resourceDocumentDownload: "group_resourceDocumentDownload";
|
|
1514
|
+
group_resourceAppLink: "group_resourceAppLink";
|
|
1515
|
+
group_resourceWebsiteLink: "group_resourceWebsiteLink";
|
|
1516
|
+
property_action: "@action";
|
|
1517
|
+
property_activityType: "@activityType";
|
|
1518
|
+
property_additionalSolutions: "@additionalSolutions";
|
|
1519
|
+
property_ageRange: "@ageRange";
|
|
1520
|
+
property_aiGenerated: "@aiGenerated";
|
|
1521
|
+
property_analyticsTag: "@analyticsTag";
|
|
1522
|
+
property_allowedBit: "@allowedBit";
|
|
1523
|
+
property_allowSubtitles: "@allowSubtitles";
|
|
1524
|
+
property_alt: "@alt";
|
|
1525
|
+
property_altLangTag: "@altLangTag";
|
|
1526
|
+
property_author: "@author";
|
|
1527
|
+
property_autoplay: "@autoplay";
|
|
1528
|
+
property_availableClassifications: "@availableClassifications";
|
|
1529
|
+
property_blockId: "@blockId";
|
|
1530
|
+
property_book: "@book";
|
|
1531
|
+
property_bookAlias: "@bookAlias";
|
|
1532
|
+
property_bookDiff: "@bookDiff";
|
|
1533
|
+
property_bot: "@bot";
|
|
1534
|
+
property_bubbleTag: "@bubbleTag";
|
|
1535
|
+
property_buttonCaption: "@buttonCaption";
|
|
1536
|
+
property_callToActionUrl: "@callToActionUrl";
|
|
1537
|
+
property_caption: "@caption";
|
|
1538
|
+
property_categoryTag: "@categoryTag";
|
|
1539
|
+
property_chatWithBook: "@chatWithBook";
|
|
1540
|
+
property_chatWithBookBrainKey: "@chatWithBookBrainKey";
|
|
1541
|
+
property_citationStyle: "@citationStyle";
|
|
1542
|
+
property_classification: "@classification";
|
|
1543
|
+
property_codeLineNumbers: "@codeLineNumbers";
|
|
1544
|
+
property_codeMinimap: "@codeMinimap";
|
|
1545
|
+
property_color: "@color";
|
|
1546
|
+
property_colorTag: "@colorTag";
|
|
1547
|
+
property_computerLanguage: "@computerLanguage";
|
|
1548
|
+
property_content2Buy: "@content2Buy";
|
|
1549
|
+
property_copyright: "@copyright";
|
|
1550
|
+
property_coverColor: "@coverColor";
|
|
1551
|
+
property_coverImage: "@coverImage";
|
|
1552
|
+
property_customerExternalId: "@customerExternalId";
|
|
1553
|
+
property_customerId: "@customerId";
|
|
1554
|
+
property_date: "@date";
|
|
1555
|
+
property_dateEnd: "@dateEnd";
|
|
1556
|
+
property_decimalPlaces: "@decimalPlaces";
|
|
1557
|
+
property_deeplink: "@deeplink";
|
|
1558
|
+
property_disableCalculation: "@disableCalculation";
|
|
1559
|
+
property_disableFeedback: "@disableFeedback";
|
|
1560
|
+
property_diffTo: "@diffTo";
|
|
1561
|
+
property_diffOp: "@diffOp";
|
|
1562
|
+
property_diffRef: "@diffRef";
|
|
1563
|
+
property_diffContext: "@diffContext";
|
|
1564
|
+
property_diffTime: "@diffTime";
|
|
1565
|
+
property_duration: "@duration";
|
|
1566
|
+
property_emphasis: "@emphasis";
|
|
1567
|
+
property_example: "@example";
|
|
1568
|
+
property_externalId: "@externalId";
|
|
1569
|
+
property_externalLink: "@externalLink";
|
|
1570
|
+
property_externalLinkText: "@externalLinkText";
|
|
1571
|
+
property_feedbackEngine: "@feedbackEngine";
|
|
1572
|
+
property_feedbackType: "@feedbackType";
|
|
1573
|
+
property_flashcardSet: "@flashcardSet";
|
|
1574
|
+
property_focusX: "@focusX";
|
|
1575
|
+
property_focusY: "@focusY";
|
|
1576
|
+
property_format: "@format";
|
|
1577
|
+
property_handInAcceptFileType: "@handInAcceptFileType";
|
|
1578
|
+
property_handInRequirement: "@handInRequirement";
|
|
1579
|
+
property_handInInstruction: "@handInInstruction";
|
|
1580
|
+
property_hasBookNavigation: "@hasBookNavigation";
|
|
1581
|
+
property_hasMarkAsDone: "@hasMarkAsDone";
|
|
1582
|
+
property_height: "@height";
|
|
1583
|
+
property_icon: "@icon";
|
|
1584
|
+
property_iconTag: "@iconTag";
|
|
1585
|
+
property_id: "@id";
|
|
1586
|
+
property_imageFirst: "@imageFirst";
|
|
1587
|
+
property_imageSource: "@imageSource";
|
|
1588
|
+
property_index: "@index";
|
|
1589
|
+
property_internalComment: "@internalComment";
|
|
1590
|
+
property_isCaseSensitive: "@isCaseSensitive";
|
|
1591
|
+
property_isInfoOnly: "@isInfoOnly";
|
|
1592
|
+
property_isPublic: "@isPublic";
|
|
1593
|
+
property_isTemplate: "@isTemplate";
|
|
1594
|
+
property_isTemplateStripTheme: "@isTemplateStripTheme";
|
|
1595
|
+
property_isTracked: "@isTracked";
|
|
1596
|
+
property_jupyterExecutionCount: "@jupyterExecutionCount";
|
|
1597
|
+
property_jupyterId: "@jupyterId";
|
|
1598
|
+
property_kind: "@kind";
|
|
1599
|
+
property_label: "@label";
|
|
1600
|
+
property_labelFalse: "@labelFalse";
|
|
1601
|
+
property_labelTrue: "@labelTrue";
|
|
1602
|
+
property_lang: "@lang";
|
|
1603
|
+
property_language: "@language";
|
|
1604
|
+
property_layer: "@layer";
|
|
1605
|
+
property_layerRole: "@layerRole";
|
|
1606
|
+
property_levelCEFRp: "@levelCEFRp";
|
|
1607
|
+
property_levelCEFR: "@levelCEFR";
|
|
1608
|
+
property_levelILR: "@levelILR";
|
|
1609
|
+
property_levelACTFL: "@levelACTFL";
|
|
1610
|
+
property_license: "@license";
|
|
1611
|
+
property_list: "@list";
|
|
1612
|
+
property_listItemIndent: "@listItemIndent";
|
|
1613
|
+
property_location: "@location";
|
|
1614
|
+
property_machineTranslated: "@machineTranslated";
|
|
1615
|
+
property_mailingList: "@mailingList";
|
|
1616
|
+
property_maxCreatedBits: "@maxCreatedBits";
|
|
1617
|
+
property_maxDisplayLevel: "@maxDisplayLevel";
|
|
1618
|
+
property_maxTocChapterLevel: "@maxTocChapterLevel";
|
|
1619
|
+
property_mockupId: "@mockupId";
|
|
1620
|
+
property_mute: "@mute";
|
|
1621
|
+
property_padletId: "@padletId";
|
|
1622
|
+
property_pageNo: "@pageNo";
|
|
1623
|
+
property_partialAnswer: "@partialAnswer";
|
|
1624
|
+
property_partner: "@partner";
|
|
1625
|
+
property_person: "@person";
|
|
1626
|
+
property_path: "@path";
|
|
1627
|
+
property_pointerLeft: "@pointerLeft";
|
|
1628
|
+
property_pointerTop: "@pointerTop";
|
|
1629
|
+
property_posterImage: "@posterImage";
|
|
1630
|
+
property_page: "@page";
|
|
1631
|
+
property_processHandIn: "@processHandIn";
|
|
1632
|
+
property_processHandInLocation: "@processHandInLocation";
|
|
1633
|
+
property_product: "@product";
|
|
1634
|
+
property_productFolder: "@productFolder";
|
|
1635
|
+
property_productId: "@productId";
|
|
1636
|
+
property_productVideo: "@productVideo";
|
|
1637
|
+
property_progress: "@progress";
|
|
1638
|
+
property_mark: "@mark";
|
|
1639
|
+
property_reference: "@reference";
|
|
1640
|
+
property_sampleSolution: "@sampleSolution";
|
|
1641
|
+
property_title: "@title";
|
|
1642
|
+
property_publications: "@publications";
|
|
1643
|
+
property_publisher: "@publisher";
|
|
1644
|
+
property_publisherName: "@publisherName";
|
|
1645
|
+
property_quizCountItems: "@quizCountItems";
|
|
1646
|
+
property_quizStrikethroughSolutions: "@quizStrikethroughSolutions";
|
|
1647
|
+
property_quotedPerson: "@quotedPerson";
|
|
1648
|
+
property_ratingLevelEnd: "@ratingLevelEnd";
|
|
1649
|
+
property_ratingLevelSelected: "@ratingLevelSelected";
|
|
1650
|
+
property_ratingLevelStart: "@ratingLevelStart";
|
|
1651
|
+
property_reaction: "@reaction";
|
|
1652
|
+
property_reasonableNumOfChars: "@reasonableNumOfChars";
|
|
1653
|
+
property_reductionTag: "@reductionTag";
|
|
1654
|
+
property_refAuthor: "@refAuthor";
|
|
1655
|
+
property_refBookTitle: "@refBookTitle";
|
|
1656
|
+
property_refPublisher: "@refPublisher";
|
|
1657
|
+
property_refPublicationYear: "@refPublicationYear";
|
|
1658
|
+
property_releaseDate: "@releaseDate";
|
|
1659
|
+
property_releaseKind: "@releaseKind";
|
|
1660
|
+
property_releaseVersion: "@releaseVersion";
|
|
1661
|
+
property_resolved: "@resolved";
|
|
1662
|
+
property_resolvedBy: "@resolvedBy";
|
|
1663
|
+
property_resolvedDate: "@resolvedDate";
|
|
1664
|
+
property_revealSolutions: "@revealSolutions";
|
|
1665
|
+
property_scormSource: "@scormSource";
|
|
1666
|
+
property_search: "@search";
|
|
1667
|
+
property_searchIndex: "@searchIndex";
|
|
1668
|
+
property_servings: "@servings";
|
|
1669
|
+
property_showInIndex: "@showInIndex";
|
|
1670
|
+
property_showSubtitles: "@showSubtitles";
|
|
1671
|
+
property_siteName: "@siteName";
|
|
1672
|
+
property_size: "@size";
|
|
1673
|
+
property_slug: "@slug";
|
|
1674
|
+
property_spaceId: "@spaceId";
|
|
1675
|
+
property_src1x: "@src1x";
|
|
1676
|
+
property_src2x: "@src2x";
|
|
1677
|
+
property_src3x: "@src3x";
|
|
1678
|
+
property_src4x: "@src4x";
|
|
1679
|
+
property_stripePricingTableId: "@stripePricingTableId";
|
|
1680
|
+
property_stripePublishableKey: "@stripePublishableKey";
|
|
1681
|
+
property_subject: "@subject";
|
|
1682
|
+
property_subtype: "@subtype";
|
|
1683
|
+
property_tableAutoWidth: "@tableAutoWidth";
|
|
1684
|
+
property_tableFixedHeader: "@tableFixedHeader";
|
|
1685
|
+
property_tableHeaderWhitespaceNoWrap: "@tableHeaderWhitespaceNoWrap";
|
|
1686
|
+
property_tableHeight: "@tableHeight";
|
|
1687
|
+
property_tablePagination: "@tablePagination";
|
|
1688
|
+
property_tablePaginationLimit: "@tablePaginationLimit";
|
|
1689
|
+
property_tableResizableColumns: "@tableResizableColumns";
|
|
1690
|
+
property_tableColumnMinWidth: "@tableColumnMinWidth";
|
|
1691
|
+
property_tableSearch: "@tableSearch";
|
|
1692
|
+
property_tableSort: "@tableSort";
|
|
1693
|
+
property_tableWhitespaceNoWrap: "@tableWhitespaceNoWrap";
|
|
1694
|
+
property_tag: "@tag";
|
|
1695
|
+
property_target: "@target";
|
|
1696
|
+
property_technicalTerm: "@technicalTerm";
|
|
1697
|
+
property_textReference: "@textReference";
|
|
1698
|
+
property_theme: "@theme";
|
|
1699
|
+
property_thumbImage: "@thumbImage";
|
|
1700
|
+
property_toc: "@toc";
|
|
1701
|
+
property_tocResource: "@tocResource";
|
|
1702
|
+
property_tocContent: "@tocContent";
|
|
1703
|
+
property_topicTag: "@topicTag";
|
|
1704
|
+
property_trim: "@trim";
|
|
1705
|
+
property_unit: "@unit";
|
|
1706
|
+
property_unitAbbr: "@unitAbbr";
|
|
1707
|
+
property_vendorDashboardId: "@vendorDashboardId";
|
|
1708
|
+
property_vendorSurveyId: "@vendorSurveyId";
|
|
1709
|
+
property_vendorUrl: "@vendorUrl";
|
|
1710
|
+
property_videoCallLink: "@videoCallLink";
|
|
1711
|
+
property_width: "@width";
|
|
1712
|
+
property_x: "@x";
|
|
1713
|
+
property_y: "@y";
|
|
1714
|
+
property_zoomDisabled: "@zoomDisabled";
|
|
1715
|
+
resource_image: "&image";
|
|
1716
|
+
resource_imageResponsive: "&imageResponsive";
|
|
1717
|
+
resource_imagePortrait: "&imagePortrait";
|
|
1718
|
+
resource_imageLandscape: "&imageLandscape";
|
|
1719
|
+
resource_imageEmbed: "&imageEmbed";
|
|
1720
|
+
resource_imageLink: "&imageLink";
|
|
1721
|
+
resource_audio: "&audio";
|
|
1722
|
+
resource_audioEmbed: "&audioEmbed";
|
|
1723
|
+
resource_audioLink: "&audioLink";
|
|
1724
|
+
resource_video: "&video";
|
|
1725
|
+
resource_videoEmbed: "&videoEmbed";
|
|
1726
|
+
resource_videoLink: "&videoLink";
|
|
1727
|
+
resource_stillImageFilm: "&stillImageFilm";
|
|
1728
|
+
resource_stillImageFilmEmbed: "&stillImageFilmEmbed";
|
|
1729
|
+
resource_stillImageFilmLink: "&stillImageFilmLink";
|
|
1730
|
+
resource_article: "&article";
|
|
1731
|
+
resource_articleEmbed: "&articleEmbed";
|
|
1732
|
+
resource_articleLink: "&articleLink";
|
|
1733
|
+
resource_document: "&document";
|
|
1734
|
+
resource_documentEmbed: "&documentEmbed";
|
|
1735
|
+
resource_documentLink: "&documentLink";
|
|
1736
|
+
resource_documentDownload: "&documentDownload";
|
|
1737
|
+
resource_appLink: "&appLink";
|
|
1738
|
+
resource_websiteLink: "&websiteLink";
|
|
1739
|
+
resource_icon: "&icon";
|
|
1740
|
+
resource_backgroundWallpaper: "&backgroundWallpaper";
|
|
1741
|
+
resource_imagePlaceholder: "&imagePlaceholder";
|
|
1742
|
+
tag_title: "#";
|
|
1743
|
+
tag_anchor: "▼";
|
|
1744
|
+
tag_reference: "►";
|
|
1745
|
+
tag_property: "@";
|
|
1746
|
+
tag_item: "%";
|
|
1747
|
+
tag_instruction: "!";
|
|
1748
|
+
tag_hint: "?";
|
|
1749
|
+
tag_true: "+";
|
|
1750
|
+
tag_false: "-";
|
|
1751
|
+
tag_sampleSolution: "$";
|
|
1752
|
+
tag_gap: "_";
|
|
1753
|
+
tag_mark: "=";
|
|
1754
|
+
tag_resource: "&";
|
|
1755
|
+
_unknown: "_unknown";
|
|
1756
|
+
}>>;
|
|
1757
|
+
type ConfigKeyType = EnumType<typeof ConfigKey>;
|
|
1758
|
+
|
|
1759
|
+
declare const ResourceType: Readonly<{
|
|
1162
1760
|
unknown: "unknown";
|
|
1163
1761
|
image: "image";
|
|
1164
1762
|
imageResponsive: "image-responsive";
|
|
@@ -1217,7 +1815,7 @@ declare const ResourceTag: Readonly<{
|
|
|
1217
1815
|
backgroundWallpaper: "backgroundWallpaper";
|
|
1218
1816
|
imagePlaceholder: "imagePlaceholder";
|
|
1219
1817
|
}>>;
|
|
1220
|
-
type
|
|
1818
|
+
type ResourceTypeType = EnumType<typeof ResourceType>;
|
|
1221
1819
|
|
|
1222
1820
|
declare const TextFormat: Readonly<{
|
|
1223
1821
|
plainText: "text";
|
|
@@ -1572,8 +2170,9 @@ interface HighlightTextJson {
|
|
|
1572
2170
|
type ResourceDataJson = ImageResourceJson & ImageResponsiveResourceJson & ImageLinkResourceJson & AudioResourceJson & AudioEmbedResourceJson & AudioLinkResourceJson & VideoResourceJson & VideoEmbedResourceJson & VideoLinkResourceJson & StillImageFilmResourceJson & StillImageFilmEmbedResourceJson & StillImageFilmLinkResourceJson & ArticleResourceJson & DocumentResourceJson & DocumentEmbedResourceJson & DocumentLinkResourceJson & DocumentDownloadResourceJson & AppLinkResourceJson & WebsiteLinkResourceJson;
|
|
1573
2171
|
type ResourceJson = ImageResourceWrapperJson | ImageResponsiveResourceWrapperJson | ImageLinkResourceWrapperJson | AudioResourceWrapperJson | AudioEmbedResourceWrapperJson | AudioLinkResourceWrapperJson | VideoResourceWrapperJson | VideoEmbedResourceWrapperJson | VideoLinkResourceWrapperJson | StillImageFilmResourceWrapperJson | StillImageFilmEmbedResourceWrapperJson | StillImageFilmLinkResourceWrapperJson | ArticleResourceWrapperJson | DocumentResourceWrapperJson | DocumentEmbedResourceWrapperJson | DocumentLinkResourceWrapperJson | DocumentDownloadResourceWrapperJson | AppLinkResourceWrapperJson | WebsiteLinkResourceWrapperJson;
|
|
1574
2172
|
interface ResourceWrapperJson {
|
|
1575
|
-
type:
|
|
1576
|
-
__typeAlias:
|
|
2173
|
+
type: ResourceTypeType;
|
|
2174
|
+
__typeAlias: ResourceTypeType;
|
|
2175
|
+
__configKey: ConfigKeyType;
|
|
1577
2176
|
}
|
|
1578
2177
|
interface ImageResourceWrapperJson extends ResourceWrapperJson {
|
|
1579
2178
|
type: 'image';
|
|
@@ -2327,7 +2926,7 @@ interface Bit {
|
|
|
2327
2926
|
bitType: BitTypeType;
|
|
2328
2927
|
bitLevel: number;
|
|
2329
2928
|
textFormat: TextFormatType;
|
|
2330
|
-
resourceType?:
|
|
2929
|
+
resourceType?: ResourceTypeType;
|
|
2331
2930
|
isCommented?: boolean;
|
|
2332
2931
|
id?: Property;
|
|
2333
2932
|
internalComment?: Property;
|
|
@@ -2534,7 +3133,7 @@ type Example = JsonText | string | boolean;
|
|
|
2534
3133
|
interface ExtraProperties {
|
|
2535
3134
|
[key: string]: Property;
|
|
2536
3135
|
}
|
|
2537
|
-
type Property = string[] | number[] | boolean[] |
|
|
3136
|
+
type Property = string[] | number[] | boolean[] | string | number | boolean;
|
|
2538
3137
|
interface Body {
|
|
2539
3138
|
body?: JsonText | unknown;
|
|
2540
3139
|
bodyBits?: BodyBitJson[];
|
|
@@ -4132,1174 +4731,96 @@ declare const Count: Readonly<{
|
|
|
4132
4731
|
}> & _ncoderz_superenum.EnumExtensions<"infinity">;
|
|
4133
4732
|
type CountType = EnumType<typeof Count> | number;
|
|
4134
4733
|
|
|
4135
|
-
declare const BitTagType: Readonly<{
|
|
4136
|
-
tag: "tag";
|
|
4137
|
-
property: "property";
|
|
4138
|
-
resource: "resource";
|
|
4139
|
-
group: "group";
|
|
4140
|
-
}> & _ncoderz_superenum.EnumExtensions<EnumType<{
|
|
4141
|
-
tag: "tag";
|
|
4142
|
-
property: "property";
|
|
4143
|
-
resource: "resource";
|
|
4144
|
-
group: "group";
|
|
4145
|
-
}>>;
|
|
4146
|
-
type BitTagTypeType = EnumType<typeof BitTagType>;
|
|
4147
|
-
|
|
4148
4734
|
declare const Tag: Readonly<{
|
|
4149
|
-
tag_title: "#";
|
|
4150
|
-
tag_anchor: "▼";
|
|
4151
|
-
tag_reference: "►";
|
|
4152
|
-
tag_property: "@";
|
|
4153
|
-
|
|
4154
|
-
tag_instruction: "!";
|
|
4155
|
-
tag_hint: "?";
|
|
4156
|
-
tag_true: "+";
|
|
4157
|
-
tag_false: "-";
|
|
4158
|
-
tag_sampleSolution: "$";
|
|
4159
|
-
tag_gap: "_";
|
|
4160
|
-
tag_mark: "=";
|
|
4161
|
-
tag_resource: "&";
|
|
4735
|
+
readonly tag_title: "#";
|
|
4736
|
+
readonly tag_anchor: "▼";
|
|
4737
|
+
readonly tag_reference: "►";
|
|
4738
|
+
readonly tag_property: "@";
|
|
4739
|
+
readonly tag_item: "%";
|
|
4740
|
+
readonly tag_instruction: "!";
|
|
4741
|
+
readonly tag_hint: "?";
|
|
4742
|
+
readonly tag_true: "+";
|
|
4743
|
+
readonly tag_false: "-";
|
|
4744
|
+
readonly tag_sampleSolution: "$";
|
|
4745
|
+
readonly tag_gap: "_";
|
|
4746
|
+
readonly tag_mark: "=";
|
|
4747
|
+
readonly tag_resource: "&";
|
|
4162
4748
|
}> & _ncoderz_superenum.EnumExtensions<EnumType<{
|
|
4163
|
-
tag_title: "#";
|
|
4164
|
-
tag_anchor: "▼";
|
|
4165
|
-
tag_reference: "►";
|
|
4166
|
-
tag_property: "@";
|
|
4167
|
-
|
|
4168
|
-
tag_instruction: "!";
|
|
4169
|
-
tag_hint: "?";
|
|
4170
|
-
tag_true: "+";
|
|
4171
|
-
tag_false: "-";
|
|
4172
|
-
tag_sampleSolution: "$";
|
|
4173
|
-
tag_gap: "_";
|
|
4174
|
-
tag_mark: "=";
|
|
4175
|
-
tag_resource: "&";
|
|
4749
|
+
readonly tag_title: "#";
|
|
4750
|
+
readonly tag_anchor: "▼";
|
|
4751
|
+
readonly tag_reference: "►";
|
|
4752
|
+
readonly tag_property: "@";
|
|
4753
|
+
readonly tag_item: "%";
|
|
4754
|
+
readonly tag_instruction: "!";
|
|
4755
|
+
readonly tag_hint: "?";
|
|
4756
|
+
readonly tag_true: "+";
|
|
4757
|
+
readonly tag_false: "-";
|
|
4758
|
+
readonly tag_sampleSolution: "$";
|
|
4759
|
+
readonly tag_gap: "_";
|
|
4760
|
+
readonly tag_mark: "=";
|
|
4761
|
+
readonly tag_resource: "&";
|
|
4176
4762
|
}>>;
|
|
4177
4763
|
type TagType = EnumType<typeof Tag>;
|
|
4178
4764
|
|
|
4179
|
-
|
|
4180
|
-
|
|
4181
|
-
|
|
4182
|
-
|
|
4183
|
-
|
|
4184
|
-
|
|
4185
|
-
|
|
4186
|
-
|
|
4187
|
-
|
|
4188
|
-
|
|
4189
|
-
|
|
4765
|
+
declare abstract class AbstractTagConfig {
|
|
4766
|
+
readonly type: BitTagConfigKeyTypeType;
|
|
4767
|
+
readonly configKey: ConfigKeyType;
|
|
4768
|
+
readonly tag: string;
|
|
4769
|
+
readonly maxCount: CountType;
|
|
4770
|
+
readonly minCount: number;
|
|
4771
|
+
readonly chain?: TagsConfig;
|
|
4772
|
+
readonly jsonKey?: string;
|
|
4773
|
+
readonly deprecated?: string;
|
|
4774
|
+
constructor(type: BitTagConfigKeyTypeType, configKey: ConfigKeyType, tag: string, maxCount: CountType, minCount: number, chain: TagsConfig | undefined, jsonKey: string | undefined, deprecated: string | undefined);
|
|
4775
|
+
}
|
|
4776
|
+
|
|
4777
|
+
interface ToStringOptions$5 {
|
|
4778
|
+
includeChains?: boolean;
|
|
4779
|
+
includeConfigs?: boolean;
|
|
4780
|
+
}
|
|
4781
|
+
declare class MarkupTagConfig extends AbstractTagConfig {
|
|
4782
|
+
readonly type: BitTagConfigKeyTypeType;
|
|
4783
|
+
constructor(configKey: ConfigKeyType, tag: TagType, maxCount: CountType, minCount: number, chain: TagsConfig | undefined, deprecated: string | undefined);
|
|
4784
|
+
toString(options?: ToStringOptions$5): string;
|
|
4785
|
+
}
|
|
4786
|
+
|
|
4787
|
+
declare const TagFormat: Readonly<{
|
|
4788
|
+
none: "none";
|
|
4789
|
+
plainText: "plainText";
|
|
4790
|
+
bitmarkText: "bitmarkText";
|
|
4791
|
+
number: "number";
|
|
4792
|
+
boolean: "boolean";
|
|
4793
|
+
invertedBoolean: "invertedBoolean";
|
|
4190
4794
|
}> & _ncoderz_superenum.EnumExtensions<EnumType<{
|
|
4191
|
-
|
|
4192
|
-
|
|
4193
|
-
|
|
4194
|
-
|
|
4195
|
-
|
|
4795
|
+
none: "none";
|
|
4796
|
+
plainText: "plainText";
|
|
4797
|
+
bitmarkText: "bitmarkText";
|
|
4798
|
+
number: "number";
|
|
4799
|
+
boolean: "boolean";
|
|
4800
|
+
invertedBoolean: "invertedBoolean";
|
|
4196
4801
|
}>>;
|
|
4197
|
-
type
|
|
4802
|
+
type TagFormatType = EnumType<typeof TagFormat>;
|
|
4198
4803
|
|
|
4199
|
-
|
|
4200
|
-
|
|
4201
|
-
|
|
4202
|
-
|
|
4203
|
-
|
|
4204
|
-
|
|
4205
|
-
|
|
4206
|
-
|
|
4207
|
-
|
|
4208
|
-
|
|
4209
|
-
|
|
4210
|
-
|
|
4211
|
-
tag_title: "title";
|
|
4212
|
-
action: "action";
|
|
4213
|
-
activityType: "activityType";
|
|
4214
|
-
additionalSolutions: "additionalSolutions";
|
|
4215
|
-
ageRange: "ageRange";
|
|
4216
|
-
aiGenerated: "aiGenerated";
|
|
4217
|
-
analyticsTag: "analyticsTag";
|
|
4218
|
-
allowedBit: "allowedBit";
|
|
4219
|
-
allowSubtitles: "allowSubtitles";
|
|
4220
|
-
alt: "alt";
|
|
4221
|
-
altLangTag: "altLangTag";
|
|
4222
|
-
author: "author";
|
|
4223
|
-
autoplay: "autoplay";
|
|
4224
|
-
availableClassifications: "availableClassifications";
|
|
4225
|
-
blockId: "blockId";
|
|
4226
|
-
book: "book";
|
|
4227
|
-
bookAlias: "bookAlias";
|
|
4228
|
-
bookDiff: "bookDiff";
|
|
4229
|
-
bot: "bot";
|
|
4230
|
-
bubbleTag: "bubbleTag";
|
|
4231
|
-
buttonCaption: "buttonCaption";
|
|
4232
|
-
callToActionUrl: "callToActionUrl";
|
|
4233
|
-
caption: "caption";
|
|
4234
|
-
categoryTag: "categoryTag";
|
|
4235
|
-
chatWithBook: "chatWithBook";
|
|
4236
|
-
chatWithBookBrainKey: "chatWithBookBrainKey";
|
|
4237
|
-
citationStyle: "citationStyle";
|
|
4238
|
-
classification: "classification";
|
|
4239
|
-
codeLineNumbers: "codeLineNumbers";
|
|
4240
|
-
codeMinimap: "codeMinimap";
|
|
4241
|
-
color: "color";
|
|
4242
|
-
colorTag: "colorTag";
|
|
4243
|
-
computerLanguage: "computerLanguage";
|
|
4244
|
-
content2Buy: "content2Buy";
|
|
4245
|
-
copyright: "copyright";
|
|
4246
|
-
coverColor: "coverColor";
|
|
4247
|
-
coverImage: "coverImage";
|
|
4248
|
-
customerExternalId: "customerExternalId";
|
|
4249
|
-
customerId: "customerId";
|
|
4250
|
-
date: "date";
|
|
4251
|
-
dateEnd: "dateEnd";
|
|
4252
|
-
decimalPlaces: "decimalPlaces";
|
|
4253
|
-
deeplink: "deeplink";
|
|
4254
|
-
disableCalculation: "disableCalculation";
|
|
4255
|
-
disableFeedback: "disableFeedback";
|
|
4256
|
-
diffTo: "diffTo";
|
|
4257
|
-
diffOp: "diffOp";
|
|
4258
|
-
diffRef: "diffRef";
|
|
4259
|
-
diffContext: "diffContext";
|
|
4260
|
-
diffTime: "diffTime";
|
|
4261
|
-
duration: "duration";
|
|
4262
|
-
emphasis: "emphasis";
|
|
4263
|
-
example: "example";
|
|
4264
|
-
externalId: "externalId";
|
|
4265
|
-
externalLink: "externalLink";
|
|
4266
|
-
externalLinkText: "externalLinkText";
|
|
4267
|
-
feedbackEngine: "feedbackEngine";
|
|
4268
|
-
feedbackType: "feedbackType";
|
|
4269
|
-
flashcardSet: "flashcardSet";
|
|
4270
|
-
focusX: "focusX";
|
|
4271
|
-
focusY: "focusY";
|
|
4272
|
-
format: "format";
|
|
4273
|
-
handInAcceptFileType: "handInAcceptFileType";
|
|
4274
|
-
handInRequirement: "handInRequirement";
|
|
4275
|
-
handInInstruction: "handInInstruction";
|
|
4276
|
-
hasBookNavigation: "hasBookNavigation";
|
|
4277
|
-
hasMarkAsDone: "hasMarkAsDone";
|
|
4278
|
-
height: "height";
|
|
4279
|
-
icon: "icon";
|
|
4280
|
-
iconTag: "iconTag";
|
|
4281
|
-
id: "id";
|
|
4282
|
-
imageFirst: "imageFirst";
|
|
4283
|
-
imageSource: "imageSource";
|
|
4284
|
-
index: "index";
|
|
4285
|
-
internalComment: "internalComment";
|
|
4286
|
-
isCaseSensitive: "isCaseSensitive";
|
|
4287
|
-
isInfoOnly: "isInfoOnly";
|
|
4288
|
-
isPublic: "isPublic";
|
|
4289
|
-
isTemplate: "isTemplate";
|
|
4290
|
-
isTemplateStripTheme: "isTemplateStripTheme";
|
|
4291
|
-
isTracked: "isTracked";
|
|
4292
|
-
jupyterExecutionCount: "jupyterExecutionCount";
|
|
4293
|
-
jupyterId: "jupyterId";
|
|
4294
|
-
kind: "kind";
|
|
4295
|
-
label: "label";
|
|
4296
|
-
labelFalse: "labelFalse";
|
|
4297
|
-
labelTrue: "labelTrue";
|
|
4298
|
-
lang: "lang";
|
|
4299
|
-
language: "language";
|
|
4300
|
-
layer: "layer";
|
|
4301
|
-
layerRole: "layerRole";
|
|
4302
|
-
levelCEFRp: "levelCEFRp";
|
|
4303
|
-
levelCEFR: "levelCEFR";
|
|
4304
|
-
levelILR: "levelILR";
|
|
4305
|
-
levelACTFL: "levelACTFL";
|
|
4306
|
-
license: "license";
|
|
4307
|
-
list: "list";
|
|
4308
|
-
listItemIndent: "listItemIndent";
|
|
4309
|
-
location: "location";
|
|
4310
|
-
machineTranslated: "machineTranslated";
|
|
4311
|
-
mailingList: "mailingList";
|
|
4312
|
-
markConfig: "markConfig";
|
|
4313
|
-
maxCreatedBits: "maxCreatedBits";
|
|
4314
|
-
maxDisplayLevel: "maxDisplayLevel";
|
|
4315
|
-
maxTocChapterLevel: "maxTocChapterLevel";
|
|
4316
|
-
mockupId: "mockupId";
|
|
4317
|
-
mute: "mute";
|
|
4318
|
-
padletId: "padletId";
|
|
4319
|
-
pageNo: "pageNo";
|
|
4320
|
-
partialAnswer: "partialAnswer";
|
|
4321
|
-
partner: "partner";
|
|
4322
|
-
person: "person";
|
|
4323
|
-
path: "path";
|
|
4324
|
-
pointerLeft: "pointerLeft";
|
|
4325
|
-
pointerTop: "pointerTop";
|
|
4326
|
-
posterImage: "posterImage";
|
|
4327
|
-
page: "page";
|
|
4328
|
-
processHandIn: "processHandIn";
|
|
4329
|
-
processHandInLocation: "processHandInLocation";
|
|
4330
|
-
product: "product";
|
|
4331
|
-
productFolder: "productFolder";
|
|
4332
|
-
productId: "productId";
|
|
4333
|
-
productList: "productList";
|
|
4334
|
-
productVideo: "productVideo";
|
|
4335
|
-
productVideoList: "productVideoList";
|
|
4336
|
-
progress: "progress";
|
|
4337
|
-
property_mark: "property_mark";
|
|
4338
|
-
property_reference: "property_reference";
|
|
4339
|
-
property_sampleSolution: "property_sampleSolution";
|
|
4340
|
-
property_title: "property_title";
|
|
4341
|
-
publications: "publications";
|
|
4342
|
-
publisher: "publisher";
|
|
4343
|
-
publisherName: "publisherName";
|
|
4344
|
-
quizCountItems: "quizCountItems";
|
|
4345
|
-
quizStrikethroughSolutions: "quizStrikethroughSolutions";
|
|
4346
|
-
quotedPerson: "quotedPerson";
|
|
4347
|
-
ratingLevelEnd: "ratingLevelEnd";
|
|
4348
|
-
ratingLevelSelected: "ratingLevelSelected";
|
|
4349
|
-
ratingLevelStart: "ratingLevelStart";
|
|
4350
|
-
reaction: "reaction";
|
|
4351
|
-
reasonableNumOfChars: "reasonableNumOfChars";
|
|
4352
|
-
reductionTag: "reductionTag";
|
|
4353
|
-
refAuthor: "refAuthor";
|
|
4354
|
-
refBookTitle: "refBookTitle";
|
|
4355
|
-
refPublisher: "refPublisher";
|
|
4356
|
-
refPublicationYear: "refPublicationYear";
|
|
4357
|
-
releaseDate: "releaseDate";
|
|
4358
|
-
releaseKind: "releaseKind";
|
|
4359
|
-
releaseVersion: "releaseVersion";
|
|
4360
|
-
resolved: "resolved";
|
|
4361
|
-
resolvedBy: "resolvedBy";
|
|
4362
|
-
resolvedDate: "resolvedDate";
|
|
4363
|
-
revealSolutions: "revealSolutions";
|
|
4364
|
-
scormSource: "scormSource";
|
|
4365
|
-
search: "search";
|
|
4366
|
-
searchIndex: "searchIndex";
|
|
4367
|
-
servings: "servings";
|
|
4368
|
-
showInIndex: "showInIndex";
|
|
4369
|
-
showSubtitles: "showSubtitles";
|
|
4370
|
-
siteName: "siteName";
|
|
4371
|
-
size: "size";
|
|
4372
|
-
slug: "slug";
|
|
4373
|
-
spaceId: "spaceId";
|
|
4374
|
-
src1x: "src1x";
|
|
4375
|
-
src2x: "src2x";
|
|
4376
|
-
src3x: "src3x";
|
|
4377
|
-
src4x: "src4x";
|
|
4378
|
-
stripePricingTableId: "stripePricingTableId";
|
|
4379
|
-
stripePublishableKey: "stripePublishableKey";
|
|
4380
|
-
subject: "subject";
|
|
4381
|
-
subtype: "subtype";
|
|
4382
|
-
tableAutoWidth: "tableAutoWidth";
|
|
4383
|
-
tableFixedHeader: "tableFixedHeader";
|
|
4384
|
-
tableHeaderWhitespaceNoWrap: "tableHeaderWhitespaceNoWrap";
|
|
4385
|
-
tableHeight: "tableHeight";
|
|
4386
|
-
tablePagination: "tablePagination";
|
|
4387
|
-
tablePaginationLimit: "tablePaginationLimit";
|
|
4388
|
-
tableResizableColumns: "tableResizableColumns";
|
|
4389
|
-
tableColumnMinWidth: "tableColumnMinWidth";
|
|
4390
|
-
tableSearch: "tableSearch";
|
|
4391
|
-
tableSort: "tableSort";
|
|
4392
|
-
tableWhitespaceNoWrap: "tableWhitespaceNoWrap";
|
|
4393
|
-
tag: "tag";
|
|
4394
|
-
target: "target";
|
|
4395
|
-
technicalTerm: "technicalTerm";
|
|
4396
|
-
textReference: "textReference";
|
|
4397
|
-
theme: "theme";
|
|
4398
|
-
thumbImage: "thumbImage";
|
|
4399
|
-
toc: "toc";
|
|
4400
|
-
tocResource: "tocResource";
|
|
4401
|
-
tocContent: "tocContent";
|
|
4402
|
-
topicTag: "topicTag";
|
|
4403
|
-
trim: "trim";
|
|
4404
|
-
unit: "unit";
|
|
4405
|
-
unitAbbr: "unitAbbr";
|
|
4406
|
-
vendorDashboardId: "vendorDashboardId";
|
|
4407
|
-
vendorSurveyId: "vendorSurveyId";
|
|
4408
|
-
vendorUrl: "vendorUrl";
|
|
4409
|
-
videoCallLink: "videoCallLink";
|
|
4410
|
-
width: "width";
|
|
4411
|
-
x: "x";
|
|
4412
|
-
y: "y";
|
|
4413
|
-
zoomDisabled: "zoomDisabled";
|
|
4414
|
-
}> & _ncoderz_superenum.EnumExtensions<EnumType<{
|
|
4415
|
-
tag_mark: "mark";
|
|
4416
|
-
tag_reference: "reference";
|
|
4417
|
-
tag_sampleSolution: "sampleSolution";
|
|
4418
|
-
tag_title: "title";
|
|
4419
|
-
action: "action";
|
|
4420
|
-
activityType: "activityType";
|
|
4421
|
-
additionalSolutions: "additionalSolutions";
|
|
4422
|
-
ageRange: "ageRange";
|
|
4423
|
-
aiGenerated: "aiGenerated";
|
|
4424
|
-
analyticsTag: "analyticsTag";
|
|
4425
|
-
allowedBit: "allowedBit";
|
|
4426
|
-
allowSubtitles: "allowSubtitles";
|
|
4427
|
-
alt: "alt";
|
|
4428
|
-
altLangTag: "altLangTag";
|
|
4429
|
-
author: "author";
|
|
4430
|
-
autoplay: "autoplay";
|
|
4431
|
-
availableClassifications: "availableClassifications";
|
|
4432
|
-
blockId: "blockId";
|
|
4433
|
-
book: "book";
|
|
4434
|
-
bookAlias: "bookAlias";
|
|
4435
|
-
bookDiff: "bookDiff";
|
|
4436
|
-
bot: "bot";
|
|
4437
|
-
bubbleTag: "bubbleTag";
|
|
4438
|
-
buttonCaption: "buttonCaption";
|
|
4439
|
-
callToActionUrl: "callToActionUrl";
|
|
4440
|
-
caption: "caption";
|
|
4441
|
-
categoryTag: "categoryTag";
|
|
4442
|
-
chatWithBook: "chatWithBook";
|
|
4443
|
-
chatWithBookBrainKey: "chatWithBookBrainKey";
|
|
4444
|
-
citationStyle: "citationStyle";
|
|
4445
|
-
classification: "classification";
|
|
4446
|
-
codeLineNumbers: "codeLineNumbers";
|
|
4447
|
-
codeMinimap: "codeMinimap";
|
|
4448
|
-
color: "color";
|
|
4449
|
-
colorTag: "colorTag";
|
|
4450
|
-
computerLanguage: "computerLanguage";
|
|
4451
|
-
content2Buy: "content2Buy";
|
|
4452
|
-
copyright: "copyright";
|
|
4453
|
-
coverColor: "coverColor";
|
|
4454
|
-
coverImage: "coverImage";
|
|
4455
|
-
customerExternalId: "customerExternalId";
|
|
4456
|
-
customerId: "customerId";
|
|
4457
|
-
date: "date";
|
|
4458
|
-
dateEnd: "dateEnd";
|
|
4459
|
-
decimalPlaces: "decimalPlaces";
|
|
4460
|
-
deeplink: "deeplink";
|
|
4461
|
-
disableCalculation: "disableCalculation";
|
|
4462
|
-
disableFeedback: "disableFeedback";
|
|
4463
|
-
diffTo: "diffTo";
|
|
4464
|
-
diffOp: "diffOp";
|
|
4465
|
-
diffRef: "diffRef";
|
|
4466
|
-
diffContext: "diffContext";
|
|
4467
|
-
diffTime: "diffTime";
|
|
4468
|
-
duration: "duration";
|
|
4469
|
-
emphasis: "emphasis";
|
|
4470
|
-
example: "example";
|
|
4471
|
-
externalId: "externalId";
|
|
4472
|
-
externalLink: "externalLink";
|
|
4473
|
-
externalLinkText: "externalLinkText";
|
|
4474
|
-
feedbackEngine: "feedbackEngine";
|
|
4475
|
-
feedbackType: "feedbackType";
|
|
4476
|
-
flashcardSet: "flashcardSet";
|
|
4477
|
-
focusX: "focusX";
|
|
4478
|
-
focusY: "focusY";
|
|
4479
|
-
format: "format";
|
|
4480
|
-
handInAcceptFileType: "handInAcceptFileType";
|
|
4481
|
-
handInRequirement: "handInRequirement";
|
|
4482
|
-
handInInstruction: "handInInstruction";
|
|
4483
|
-
hasBookNavigation: "hasBookNavigation";
|
|
4484
|
-
hasMarkAsDone: "hasMarkAsDone";
|
|
4485
|
-
height: "height";
|
|
4486
|
-
icon: "icon";
|
|
4487
|
-
iconTag: "iconTag";
|
|
4488
|
-
id: "id";
|
|
4489
|
-
imageFirst: "imageFirst";
|
|
4490
|
-
imageSource: "imageSource";
|
|
4491
|
-
index: "index";
|
|
4492
|
-
internalComment: "internalComment";
|
|
4493
|
-
isCaseSensitive: "isCaseSensitive";
|
|
4494
|
-
isInfoOnly: "isInfoOnly";
|
|
4495
|
-
isPublic: "isPublic";
|
|
4496
|
-
isTemplate: "isTemplate";
|
|
4497
|
-
isTemplateStripTheme: "isTemplateStripTheme";
|
|
4498
|
-
isTracked: "isTracked";
|
|
4499
|
-
jupyterExecutionCount: "jupyterExecutionCount";
|
|
4500
|
-
jupyterId: "jupyterId";
|
|
4501
|
-
kind: "kind";
|
|
4502
|
-
label: "label";
|
|
4503
|
-
labelFalse: "labelFalse";
|
|
4504
|
-
labelTrue: "labelTrue";
|
|
4505
|
-
lang: "lang";
|
|
4506
|
-
language: "language";
|
|
4507
|
-
layer: "layer";
|
|
4508
|
-
layerRole: "layerRole";
|
|
4509
|
-
levelCEFRp: "levelCEFRp";
|
|
4510
|
-
levelCEFR: "levelCEFR";
|
|
4511
|
-
levelILR: "levelILR";
|
|
4512
|
-
levelACTFL: "levelACTFL";
|
|
4513
|
-
license: "license";
|
|
4514
|
-
list: "list";
|
|
4515
|
-
listItemIndent: "listItemIndent";
|
|
4516
|
-
location: "location";
|
|
4517
|
-
machineTranslated: "machineTranslated";
|
|
4518
|
-
mailingList: "mailingList";
|
|
4519
|
-
markConfig: "markConfig";
|
|
4520
|
-
maxCreatedBits: "maxCreatedBits";
|
|
4521
|
-
maxDisplayLevel: "maxDisplayLevel";
|
|
4522
|
-
maxTocChapterLevel: "maxTocChapterLevel";
|
|
4523
|
-
mockupId: "mockupId";
|
|
4524
|
-
mute: "mute";
|
|
4525
|
-
padletId: "padletId";
|
|
4526
|
-
pageNo: "pageNo";
|
|
4527
|
-
partialAnswer: "partialAnswer";
|
|
4528
|
-
partner: "partner";
|
|
4529
|
-
person: "person";
|
|
4530
|
-
path: "path";
|
|
4531
|
-
pointerLeft: "pointerLeft";
|
|
4532
|
-
pointerTop: "pointerTop";
|
|
4533
|
-
posterImage: "posterImage";
|
|
4534
|
-
page: "page";
|
|
4535
|
-
processHandIn: "processHandIn";
|
|
4536
|
-
processHandInLocation: "processHandInLocation";
|
|
4537
|
-
product: "product";
|
|
4538
|
-
productFolder: "productFolder";
|
|
4539
|
-
productId: "productId";
|
|
4540
|
-
productList: "productList";
|
|
4541
|
-
productVideo: "productVideo";
|
|
4542
|
-
productVideoList: "productVideoList";
|
|
4543
|
-
progress: "progress";
|
|
4544
|
-
property_mark: "property_mark";
|
|
4545
|
-
property_reference: "property_reference";
|
|
4546
|
-
property_sampleSolution: "property_sampleSolution";
|
|
4547
|
-
property_title: "property_title";
|
|
4548
|
-
publications: "publications";
|
|
4549
|
-
publisher: "publisher";
|
|
4550
|
-
publisherName: "publisherName";
|
|
4551
|
-
quizCountItems: "quizCountItems";
|
|
4552
|
-
quizStrikethroughSolutions: "quizStrikethroughSolutions";
|
|
4553
|
-
quotedPerson: "quotedPerson";
|
|
4554
|
-
ratingLevelEnd: "ratingLevelEnd";
|
|
4555
|
-
ratingLevelSelected: "ratingLevelSelected";
|
|
4556
|
-
ratingLevelStart: "ratingLevelStart";
|
|
4557
|
-
reaction: "reaction";
|
|
4558
|
-
reasonableNumOfChars: "reasonableNumOfChars";
|
|
4559
|
-
reductionTag: "reductionTag";
|
|
4560
|
-
refAuthor: "refAuthor";
|
|
4561
|
-
refBookTitle: "refBookTitle";
|
|
4562
|
-
refPublisher: "refPublisher";
|
|
4563
|
-
refPublicationYear: "refPublicationYear";
|
|
4564
|
-
releaseDate: "releaseDate";
|
|
4565
|
-
releaseKind: "releaseKind";
|
|
4566
|
-
releaseVersion: "releaseVersion";
|
|
4567
|
-
resolved: "resolved";
|
|
4568
|
-
resolvedBy: "resolvedBy";
|
|
4569
|
-
resolvedDate: "resolvedDate";
|
|
4570
|
-
revealSolutions: "revealSolutions";
|
|
4571
|
-
scormSource: "scormSource";
|
|
4572
|
-
search: "search";
|
|
4573
|
-
searchIndex: "searchIndex";
|
|
4574
|
-
servings: "servings";
|
|
4575
|
-
showInIndex: "showInIndex";
|
|
4576
|
-
showSubtitles: "showSubtitles";
|
|
4577
|
-
siteName: "siteName";
|
|
4578
|
-
size: "size";
|
|
4579
|
-
slug: "slug";
|
|
4580
|
-
spaceId: "spaceId";
|
|
4581
|
-
src1x: "src1x";
|
|
4582
|
-
src2x: "src2x";
|
|
4583
|
-
src3x: "src3x";
|
|
4584
|
-
src4x: "src4x";
|
|
4585
|
-
stripePricingTableId: "stripePricingTableId";
|
|
4586
|
-
stripePublishableKey: "stripePublishableKey";
|
|
4587
|
-
subject: "subject";
|
|
4588
|
-
subtype: "subtype";
|
|
4589
|
-
tableAutoWidth: "tableAutoWidth";
|
|
4590
|
-
tableFixedHeader: "tableFixedHeader";
|
|
4591
|
-
tableHeaderWhitespaceNoWrap: "tableHeaderWhitespaceNoWrap";
|
|
4592
|
-
tableHeight: "tableHeight";
|
|
4593
|
-
tablePagination: "tablePagination";
|
|
4594
|
-
tablePaginationLimit: "tablePaginationLimit";
|
|
4595
|
-
tableResizableColumns: "tableResizableColumns";
|
|
4596
|
-
tableColumnMinWidth: "tableColumnMinWidth";
|
|
4597
|
-
tableSearch: "tableSearch";
|
|
4598
|
-
tableSort: "tableSort";
|
|
4599
|
-
tableWhitespaceNoWrap: "tableWhitespaceNoWrap";
|
|
4600
|
-
tag: "tag";
|
|
4601
|
-
target: "target";
|
|
4602
|
-
technicalTerm: "technicalTerm";
|
|
4603
|
-
textReference: "textReference";
|
|
4604
|
-
theme: "theme";
|
|
4605
|
-
thumbImage: "thumbImage";
|
|
4606
|
-
toc: "toc";
|
|
4607
|
-
tocResource: "tocResource";
|
|
4608
|
-
tocContent: "tocContent";
|
|
4609
|
-
topicTag: "topicTag";
|
|
4610
|
-
trim: "trim";
|
|
4611
|
-
unit: "unit";
|
|
4612
|
-
unitAbbr: "unitAbbr";
|
|
4613
|
-
vendorDashboardId: "vendorDashboardId";
|
|
4614
|
-
vendorSurveyId: "vendorSurveyId";
|
|
4615
|
-
vendorUrl: "vendorUrl";
|
|
4616
|
-
videoCallLink: "videoCallLink";
|
|
4617
|
-
width: "width";
|
|
4618
|
-
x: "x";
|
|
4619
|
-
y: "y";
|
|
4620
|
-
zoomDisabled: "zoomDisabled";
|
|
4621
|
-
}>>;
|
|
4622
|
-
type PropertyTagType = EnumType<typeof PropertyTag>;
|
|
4623
|
-
|
|
4624
|
-
declare const ResourceJsonKey: Readonly<{
|
|
4625
|
-
imageResponsive: "imageResponsive";
|
|
4626
|
-
imagePortrait: "imagePortrait";
|
|
4627
|
-
imageLandscape: "imageLandscape";
|
|
4628
|
-
imageEmbed: "imageEmbed";
|
|
4629
|
-
imageLink: "imageLink";
|
|
4630
|
-
audioEmbed: "audioEmbed";
|
|
4631
|
-
audioLink: "audioLink";
|
|
4632
|
-
videoEmbed: "videoEmbed";
|
|
4633
|
-
videoLink: "videoLink";
|
|
4634
|
-
stillImageFilm: "stillImageFilm";
|
|
4635
|
-
stillImageFilmEmbed: "stillImageFilmEmbed";
|
|
4636
|
-
stillImageFilmLink: "stillImageFilmLink";
|
|
4637
|
-
articleEmbed: "articleEmbed";
|
|
4638
|
-
articleLink: "articleLink";
|
|
4639
|
-
documentEmbed: "documentEmbed";
|
|
4640
|
-
documentLink: "documentLink";
|
|
4641
|
-
documentDownload: "documentDownload";
|
|
4642
|
-
appLink: "appLink";
|
|
4643
|
-
websiteLink: "websiteLink";
|
|
4644
|
-
}> & _ncoderz_superenum.EnumExtensions<EnumType<{
|
|
4645
|
-
imageResponsive: "imageResponsive";
|
|
4646
|
-
imagePortrait: "imagePortrait";
|
|
4647
|
-
imageLandscape: "imageLandscape";
|
|
4648
|
-
imageEmbed: "imageEmbed";
|
|
4649
|
-
imageLink: "imageLink";
|
|
4650
|
-
audioEmbed: "audioEmbed";
|
|
4651
|
-
audioLink: "audioLink";
|
|
4652
|
-
videoEmbed: "videoEmbed";
|
|
4653
|
-
videoLink: "videoLink";
|
|
4654
|
-
stillImageFilm: "stillImageFilm";
|
|
4655
|
-
stillImageFilmEmbed: "stillImageFilmEmbed";
|
|
4656
|
-
stillImageFilmLink: "stillImageFilmLink";
|
|
4657
|
-
articleEmbed: "articleEmbed";
|
|
4658
|
-
articleLink: "articleLink";
|
|
4659
|
-
documentEmbed: "documentEmbed";
|
|
4660
|
-
documentLink: "documentLink";
|
|
4661
|
-
documentDownload: "documentDownload";
|
|
4662
|
-
appLink: "appLink";
|
|
4663
|
-
websiteLink: "websiteLink";
|
|
4664
|
-
}>>;
|
|
4665
|
-
type ResourceJsonKeyType = EnumType<typeof ResourceJsonKey>;
|
|
4666
|
-
|
|
4667
|
-
/**
|
|
4668
|
-
* Combined bit config keys
|
|
4669
|
-
*/
|
|
4670
|
-
declare const ConfigKey: Readonly<{
|
|
4671
|
-
group_standardAllBits: "group_standardAllBits";
|
|
4672
|
-
group_standardItemLeadInstructionHint: "group_standardItemLeadInstructionHint";
|
|
4673
|
-
group_standardExample: "group_standardExample";
|
|
4674
|
-
group_standardTags: "group_standardTags";
|
|
4675
|
-
group_imageSource: "group_imageSource";
|
|
4676
|
-
group_technicalTerm: "group_technicalTerm";
|
|
4677
|
-
group_person: "group_person";
|
|
4678
|
-
group_gap: "group_gap";
|
|
4679
|
-
group_trueFalse: "group_trueFalse";
|
|
4680
|
-
group_markConfig: "group_markConfig";
|
|
4681
|
-
group_mark: "group_mark";
|
|
4682
|
-
group_bookCommon: "group_bookCommon";
|
|
4683
|
-
group_learningPathCommon: "group_learningPathCommon";
|
|
4684
|
-
group_quizCommon: "group_quizCommon";
|
|
4685
|
-
group_resourceBitTags: "group_resourceBitTags";
|
|
4686
|
-
group_resourceCommon: "group_resourceCommon";
|
|
4687
|
-
group_resourceImageCommon: "group_resourceImageCommon";
|
|
4688
|
-
group_resourceAudioCommon: "group_resourceAudioCommon";
|
|
4689
|
-
group_resourceVideoCommon: "group_resourceVideoCommon";
|
|
4690
|
-
group_resourceIcon: "group_resourceIcon";
|
|
4691
|
-
group_resourceImage: "group_resourceImage";
|
|
4692
|
-
group_resourceImageEmbed: "group_resourceImageEmbed";
|
|
4693
|
-
group_resourceImageLink: "group_resourceImageLink";
|
|
4694
|
-
group_resourceImageResponsive: "group_resourceImageResponsive";
|
|
4695
|
-
group_resourceImagePortrait: "group_resourceImagePortrait";
|
|
4696
|
-
group_resourceImageLandscape: "group_resourceImageLandscape";
|
|
4697
|
-
group_resourceAudio: "group_resourceAudio";
|
|
4698
|
-
group_resourceAudioEmbed: "group_resourceAudioEmbed";
|
|
4699
|
-
group_resourceAudioLink: "group_resourceAudioLink";
|
|
4700
|
-
group_resourceVideo: "group_resourceVideo";
|
|
4701
|
-
group_resourceVideoEmbed: "group_resourceVideoEmbed";
|
|
4702
|
-
group_resourceVideoLink: "group_resourceVideoLink";
|
|
4703
|
-
group_resourceStillImageFilm: "group_resourceStillImageFilm";
|
|
4704
|
-
group_resourceStillImageFilmEmbed: "group_resourceStillImageFilmEmbed";
|
|
4705
|
-
group_resourceStillImageFilmLink: "group_resourceStillImageFilmLink";
|
|
4706
|
-
group_resourceArticle: "group_resourceArticle";
|
|
4707
|
-
group_resourceArticleEmbed: "group_resourceArticleEmbed";
|
|
4708
|
-
group_resourceArticleLink: "group_resourceArticleLink";
|
|
4709
|
-
group_resourceDocument: "group_resourceDocument";
|
|
4710
|
-
group_resourceDocumentEmbed: "group_resourceDocumentEmbed";
|
|
4711
|
-
group_resourceDocumentLink: "group_resourceDocumentLink";
|
|
4712
|
-
group_resourceDocumentDownload: "group_resourceDocumentDownload";
|
|
4713
|
-
group_resourceAppLink: "group_resourceAppLink";
|
|
4714
|
-
group_resourceWebsiteLink: "group_resourceWebsiteLink";
|
|
4715
|
-
image: "image";
|
|
4716
|
-
imagePortrait: "imagePortrait";
|
|
4717
|
-
imageLandscape: "imageLandscape";
|
|
4718
|
-
imageEmbed: "imageEmbed";
|
|
4719
|
-
imageLink: "imageLink";
|
|
4720
|
-
audio: "audio";
|
|
4721
|
-
audioEmbed: "audioEmbed";
|
|
4722
|
-
audioLink: "audioLink";
|
|
4723
|
-
video: "video";
|
|
4724
|
-
videoEmbed: "videoEmbed";
|
|
4725
|
-
videoLink: "videoLink";
|
|
4726
|
-
stillImageFilmEmbed: "stillImageFilmEmbed";
|
|
4727
|
-
stillImageFilmLink: "stillImageFilmLink";
|
|
4728
|
-
article: "article";
|
|
4729
|
-
articleEmbed: "articleEmbed";
|
|
4730
|
-
articleLink: "articleLink";
|
|
4731
|
-
document: "document";
|
|
4732
|
-
documentEmbed: "documentEmbed";
|
|
4733
|
-
documentLink: "documentLink";
|
|
4734
|
-
documentDownload: "documentDownload";
|
|
4735
|
-
appLink: "appLink";
|
|
4736
|
-
websiteLink: "websiteLink";
|
|
4737
|
-
icon: "icon";
|
|
4738
|
-
backgroundWallpaper: "backgroundWallpaper";
|
|
4739
|
-
imagePlaceholder: "imagePlaceholder";
|
|
4740
|
-
action: "action";
|
|
4741
|
-
activityType: "activityType";
|
|
4742
|
-
additionalSolutions: "additionalSolutions";
|
|
4743
|
-
ageRange: "ageRange";
|
|
4744
|
-
aiGenerated: "aiGenerated";
|
|
4745
|
-
analyticsTag: "analyticsTag";
|
|
4746
|
-
allowedBit: "allowedBit";
|
|
4747
|
-
allowSubtitles: "allowSubtitles";
|
|
4748
|
-
alt: "alt";
|
|
4749
|
-
altLangTag: "altLangTag";
|
|
4750
|
-
author: "author";
|
|
4751
|
-
autoplay: "autoplay";
|
|
4752
|
-
availableClassifications: "availableClassifications";
|
|
4753
|
-
blockId: "blockId";
|
|
4754
|
-
book: "book";
|
|
4755
|
-
bookAlias: "bookAlias";
|
|
4756
|
-
bookDiff: "bookDiff";
|
|
4757
|
-
bot: "bot";
|
|
4758
|
-
bubbleTag: "bubbleTag";
|
|
4759
|
-
buttonCaption: "buttonCaption";
|
|
4760
|
-
callToActionUrl: "callToActionUrl";
|
|
4761
|
-
caption: "caption";
|
|
4762
|
-
categoryTag: "categoryTag";
|
|
4763
|
-
chatWithBook: "chatWithBook";
|
|
4764
|
-
chatWithBookBrainKey: "chatWithBookBrainKey";
|
|
4765
|
-
citationStyle: "citationStyle";
|
|
4766
|
-
classification: "classification";
|
|
4767
|
-
codeLineNumbers: "codeLineNumbers";
|
|
4768
|
-
codeMinimap: "codeMinimap";
|
|
4769
|
-
color: "color";
|
|
4770
|
-
colorTag: "colorTag";
|
|
4771
|
-
computerLanguage: "computerLanguage";
|
|
4772
|
-
content2Buy: "content2Buy";
|
|
4773
|
-
copyright: "copyright";
|
|
4774
|
-
coverColor: "coverColor";
|
|
4775
|
-
coverImage: "coverImage";
|
|
4776
|
-
customerExternalId: "customerExternalId";
|
|
4777
|
-
customerId: "customerId";
|
|
4778
|
-
date: "date";
|
|
4779
|
-
dateEnd: "dateEnd";
|
|
4780
|
-
decimalPlaces: "decimalPlaces";
|
|
4781
|
-
deeplink: "deeplink";
|
|
4782
|
-
disableCalculation: "disableCalculation";
|
|
4783
|
-
disableFeedback: "disableFeedback";
|
|
4784
|
-
diffTo: "diffTo";
|
|
4785
|
-
diffOp: "diffOp";
|
|
4786
|
-
diffRef: "diffRef";
|
|
4787
|
-
diffContext: "diffContext";
|
|
4788
|
-
diffTime: "diffTime";
|
|
4789
|
-
duration: "duration";
|
|
4790
|
-
emphasis: "emphasis";
|
|
4791
|
-
example: "example";
|
|
4792
|
-
externalId: "externalId";
|
|
4793
|
-
externalLink: "externalLink";
|
|
4794
|
-
externalLinkText: "externalLinkText";
|
|
4795
|
-
feedbackEngine: "feedbackEngine";
|
|
4796
|
-
feedbackType: "feedbackType";
|
|
4797
|
-
flashcardSet: "flashcardSet";
|
|
4798
|
-
focusX: "focusX";
|
|
4799
|
-
focusY: "focusY";
|
|
4800
|
-
format: "format";
|
|
4801
|
-
handInAcceptFileType: "handInAcceptFileType";
|
|
4802
|
-
handInRequirement: "handInRequirement";
|
|
4803
|
-
handInInstruction: "handInInstruction";
|
|
4804
|
-
hasBookNavigation: "hasBookNavigation";
|
|
4805
|
-
hasMarkAsDone: "hasMarkAsDone";
|
|
4806
|
-
height: "height";
|
|
4807
|
-
iconTag: "iconTag";
|
|
4808
|
-
id: "id";
|
|
4809
|
-
imageFirst: "imageFirst";
|
|
4810
|
-
imageSource: "imageSource";
|
|
4811
|
-
index: "index";
|
|
4812
|
-
internalComment: "internalComment";
|
|
4813
|
-
isCaseSensitive: "isCaseSensitive";
|
|
4814
|
-
isInfoOnly: "isInfoOnly";
|
|
4815
|
-
isPublic: "isPublic";
|
|
4816
|
-
isTemplate: "isTemplate";
|
|
4817
|
-
isTemplateStripTheme: "isTemplateStripTheme";
|
|
4818
|
-
isTracked: "isTracked";
|
|
4819
|
-
jupyterExecutionCount: "jupyterExecutionCount";
|
|
4820
|
-
jupyterId: "jupyterId";
|
|
4821
|
-
kind: "kind";
|
|
4822
|
-
label: "label";
|
|
4823
|
-
labelFalse: "labelFalse";
|
|
4824
|
-
labelTrue: "labelTrue";
|
|
4825
|
-
lang: "lang";
|
|
4826
|
-
language: "language";
|
|
4827
|
-
layer: "layer";
|
|
4828
|
-
layerRole: "layerRole";
|
|
4829
|
-
levelCEFRp: "levelCEFRp";
|
|
4830
|
-
levelCEFR: "levelCEFR";
|
|
4831
|
-
levelILR: "levelILR";
|
|
4832
|
-
levelACTFL: "levelACTFL";
|
|
4833
|
-
license: "license";
|
|
4834
|
-
list: "list";
|
|
4835
|
-
listItemIndent: "listItemIndent";
|
|
4836
|
-
location: "location";
|
|
4837
|
-
machineTranslated: "machineTranslated";
|
|
4838
|
-
mailingList: "mailingList";
|
|
4839
|
-
markConfig: "markConfig";
|
|
4840
|
-
maxCreatedBits: "maxCreatedBits";
|
|
4841
|
-
maxDisplayLevel: "maxDisplayLevel";
|
|
4842
|
-
maxTocChapterLevel: "maxTocChapterLevel";
|
|
4843
|
-
mockupId: "mockupId";
|
|
4844
|
-
mute: "mute";
|
|
4845
|
-
padletId: "padletId";
|
|
4846
|
-
pageNo: "pageNo";
|
|
4847
|
-
partialAnswer: "partialAnswer";
|
|
4848
|
-
partner: "partner";
|
|
4849
|
-
person: "person";
|
|
4850
|
-
path: "path";
|
|
4851
|
-
pointerLeft: "pointerLeft";
|
|
4852
|
-
pointerTop: "pointerTop";
|
|
4853
|
-
posterImage: "posterImage";
|
|
4854
|
-
page: "page";
|
|
4855
|
-
processHandIn: "processHandIn";
|
|
4856
|
-
processHandInLocation: "processHandInLocation";
|
|
4857
|
-
product: "product";
|
|
4858
|
-
productFolder: "productFolder";
|
|
4859
|
-
productId: "productId";
|
|
4860
|
-
productList: "productList";
|
|
4861
|
-
productVideo: "productVideo";
|
|
4862
|
-
productVideoList: "productVideoList";
|
|
4863
|
-
progress: "progress";
|
|
4864
|
-
property_mark: "property_mark";
|
|
4865
|
-
property_reference: "property_reference";
|
|
4866
|
-
property_sampleSolution: "property_sampleSolution";
|
|
4867
|
-
property_title: "property_title";
|
|
4868
|
-
publications: "publications";
|
|
4869
|
-
publisher: "publisher";
|
|
4870
|
-
publisherName: "publisherName";
|
|
4871
|
-
quizCountItems: "quizCountItems";
|
|
4872
|
-
quizStrikethroughSolutions: "quizStrikethroughSolutions";
|
|
4873
|
-
quotedPerson: "quotedPerson";
|
|
4874
|
-
ratingLevelEnd: "ratingLevelEnd";
|
|
4875
|
-
ratingLevelSelected: "ratingLevelSelected";
|
|
4876
|
-
ratingLevelStart: "ratingLevelStart";
|
|
4877
|
-
reaction: "reaction";
|
|
4878
|
-
reasonableNumOfChars: "reasonableNumOfChars";
|
|
4879
|
-
reductionTag: "reductionTag";
|
|
4880
|
-
refAuthor: "refAuthor";
|
|
4881
|
-
refBookTitle: "refBookTitle";
|
|
4882
|
-
refPublisher: "refPublisher";
|
|
4883
|
-
refPublicationYear: "refPublicationYear";
|
|
4884
|
-
releaseDate: "releaseDate";
|
|
4885
|
-
releaseKind: "releaseKind";
|
|
4886
|
-
releaseVersion: "releaseVersion";
|
|
4887
|
-
resolved: "resolved";
|
|
4888
|
-
resolvedBy: "resolvedBy";
|
|
4889
|
-
resolvedDate: "resolvedDate";
|
|
4890
|
-
revealSolutions: "revealSolutions";
|
|
4891
|
-
scormSource: "scormSource";
|
|
4892
|
-
search: "search";
|
|
4893
|
-
searchIndex: "searchIndex";
|
|
4894
|
-
servings: "servings";
|
|
4895
|
-
showInIndex: "showInIndex";
|
|
4896
|
-
showSubtitles: "showSubtitles";
|
|
4897
|
-
siteName: "siteName";
|
|
4898
|
-
size: "size";
|
|
4899
|
-
slug: "slug";
|
|
4900
|
-
spaceId: "spaceId";
|
|
4901
|
-
src1x: "src1x";
|
|
4902
|
-
src2x: "src2x";
|
|
4903
|
-
src3x: "src3x";
|
|
4904
|
-
src4x: "src4x";
|
|
4905
|
-
stripePricingTableId: "stripePricingTableId";
|
|
4906
|
-
stripePublishableKey: "stripePublishableKey";
|
|
4907
|
-
subject: "subject";
|
|
4908
|
-
subtype: "subtype";
|
|
4909
|
-
tableAutoWidth: "tableAutoWidth";
|
|
4910
|
-
tableFixedHeader: "tableFixedHeader";
|
|
4911
|
-
tableHeaderWhitespaceNoWrap: "tableHeaderWhitespaceNoWrap";
|
|
4912
|
-
tableHeight: "tableHeight";
|
|
4913
|
-
tablePagination: "tablePagination";
|
|
4914
|
-
tablePaginationLimit: "tablePaginationLimit";
|
|
4915
|
-
tableResizableColumns: "tableResizableColumns";
|
|
4916
|
-
tableColumnMinWidth: "tableColumnMinWidth";
|
|
4917
|
-
tableSearch: "tableSearch";
|
|
4918
|
-
tableSort: "tableSort";
|
|
4919
|
-
tableWhitespaceNoWrap: "tableWhitespaceNoWrap";
|
|
4920
|
-
tag: "tag";
|
|
4921
|
-
target: "target";
|
|
4922
|
-
technicalTerm: "technicalTerm";
|
|
4923
|
-
textReference: "textReference";
|
|
4924
|
-
theme: "theme";
|
|
4925
|
-
thumbImage: "thumbImage";
|
|
4926
|
-
toc: "toc";
|
|
4927
|
-
tocResource: "tocResource";
|
|
4928
|
-
tocContent: "tocContent";
|
|
4929
|
-
topicTag: "topicTag";
|
|
4930
|
-
trim: "trim";
|
|
4931
|
-
unit: "unit";
|
|
4932
|
-
unitAbbr: "unitAbbr";
|
|
4933
|
-
vendorDashboardId: "vendorDashboardId";
|
|
4934
|
-
vendorSurveyId: "vendorSurveyId";
|
|
4935
|
-
vendorUrl: "vendorUrl";
|
|
4936
|
-
videoCallLink: "videoCallLink";
|
|
4937
|
-
width: "width";
|
|
4938
|
-
x: "x";
|
|
4939
|
-
y: "y";
|
|
4940
|
-
zoomDisabled: "zoomDisabled";
|
|
4941
|
-
title: "title";
|
|
4942
|
-
anchor: "anchor";
|
|
4943
|
-
tag_reference: "tag_reference";
|
|
4944
|
-
property: "property";
|
|
4945
|
-
itemLead: "itemLead";
|
|
4946
|
-
instruction: "instruction";
|
|
4947
|
-
hint: "hint";
|
|
4948
|
-
true: "true";
|
|
4949
|
-
false: "false";
|
|
4950
|
-
sampleSolution: "sampleSolution";
|
|
4951
|
-
gap: "gap";
|
|
4952
|
-
tag_mark: "tag_mark";
|
|
4953
|
-
resource: "resource";
|
|
4954
|
-
_unknown: "_unknown";
|
|
4955
|
-
}> & _ncoderz_superenum.EnumExtensions<EnumType<{
|
|
4956
|
-
group_standardAllBits: "group_standardAllBits";
|
|
4957
|
-
group_standardItemLeadInstructionHint: "group_standardItemLeadInstructionHint";
|
|
4958
|
-
group_standardExample: "group_standardExample";
|
|
4959
|
-
group_standardTags: "group_standardTags";
|
|
4960
|
-
group_imageSource: "group_imageSource";
|
|
4961
|
-
group_technicalTerm: "group_technicalTerm";
|
|
4962
|
-
group_person: "group_person";
|
|
4963
|
-
group_gap: "group_gap";
|
|
4964
|
-
group_trueFalse: "group_trueFalse";
|
|
4965
|
-
group_markConfig: "group_markConfig";
|
|
4966
|
-
group_mark: "group_mark";
|
|
4967
|
-
group_bookCommon: "group_bookCommon";
|
|
4968
|
-
group_learningPathCommon: "group_learningPathCommon";
|
|
4969
|
-
group_quizCommon: "group_quizCommon";
|
|
4970
|
-
group_resourceBitTags: "group_resourceBitTags";
|
|
4971
|
-
group_resourceCommon: "group_resourceCommon";
|
|
4972
|
-
group_resourceImageCommon: "group_resourceImageCommon";
|
|
4973
|
-
group_resourceAudioCommon: "group_resourceAudioCommon";
|
|
4974
|
-
group_resourceVideoCommon: "group_resourceVideoCommon";
|
|
4975
|
-
group_resourceIcon: "group_resourceIcon";
|
|
4976
|
-
group_resourceImage: "group_resourceImage";
|
|
4977
|
-
group_resourceImageEmbed: "group_resourceImageEmbed";
|
|
4978
|
-
group_resourceImageLink: "group_resourceImageLink";
|
|
4979
|
-
group_resourceImageResponsive: "group_resourceImageResponsive";
|
|
4980
|
-
group_resourceImagePortrait: "group_resourceImagePortrait";
|
|
4981
|
-
group_resourceImageLandscape: "group_resourceImageLandscape";
|
|
4982
|
-
group_resourceAudio: "group_resourceAudio";
|
|
4983
|
-
group_resourceAudioEmbed: "group_resourceAudioEmbed";
|
|
4984
|
-
group_resourceAudioLink: "group_resourceAudioLink";
|
|
4985
|
-
group_resourceVideo: "group_resourceVideo";
|
|
4986
|
-
group_resourceVideoEmbed: "group_resourceVideoEmbed";
|
|
4987
|
-
group_resourceVideoLink: "group_resourceVideoLink";
|
|
4988
|
-
group_resourceStillImageFilm: "group_resourceStillImageFilm";
|
|
4989
|
-
group_resourceStillImageFilmEmbed: "group_resourceStillImageFilmEmbed";
|
|
4990
|
-
group_resourceStillImageFilmLink: "group_resourceStillImageFilmLink";
|
|
4991
|
-
group_resourceArticle: "group_resourceArticle";
|
|
4992
|
-
group_resourceArticleEmbed: "group_resourceArticleEmbed";
|
|
4993
|
-
group_resourceArticleLink: "group_resourceArticleLink";
|
|
4994
|
-
group_resourceDocument: "group_resourceDocument";
|
|
4995
|
-
group_resourceDocumentEmbed: "group_resourceDocumentEmbed";
|
|
4996
|
-
group_resourceDocumentLink: "group_resourceDocumentLink";
|
|
4997
|
-
group_resourceDocumentDownload: "group_resourceDocumentDownload";
|
|
4998
|
-
group_resourceAppLink: "group_resourceAppLink";
|
|
4999
|
-
group_resourceWebsiteLink: "group_resourceWebsiteLink";
|
|
5000
|
-
image: "image";
|
|
5001
|
-
imagePortrait: "imagePortrait";
|
|
5002
|
-
imageLandscape: "imageLandscape";
|
|
5003
|
-
imageEmbed: "imageEmbed";
|
|
5004
|
-
imageLink: "imageLink";
|
|
5005
|
-
audio: "audio";
|
|
5006
|
-
audioEmbed: "audioEmbed";
|
|
5007
|
-
audioLink: "audioLink";
|
|
5008
|
-
video: "video";
|
|
5009
|
-
videoEmbed: "videoEmbed";
|
|
5010
|
-
videoLink: "videoLink";
|
|
5011
|
-
stillImageFilmEmbed: "stillImageFilmEmbed";
|
|
5012
|
-
stillImageFilmLink: "stillImageFilmLink";
|
|
5013
|
-
article: "article";
|
|
5014
|
-
articleEmbed: "articleEmbed";
|
|
5015
|
-
articleLink: "articleLink";
|
|
5016
|
-
document: "document";
|
|
5017
|
-
documentEmbed: "documentEmbed";
|
|
5018
|
-
documentLink: "documentLink";
|
|
5019
|
-
documentDownload: "documentDownload";
|
|
5020
|
-
appLink: "appLink";
|
|
5021
|
-
websiteLink: "websiteLink";
|
|
5022
|
-
icon: "icon";
|
|
5023
|
-
backgroundWallpaper: "backgroundWallpaper";
|
|
5024
|
-
imagePlaceholder: "imagePlaceholder";
|
|
5025
|
-
action: "action";
|
|
5026
|
-
activityType: "activityType";
|
|
5027
|
-
additionalSolutions: "additionalSolutions";
|
|
5028
|
-
ageRange: "ageRange";
|
|
5029
|
-
aiGenerated: "aiGenerated";
|
|
5030
|
-
analyticsTag: "analyticsTag";
|
|
5031
|
-
allowedBit: "allowedBit";
|
|
5032
|
-
allowSubtitles: "allowSubtitles";
|
|
5033
|
-
alt: "alt";
|
|
5034
|
-
altLangTag: "altLangTag";
|
|
5035
|
-
author: "author";
|
|
5036
|
-
autoplay: "autoplay";
|
|
5037
|
-
availableClassifications: "availableClassifications";
|
|
5038
|
-
blockId: "blockId";
|
|
5039
|
-
book: "book";
|
|
5040
|
-
bookAlias: "bookAlias";
|
|
5041
|
-
bookDiff: "bookDiff";
|
|
5042
|
-
bot: "bot";
|
|
5043
|
-
bubbleTag: "bubbleTag";
|
|
5044
|
-
buttonCaption: "buttonCaption";
|
|
5045
|
-
callToActionUrl: "callToActionUrl";
|
|
5046
|
-
caption: "caption";
|
|
5047
|
-
categoryTag: "categoryTag";
|
|
5048
|
-
chatWithBook: "chatWithBook";
|
|
5049
|
-
chatWithBookBrainKey: "chatWithBookBrainKey";
|
|
5050
|
-
citationStyle: "citationStyle";
|
|
5051
|
-
classification: "classification";
|
|
5052
|
-
codeLineNumbers: "codeLineNumbers";
|
|
5053
|
-
codeMinimap: "codeMinimap";
|
|
5054
|
-
color: "color";
|
|
5055
|
-
colorTag: "colorTag";
|
|
5056
|
-
computerLanguage: "computerLanguage";
|
|
5057
|
-
content2Buy: "content2Buy";
|
|
5058
|
-
copyright: "copyright";
|
|
5059
|
-
coverColor: "coverColor";
|
|
5060
|
-
coverImage: "coverImage";
|
|
5061
|
-
customerExternalId: "customerExternalId";
|
|
5062
|
-
customerId: "customerId";
|
|
5063
|
-
date: "date";
|
|
5064
|
-
dateEnd: "dateEnd";
|
|
5065
|
-
decimalPlaces: "decimalPlaces";
|
|
5066
|
-
deeplink: "deeplink";
|
|
5067
|
-
disableCalculation: "disableCalculation";
|
|
5068
|
-
disableFeedback: "disableFeedback";
|
|
5069
|
-
diffTo: "diffTo";
|
|
5070
|
-
diffOp: "diffOp";
|
|
5071
|
-
diffRef: "diffRef";
|
|
5072
|
-
diffContext: "diffContext";
|
|
5073
|
-
diffTime: "diffTime";
|
|
5074
|
-
duration: "duration";
|
|
5075
|
-
emphasis: "emphasis";
|
|
5076
|
-
example: "example";
|
|
5077
|
-
externalId: "externalId";
|
|
5078
|
-
externalLink: "externalLink";
|
|
5079
|
-
externalLinkText: "externalLinkText";
|
|
5080
|
-
feedbackEngine: "feedbackEngine";
|
|
5081
|
-
feedbackType: "feedbackType";
|
|
5082
|
-
flashcardSet: "flashcardSet";
|
|
5083
|
-
focusX: "focusX";
|
|
5084
|
-
focusY: "focusY";
|
|
5085
|
-
format: "format";
|
|
5086
|
-
handInAcceptFileType: "handInAcceptFileType";
|
|
5087
|
-
handInRequirement: "handInRequirement";
|
|
5088
|
-
handInInstruction: "handInInstruction";
|
|
5089
|
-
hasBookNavigation: "hasBookNavigation";
|
|
5090
|
-
hasMarkAsDone: "hasMarkAsDone";
|
|
5091
|
-
height: "height";
|
|
5092
|
-
iconTag: "iconTag";
|
|
5093
|
-
id: "id";
|
|
5094
|
-
imageFirst: "imageFirst";
|
|
5095
|
-
imageSource: "imageSource";
|
|
5096
|
-
index: "index";
|
|
5097
|
-
internalComment: "internalComment";
|
|
5098
|
-
isCaseSensitive: "isCaseSensitive";
|
|
5099
|
-
isInfoOnly: "isInfoOnly";
|
|
5100
|
-
isPublic: "isPublic";
|
|
5101
|
-
isTemplate: "isTemplate";
|
|
5102
|
-
isTemplateStripTheme: "isTemplateStripTheme";
|
|
5103
|
-
isTracked: "isTracked";
|
|
5104
|
-
jupyterExecutionCount: "jupyterExecutionCount";
|
|
5105
|
-
jupyterId: "jupyterId";
|
|
5106
|
-
kind: "kind";
|
|
5107
|
-
label: "label";
|
|
5108
|
-
labelFalse: "labelFalse";
|
|
5109
|
-
labelTrue: "labelTrue";
|
|
5110
|
-
lang: "lang";
|
|
5111
|
-
language: "language";
|
|
5112
|
-
layer: "layer";
|
|
5113
|
-
layerRole: "layerRole";
|
|
5114
|
-
levelCEFRp: "levelCEFRp";
|
|
5115
|
-
levelCEFR: "levelCEFR";
|
|
5116
|
-
levelILR: "levelILR";
|
|
5117
|
-
levelACTFL: "levelACTFL";
|
|
5118
|
-
license: "license";
|
|
5119
|
-
list: "list";
|
|
5120
|
-
listItemIndent: "listItemIndent";
|
|
5121
|
-
location: "location";
|
|
5122
|
-
machineTranslated: "machineTranslated";
|
|
5123
|
-
mailingList: "mailingList";
|
|
5124
|
-
markConfig: "markConfig";
|
|
5125
|
-
maxCreatedBits: "maxCreatedBits";
|
|
5126
|
-
maxDisplayLevel: "maxDisplayLevel";
|
|
5127
|
-
maxTocChapterLevel: "maxTocChapterLevel";
|
|
5128
|
-
mockupId: "mockupId";
|
|
5129
|
-
mute: "mute";
|
|
5130
|
-
padletId: "padletId";
|
|
5131
|
-
pageNo: "pageNo";
|
|
5132
|
-
partialAnswer: "partialAnswer";
|
|
5133
|
-
partner: "partner";
|
|
5134
|
-
person: "person";
|
|
5135
|
-
path: "path";
|
|
5136
|
-
pointerLeft: "pointerLeft";
|
|
5137
|
-
pointerTop: "pointerTop";
|
|
5138
|
-
posterImage: "posterImage";
|
|
5139
|
-
page: "page";
|
|
5140
|
-
processHandIn: "processHandIn";
|
|
5141
|
-
processHandInLocation: "processHandInLocation";
|
|
5142
|
-
product: "product";
|
|
5143
|
-
productFolder: "productFolder";
|
|
5144
|
-
productId: "productId";
|
|
5145
|
-
productList: "productList";
|
|
5146
|
-
productVideo: "productVideo";
|
|
5147
|
-
productVideoList: "productVideoList";
|
|
5148
|
-
progress: "progress";
|
|
5149
|
-
property_mark: "property_mark";
|
|
5150
|
-
property_reference: "property_reference";
|
|
5151
|
-
property_sampleSolution: "property_sampleSolution";
|
|
5152
|
-
property_title: "property_title";
|
|
5153
|
-
publications: "publications";
|
|
5154
|
-
publisher: "publisher";
|
|
5155
|
-
publisherName: "publisherName";
|
|
5156
|
-
quizCountItems: "quizCountItems";
|
|
5157
|
-
quizStrikethroughSolutions: "quizStrikethroughSolutions";
|
|
5158
|
-
quotedPerson: "quotedPerson";
|
|
5159
|
-
ratingLevelEnd: "ratingLevelEnd";
|
|
5160
|
-
ratingLevelSelected: "ratingLevelSelected";
|
|
5161
|
-
ratingLevelStart: "ratingLevelStart";
|
|
5162
|
-
reaction: "reaction";
|
|
5163
|
-
reasonableNumOfChars: "reasonableNumOfChars";
|
|
5164
|
-
reductionTag: "reductionTag";
|
|
5165
|
-
refAuthor: "refAuthor";
|
|
5166
|
-
refBookTitle: "refBookTitle";
|
|
5167
|
-
refPublisher: "refPublisher";
|
|
5168
|
-
refPublicationYear: "refPublicationYear";
|
|
5169
|
-
releaseDate: "releaseDate";
|
|
5170
|
-
releaseKind: "releaseKind";
|
|
5171
|
-
releaseVersion: "releaseVersion";
|
|
5172
|
-
resolved: "resolved";
|
|
5173
|
-
resolvedBy: "resolvedBy";
|
|
5174
|
-
resolvedDate: "resolvedDate";
|
|
5175
|
-
revealSolutions: "revealSolutions";
|
|
5176
|
-
scormSource: "scormSource";
|
|
5177
|
-
search: "search";
|
|
5178
|
-
searchIndex: "searchIndex";
|
|
5179
|
-
servings: "servings";
|
|
5180
|
-
showInIndex: "showInIndex";
|
|
5181
|
-
showSubtitles: "showSubtitles";
|
|
5182
|
-
siteName: "siteName";
|
|
5183
|
-
size: "size";
|
|
5184
|
-
slug: "slug";
|
|
5185
|
-
spaceId: "spaceId";
|
|
5186
|
-
src1x: "src1x";
|
|
5187
|
-
src2x: "src2x";
|
|
5188
|
-
src3x: "src3x";
|
|
5189
|
-
src4x: "src4x";
|
|
5190
|
-
stripePricingTableId: "stripePricingTableId";
|
|
5191
|
-
stripePublishableKey: "stripePublishableKey";
|
|
5192
|
-
subject: "subject";
|
|
5193
|
-
subtype: "subtype";
|
|
5194
|
-
tableAutoWidth: "tableAutoWidth";
|
|
5195
|
-
tableFixedHeader: "tableFixedHeader";
|
|
5196
|
-
tableHeaderWhitespaceNoWrap: "tableHeaderWhitespaceNoWrap";
|
|
5197
|
-
tableHeight: "tableHeight";
|
|
5198
|
-
tablePagination: "tablePagination";
|
|
5199
|
-
tablePaginationLimit: "tablePaginationLimit";
|
|
5200
|
-
tableResizableColumns: "tableResizableColumns";
|
|
5201
|
-
tableColumnMinWidth: "tableColumnMinWidth";
|
|
5202
|
-
tableSearch: "tableSearch";
|
|
5203
|
-
tableSort: "tableSort";
|
|
5204
|
-
tableWhitespaceNoWrap: "tableWhitespaceNoWrap";
|
|
5205
|
-
tag: "tag";
|
|
5206
|
-
target: "target";
|
|
5207
|
-
technicalTerm: "technicalTerm";
|
|
5208
|
-
textReference: "textReference";
|
|
5209
|
-
theme: "theme";
|
|
5210
|
-
thumbImage: "thumbImage";
|
|
5211
|
-
toc: "toc";
|
|
5212
|
-
tocResource: "tocResource";
|
|
5213
|
-
tocContent: "tocContent";
|
|
5214
|
-
topicTag: "topicTag";
|
|
5215
|
-
trim: "trim";
|
|
5216
|
-
unit: "unit";
|
|
5217
|
-
unitAbbr: "unitAbbr";
|
|
5218
|
-
vendorDashboardId: "vendorDashboardId";
|
|
5219
|
-
vendorSurveyId: "vendorSurveyId";
|
|
5220
|
-
vendorUrl: "vendorUrl";
|
|
5221
|
-
videoCallLink: "videoCallLink";
|
|
5222
|
-
width: "width";
|
|
5223
|
-
x: "x";
|
|
5224
|
-
y: "y";
|
|
5225
|
-
zoomDisabled: "zoomDisabled";
|
|
5226
|
-
title: "title";
|
|
5227
|
-
anchor: "anchor";
|
|
5228
|
-
tag_reference: "tag_reference";
|
|
5229
|
-
property: "property";
|
|
5230
|
-
itemLead: "itemLead";
|
|
5231
|
-
instruction: "instruction";
|
|
5232
|
-
hint: "hint";
|
|
5233
|
-
true: "true";
|
|
5234
|
-
false: "false";
|
|
5235
|
-
sampleSolution: "sampleSolution";
|
|
5236
|
-
gap: "gap";
|
|
5237
|
-
tag_mark: "tag_mark";
|
|
5238
|
-
resource: "resource";
|
|
5239
|
-
_unknown: "_unknown";
|
|
5240
|
-
}>>;
|
|
5241
|
-
type ConfigKeyType = EnumType<typeof ConfigKey>;
|
|
5242
|
-
|
|
5243
|
-
declare abstract class AbstractTagConfig {
|
|
5244
|
-
readonly type: BitTagTypeType;
|
|
5245
|
-
readonly configKey: ConfigKeyType;
|
|
5246
|
-
readonly tag: TagType | ResourceTagType | PropertyTagType;
|
|
5247
|
-
readonly maxCount: CountType;
|
|
5248
|
-
readonly minCount: number;
|
|
5249
|
-
readonly chain?: TagsConfig;
|
|
5250
|
-
readonly jsonKey?: PropertyJsonKeyType | ResourceJsonKeyType;
|
|
5251
|
-
readonly astKey?: PropertyAstKeyType;
|
|
5252
|
-
readonly deprecated?: string;
|
|
5253
|
-
constructor(type: BitTagTypeType, configKey: ConfigKeyType, tag: TagType | ResourceTagType | PropertyTagType, maxCount: CountType, minCount: number, chain: TagsConfig | undefined, jsonKey: PropertyJsonKeyType | ResourceJsonKeyType | undefined, astKey: PropertyAstKeyType | undefined, deprecated: string | undefined);
|
|
5254
|
-
}
|
|
5255
|
-
|
|
5256
|
-
interface ToStringOptions$5 {
|
|
5257
|
-
includeChains?: boolean;
|
|
5258
|
-
includeConfigs?: boolean;
|
|
5259
|
-
}
|
|
5260
|
-
declare class MarkupTagConfig extends AbstractTagConfig {
|
|
5261
|
-
readonly type: BitTagTypeType;
|
|
5262
|
-
constructor(configKey: ConfigKeyType, tag: TagType, maxCount: CountType, minCount: number, chain: TagsConfig | undefined, deprecated: string | undefined);
|
|
5263
|
-
toString(options?: ToStringOptions$5): string;
|
|
5264
|
-
}
|
|
5265
|
-
|
|
5266
|
-
declare const PropertyFormat: Readonly<{
|
|
5267
|
-
none: "none";
|
|
5268
|
-
plainText: "plainText";
|
|
5269
|
-
bitmarkText: "bitmarkText";
|
|
5270
|
-
number: "number";
|
|
5271
|
-
boolean: "boolean";
|
|
5272
|
-
invertedBoolean: "invertedBoolean";
|
|
5273
|
-
}> & _ncoderz_superenum.EnumExtensions<EnumType<{
|
|
5274
|
-
none: "none";
|
|
5275
|
-
plainText: "plainText";
|
|
5276
|
-
bitmarkText: "bitmarkText";
|
|
5277
|
-
number: "number";
|
|
5278
|
-
boolean: "boolean";
|
|
5279
|
-
invertedBoolean: "invertedBoolean";
|
|
5280
|
-
}>>;
|
|
5281
|
-
type PropertyFormatType = EnumType<typeof PropertyFormat>;
|
|
5282
|
-
|
|
5283
|
-
interface ToStringOptions$4 {
|
|
5284
|
-
includeChains?: boolean;
|
|
5285
|
-
includeConfigs?: boolean;
|
|
5286
|
-
}
|
|
5287
|
-
declare class PropertyTagConfig extends AbstractTagConfig {
|
|
5288
|
-
readonly type: BitTagTypeType;
|
|
5289
|
-
readonly single?: boolean;
|
|
5290
|
-
readonly format?: PropertyFormatType;
|
|
5291
|
-
readonly defaultValue?: string;
|
|
5292
|
-
constructor(configKey: ConfigKeyType, tag: PropertyTagType, maxCount: CountType, minCount: number, chain: TagsConfig | undefined, jsonKey: PropertyJsonKeyType | undefined, astKey: PropertyAstKeyType | undefined, single: boolean | undefined, format: PropertyFormatType | undefined, defaultValue: string | undefined, deprecated: string | undefined);
|
|
5293
|
-
toString(options?: ToStringOptions$4): string;
|
|
5294
|
-
}
|
|
4804
|
+
interface ToStringOptions$4 {
|
|
4805
|
+
includeChains?: boolean;
|
|
4806
|
+
includeConfigs?: boolean;
|
|
4807
|
+
}
|
|
4808
|
+
declare class PropertyTagConfig extends AbstractTagConfig {
|
|
4809
|
+
readonly type: BitTagConfigKeyTypeType;
|
|
4810
|
+
readonly array?: boolean;
|
|
4811
|
+
readonly format?: TagFormatType;
|
|
4812
|
+
readonly defaultValue?: string;
|
|
4813
|
+
constructor(configKey: ConfigKeyType, tag: string, maxCount: CountType, minCount: number, chain: TagsConfig | undefined, jsonKey: string | undefined, format: TagFormatType | undefined, defaultValue: string | undefined, deprecated: string | undefined);
|
|
4814
|
+
toString(options?: ToStringOptions$4): string;
|
|
4815
|
+
}
|
|
5295
4816
|
|
|
5296
4817
|
interface ToStringOptions$3 {
|
|
5297
4818
|
includeChains?: boolean;
|
|
5298
4819
|
includeConfigs?: boolean;
|
|
5299
4820
|
}
|
|
5300
4821
|
declare class ResourceTagConfig extends AbstractTagConfig {
|
|
5301
|
-
readonly type:
|
|
5302
|
-
constructor(configKey: ConfigKeyType, tag:
|
|
4822
|
+
readonly type: BitTagConfigKeyTypeType;
|
|
4823
|
+
constructor(configKey: ConfigKeyType, tag: string, maxCount: CountType, minCount: number, chain: TagsConfig | undefined, jsonKey: string | undefined, deprecated: string | undefined);
|
|
5303
4824
|
toString(options?: ToStringOptions$3): string;
|
|
5304
4825
|
}
|
|
5305
4826
|
|
|
@@ -5323,43 +4844,43 @@ declare class CardVariantConfig {
|
|
|
5323
4844
|
}
|
|
5324
4845
|
|
|
5325
4846
|
declare const CardSetConfigKey: Readonly<{
|
|
5326
|
-
|
|
5327
|
-
|
|
5328
|
-
|
|
5329
|
-
|
|
5330
|
-
|
|
5331
|
-
|
|
5332
|
-
|
|
5333
|
-
|
|
5334
|
-
|
|
5335
|
-
|
|
5336
|
-
|
|
5337
|
-
|
|
5338
|
-
|
|
5339
|
-
|
|
5340
|
-
|
|
5341
|
-
|
|
5342
|
-
|
|
5343
|
-
|
|
4847
|
+
flashcard: "flashcard";
|
|
4848
|
+
definitionList: "definitionList";
|
|
4849
|
+
elements: "elements";
|
|
4850
|
+
statements: "statements";
|
|
4851
|
+
quiz: "quiz";
|
|
4852
|
+
feedback: "feedback";
|
|
4853
|
+
questions: "questions";
|
|
4854
|
+
matchPairs: "matchPairs";
|
|
4855
|
+
matchAudioPairs: "matchAudioPairs";
|
|
4856
|
+
matchImagePairs: "matchImagePairs";
|
|
4857
|
+
matchMatrix: "matchMatrix";
|
|
4858
|
+
table: "table";
|
|
4859
|
+
pronunciationTable: "pronunciationTable";
|
|
4860
|
+
botActionResponses: "botActionResponses";
|
|
4861
|
+
exampleBitList: "exampleBitList";
|
|
4862
|
+
clozeList: "clozeList";
|
|
4863
|
+
ingredients: "ingredients";
|
|
4864
|
+
bookReferenceList: "bookReferenceList";
|
|
5344
4865
|
}> & _ncoderz_superenum.EnumExtensions<EnumType<{
|
|
5345
|
-
|
|
5346
|
-
|
|
5347
|
-
|
|
5348
|
-
|
|
5349
|
-
|
|
5350
|
-
|
|
5351
|
-
|
|
5352
|
-
|
|
5353
|
-
|
|
5354
|
-
|
|
5355
|
-
|
|
5356
|
-
|
|
5357
|
-
|
|
5358
|
-
|
|
5359
|
-
|
|
5360
|
-
|
|
5361
|
-
|
|
5362
|
-
|
|
4866
|
+
flashcard: "flashcard";
|
|
4867
|
+
definitionList: "definitionList";
|
|
4868
|
+
elements: "elements";
|
|
4869
|
+
statements: "statements";
|
|
4870
|
+
quiz: "quiz";
|
|
4871
|
+
feedback: "feedback";
|
|
4872
|
+
questions: "questions";
|
|
4873
|
+
matchPairs: "matchPairs";
|
|
4874
|
+
matchAudioPairs: "matchAudioPairs";
|
|
4875
|
+
matchImagePairs: "matchImagePairs";
|
|
4876
|
+
matchMatrix: "matchMatrix";
|
|
4877
|
+
table: "table";
|
|
4878
|
+
pronunciationTable: "pronunciationTable";
|
|
4879
|
+
botActionResponses: "botActionResponses";
|
|
4880
|
+
exampleBitList: "exampleBitList";
|
|
4881
|
+
clozeList: "clozeList";
|
|
4882
|
+
ingredients: "ingredients";
|
|
4883
|
+
bookReferenceList: "bookReferenceList";
|
|
5363
4884
|
}>>;
|
|
5364
4885
|
type CardSetConfigKeyType = EnumType<typeof CardSetConfigKey>;
|
|
5365
4886
|
|
|
@@ -5394,7 +4915,7 @@ declare class BitConfig {
|
|
|
5394
4915
|
readonly footerRequired?: boolean;
|
|
5395
4916
|
readonly resourceAttachmentAllowed?: boolean;
|
|
5396
4917
|
readonly rootExampleType?: ExampleTypeType;
|
|
5397
|
-
readonly
|
|
4918
|
+
readonly comboResourceConfigKey?: ConfigKeyType;
|
|
5398
4919
|
constructor(config: {
|
|
5399
4920
|
since: string;
|
|
5400
4921
|
bitType: BitTypeType;
|
|
@@ -5410,7 +4931,7 @@ declare class BitConfig {
|
|
|
5410
4931
|
footerRequired: boolean | undefined;
|
|
5411
4932
|
resourceAttachmentAllowed: boolean | undefined;
|
|
5412
4933
|
rootExampleType: ExampleTypeType | undefined;
|
|
5413
|
-
|
|
4934
|
+
comboResourceConfigKey: ConfigKeyType | undefined;
|
|
5414
4935
|
});
|
|
5415
4936
|
toString(options?: ToStringOptions): string;
|
|
5416
4937
|
}
|
|
@@ -5475,6 +4996,12 @@ interface BuildContext {
|
|
|
5475
4996
|
bitType: BitTypeType;
|
|
5476
4997
|
textFormat: TextFormatType;
|
|
5477
4998
|
}
|
|
4999
|
+
interface ToAstPropertyOptions {
|
|
5000
|
+
cardSet?: {
|
|
5001
|
+
sideNo: number;
|
|
5002
|
+
variantNo: number;
|
|
5003
|
+
};
|
|
5004
|
+
}
|
|
5478
5005
|
declare class BaseBuilder {
|
|
5479
5006
|
protected textParser: TextParser;
|
|
5480
5007
|
protected textGenerator: TextGenerator;
|
|
@@ -5495,9 +5022,10 @@ declare class BaseBuilder {
|
|
|
5495
5022
|
*
|
|
5496
5023
|
* @param key
|
|
5497
5024
|
* @param value
|
|
5025
|
+
* @param options
|
|
5498
5026
|
* @returns
|
|
5499
5027
|
*/
|
|
5500
|
-
protected toAstProperty(key: ConfigKeyType, value: unknown | unknown[] | undefined): Property | undefined;
|
|
5028
|
+
protected toAstProperty(bitType: BitTypeType, key: ConfigKeyType, value: unknown | unknown[] | undefined, options: ToAstPropertyOptions | undefined): Property | undefined;
|
|
5501
5029
|
protected getEmptyTextAst(context: BuildContext): TextAst;
|
|
5502
5030
|
/**
|
|
5503
5031
|
* Convert the JsonText from the JSON to the AST format:
|
|
@@ -5518,6 +5046,12 @@ declare class BaseBuilder {
|
|
|
5518
5046
|
protected handleJsonText<T extends JsonText | JsonText[] | undefined, R = T extends JsonText[] ? TextAst[] : TextAst>(context: BuildContext, textLocation: TextLocationType, text: T): R;
|
|
5519
5047
|
}
|
|
5520
5048
|
|
|
5049
|
+
interface BuildBitOptions {
|
|
5050
|
+
cardSet?: {
|
|
5051
|
+
sideNo: number;
|
|
5052
|
+
variantNo: number;
|
|
5053
|
+
};
|
|
5054
|
+
}
|
|
5521
5055
|
/**
|
|
5522
5056
|
* Builder to build bitmark AST node programmatically
|
|
5523
5057
|
*/
|
|
@@ -5543,7 +5077,7 @@ declare class Builder extends BaseBuilder {
|
|
|
5543
5077
|
bitType: BitTypeType;
|
|
5544
5078
|
bitLevel: number;
|
|
5545
5079
|
textFormat?: TextFormatType;
|
|
5546
|
-
resourceType?:
|
|
5080
|
+
resourceType?: ResourceTypeType;
|
|
5547
5081
|
isCommented?: boolean;
|
|
5548
5082
|
id?: string | string[];
|
|
5549
5083
|
internalComment?: string | string[];
|
|
@@ -5699,9 +5233,7 @@ declare class Builder extends BaseBuilder {
|
|
|
5699
5233
|
page?: string | string[];
|
|
5700
5234
|
productId?: string | string[];
|
|
5701
5235
|
product?: string | string[];
|
|
5702
|
-
productList?: string | string[];
|
|
5703
5236
|
productVideo?: string | string[];
|
|
5704
|
-
productVideoList?: string | string[];
|
|
5705
5237
|
productFolder?: string;
|
|
5706
5238
|
technicalTerm?: Partial<TechnicalTermJson>;
|
|
5707
5239
|
servings?: Partial<ServingsJson>;
|
|
@@ -5760,7 +5292,7 @@ declare class Builder extends BaseBuilder {
|
|
|
5760
5292
|
markup?: string;
|
|
5761
5293
|
parser?: ParserInfo;
|
|
5762
5294
|
__isDefaultExample?: boolean;
|
|
5763
|
-
}): Bit | undefined;
|
|
5295
|
+
}, options?: BuildBitOptions): Bit | undefined;
|
|
5764
5296
|
/**
|
|
5765
5297
|
* Build books[] node
|
|
5766
5298
|
*
|
|
@@ -6213,7 +5745,7 @@ declare class ResourceBuilder extends BaseBuilder {
|
|
|
6213
5745
|
* @returns
|
|
6214
5746
|
*/
|
|
6215
5747
|
resourceFromResourceJson(context: BuildContext, resource?: Partial<ResourceJson> | Partial<ResourceJson>[]): ResourceJson | ResourceJson[] | undefined;
|
|
6216
|
-
resourceFromResourceDataJson(context: BuildContext, type:
|
|
5748
|
+
resourceFromResourceDataJson(context: BuildContext, type: ResourceTypeType, data: Partial<ResourceDataJson> | undefined): ResourceJson | undefined;
|
|
6217
5749
|
/**
|
|
6218
5750
|
* Build resource node
|
|
6219
5751
|
*
|
|
@@ -6221,7 +5753,7 @@ declare class ResourceBuilder extends BaseBuilder {
|
|
|
6221
5753
|
* @returns
|
|
6222
5754
|
*/
|
|
6223
5755
|
resource(context: BuildContext, data: {
|
|
6224
|
-
type:
|
|
5756
|
+
type: ResourceTypeType;
|
|
6225
5757
|
value?: string;
|
|
6226
5758
|
format?: string;
|
|
6227
5759
|
src1x?: string;
|
|
@@ -6268,7 +5800,7 @@ declare class ResourceBuilder extends BaseBuilder {
|
|
|
6268
5800
|
showInIndex?: boolean;
|
|
6269
5801
|
caption?: TextAst;
|
|
6270
5802
|
search?: string;
|
|
6271
|
-
}, __typeAlias?:
|
|
5803
|
+
}, __typeAlias?: ResourceTypeType): ImageResourceWrapperJson | undefined;
|
|
6272
5804
|
/**
|
|
6273
5805
|
* Build imageLinkResource node
|
|
6274
5806
|
*
|
|
@@ -6911,12 +6443,12 @@ declare class BitmarkGenerator extends AstWalkerGenerator<BitmarkAst, void> {
|
|
|
6911
6443
|
protected leaf_reference(node: NodeInfo, route: NodeInfo[]): void;
|
|
6912
6444
|
protected enter_hint(node: NodeInfo, route: NodeInfo[]): boolean;
|
|
6913
6445
|
protected enter_instruction(node: NodeInfo, route: NodeInfo[]): boolean;
|
|
6914
|
-
protected
|
|
6446
|
+
protected leaf_lang(node: NodeInfo, _route: NodeInfo[]): void;
|
|
6915
6447
|
protected enter_refAuthor(node: NodeInfo, _route: NodeInfo[]): void;
|
|
6916
|
-
protected
|
|
6448
|
+
protected leaf_refBookTitle(node: NodeInfo, _route: NodeInfo[]): void;
|
|
6917
6449
|
protected enter_refPublisher(node: NodeInfo, _route: NodeInfo[]): void;
|
|
6918
|
-
protected
|
|
6919
|
-
protected
|
|
6450
|
+
protected leaf_refPublicationYear(node: NodeInfo, _route: NodeInfo[]): void;
|
|
6451
|
+
protected leaf_citationStyle(node: NodeInfo, _route: NodeInfo[]): void;
|
|
6920
6452
|
protected leaf_isExample(node: NodeInfo, route: NodeInfo[]): void;
|
|
6921
6453
|
protected leaf_elementsValue(node: NodeInfo, _route: NodeInfo[]): void;
|
|
6922
6454
|
protected leaf_solutionsValue(node: NodeInfo, route: NodeInfo[]): void;
|
|
@@ -6956,6 +6488,13 @@ declare class BitmarkGenerator extends AstWalkerGenerator<BitmarkAst, void> {
|
|
|
6956
6488
|
* Generate the handlers for properties, as they are mostly the same, but not quite
|
|
6957
6489
|
*/
|
|
6958
6490
|
protected generatePropertyHandlers(): void;
|
|
6491
|
+
/**
|
|
6492
|
+
* Get the bit type from any node
|
|
6493
|
+
*
|
|
6494
|
+
* @param route the route to the current node
|
|
6495
|
+
* @returns the bit type
|
|
6496
|
+
*/
|
|
6497
|
+
protected getBitType(route: NodeInfo[]): BitTypeType | undefined;
|
|
6959
6498
|
/**
|
|
6960
6499
|
* Check if in a chain.
|
|
6961
6500
|
*
|
|
@@ -7031,13 +6570,13 @@ declare class BitmarkGenerator extends AstWalkerGenerator<BitmarkAst, void> {
|
|
|
7031
6570
|
protected writeNL_IfNotChain(route: NodeInfo[]): void;
|
|
7032
6571
|
protected writeNL(): void;
|
|
7033
6572
|
protected writePropertyStyleResource(key: string, resource: ResourceJson, deprecated_writeAsProperty?: boolean): boolean | void;
|
|
7034
|
-
protected writeResource(type:
|
|
6573
|
+
protected writeResource(type: ResourceTypeType, value: string): void;
|
|
7035
6574
|
protected writeProperty(name: string, values: unknown | unknown[] | undefined, options: {
|
|
7036
|
-
format:
|
|
7037
|
-
|
|
6575
|
+
format: TagFormatType;
|
|
6576
|
+
array?: boolean;
|
|
7038
6577
|
ignoreFalse?: boolean;
|
|
7039
6578
|
ignoreTrue?: boolean;
|
|
7040
|
-
|
|
6579
|
+
writeEmpty?: boolean;
|
|
7041
6580
|
}): void;
|
|
7042
6581
|
protected writeInlineDebug(key: string, state: {
|
|
7043
6582
|
open?: boolean;
|
|
@@ -7315,7 +6854,7 @@ declare class JsonGenerator extends AstWalkerGenerator<BitmarkAst, void> {
|
|
|
7315
6854
|
* @param route the route to the current node
|
|
7316
6855
|
* @returns the bit type
|
|
7317
6856
|
*/
|
|
7318
|
-
protected getResourceType(route: NodeInfo[]):
|
|
6857
|
+
protected getResourceType(route: NodeInfo[]): ResourceTypeType | undefined;
|
|
7319
6858
|
/**
|
|
7320
6859
|
* Get the internal comments from any node
|
|
7321
6860
|
*
|
|
@@ -7620,6 +7159,11 @@ interface InfoOptions {
|
|
|
7620
7159
|
*/
|
|
7621
7160
|
prettify?: boolean | number;
|
|
7622
7161
|
}
|
|
7162
|
+
/**
|
|
7163
|
+
* Config generation options for the parser
|
|
7164
|
+
*/
|
|
7165
|
+
interface GenerateConfigOptions {
|
|
7166
|
+
}
|
|
7623
7167
|
/**
|
|
7624
7168
|
* Conversion options for bitmark / JSON conversion
|
|
7625
7169
|
*/
|
|
@@ -7905,6 +7449,10 @@ declare class BitmarkParserGenerator {
|
|
|
7905
7449
|
* Get information about the bitmark-parser-generator library
|
|
7906
7450
|
*/
|
|
7907
7451
|
info(options?: InfoOptions): unknown;
|
|
7452
|
+
/**
|
|
7453
|
+
* Generate the new configuration for the bitmark parser.
|
|
7454
|
+
*/
|
|
7455
|
+
generateConfig(options?: GenerateConfigOptions): Promise<unknown>;
|
|
7908
7456
|
/**
|
|
7909
7457
|
* Convert bitmark from bitmark to JSON, or JSON to bitmark.
|
|
7910
7458
|
*
|
|
@@ -8182,4 +7730,4 @@ declare class JsonFileGenerator implements Generator<BitmarkAst> {
|
|
|
8182
7730
|
generateSync(_ast: BitmarkAst): string;
|
|
8183
7731
|
}
|
|
8184
7732
|
|
|
8185
|
-
export { type AppLinkResourceJson, type AppLinkResourceWrapperJson, type ArticleResourceJson, type ArticleResourceWrapperJson, Ast, type AstWalkCallbacks, type AudioEmbedResourceJson, type AudioEmbedResourceWrapperJson, type AudioLinkResourceJson, type AudioLinkResourceWrapperJson, type AudioResourceJson, type AudioResourceWrapperJson, type Bit, type BitJson, BitType, type BitTypeType, type BitWrapperJson, type BitmarkAst, BitmarkFileGenerator, BitmarkGenerator, type BitmarkOptions, BitmarkParser, BitmarkParserGenerator, BitmarkParserType, type BitmarkParserTypeType, BitmarkStringGenerator, BitmarkVersion, type BitmarkVersionType, type Body, type BodyBitJson, type BodyBitsJson, type BodyPart, BodyTextFormat, type BodyTextFormatType, type BotResponseJson, type BreakscapeOptions, type BreakscapedString, Builder, CardSetVersion, type CardSetVersionType, type ChoiceJson, type ConvertOptions, type ConvertTextOptions, type CreateAstOptions, type DefinitionListItemJson, type DocumentDownloadResourceJson, type DocumentDownloadResourceWrapperJson, type DocumentEmbedResourceJson, type DocumentEmbedResourceWrapperJson, type DocumentLinkResourceJson, type DocumentLinkResourceWrapperJson, type DocumentResourceJson, type DocumentResourceWrapperJson, type Example, type ExampleJson, type ExtraProperties, type FileOptions, FileWriter, type FlashcardJson, type GapJson, type Generator, type HeadingJson, type HighlightJson, type HighlightTextJson, type ImageLinkResourceJson, type ImageLinkResourceWrapperJson, type ImageResourceJson, type ImageResourceWrapperJson, type ImageSourceJson, InfoFormat, type InfoFormatType, type InfoOptions, InfoType, type InfoTypeType, type IngredientJson, Input, type InputType, JsonFileGenerator, JsonGenerator, type JsonOptions, JsonParser, JsonStringGenerator, type ListItemJson, type MarkConfigJson, type MatrixCellJson, type MatrixJson, type Node, type NodeInfo, NodeType, type NodeTypeType, Output, type OutputType, type PairJson, type ParserJson, type PersonJson, type UpgradeOptions as PrettifyOptions, type Property, type QuestionJson, type QuizJson, type RatingLevelStartEndJson, ResourceBuilder, type ResourceDataJson, type ResourceJson,
|
|
7733
|
+
export { type AppLinkResourceJson, type AppLinkResourceWrapperJson, type ArticleResourceJson, type ArticleResourceWrapperJson, Ast, type AstWalkCallbacks, type AudioEmbedResourceJson, type AudioEmbedResourceWrapperJson, type AudioLinkResourceJson, type AudioLinkResourceWrapperJson, type AudioResourceJson, type AudioResourceWrapperJson, type Bit, type BitJson, BitType, type BitTypeType, type BitWrapperJson, type BitmarkAst, BitmarkFileGenerator, BitmarkGenerator, type BitmarkOptions, BitmarkParser, BitmarkParserGenerator, BitmarkParserType, type BitmarkParserTypeType, BitmarkStringGenerator, BitmarkVersion, type BitmarkVersionType, type Body, type BodyBitJson, type BodyBitsJson, type BodyPart, BodyTextFormat, type BodyTextFormatType, type BookJson, type BookReferenceJson, type BotResponseJson, type BreakscapeOptions, type BreakscapedString, Builder, type CardBit, type CardNode, CardSetVersion, type CardSetVersionType, type ChoiceJson, type ConvertOptions, type ConvertTextOptions, type CreateAstOptions, type DefinitionListItemJson, type DocumentDownloadResourceJson, type DocumentDownloadResourceWrapperJson, type DocumentEmbedResourceJson, type DocumentEmbedResourceWrapperJson, type DocumentLinkResourceJson, type DocumentLinkResourceWrapperJson, type DocumentResourceJson, type DocumentResourceWrapperJson, type Example, type ExampleJson, type ExtraProperties, type FeedbackChoiceJson, type FeedbackJson, type FeedbackReasonJson, type FileOptions, FileWriter, type FlashcardJson, type Footer, type GapJson, type Generator, type HeadingJson, type HighlightJson, type HighlightTextJson, type ImageLinkResourceJson, type ImageLinkResourceWrapperJson, type ImageResourceJson, type ImageResourceWrapperJson, type ImageSourceJson, InfoFormat, type InfoFormatType, type InfoOptions, InfoType, type InfoTypeType, type IngredientJson, Input, type InputType, JsonFileGenerator, JsonGenerator, type JsonOptions, JsonParser, JsonStringGenerator, type ListItemJson, type MarkConfigJson, type MarkJson, type MatrixCellJson, type MatrixJson, type Node, type NodeInfo, NodeType, type NodeTypeType, Output, type OutputType, type PairJson, type ParserJson, type PersonJson, type UpgradeOptions as PrettifyOptions, type PronunciationTableCellJson, type PronunciationTableJson, type Property, type QuestionJson, type QuizJson, type RatingLevelStartEndJson, ResourceBuilder, type ResourceDataJson, type ResourceJson, type ResourceWrapperJson, type ResponseJson, type SelectJson, type SelectOptionJson, type ServingsJson, type StatementJson, type StillImageFilmEmbedResourceJson, type StillImageFilmEmbedResourceWrapperJson, type StillImageFilmLinkResourceJson, type StillImageFilmLinkResourceWrapperJson, type StillImageFilmResourceJson, type StillImageFilmResourceWrapperJson, StreamWriter, StringWriter, type TableJson, type TechnicalTermJson, type JsonText as Text, type TextAndIconJson, type TextAst, type TextJsonOptions, type UnbreakscapeOptions, type UpgradeOptions, type VideoEmbedResourceJson, type VideoEmbedResourceWrapperJson, type VideoLinkResourceJson, type VideoLinkResourceWrapperJson, type VideoResourceJson, type VideoResourceWrapperJson, type WebsiteLinkResourceJson, type WebsiteLinkResourceWrapperJson, type Writer, parse as bitmarkTextParse };
|